SAP QAUT_CHARACTERISTIC_PROC Function Module for NOTRANSL: Berechtigungsprüfung für die Erfassung von Prüfergebnissen
QAUT_CHARACTERISTIC_PROC is a standard qaut characteristic proc 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: Berechtigungsprüfung für die Erfassung von Prüfergebnissen 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 qaut characteristic proc FM, simply by entering the name QAUT_CHARACTERISTIC_PROC into the relevant SAP transaction such as SE37 or SE38.
Function Group: QAUT
Program Name: SAPLQAUT
Main Program: SAPLQAUT
Appliation area: Q
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function QAUT_CHARACTERISTIC_PROC 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 'QAUT_CHARACTERISTIC_PROC'"NOTRANSL: Berechtigungsprüfung für die Erfassung von Prüfergebnissen.
EXPORTING
I_WERK = "Plant for work center
I_ARBPL = "Work center
* I_STATOLD = ' ' "Old status of recording function
* I_STATNEW = ' ' "New status of recording function
* I_NO_STATUS_CHECK = ' ' "Indicator do not carry out status check
* I_NO_STAT_CHECK_OLD = ' ' "
EXCEPTIONS
NO_AUTHORIZATION = 1 AUTH_DESTROYED = 2 INTERNAL_ERROR = 3
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_SAPLQAUT_001 Customer Exit: Authorization Check for Notification Transactions
IMPORTING Parameters details for QAUT_CHARACTERISTIC_PROC
I_WERK - Plant for work center
Data type: QAPO-PRPLATZWRKOptional: No
Call by Reference: No ( called with pass by value option)
I_ARBPL - Work center
Data type: QAPO-PRPLATZOptional: No
Call by Reference: No ( called with pass by value option)
I_STATOLD - Old status of recording function
Data type: QAMKR-STATUSRDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_STATNEW - New status of recording function
Data type: QAMKR-STATUSRDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_NO_STATUS_CHECK - Indicator do not carry out status check
Data type: QM00-QKZDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_NO_STAT_CHECK_OLD -
Data type: QM00-QKZDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
NO_AUTHORIZATION - No authorization (contact your system administrator)
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
AUTH_DESTROYED - Authorization possibly corrupted (contact SAP Hotline)
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
INTERNAL_ERROR - Internal error (contact SAP Hotline
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for QAUT_CHARACTERISTIC_PROC 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_werk | TYPE QAPO-PRPLATZWRK, " | |||
| lv_no_authorization | TYPE QAPO, " | |||
| lv_i_arbpl | TYPE QAPO-PRPLATZ, " | |||
| lv_auth_destroyed | TYPE QAPO, " | |||
| lv_i_statold | TYPE QAMKR-STATUSR, " SPACE | |||
| lv_internal_error | TYPE QAMKR, " | |||
| lv_i_statnew | TYPE QAMKR-STATUSR, " SPACE | |||
| lv_i_no_status_check | TYPE QM00-QKZ, " SPACE | |||
| lv_i_no_stat_check_old | TYPE QM00-QKZ. " SPACE |
|   CALL FUNCTION 'QAUT_CHARACTERISTIC_PROC' "NOTRANSL: Berechtigungsprüfung für die Erfassung von Prüfergebnissen |
| EXPORTING | ||
| I_WERK | = lv_i_werk | |
| I_ARBPL | = lv_i_arbpl | |
| I_STATOLD | = lv_i_statold | |
| I_STATNEW | = lv_i_statnew | |
| I_NO_STATUS_CHECK | = lv_i_no_status_check | |
| I_NO_STAT_CHECK_OLD | = lv_i_no_stat_check_old | |
| EXCEPTIONS | ||
| NO_AUTHORIZATION = 1 | ||
| AUTH_DESTROYED = 2 | ||
| INTERNAL_ERROR = 3 | ||
| . " QAUT_CHARACTERISTIC_PROC | ||
ABAP code using 7.40 inline data declarations to call FM QAUT_CHARACTERISTIC_PROC
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 PRPLATZWRK FROM QAPO INTO @DATA(ld_i_werk). | ||||
| "SELECT single PRPLATZ FROM QAPO INTO @DATA(ld_i_arbpl). | ||||
| "SELECT single STATUSR FROM QAMKR INTO @DATA(ld_i_statold). | ||||
| DATA(ld_i_statold) | = ' '. | |||
| "SELECT single STATUSR FROM QAMKR INTO @DATA(ld_i_statnew). | ||||
| DATA(ld_i_statnew) | = ' '. | |||
| "SELECT single QKZ FROM QM00 INTO @DATA(ld_i_no_status_check). | ||||
| DATA(ld_i_no_status_check) | = ' '. | |||
| "SELECT single QKZ FROM QM00 INTO @DATA(ld_i_no_stat_check_old). | ||||
| DATA(ld_i_no_stat_check_old) | = ' '. | |||
Search for further information about these or an SAP related objects