GET_INTERACTIVE_FORM_DATA SAP Method Get the interactive form data from appl. BO & content node
Below is documentation, parameters and attributes of ABAP Method GET_INTERACTIVE_FORM_DATA within SAP class /BOFU/CL_PPF_UTILITIES. 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 /BOFU/CL_PPF_UTILITIES 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 GET_INTERACTIVE_FORM_DATA can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method GET_INTERACTIVE_FORM_DATA
.| Name | Type | Data Type | Description | Default Value |
| IO_CONTAINER | Importing | TYPE REF TO /BOFU/CL_PPF_CONTAINER | Output Mgmt for BOPF BOs: Persistant Container | |
| IO_MESSAGE | Importing | TYPE REF TO /BOBF/IF_FRW_MESSAGE | Interface of Message Object | |
| IO_PERSONALIZE_DATA | Importing | TYPE REF TO CL_PERSONALIZE_DATA_BCS | Service Class for Personalization of a Mail | |
| IO_TRIGGER | Importing | TYPE REF TO CL_TRIGGER_PPF | PPF: Action | |
| IP_FORM_NAME | Importing | TYPE FPNAME | Name of Form Object | |
| IP_FUNCTION_NAME | Importing | TYPE RS38L_FNAM | Name of Function Module | |
| IS_OUTPUTPARAMS | Importing | TYPE SFPOUTPUTPARAMS | Form Processing Output Parameter | |
| IV_CONTENT_XML | Importing | TYPE XSTRING | ||
| IV_EXT_COMM_CONTENT_KEY | Importing | TYPE /BOBF/CONF_KEY | NodeID | |
| ET_INTERACT_FORM_DATA | Exporting | TYPE /BOFU/CL_PPF_SERV_FOR_BO=>TT_INTERACT_FORM_DATA | ||
| EV_DOCUMENT_NUMBER | Exporting | TYPE PPFDSORT | Sort Field | |
| CS_DOCPARAMS | Changing | TYPE SFPDOCPARAMS | Form Parameters for Form Processing |
Exceptions of Method GET_INTERACTIVE_FORM_DATA
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO /BOFU/CL_PPF_UTILITIES.
DATA: lv_ET_INTERACT_FORM_DATA TYPE /BOFU/CL_PPF_SERV_FOR_BO=>TT_INTERACT_FORM_DATA,
lv_IO_CONTAINER TYPE /BOFU/CL_PPF_CONTAINER,
lv_IO_MESSAGE TYPE /BOBF/IF_FRW_MESSAGE,
lv_IO_PERSONALIZE_DATA TYPE CL_PERSONALIZE_DATA_BCS,
lv_IO_TRIGGER TYPE CL_TRIGGER_PPF,
lv_IP_FORM_NAME TYPE FPNAME,
lv_IP_FUNCTION_NAME TYPE RS38L_FNAM,
lv_IS_OUTPUTPARAMS TYPE SFPOUTPUTPARAMS,
lv_IV_CONTENT_XML TYPE XSTRING,
lv_IV_EXT_COMM_CONTENT_KEY TYPE /BOBF/CONF_KEY,
lv_CS_DOCPARAMS TYPE SFPDOCPARAMS,
lv_EV_DOCUMENT_NUMBER TYPE PPFDSORT,
lv_other TYPE c.
CALL METHOD lo_class=>GET_INTERACTIVE_FORM_DATA(
EXPORTING
IO_CONTAINER = lv_IO_CONTAINER
IO_MESSAGE = lv_IO_MESSAGE
IO_PERSONALIZE_DATA = lv_IO_PERSONALIZE_DATA
IO_TRIGGER = lv_IO_TRIGGER
IP_FORM_NAME = lv_IP_FORM_NAME
IP_FUNCTION_NAME = lv_IP_FUNCTION_NAME
IS_OUTPUTPARAMS = lv_IS_OUTPUTPARAMS
IV_CONTENT_XML = lv_IV_CONTENT_XML
IV_EXT_COMM_CONTENT_KEY = lv_IV_EXT_COMM_CONTENT_KEY
IMPORTING
ET_INTERACT_FORM_DATA = lv_ET_INTERACT_FORM_DATA
EV_DOCUMENT_NUMBER = lv_EV_DOCUMENT_NUMBER
CHANGING
CS_DOCPARAMS = lv_CS_DOCPARAMS ).
Links to Related Class(s)
/BOFU/CL...Full list of available SAP object classes
Search for further information about these or an SAP related objects