2007 Jul 16 11:42 AM
How to define Generic table in perform?
FORM down_data_tab TABLES p_it_claims <b>TYPE index table</b>
USING p_v_append.
Is it the correct way,
Thanks,
Amol
How to define Generic table in perform?
FORM down_data_tab TABLES p_it_claims <b>TYPE index table</b>
USING p_v_append.
Is it the correct way,
Thanks,
Amol
2007 Jul 16 11:50 AM
Have you tried to not declare its structure?
I'm not sure about it, but I would try something like
FORM myform TABLES mytable.
2007 Jul 16 11:54 AM
Hi,
Hi try this:
form xxx tables tab.
field-symbols: <fs_line>,
<fs_field>.
data: v_line type ref to data.
create data v_line like line of tab.
assign v_line->* to <fs_line>.
assign component 'LOW' of structure <fs_line> to <fs_field>.
if sy-subrc eq 0.
<fs_field> = '1'.
append v_line->* to tab.
endif.
endform.
<b>Reward points</b>
Regards
2007 Jul 16 12:14 PM
hi,
refer this..
http://help.sap.com/saphelp_nw04/helpdata/en/74/83015785d811d295a800a0c929b3c3/frameset.htm
thanks
jaideep
*reward points if useful...
| User | Count |
|---|---|
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |