Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

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 Posted / 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



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain what are standard layouts sets in the sap script?

1535


how to see the tables of 200 in client 100?

1948


What are the different kinds of lock modes?

1099


What does the extract statement do in extract datasets? : abap modularization

1138


Structures can contain data only during the runtime of a program (t/f) : abap data dictionary

1369


Explain the difference between a dialog program and a report?

1085


Explain what is sap script? What is the purpose of sap script? Difference between sap script and report?

1118


What are the steps to be followed to set lockobjects? : sap abap data dictionary

1156


What are the two ways for restricting the value range for a domain? : sap abap data dictionary

1332


What will you code in start-of-selection & end-of-selecton & why?

1089


Sy index and sy tabix

1445


What is the project you are currently working and work that you are doing

1581


Explain the advantages and disadvantages of different types of bdc's?

1122


What are the control break events in abap? : abap data dictionary

1160


Can we handle two transaction codes in the same program using call transaction bdc input method? : abap bdc

1337