Hi to all abap guru's my querry is as follows How to trigger
the page break in smartforms forcibly ? and how to trigger
the page break in the scripts forcibly ? means for every 10
records i have to trigger the page break ? and in smart form
also ?
thanks in advance
Answer / prabha
in SMARTFORMS.
as of me we have to use 'command' from
create------->flowlogic---------->command.
but dont write command node in main window
by using this u can do page break.
in SAPSCRIPTS u have to use FM 'contorl_form'
CALL FUNCTION 'CONTROL_FORM'
EXPORTING
command = new-page
* EXCEPTIONS
* UNOPENED = 1
* UNSTARTED = 2
* OTHERS = 3
.
IF sy-subrc <> 0.
* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
* WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
Is This Answer Correct ? | 6 Yes | 0 No |
What is the difference between tables and structures?
What is the transaction code to modify the hr form
What are the types of internal tables?
What will happen if we run call Transaction in BDC for large volume of data?
2 Answers Thomson Reuters, Vinyl Tubes,
What is logo in sap script?
How to debug smartforms?
for uploading master data(ex:customer data) into sap, which methods you prefer? call transaction/session/lsmw/bapi? why?
when we use the SELECT statement along with FOR ALL ENTRIES then what type of validations we have do before executing this statement
2 Answers Cap Gemini, Mphasis, TCS,
Sort statement?
What is the maximum No. Of structures that can be included in a table or structure. : abap data dictionary
whai is the transaction code or table to see all print programs
will the messages in the call tr. Will be stored in the database?