‎2007 Jul 30 9:15 AM
hiiiiiii
Iam using smartfroms n i want to display every new BELNR on new page.So iam using...the following code
LOOP AT it_bkpf INTO wa_bkpf.
AT NEW belnr.
ind = sy-tabix.
READ TABLE it_bkpf INTO wa_bkpf INDEX ind.
NEW-PAGE.
ENDAT.
ENDLOOP.
But my problem is that my it_bkpf is blank because iam using belnr as select-options.
SELECT * FROM bseg CLIENT SPECIFIED
INTO CORRESPONDING FIELDS OF TABLE it_bseg
WHERE belnr in s_belnr
AND bukrs = s_bukrs
AND gjahr = s_gjahr.
and s_belnr is in range so depending on my range that number of belnr should display on every new page in smartform.
‎2007 Jul 30 9:20 AM
Example Forms Available in Standard SAP R/3
SF_EXAMPLE_01
Simple example; invoice with table output of flight booking for one customer
SF_EXAMPLE_02
Similar to SF_EXAMPLE_01 but with subtotals
SF_EXAMPLE_03
Similar to SF_EXAMPLE_02, whereby several customers are selected in the application program; the form is called for each customer and all form outputs are included in an output request
‎2010 Jun 11 12:40 PM
‎2010 Jun 11 12:41 PM