Logic for using table controls in BDC?
Answers were Sorted based on User's Feedback
Answer / vandan
data : count type i value 1.
data : var type i value 1.
types : begin of header ,
firstfield(1),
flg(2),
.........
.........
end.
types : begin of item ,
firstfield(1),
flg(2),
.........
.........
end.
Loop at header table.
loop at item table.
if header-firstfield = 'H'.
Pass coun to header-flg.
count = count +1.
else.
pass count to item-flg.
endloop.
endloop.
loop at header data .
header BDC recording.
loop at item data where item-flg = header-flg.
item BDC recording.
var = var + 1.
if var > 3.
put click recording.
var= 1.
endif.
put save recording.
endloop.
endloop.
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / sonalmishra
To upload transactional data along with master data
Is This Answer Correct ? | 0 Yes | 0 No |
What is amdp (abap managed data procedures)?
Tell me MM related report that you have done?
As an ABAP developer, how can we check after we release our object as to where has it reached(i.e. testing client box ,production client box etc)? In case it is not possible please let me know the same.
What does an extract statement do in the ABAP program?
what r differeces b/n open_form and start_form
6)what are the table controls in BDC ?
what are parameters of DDCinsert fun module ?
In scripts, i have 10 address lines there were blanks in between rows how can i avoid those
What are the different methods of passing data?
Explain what is runtime analysis?
What is hotspot?
What is partner selection?