Start of Content Area

Syntax documentation Parameters of the Generated Function Module  Locate the document in its SAP Library structure

You can use the parameters of the generated function module to define the way the form is displayed and its properties when it is called by the application program. The following lists these parameters:

From the perspective of the function module interface:

      The parameters of the structure SFPDOCPARAMS are import parameters (/1BCDWB/DOCPARAMS).

      The parameters of the structure FPFORMOUTPUT are export parameters (/1BCDWB/FORMOUTPUT).

 

Parameters of the Structure SFPDOCPARAMS

Parameter Name

Type

Meaning

LANGU

LANGU

Language in which the form is displayed

REPLANGU1

LANGU

If the form does not exist in the language specified in LANGU, the system evaluates these fields in the given sequence instead.

REPLANGU2

LANGU

REPLANGU3

LANGU

COUNTRY

LAND1

Country key for date and number formatting

Note

No setting is required if the SET COUNTRY command is used in the application program before the generated function module is called, and the same country is specified there.

FILLABLE

FPINTERACTIVE

FILLABLE = X generates an interactive form. This form can be displayed and edited in Adobe Acrobat or Adobe Reader. Usage rights are allocated to the form; these rights enable data to be entered and saved in Adobe Reader.

FILLABLE = N generates an interactive form without usage rights.

DYNAMIC

FPDYNAMIC

DYNAMIC = X generates an interactive, dynamic form to be displayed and edited in Adobe Acrobat or Adobe Reader versions higher than 7.0.

Caution

This parameter is valid only if the FILLABLE parameter is also set.

DARATAB

TFPDARA

If you want to archive the generated form, you must make at least one entry in this table (with archiving indexes).

 

Parameters of the Structure FPFORMOUTPUT

Parameter Name

Type

Meaning

PDF

FPCONTENT

Contains the generated PDF.

Note

A PDF is generated only on demand by the GETPDF parameter of the function module FP_JOB_OPEN in the application program, or by the print preview function.

PDL

FPCONTENT

Contains the generated PDL.

PAGES

FPPAGECOUNT

Contains the number of generated pages in the form.

LANGU

LANGU

Language key

 

 

Note

The parameters that control the output options are in the structure SFPOUTPUTPARAMS and are specified as import parameters when the function module FP_JOB_OPEN is called. For more information, see Form Output.

 

End of Content Area