SAP CO_RF_CHECK_QALTM_TAB Function Module for NOTRANSL: CIM-Rückmeldung: Prüfen, ob Eintrag in Tabelle QALTM1_TAB vorhan









CO_RF_CHECK_QALTM_TAB is a standard co rf check qaltm tab 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: CIM-Rückmeldung: Prüfen, ob Eintrag in Tabelle QALTM1_TAB vorhan 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 co rf check qaltm tab FM, simply by entering the name CO_RF_CHECK_QALTM_TAB into the relevant SAP transaction such as SE37 or SE38.

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



Function CO_RF_CHECK_QALTM_TAB 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 'CO_RF_CHECK_QALTM_TAB'"NOTRANSL: CIM-Rückmeldung: Prüfen, ob Eintrag in Tabelle QALTM1_TAB vorhan
EXPORTING
I_AUFNR = "Order Number
I_MATNR = "Material number for order
I_CHARG = "Batch Number

EXCEPTIONS
ENTRY_NOT_FOUND = 1
.




Customer Function user exits

Below is a list of CUSTOMER FUNCTION exit user exits that are available within this program and maybe relevant for this FM.
EXIT_SAPLCORF_001 PM/SM Order Confirmation: Customer-Specific Setting of Default Values
EXIT_SAPLCORF_002 PM/SM Order Confirmation: Customer-Specific Entry Check Without Change
EXIT_SAPLCORF_003 PM/SM Order Conf.: Customer-Specific Checks Acc. to Operation Selection
EXIT_SAPLCORF_004 PM/SM Order Confirmation: Customer-Specific Entry Checks with Change
EXIT_SAPLCORF_005 PM/SM Order Conf.: Customer-Spec. Enhancements when Saving (No Dialog!!!)
EXIT_SAPLCORF_006 PS Confirmation: Customer-Specific Setting of Default Values
EXIT_SAPLCORF_007 PS Confirmation: Customer-Specific Input Check Without Change
EXIT_SAPLCORF_008 PS Confirmation: Customer-Specific Check After Operation Selection
EXIT_SAPLCORF_009 PS Confirmation: Customer-Specific Input Check With Change
EXIT_SAPLCORF_010 PS Confirmation: Customer-Specific Enhancements when Saving (No Dialog!!!)
EXIT_SAPLCORF_101 PP Order Confirmation: Customer-Specific Setting of Default Values
EXIT_SAPLCORF_102 PP Order Confirmation: Customer-Specific Input Check Without Change
EXIT_SAPLCORF_103 PP Order Confirmation: Customer-Specific Checks after Operation Selection
EXIT_SAPLCORF_104 PP Order Confirmation: Customer-Specific Input Check With Change
EXIT_SAPLCORF_105 PP Order Conf.: Customer-Specific Enhancements when Saving (No Dialog!!!)
EXIT_SAPLCORF_106 PP Order Conf.: Actual Data Transfer for Milestone Confirmation
EXIT_SAPLCORF_401 Process Order Conf.: Customer-Specific Setting of Default Values
EXIT_SAPLCORF_402 Process Order Confirmation: Customer-Specific Input Check Without Change
EXIT_SAPLCORF_403 Process Order Conf.: Customer-Specific Checks after Operation Selection
EXIT_SAPLCORF_404 Process Order Confirmation: Customer-Specific Input Checks With Change
EXIT_SAPLCORF_405 Process Ord. Conf.: Cust.-Specific Enhancements when Saving (No Dialog!!!)
EXIT_SAPLCORF_406 Process Order Conf.: Actual Data Transfer for Milestone Confirmation

IMPORTING Parameters details for CO_RF_CHECK_QALTM_TAB

I_AUFNR - Order Number

Data type: CAUFVD-AUFNR
Optional: No
Call by Reference: Yes

I_MATNR - Material number for order

Data type: CAUFVD-MATNR
Optional: No
Call by Reference: Yes

I_CHARG - Batch Number

Data type: AFPOD-CHARG
Optional: No
Call by Reference: Yes

EXCEPTIONS details

ENTRY_NOT_FOUND - No Entry Found

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for CO_RF_CHECK_QALTM_TAB 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_i_aufnr  TYPE CAUFVD-AUFNR, "   
lv_entry_not_found  TYPE CAUFVD, "   
lv_i_matnr  TYPE CAUFVD-MATNR, "   
lv_i_charg  TYPE AFPOD-CHARG. "   

  CALL FUNCTION 'CO_RF_CHECK_QALTM_TAB'  "NOTRANSL: CIM-Rückmeldung: Prüfen, ob Eintrag in Tabelle QALTM1_TAB vorhan
    EXPORTING
         I_AUFNR = lv_i_aufnr
         I_MATNR = lv_i_matnr
         I_CHARG = lv_i_charg
    EXCEPTIONS
        ENTRY_NOT_FOUND = 1
. " CO_RF_CHECK_QALTM_TAB




ABAP code using 7.40 inline data declarations to call FM CO_RF_CHECK_QALTM_TAB

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 AUFNR FROM CAUFVD INTO @DATA(ld_i_aufnr).
 
 
"SELECT single MATNR FROM CAUFVD INTO @DATA(ld_i_matnr).
 
"SELECT single CHARG FROM AFPOD INTO @DATA(ld_i_charg).
 


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!