cancel
Showing results for 
Search instead for 
Did you mean: 

Smartform

Former Member
0 Kudos

Hi Experts

Can any one tell me the Difference between Control Parameter and Output Options in SMARTFORM.

Thanks in Advance,

Kumar

Accepted Solutions (0)

Answers (4)

Answers (4)

Former Member
0 Kudos

Hi Ravi kumar,

Data:
   W_CTRLOP TYPE SSFCTRLOP,      " Control structure.
   W_COMPOP TYPE SSFCOMPOP.   " smartform composer(transfer) options


CALL FUNCTION '/1BCDWB/SF00000482'
  EXPORTING
    CONTROL_PARAMETERS = W_CTRLOP
    OUTPUT_OPTIONS     = W_COMPOP
    USER_SETTINGS      = 'X'
  IMPORTING
    JOB_OUTPUT_INFO    = W_RETURN
  EXCEPTIONS
    FORMATTING_ERROR   = 1
    INTERNAL_ERROR     = 2
    SEND_ERROR         = 3
    USER_CANCELED      = 4.
IF SY-SUBRC <> 0.
  MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
  WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.

Regards,

Sravanthi

Former Member
0 Kudos

Hi Ravi,

You can get this from reading the help

For control parameters

http://help.sap.com/saphelp_nw2004s/helpdata/en/71/9ccd9c8e0e11d4b608006094192fe3/frameset.htm

For output options click on output options link.

Thanks&Regards,

Karthik.

Former Member
0 Kudos

control parameters: define the way SF behaves, like weather it should produce OTF or not etc

output parameters: defines the data for pop up which appears before SF id displayed, here we define parameters like printer = LP01 , etc.

Former Member
0 Kudos

Hi,

By passing values to Control Parameters you can avoid print preview etc.

In Output Options we can pass device etc...