SAP CATS_TRANSFER_PM Function Module for NOTRANSL: Ruft den CO Transfer report auf









CATS_TRANSFER_PM is a standard cats transfer pm 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: Ruft den CO Transfer report auf 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 cats transfer pm FM, simply by entering the name CATS_TRANSFER_PM into the relevant SAP transaction such as SE37 or SE38.

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



Function CATS_TRANSFER_PM 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 'CATS_TRANSFER_PM'"NOTRANSL: Ruft den CO Transfer report auf
EXPORTING
POSTINGDATE = "
STORNODATE = "
TESTLAUF = "
PROTOKOL = "
PARLCNT = "Number of Lock Attempts During Transfer
OUT_PARAMS = "
* PARTASK = "
* PAR_STO = "

TABLES
PERNR = "
DATE = "
AUFNR = "
BELNR = "

EXCEPTIONS
NO_AUTHORITY = 1
.



IMPORTING Parameters details for CATS_TRANSFER_PM

POSTINGDATE -

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

STORNODATE -

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

TESTLAUF -

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

PROTOKOL -

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

PARLCNT - Number of Lock Attempts During Transfer

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

OUT_PARAMS -

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

PARTASK -

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

PAR_STO -

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

TABLES Parameters details for CATS_TRANSFER_PM

PERNR -

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

DATE -

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

AUFNR -

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

BELNR -

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

EXCEPTIONS details

NO_AUTHORITY -

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

Copy and paste ABAP code example for CATS_TRANSFER_PM 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_pernr  TYPE STANDARD TABLE OF SEL_PERNR, "   
lv_postingdate  TYPE CO_BUDAT, "   
lv_no_authority  TYPE CO_BUDAT, "   
lt_date  TYPE STANDARD TABLE OF SEL_DATE, "   
lv_stornodate  TYPE CO_BUDAT, "   
lt_aufnr  TYPE STANDARD TABLE OF SEL_AUFNR, "   
lv_testlauf  TYPE C, "   
lt_belnr  TYPE STANDARD TABLE OF SEL_BELNR, "   
lv_protokol  TYPE C, "   
lv_parlcnt  TYPE RCATSTXX-PARLCNT, "   
lv_out_params  TYPE PRI_PARAMS, "   
lv_partask  TYPE RCATSTXX-PARTASK, "   
lv_par_sto  TYPE RCATSTXX-PARSTORN. "   

  CALL FUNCTION 'CATS_TRANSFER_PM'  "NOTRANSL: Ruft den CO Transfer report auf
    EXPORTING
         POSTINGDATE = lv_postingdate
         STORNODATE = lv_stornodate
         TESTLAUF = lv_testlauf
         PROTOKOL = lv_protokol
         PARLCNT = lv_parlcnt
         OUT_PARAMS = lv_out_params
         PARTASK = lv_partask
         PAR_STO = lv_par_sto
    TABLES
         PERNR = lt_pernr
         DATE = lt_date
         AUFNR = lt_aufnr
         BELNR = lt_belnr
    EXCEPTIONS
        NO_AUTHORITY = 1
. " CATS_TRANSFER_PM




ABAP code using 7.40 inline data declarations to call FM CATS_TRANSFER_PM

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 PARLCNT FROM RCATSTXX INTO @DATA(ld_parlcnt).
 
 
"SELECT single PARTASK FROM RCATSTXX INTO @DATA(ld_partask).
 
"SELECT single PARSTORN FROM RCATSTXX INTO @DATA(ld_par_sto).
 


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!