SAP HRWPC_RQ_CREATE_RQ_OBJECT Function Module for Create the Requisition Object
HRWPC_RQ_CREATE_RQ_OBJECT is a standard hrwpc rq create rq object SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Create the Requisition Object 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 hrwpc rq create rq object FM, simply by entering the name HRWPC_RQ_CREATE_RQ_OBJECT into the relevant SAP transaction such as SE37 or SE38.
Function Group: HRWPC_RQ_UTILITIES
Program Name: SAPLHRWPC_RQ_UTILITIES
Main Program:
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function HRWPC_RQ_CREATE_RQ_OBJECT 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 'HRWPC_RQ_CREATE_RQ_OBJECT'"Create the Requisition Object.
EXPORTING
NOTIF_OBJID = "Notification Object ID
NOTIF_TYPE = "Notification type
IMPORTING
RETURN = "Return parameter
EXCEPTIONS
RQ_OBJECT_FOUND = 1 NO_RQ_APPROVAL = 2 NO_ISR_UPDATE = 3 DATABASE_ERROR = 4 GENERAL_ERROR = 5
IMPORTING Parameters details for HRWPC_RQ_CREATE_RQ_OBJECT
NOTIF_OBJID - Notification Object ID
Data type: QMNUMOptional: No
Call by Reference: No ( called with pass by value option)
NOTIF_TYPE - Notification type
Data type: QMARTOptional: No
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for HRWPC_RQ_CREATE_RQ_OBJECT
RETURN - Return parameter
Data type: BAPIRET1Optional: No
Call by Reference: Yes
EXCEPTIONS details
RQ_OBJECT_FOUND - Requisition object is already created in the system.
Data type:Optional: No
Call by Reference: Yes
NO_RQ_APPROVAL - Requisition request needs to be approved first.
Data type:Optional: No
Call by Reference: Yes
NO_ISR_UPDATE - Notification object cannot be updated with Requisition data.
Data type:Optional: No
Call by Reference: Yes
DATABASE_ERROR - Requisition creation failed due to database error.
Data type:Optional: No
Call by Reference: Yes
GENERAL_ERROR - Requisition creation failed.
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for HRWPC_RQ_CREATE_RQ_OBJECT 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_return | TYPE BAPIRET1, " | |||
| lv_notif_objid | TYPE QMNUM, " | |||
| lv_rq_object_found | TYPE QMNUM, " | |||
| lv_notif_type | TYPE QMART, " | |||
| lv_no_rq_approval | TYPE QMART, " | |||
| lv_no_isr_update | TYPE QMART, " | |||
| lv_database_error | TYPE QMART, " | |||
| lv_general_error | TYPE QMART. " |
|   CALL FUNCTION 'HRWPC_RQ_CREATE_RQ_OBJECT' "Create the Requisition Object |
| EXPORTING | ||
| NOTIF_OBJID | = lv_notif_objid | |
| NOTIF_TYPE | = lv_notif_type | |
| IMPORTING | ||
| RETURN | = lv_return | |
| EXCEPTIONS | ||
| RQ_OBJECT_FOUND = 1 | ||
| NO_RQ_APPROVAL = 2 | ||
| NO_ISR_UPDATE = 3 | ||
| DATABASE_ERROR = 4 | ||
| GENERAL_ERROR = 5 | ||
| . " HRWPC_RQ_CREATE_RQ_OBJECT | ||
ABAP code using 7.40 inline data declarations to call FM HRWPC_RQ_CREATE_RQ_OBJECT
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