Hi experts,
i am facing one one problem when uploading operations description data. Here iam able to upload upto 19 records, if records are more than 19, it is not uploading in that screen . how to add more entries than 19 into that screen.
screen number is 'SAPLCPDI' '3400'.
adavnce ..........thanks and regards
asrreddy
It is very simple do as follow
perform bdc_screen using 'SAPMM07I' '0721' 'X'.
i = 1.
loop at itab_stock.
concatenate 'ISEG-MATNR(' i ')' into fnam.
perform bdc_field using fnam itab_stock-matnr.
if i = '12'.
perform bdc_field using 'BDC_OKCODE' '/00'.
perform bdc_screen using 'SAPMM07I' '0721' 'X'.
i = 0.
endif.
i = i + 1.
endloop.
perform bdc_field using 'BDC_OKCODE' '/00'.
perform bdc_screen using 'SAPMM07I' '0721' 'X'.
perform bdc_field using 'BDC_OKCODE' '=BU'.
call transaction 'MI01' using itab_bdcdata mode 'A' MESSAGES INTO
ITAB_msg.
CLEAR itab_bdcdata[].
In my case i have 12 rows in table and see the screen and program name called inside loop and outisde loop..and before loop...and also u have to call screen after 12 records..
regards..
REWARD POINTS 😊
Add a comment