2015 Jun 03 9:17 PM
Hi Folks,
Can any please let me know, how to change the data using external field symbols. I have been working on an implicit enhancement for process order change(COR2), in which i need to few other programs are being called.(eg : SAPLV01P). here i am getting the data in the internal table as below.
Data : lv_tab1 type char30.
Field-symbols : <fs> type any table.
lv_tab1 = '(SAPLV01P)NMCHA[ ]'.
assign (lv_tab1) to <fs>.
but i want to change the data inside this <fs> and that has to be reflected whenever in the other programs this NMCHA is used. I belive that using some syntax --->* it can be achieved. Please let me know
Regards
Mallikarjun Reddy G
Hi Folks,
Can any please let me know, how to change the data using external field symbols. I have been working on an implicit enhancement for process order change(COR2), in which i need to few other programs are being called.(eg : SAPLV01P). here i am getting the data in the internal table as below.
Data : lv_tab1 type char30.
Field-symbols : <fs> type any table.
lv_tab1 = '(SAPLV01P)NMCHA[ ]'.
assign (lv_tab1) to <fs>.
but i want to change the data inside this <fs> and that has to be reflected whenever in the other programs this NMCHA is used. I belive that using some syntax --->* it can be achieved. Please let me know
Regards
Mallikarjun Reddy G
2015 Jun 03 10:20 PM
Hi,
this called dirty assign,
there is some examples to do that, just look to these links, it could help you _)
Zugriff auf Variableninhalte von übergeordneten Programmierungseinheiten – SAP-Wiki