as of now I am doing the value assignment using FOR LOOP as shown below, I was curious the same can be done using MAPPING keyword?Source and Target structure are not identical. Source is a simple internal table and target is a deep internal table. et...
Hi,I have r_datasettp which has child entity as datasetannotation and datasetrelation.Dataset relation has child entity as well, but I am unable to read grandchild entity in a combined format.and I have to call READ ENTITIES again..is there a way to ...
Hello!I get correct amount of entries with below query: lt = SELECT tab1.act_id
FROM table1 AS tab1
INNER JOIN :it_score AS score
ON score.id = tab1.id
WHERE tab1.bb...
Hi,I have a method for which I am writing ABAP Unit test: METHOD do_sth.
"Below method call sets a global attribute value
me->get_facet( ).
"Below method call returns internal table
lt_catlog = me->build_catalog( ).
**other code in method**
ENDMET...
I have local class(LCL_CUT) created inside function group ZFG_BP.method get_activity of class lcl_cut, tries to access global variables of ZFG_BP. METHOD get_activity
IF gv_act_id = 'YCUS'. "this gv_act_id is part of Fn Group ZFG_BP
**logic to ca...