SAP CATSXT_DISPLAY_TIME_SHEET Function Module for NOTRANSL: Arbeitszeitblatt - Anzeigen Daten









CATSXT_DISPLAY_TIME_SHEET is a standard catsxt display time sheet SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for NOTRANSL: Arbeitszeitblatt - Anzeigen Daten 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 catsxt display time sheet FM, simply by entering the name CATSXT_DISPLAY_TIME_SHEET into the relevant SAP transaction such as SE37 or SE38.

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



Function CATSXT_DISPLAY_TIME_SHEET 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 'CATSXT_DISPLAY_TIME_SHEET'"NOTRANSL: Arbeitszeitblatt  - Anzeigen Daten
EXPORTING
IM_PERSONNEL_NUMBER = "Personnel Number
* IM_CONTROL = "Control Parameters

EXCEPTIONS
PERSONNEL_NUMBER_NOT_FOUND = 1 SYSTEM_ERROR = 2 NOT_AUTHORIZED = 3 RECORD_NOT_FOUND = 4 INVALID_CALL = 5 GENERATION_LIMIT_REACHED = 6
.



IMPORTING Parameters details for CATSXT_DISPLAY_TIME_SHEET

IM_PERSONNEL_NUMBER - Personnel Number

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

IM_CONTROL - Control Parameters

Data type: CATSXT_INIT_DISPLAY
Optional: Yes
Call by Reference: Yes

EXCEPTIONS details

PERSONNEL_NUMBER_NOT_FOUND - Personnel number does not exist

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

SYSTEM_ERROR - Error in System Lock Administration

Data type:
Optional: No
Call by Reference: Yes

NOT_AUTHORIZED - No Authorization for Infotype 0001

Data type:
Optional: No
Call by Reference: Yes

RECORD_NOT_FOUND - Infotype 0001 Does Not Exist

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

INVALID_CALL - DE-EN-LANG-SWITCH-NO-TRANSLATION

Data type:
Optional: No
Call by Reference: Yes

GENERATION_LIMIT_REACHED - Dynamic generation limit reached (OSS 387175)

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for CATSXT_DISPLAY_TIME_SHEET 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_im_personnel_number  TYPE PERNR_D, "   
lv_personnel_number_not_found  TYPE PERNR_D, "   
lv_im_control  TYPE CATSXT_INIT_DISPLAY, "   
lv_system_error  TYPE CATSXT_INIT_DISPLAY, "   
lv_not_authorized  TYPE CATSXT_INIT_DISPLAY, "   
lv_record_not_found  TYPE CATSXT_INIT_DISPLAY, "   
lv_invalid_call  TYPE CATSXT_INIT_DISPLAY, "   
lv_generation_limit_reached  TYPE CATSXT_INIT_DISPLAY. "   

  CALL FUNCTION 'CATSXT_DISPLAY_TIME_SHEET'  "NOTRANSL: Arbeitszeitblatt - Anzeigen Daten
    EXPORTING
         IM_PERSONNEL_NUMBER = lv_im_personnel_number
         IM_CONTROL = lv_im_control
    EXCEPTIONS
        PERSONNEL_NUMBER_NOT_FOUND = 1
        SYSTEM_ERROR = 2
        NOT_AUTHORIZED = 3
        RECORD_NOT_FOUND = 4
        INVALID_CALL = 5
        GENERATION_LIMIT_REACHED = 6
. " CATSXT_DISPLAY_TIME_SHEET




ABAP code using 7.40 inline data declarations to call FM CATSXT_DISPLAY_TIME_SHEET

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.

 
 
 
 
 
 
 
 


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!