on 2008 Jul 16 2:42 PM
HI,
i have table type field symbols and i wont to use it in perform
how can i do that?
LOOP AT <dyn_acl> ASSIGNING <l_act>.
ASSIGN COMPONENT : 'COSTCENTER' OF STRUCTURE <l_act> TO <fs_data>.
<fs_data> = ''.
ENDLOOP.
i wont to do it for 4 diff tables so i wont to use perform one time and send 1 diff table at time .
Regards
Hi Cosmo,
what's the problem?
.
perform dynrep using: <tab1>, <tab2>, <tab3>.
FORM dynrep USING pt_tab TYPE TABLE.
FIELD-SYMBOLS:
<rec> type any,
<comp> type any.
LOOP AT pt_tab ASSIGNING <rec>.
ASSIGN COMPONENT 'COSTCENTER' OF STRUCTURE <rec> TO <comp>.
* <fs_data> = ''.
CLEAR <comp>.
ENDLOOP.
ENDFORM.
.
Hope it helps,
Clemens
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
hi,
Plz Refer to this link.
http://help.sap.com/saphelp_40b/helpdata/ru/34/8e72cc6df74873e10000009b38f9b8/content.htm
Code In this link might solve Your problem.
Regards
Sumit Agarwal
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
70 | |
10 | |
10 | |
7 | |
6 | |
6 | |
6 | |
5 | |
5 | |
5 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.