SAP CRMS4_REJECT_CODE_PROFILE_CB Function Module for Read Reason for Rejection based on Rejection Profile









CRMS4_REJECT_CODE_PROFILE_CB is a standard crms4 reject code profile cb 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 Reason for Rejection based on Rejection Profile 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 crms4 reject code profile cb FM, simply by entering the name CRMS4_REJECT_CODE_PROFILE_CB into the relevant SAP transaction such as SE37 or SE38.

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



Function CRMS4_REJECT_CODE_PROFILE_CB 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 'CRMS4_REJECT_CODE_PROFILE_CB'"Read Reason for Rejection based on Rejection Profile
EXPORTING
IV_REJECT_PROFILE = "Rejection Profile Name
* IV_REJECT_REASON = "Rejection Reason

IMPORTING
ET_REJPROFILE = "Assignment of Rejection Code to Rejection Profile

EXCEPTIONS
REJECTION_CODE_NOT_ASSIGNED = 1
.



IMPORTING Parameters details for CRMS4_REJECT_CODE_PROFILE_CB

IV_REJECT_PROFILE - Rejection Profile Name

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

IV_REJECT_REASON - Rejection Reason

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

EXPORTING Parameters details for CRMS4_REJECT_CODE_PROFILE_CB

ET_REJPROFILE - Assignment of Rejection Code to Rejection Profile

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

EXCEPTIONS details

REJECTION_CODE_NOT_ASSIGNED - Rejection code is not assigned to this profile

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

Copy and paste ABAP code example for CRMS4_REJECT_CODE_PROFILE_CB 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_et_rejprofile  TYPE CRMS4T_REJ_CODE_PROFILE, "   
lv_iv_reject_profile  TYPE CRMS4_REJECT_PROFILE, "   
lv_rejection_code_not_assigned  TYPE CRMS4_REJECT_PROFILE, "   
lv_iv_reject_reason  TYPE CRMS4_REJECT_REASON. "   

  CALL FUNCTION 'CRMS4_REJECT_CODE_PROFILE_CB'  "Read Reason for Rejection based on Rejection Profile
    EXPORTING
         IV_REJECT_PROFILE = lv_iv_reject_profile
         IV_REJECT_REASON = lv_iv_reject_reason
    IMPORTING
         ET_REJPROFILE = lv_et_rejprofile
    EXCEPTIONS
        REJECTION_CODE_NOT_ASSIGNED = 1
. " CRMS4_REJECT_CODE_PROFILE_CB




ABAP code using 7.40 inline data declarations to call FM CRMS4_REJECT_CODE_PROFILE_CB

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!