SAP RV_REQUIREMENT_MODIFY Function Module for Change data division of sales requirements records
RV_REQUIREMENT_MODIFY is a standard rv requirement modify SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Change data division of sales requirements records 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 rv requirement modify FM, simply by entering the name RV_REQUIREMENT_MODIFY into the relevant SAP transaction such as SE37 or SE38.
Function Group: V03V
Program Name: SAPLV03V
Main Program: SAPLV03V
Appliation area: V
Release date: 02-Feb-1994
Mode(Normal, Remote etc): Normal Function Module
Update:

Function RV_REQUIREMENT_MODIFY 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 'RV_REQUIREMENT_MODIFY'"Change data division of sales requirements records.
EXPORTING
POSITION = "
TABLES
BVBBD = "Table with Changed Data
AVBBD = "
IMPORTING Parameters details for RV_REQUIREMENT_MODIFY
POSITION -
Data type: VBAP-POSNROptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for RV_REQUIREMENT_MODIFY
BVBBD - Table with Changed Data
Data type: BV03VOptional: No
Call by Reference: No ( called with pass by value option)
AVBBD -
Data type: BV03VOptional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for RV_REQUIREMENT_MODIFY 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_bvbbd | TYPE STANDARD TABLE OF BV03V, " | |||
| lv_position | TYPE VBAP-POSNR, " | |||
| lt_avbbd | TYPE STANDARD TABLE OF BV03V. " |
|   CALL FUNCTION 'RV_REQUIREMENT_MODIFY' "Change data division of sales requirements records |
| EXPORTING | ||
| POSITION | = lv_position | |
| TABLES | ||
| BVBBD | = lt_bvbbd | |
| AVBBD | = lt_avbbd | |
| . " RV_REQUIREMENT_MODIFY | ||
ABAP code using 7.40 inline data declarations to call FM RV_REQUIREMENT_MODIFY
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 POSNR FROM VBAP INTO @DATA(ld_position). | ||||
Search for further information about these or an SAP related objects