SAP ISP_HELP_T554S Function Module for IS-M/SD: Output HR Absence Types as Value Help









ISP_HELP_T554S is a standard isp help t554s SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for IS-M/SD: Output HR Absence Types as Value Help 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 isp help t554s FM, simply by entering the name ISP_HELP_T554S into the relevant SAP transaction such as SE37 or SE38.

Function Group: JLH0
Program Name: SAPLJLH0
Main Program: SAPLJLH0
Appliation area: J
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function ISP_HELP_T554S 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 'ISP_HELP_T554S'"IS-M/SD: Output HR Absence Types as Value Help
EXPORTING
PERSNR = "Personnel Number
GUELTIGVON = "Valid-From Date
GUELTIGBIS = "End of Validity Period
* TRTYP = 'V' "Transaction Type
* FIELD_IN = ' ' "Attendance/Absence Type
* DESCRIPTION_IN = ' ' "Text for attendance/absence type
* CUCOL = '30' "
* CUROW = '05' "

IMPORTING
FIELD_OUT = "Attendance/Absence Type
DESCRIPTION_OUT = "Text for attendance/absence type

TABLES
ZUO_PERNR_MOABW_TAB = "
ZUO_ABWART_MOABW_TAB = "
AWART_TEXT_TAB = "

EXCEPTIONS
NO_DATA_FOUND = 1
.



IMPORTING Parameters details for ISP_HELP_T554S

PERSNR - Personnel Number

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

GUELTIGVON - Valid-From Date

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

GUELTIGBIS - End of Validity Period

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

TRTYP - Transaction Type

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

FIELD_IN - Attendance/Absence Type

Data type: T554T-AWART
Default: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)

DESCRIPTION_IN - Text for attendance/absence type

Data type: T554T-ATEXT
Default: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)

CUCOL -

Data type: SY-CUCOL
Default: '30'
Optional: Yes
Call by Reference: No ( called with pass by value option)

CUROW -

Data type: SY-CUROW
Default: '05'
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for ISP_HELP_T554S

FIELD_OUT - Attendance/Absence Type

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

DESCRIPTION_OUT - Text for attendance/absence type

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

TABLES Parameters details for ISP_HELP_T554S

ZUO_PERNR_MOABW_TAB -

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

ZUO_ABWART_MOABW_TAB -

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

AWART_TEXT_TAB -

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

EXCEPTIONS details

NO_DATA_FOUND - No Entries

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

Copy and paste ABAP code example for ISP_HELP_T554S 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_persnr  TYPE P0001-PERNR, "   
lv_field_out  TYPE T554T-AWART, "   
lv_no_data_found  TYPE T554T, "   
lt_zuo_pernr_moabw_tab  TYPE STANDARD TABLE OF RJXZUPERNR, "   
lv_gueltigvon  TYPE T554S-BEGDA, "   
lv_description_out  TYPE T554T-ATEXT, "   
lt_zuo_abwart_moabw_tab  TYPE STANDARD TABLE OF RJXZUMOABW, "   
lv_gueltigbis  TYPE T554S-ENDDA, "   
lt_awart_text_tab  TYPE STANDARD TABLE OF T554T, "   
lv_trtyp  TYPE T554T, "   'V'
lv_field_in  TYPE T554T-AWART, "   ' '
lv_description_in  TYPE T554T-ATEXT, "   ' '
lv_cucol  TYPE SY-CUCOL, "   '30'
lv_curow  TYPE SY-CUROW. "   '05'

  CALL FUNCTION 'ISP_HELP_T554S'  "IS-M/SD: Output HR Absence Types as Value Help
    EXPORTING
         PERSNR = lv_persnr
         GUELTIGVON = lv_gueltigvon
         GUELTIGBIS = lv_gueltigbis
         TRTYP = lv_trtyp
         FIELD_IN = lv_field_in
         DESCRIPTION_IN = lv_description_in
         CUCOL = lv_cucol
         CUROW = lv_curow
    IMPORTING
         FIELD_OUT = lv_field_out
         DESCRIPTION_OUT = lv_description_out
    TABLES
         ZUO_PERNR_MOABW_TAB = lt_zuo_pernr_moabw_tab
         ZUO_ABWART_MOABW_TAB = lt_zuo_abwart_moabw_tab
         AWART_TEXT_TAB = lt_awart_text_tab
    EXCEPTIONS
        NO_DATA_FOUND = 1
. " ISP_HELP_T554S




ABAP code using 7.40 inline data declarations to call FM ISP_HELP_T554S

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 PERNR FROM P0001 INTO @DATA(ld_persnr).
 
"SELECT single AWART FROM T554T INTO @DATA(ld_field_out).
 
 
 
"SELECT single BEGDA FROM T554S INTO @DATA(ld_gueltigvon).
 
"SELECT single ATEXT FROM T554T INTO @DATA(ld_description_out).
 
 
"SELECT single ENDDA FROM T554S INTO @DATA(ld_gueltigbis).
 
 
DATA(ld_trtyp) = 'V'.
 
"SELECT single AWART FROM T554T INTO @DATA(ld_field_in).
DATA(ld_field_in) = ' '.
 
"SELECT single ATEXT FROM T554T INTO @DATA(ld_description_in).
DATA(ld_description_in) = ' '.
 
"SELECT single CUCOL FROM SY INTO @DATA(ld_cucol).
DATA(ld_cucol) = '30'.
 
"SELECT single CUROW FROM SY INTO @DATA(ld_curow).
DATA(ld_curow) = '05'.
 


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!