table1:
Hierarchy header
table2: Hierarchy header
description
table3:
Hierarchy data itself – all the nodes and leaves
table4:
Texts of hierarchy text nodes
table6:
Text of hierarchy text levels
It
took me some time to figure out that I have to use table 2 for these kind of BW hierarchy description. Before I was trying
to use also table6 but the system just ignored it. Once I adjusted my ABAP code
to populate the table2 there was one more error message.
More than one text
specified for hierarchy header for language EN
Message No. RH608
This error
was caused due to long text that I populated to some of the fields in the table
2. Once I shortened it, it work fine. Note that depending if you are using Start/End routine there will be either result_package_2 or source_package_2 only.
result_package_2 = VALUE #( BASE result_package_2 (
objectid = 0
langu = 'EN'
txtsh = 'Hier1'
txtmd = 'PARENTH1'
txtlg = 'PARENTH1 hier'
record = 1 ) ).
objectid = 0
langu = 'EN'
txtsh = 'Hier1'
txtmd = 'PARENTH1'
txtlg = 'PARENTH1 hier'
record = 1 ) ).
More
information:
No comments:
Post a Comment