which is a statement used to write a record to a file in
ABAP?
Answers were Sorted based on User's Feedback
Answer / balaji
WE CAN WRITE A RECORD TO A FILE IN ABAP BY CALLING THE
FUNCTION MODULE 'GUI_DOWNLOAD' AND WE HAVE TO SPECIFY THE
FILE NAME TO WHICH YOU WANTED TO WRITE AND NAME OF THE
INTERNAL TABLE FROM WHERE THE DATA HAS TO BE RETRIVED.
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / venkateswarlu.bandi
by using the down_load function module . parameters like
this
fine name:
file type:
internal table declaration:
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / sujan
DATA: MESS(60),
FNAME(10) VALUE '/tmp'.
OPEN DATASET FNAME FOR OUTPUT MESSAGE MESS.
SELECT * FROM TAB1.
ENDSELECT.
pls let me know if I'm wrong with my answer.
Is This Answer Correct ? | 0 Yes | 1 No |
In an ABAP program how do you access data that exists on a presentation server vs on an application server?
How to handle error in session method? : abap bdc
Which client is called as golden cient? IS it 100, if yes why?
identify valid statement when coding a field exit ? a) submit RSCA101X b)MESSAGE E101 C)MESSAGE I101 d)BREASK-POINT
PLEASE HELP ANYONE ON THIS ISSUE,is there any problem with this function module :RHPQ_T77BX_ADD_QUALIS_OF_DPLAN. IT IS TRIGGERING BEFORE COMPLETION OF THE DEVELOPMENT PLAN but it has to trigger after compltion of development plan..this issue raised in my project..so reply urgently..thanks in advance..
what is a binary search ? and how it is useful in a sorted internal table?
When will the current screen processing terminates?
How do you control printer functions from sapscript?
how to debug user exits?
How to attach a search help? how can you validate the entries in TMG?
The data of a view is not physically stored, but derived from one or more tables (t/f) : abap data dictionary
Can we modify data in data base table using view?