GET_OUTPUT_INFO_WITH_DATA SAP Method Get Output Format for Existing 'External' App. Document Data
Below is documentation, parameters and attributes of ABAP Method GET_OUTPUT_INFO_WITH_DATA within SAP class IF_EX_HRHAP00_SMARTFORMS. 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_HRHAP00_SMARTFORMS 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_OUTPUT_INFO_WITH_DATA can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method GET_OUTPUT_INFO_WITH_DATA
.| Name | Type | Data Type | Description | Default Value |
| FLT_VAL | Importing | TYPE HAP_AP_EXIT | Parameter FLT_VAL of Method GET_PDF_WITH_DATA | |
| OUTPUT_TYPE | Importing | TYPE CHAR1 | ' ' = R3 'W' = Web | |
| S_DOCUMENT | Importing | TYPE HAP_S_DOCUMENT | Appraisal Document | |
| PDF_LENGTH | Exporting | TYPE I | ||
| PDF_XSTRING | Exporting | TYPE XSTRING | Either S_OUTPUT_INFO or PDF_XSTRING Is Filled | |
| S_OUTPUT_INFO | Exporting | TYPE SSFCRESCL | Output attributes | |
| S_RETURN | Exporting | TYPE BAL_S_MSG | Application Log: Message Data |
Exceptions of Method GET_OUTPUT_INFO_WITH_DATA
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO IF_EX_HRHAP00_SMARTFORMS.
DATA: lv_FLT_VAL TYPE HAP_AP_EXIT,
lv_OUTPUT_TYPE TYPE CHAR1,
lv_PDF_LENGTH TYPE I,
lv_PDF_XSTRING TYPE XSTRING,
lv_S_DOCUMENT TYPE HAP_S_DOCUMENT,
lv_S_OUTPUT_INFO TYPE SSFCRESCL,
lv_S_RETURN TYPE BAL_S_MSG,
lv_other TYPE c.
CALL METHOD lo_class=>GET_OUTPUT_INFO_WITH_DATA(
EXPORTING
FLT_VAL = lv_FLT_VAL
OUTPUT_TYPE = lv_OUTPUT_TYPE
S_DOCUMENT = lv_S_DOCUMENT
IMPORTING
PDF_LENGTH = lv_PDF_LENGTH
PDF_XSTRING = lv_PDF_XSTRING
S_OUTPUT_INFO = lv_S_OUTPUT_INFO
S_RETURN = lv_S_RETURN ).
Links to Related Class(s)
IF_EX_HR...Full list of available SAP object classes
Search for further information about these or an SAP related objects