on 2023 Dec 21 8:30 PM
Hi, all.
How can I query all descendant base members from a BPC hierarchy node in ABAP using the if_uja_dim_data~read_mbr_data method or any other method, what parameters must I use? please give-me a code example for that.
Thanks and best regards.
Help others by sharing your knowledge.
AnswerRequest clarification before answering.
I have solved that using the method get_children_mbr of the interface if_uja_dim_data as in example below.
CALL METHOD lr_dim_data->get_children_mbr
EXPORTING
i_parent_mbr = ‘ENT_PAR01’
if_only_base_mbr = ‘X’
IMPORTING
et_member = lt_base_en.
That one and other useful ABAP codes for BPC are available in article Useful ABAP code in BPC 7.X NW version | SAP Blogs.
Bye.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
6 | |
4 | |
1 | |
1 | |
1 | |
1 | |
1 | |
1 | |
1 | |
1 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.