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 are the components of bdc?
What is the exactly definition of Foreign key 2.what is the exactly definition of Value Table. 3)What is the exactly definition of Data element and Domain.Please give the exactly definitions of all above questions without fail....Thanku
how do you put dynamic page breaks in script.
What are types of Projects ?
13 Answers ERP Solutions, Satyam,
1. what is IDOC monitoring ? what is the tcode used for idoc monitoring ? 2 . what is change pointer in ale ?
what is the difference table type and structure?
8 Answers IBM, Reliance, Tech Mahindra,
how to create bdc for sales order ? if any one kow the steps plz mail me at toamitshri@gmail.com
What is structure?
what is the pre-requisite for read statement and can we read the standard table using read statement
A window is missing while copying a sapscript from one client to another client. What should be done?
Explain the difference between cluster tables and pool table?
You are given functional specs for a BDC program and you need to decide whether to write a method call transaction or a session. How u will decide?