SAP PROFILE_FROM_PAHI Function Module for Read the History of a Profile (DB, OS, or SAP) from PAHI into PROF_HIST









PROFILE_FROM_PAHI is a standard profile from pahi SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Read the History of a Profile (DB, OS, or SAP) from PAHI into PROF_HIST 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 profile from pahi FM, simply by entering the name PROFILE_FROM_PAHI into the relevant SAP transaction such as SE37 or SE38.

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



Function PROFILE_FROM_PAHI 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 'PROFILE_FROM_PAHI'"Read the History of a Profile (DB, OS, or SAP) from PAHI into PROF_HIST
EXPORTING
SELECT_PARAMETER_TYPE = "
SELECT_HOSTNAME = "
SELECT_SYSTEMID = "
SELECT_START_DATE = "

TABLES
PROFILE_HISTORY = "

EXCEPTIONS
NO_PARAMS_FOUND_FOR_GIVEN_CRIT = 1
.



IMPORTING Parameters details for PROFILE_FROM_PAHI

SELECT_PARAMETER_TYPE -

Data type: PROF_HIST-PARTYPE
Optional: No
Call by Reference: No ( called with pass by value option)

SELECT_HOSTNAME -

Data type: PROF_HIST-HOSTNAME
Optional: No
Call by Reference: No ( called with pass by value option)

SELECT_SYSTEMID -

Data type: PROF_HIST-SYSTEMID
Optional: No
Call by Reference: No ( called with pass by value option)

SELECT_START_DATE -

Data type: PROF_HIST-PARDATE
Optional: No
Call by Reference: No ( called with pass by value option)

TABLES Parameters details for PROFILE_FROM_PAHI

PROFILE_HISTORY -

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

EXCEPTIONS details

NO_PARAMS_FOUND_FOR_GIVEN_CRIT -

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

Copy and paste ABAP code example for PROFILE_FROM_PAHI 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:
lt_profile_history  TYPE STANDARD TABLE OF PROF_HIST, "   
lv_select_parameter_type  TYPE PROF_HIST-PARTYPE, "   
lv_no_params_found_for_given_crit  TYPE PROF_HIST, "   
lv_select_hostname  TYPE PROF_HIST-HOSTNAME, "   
lv_select_systemid  TYPE PROF_HIST-SYSTEMID, "   
lv_select_start_date  TYPE PROF_HIST-PARDATE. "   

  CALL FUNCTION 'PROFILE_FROM_PAHI'  "Read the History of a Profile (DB, OS, or SAP) from PAHI into PROF_HIST
    EXPORTING
         SELECT_PARAMETER_TYPE = lv_select_parameter_type
         SELECT_HOSTNAME = lv_select_hostname
         SELECT_SYSTEMID = lv_select_systemid
         SELECT_START_DATE = lv_select_start_date
    TABLES
         PROFILE_HISTORY = lt_profile_history
    EXCEPTIONS
        NO_PARAMS_FOUND_FOR_GIVEN_CRIT = 1
. " PROFILE_FROM_PAHI




ABAP code using 7.40 inline data declarations to call FM PROFILE_FROM_PAHI

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.

 
"SELECT single PARTYPE FROM PROF_HIST INTO @DATA(ld_select_parameter_type).
 
 
"SELECT single HOSTNAME FROM PROF_HIST INTO @DATA(ld_select_hostname).
 
"SELECT single SYSTEMID FROM PROF_HIST INTO @DATA(ld_select_systemid).
 
"SELECT single PARDATE FROM PROF_HIST INTO @DATA(ld_select_start_date).
 


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!