PERSONALIZE_PDF_DOC_PDFIF SAP Method PDF Form Personalization with PDF-Based Interface









Below is documentation, parameters and attributes of ABAP Method PERSONALIZE_PDF_DOC_PDFIF within SAP class IF_EX_DOC_PERSONALIZE_BCS. There is also a number of example ABAP code snipts to help you use the functionality of this method.

This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name IF_EX_DOC_PERSONALIZE_BCS into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.


Method Type - Instance

This is an Instance Method so needs to be instantiated first before you can access any of the methods. I.e. you need to create a local variable of TYPE ref to the class.

The following technical details of method PERSONALIZE_PDF_DOC_PDFIF can also be found below:

  • Importing parameters
  • Exporting parameters
  • Changing parameters
  • Returning parameters
  • Exceptions
  • Coding Examples


Parameters of Method PERSONALIZE_PDF_DOC_PDFIF

.

NameTypeData TypeDescriptionDefault Value
FLT_VALImportingTYPE
BCSDFLTVAL
Parameter FLT_VAL of Method PERSONALIZE_PDF_DOC_PDFIF
IO_APPL_OBJECTImportingTYPE REF TO
OBJECT
Application Object
IO_PERSONALIZE_DATAImportingTYPE REF TO
CL_PERSONALIZE_DATA_BCS
Service Class for Personalization of a Mail
IP_APPLICATION_LOGImportingTYPE
BALLOGHNDL
Application Log: Log Handle
IP_FORM_NAMEImportingTYPE
FPNAME
Form Name
IP_FUNCTION_NAMEImportingTYPE
RS38L_FNAM
Function Module for PDF Form
IP_USER_SETTINGSImportingTYPE
TDBOOL
Checkbox (yes or no)
IS_OUTPUTPARAMSImportingTYPE
SFPOUTPUTPARAMS
Form Processing Output Parameter
EO_MAIN_DOCUMENTExportingTYPE REF TO
CL_DOCUMENT_BCS
Main Document for Sending
ES_FORMOUTPUTExportingTYPE
FPFORMOUTPUT
Form Output (PDF, PDL)
ES_JOBOUTPUTExportingTYPE
SFPJOBOUTPUT
Return Form Processing
ET_ATTACHMENTSExportingTYPE
BCSY_IFDOC
BCS: Table of References to IF_DOCUMENT_BCS
CP_DOCUMENT_TITLEChangingTYPE
STRING
Document Title (Maximum 50 Characters)
CS_DOCPARAMSChangingTYPE
SFPDOCPARAMS
Form Processing Form Parameter



Exceptions of Method PERSONALIZE_PDF_DOC_PDFIF

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO IF_EX_DOC_PERSONALIZE_BCS.
DATA: lv_CP_DOCUMENT_TITLE TYPE STRING,
lv_CS_DOCPARAMS TYPE SFPDOCPARAMS,
lv_EO_MAIN_DOCUMENT TYPE CL_DOCUMENT_BCS,
lv_ES_FORMOUTPUT TYPE FPFORMOUTPUT,
lv_ES_JOBOUTPUT TYPE SFPJOBOUTPUT,
lv_ET_ATTACHMENTS TYPE BCSY_IFDOC,
lv_FLT_VAL TYPE BCSDFLTVAL,
lv_IO_APPL_OBJECT TYPE OBJECT,
lv_IO_PERSONALIZE_DATA TYPE CL_PERSONALIZE_DATA_BCS,
lv_IP_APPLICATION_LOG TYPE BALLOGHNDL,
lv_IP_FORM_NAME TYPE FPNAME,
lv_IP_FUNCTION_NAME TYPE RS38L_FNAM,
lv_IP_USER_SETTINGS TYPE TDBOOL,
lv_IS_OUTPUTPARAMS TYPE SFPOUTPUTPARAMS,
lv_other TYPE c.

CALL METHOD lo_class=>PERSONALIZE_PDF_DOC_PDFIF(
EXPORTING
FLT_VAL = lv_FLT_VAL
IO_APPL_OBJECT = lv_IO_APPL_OBJECT
IO_PERSONALIZE_DATA = lv_IO_PERSONALIZE_DATA
IP_APPLICATION_LOG = lv_IP_APPLICATION_LOG
IP_FORM_NAME = lv_IP_FORM_NAME
IP_FUNCTION_NAME = lv_IP_FUNCTION_NAME
IP_USER_SETTINGS = lv_IP_USER_SETTINGS
IS_OUTPUTPARAMS = lv_IS_OUTPUTPARAMS
IMPORTING
EO_MAIN_DOCUMENT = lv_EO_MAIN_DOCUMENT
ES_FORMOUTPUT = lv_ES_FORMOUTPUT
ES_JOBOUTPUT = lv_ES_JOBOUTPUT
ET_ATTACHMENTS = lv_ET_ATTACHMENTS
CHANGING
CP_DOCUMENT_TITLE = lv_CP_DOCUMENT_TITLE
CS_DOCPARAMS = lv_CS_DOCPARAMS ).

Links to Related Class(s)

IF_EX_DO...
Full list of available SAP object classes

Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!