There is a file in application server. How can you upload it
and separate it as per different fields?
Answer Posted / pavani
open dataset p_file for input in textmode encoding default.
if sy-subrc = 0.
do.
read dataset p_file into w_rec.
if sy-subrc = 0.
split w_rec at ',' into wa_final-fld1
wa_final-fld2
.
.
.
append wa_final to i_final.
enddo.
| Is This Answer Correct ? | 7 Yes | 2 No |
Post New Answer View All Answers
What are conversion & interface programs in sap?
In which table the material master data is stored?
What are the arithmetic operators in the sap abap?
How many detail lists can be created in interactive reporting?
What is Field group?
What is a transport?
What is the use of start-of-selection.,if not use in report what will happen,?
What are screen painter? Menu painter? Gui status?
Explain what is a logical database?
How many types of data classes are there in sap abap? : abap data dictionary
How are the function code handles in flow logic?
How can we create callable modules of program code within one abap/4 program?
What is buffering allowed but switched off?
How can you access the function code from menu painter?
What is new enhancement framework?