SAP CRM_SRV_PR_UPDATE_TRIGGER Function Module for NOTRANSL: CRM Service: BTE Bestellanforderung Update
CRM_SRV_PR_UPDATE_TRIGGER is a standard crm srv pr update trigger 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: CRM Service: BTE Bestellanforderung Update 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 crm srv pr update trigger FM, simply by entering the name CRM_SRV_PR_UPDATE_TRIGGER into the relevant SAP transaction such as SE37 or SE38.
Function Group: CRM_SRV_LOG_EXT
Program Name: SAPLCRM_SRV_LOG_EXT
Main Program: SAPLCRM_SRV_LOG_EXT
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module Warning: Undefined array key "UPDATE" in /customers/3/8/f/se80.co.uk/httpd.www/builder/sap-function-modules/index.php on line 212
Update:

Function CRM_SRV_PR_UPDATE_TRIGGER 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. Warning: Undefined variable $pt in /customers/3/8/f/se80.co.uk/httpd.www/builder/sap-function-modules/index.php on line 326 Warning: Undefined variable $ptdet in /customers/3/8/f/se80.co.uk/httpd.www/builder/sap-function-modules/index.php on line 327 Warning: Undefined variable $at in /customers/3/8/f/se80.co.uk/httpd.www/builder/sap-function-modules/index.php on line 328 Warning: Undefined variable $pattern in /customers/3/8/f/se80.co.uk/httpd.www/builder/sap-function-modules/index.php on line 347 Warning: Undefined variable $abapcall in /customers/3/8/f/se80.co.uk/httpd.www/builder/sap-function-modules/index.php on line 349CALL FUNCTION 'CRM_SRV_PR_UPDATE_TRIGGER'"NOTRANSL: CRM Service: BTE Bestellanforderung Update.
TABLES
* T_XEBAN = "Purchase Requisition
* T_XEBKN = "Purchase Requisition Account Assignment
* T_YEBAN = "Purchase Requisition
* T_YEBKN = "Purchase Requisition Account Assignment
Warning: Undefined variable $idoc in /customers/3/8/f/se80.co.uk/httpd.www/builder/sap-function-modules/index.php on line 395 Warning: Undefined variable $exitfms in /customers/3/8/f/se80.co.uk/httpd.www/builder/sap-function-modules/index.php on line 397 Warning: Undefined variable $custfunc in /customers/3/8/f/se80.co.uk/httpd.www/builder/sap-function-modules/index.php on line 399 Warning: file(/customers/3/8/f/se80.co.uk/httpd.www/sap/fms/crm_srv_pr_update_trigger/crm_srv_pr_update_trigger.txt): Failed to open stream: No such file or directory in /customers/3/8/f/se80.co.uk/httpd.www/page/php/functions-noconn.php on line 575 Warning: foreach() argument must be of type array|object, bool given in /customers/3/8/f/se80.co.uk/httpd.www/page/php/functions-noconn.php on line 595 Warning: Undefined variable $endtag in /customers/3/8/f/se80.co.uk/httpd.www/page/php/functions-noconn.php on line 859
TABLES Parameters details for CRM_SRV_PR_UPDATE_TRIGGER
T_XEBAN - Purchase Requisition
Data type: EBANOptional: Yes
Call by Reference: Yes
T_XEBKN - Purchase Requisition Account Assignment
Data type: EBKNOptional: Yes
Call by Reference: Yes
T_YEBAN - Purchase Requisition
Data type: EBANOptional: Yes
Call by Reference: Yes
T_YEBKN - Purchase Requisition Account Assignment
Data type: EBKNOptional: Yes
Call by Reference: Yes
Copy and paste ABAP code example for CRM_SRV_PR_UPDATE_TRIGGER 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_t_xeban | TYPE STANDARD TABLE OF EBAN, " | |||
| lt_t_xebkn | TYPE STANDARD TABLE OF EBKN, " | |||
| lt_t_yeban | TYPE STANDARD TABLE OF EBAN, " | |||
| lt_t_yebkn | TYPE STANDARD TABLE OF EBKN. " |
|   CALL FUNCTION 'CRM_SRV_PR_UPDATE_TRIGGER' "NOTRANSL: CRM Service: BTE Bestellanforderung Update |
| TABLES | ||
| T_XEBAN | = lt_t_xeban | |
| T_XEBKN | = lt_t_xebkn | |
| T_YEBAN | = lt_t_yeban | |
| T_YEBKN | = lt_t_yebkn | |
| . " CRM_SRV_PR_UPDATE_TRIGGER | ||
ABAP code using 7.40 inline data declarations to call FM CRM_SRV_PR_UPDATE_TRIGGER
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