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 is a projection view? : abap data dictionary
How can the standard tables of sap be modified?
What are client dependant objects in abap/sap?
Explain what is runtime analysis?
Is the basic list deleted when the new list is created?
How to determine the attributes of an internal table?
What are the different methods of passing data? : abap modularization
What is payroll driver
What are indexes? : abap hr
Which objects are independent transport objects? : abap data dictionary
Type casting and error handling
Explain the Inportance of pa40? : abap hr
How to load data from ms excel sheet to sap by using bdc method ? : abap bdc
What is the bitwise operator in the sap abap?
What is the length of function code at user-command?