SAP AS4_PARSE_INFOAPAR Function Module for iSeries: Parse Information APAR









AS4_PARSE_INFOAPAR is a standard as4 parse infoapar SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for iSeries: Parse Information APAR processing and below is the pattern details for this FM, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.


See here to view full function module documentation and code listing for as4 parse infoapar FM, simply by entering the name AS4_PARSE_INFOAPAR into the relevant SAP transaction such as SE37 or SE38.

Function Group: STU4
Program Name: SAPLSTU4
Main Program: SAPLSTU4
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:



Function AS4_PARSE_INFOAPAR pattern details

In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.
CALL FUNCTION 'AS4_PARSE_INFOAPAR'"iSeries: Parse Information APAR
EXPORTING
* APAR_FILENAME = INFOAPAR_PATH "AS/400: Path name of Info APAR file
* REQ_OS_RELEASE = "iSeries: Operating System Release

IMPORTING
OS_RELEASE = "AS/400: Operating System Release

TABLES
PTF_STATUS = "iSeries: PTF Check

EXCEPTIONS
AS400_ONLY_FUNCTION = 1 API_ERROR = 2
.



IMPORTING Parameters details for AS4_PARSE_INFOAPAR

APAR_FILENAME - AS/400: Path name of Info APAR file

Data type: APARPATH
Default: INFOAPAR_PATH
Optional: Yes
Call by Reference: No ( called with pass by value option)

REQ_OS_RELEASE - iSeries: Operating System Release

Data type: AS4OSREL
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for AS4_PARSE_INFOAPAR

OS_RELEASE - AS/400: Operating System Release

Data type: AS4OSREL
Optional: No
Call by Reference: No ( called with pass by value option)

TABLES Parameters details for AS4_PARSE_INFOAPAR

PTF_STATUS - iSeries: PTF Check

Data type: AS4ALVPTF
Optional: No
Call by Reference: Yes

EXCEPTIONS details

AS400_ONLY_FUNCTION -

Data type:
Optional: No
Call by Reference: Yes

API_ERROR -

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for AS4_PARSE_INFOAPAR Function Module

The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the newer method of declaring data variables on the fly. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8), which i why i have stuck to the origianl for this example.

DATA:
lv_os_release  TYPE AS4OSREL, "   
lt_ptf_status  TYPE STANDARD TABLE OF AS4ALVPTF, "   
lv_apar_filename  TYPE APARPATH, "   INFOAPAR_PATH
lv_as400_only_function  TYPE APARPATH, "   
lv_api_error  TYPE APARPATH, "   
lv_req_os_release  TYPE AS4OSREL. "   

  CALL FUNCTION 'AS4_PARSE_INFOAPAR'  "iSeries: Parse Information APAR
    EXPORTING
         APAR_FILENAME = lv_apar_filename
         REQ_OS_RELEASE = lv_req_os_release
    IMPORTING
         OS_RELEASE = lv_os_release
    TABLES
         PTF_STATUS = lt_ptf_status
    EXCEPTIONS
        AS400_ONLY_FUNCTION = 1
        API_ERROR = 2
. " AS4_PARSE_INFOAPAR




ABAP code using 7.40 inline data declarations to call FM AS4_PARSE_INFOAPAR

The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.

 
 
DATA(ld_apar_filename) = INFOAPAR_PATH.
 
 
 
 


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!