‎2013 Sep 15 8:45 AM
Hi :
I just finished create 1 t.code by batch input recording.
how to create test data maybe 100 records and feed into this batch input session please.
I see button create test data . but i not know what to do next.
pls advise..
‎2013 Sep 15 9:47 AM
After creating the program from SHDB, edit it get the data from the input file.
parameters: p_file like rlgrap-filename.
data: begin of itab occurs 10,
vendor like lfa1-lifnr,
name like lfa1-name1,
city like lfa1-ort01,
zip like lfa1-pstlz,
end of itab.
The system will now walk you through the batch process for your text file. Notice the values that are given to each field during this walk through. In the future, you may run this process in ‘Background’ mode if you are importing thousands of records, rather than just a few. This is a good test to see if your program can successfully run the text file.
When the batch process completes, you will the window with message of Session processing status.
You will see the results from your successful batch input:
For more details, see this link.
www-bcf.usc.edu/~anthonyb/itp321/BDC/BDC.doc‎
‎2013 Sep 15 9:47 AM
After creating the program from SHDB, edit it get the data from the input file.
parameters: p_file like rlgrap-filename.
data: begin of itab occurs 10,
vendor like lfa1-lifnr,
name like lfa1-name1,
city like lfa1-ort01,
zip like lfa1-pstlz,
end of itab.
The system will now walk you through the batch process for your text file. Notice the values that are given to each field during this walk through. In the future, you may run this process in ‘Background’ mode if you are importing thousands of records, rather than just a few. This is a good test to see if your program can successfully run the text file.
When the batch process completes, you will the window with message of Session processing status.
You will see the results from your successful batch input:
For more details, see this link.
www-bcf.usc.edu/~anthonyb/itp321/BDC/BDC.doc‎