There is a file in application server. How can you upload it
and separate it as per different fields?
Answer Posted / ranjan
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.
else.
exit.
enddo.
Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
What are the dynapro keywords?
please give the remaining answers.
what are the 2 other types of views, which are not allowed in release 3.0? : abap data dictionary
What is difference between check table and value table ?
What is the functionality of BIZTALK and how it handles the IDOC’s and how u will transfer the IDOCS to the BIZTALK ?
What work you have done in HR module
What are local objects?
What are the two methods for modifying sap standard tables?
What is meant by performance analysis? Have done anything to improve the performance?
Search help exit details.
wat are the process that can be executed & tracked in a workflow?
What are the internal tables and work area?
A subroutine can contain nested form and endform blocks. State true or false. : abap modularization
What is the significance of delivery class? : abap data dictionary
What is the difference between the function module and a normal abap/4 subroutine? : abap modularization