SDV03V01 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for The program 'Backorder processing - sales' automatically carries out an availability check for the documents it selects...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.
If you would like to execute this report or see the full code listing simply enter SDV03V01 into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
V_V1 - Updating Unconfirmed Sales Documents
This report can be called from another progam/report simply by using the ABAP SUBMIT statement, see below for example ABAP code snipts of how to do this.
Selection Text: P_ORDERS = All sales document types
Selection Text: P_VKORG = Sales organization
Selection Text: P_VTWEG = Distribution channel
Selection Text: S_ERDAT = Created on
Selection Text: S_ERNAM = Created by
Selection Text: S_KUNNR = Customer
Selection Text: S_SPART = Division
Selection Text: S_VBELN = Document number
Selection Text: S_VKBUR = Sales office
Selection Text: S_VKGRP = Sales group
Title: Updating backorders in Sales: Unconfirmed Documents
Text Symbol: 001 = There are no unconfirmed transactions for the criteria you have entered.
Text Symbol: 002 = The Following Errors Occurred During Processing
Text Symbol: 003 = Document
Text Symbol: 004 = Error message
Text Symbol: 005 = The Followng Docs Have Been Checked (No Errors) and Saved
Text Symbol: 006 = All documents selected will
Text Symbol: 007 = be changed. Continue?
Text Symbol: 008 = Updating backorders in sales
Text Symbol: 009 = Output Class
INCLUDE RVDIREKT.
No SAP DATABASE tables are accessed within this REPORT code!
POPUP_TO_CONFIRM_STEP CALL FUNCTION 'POPUP_TO_CONFIRM_STEP' "#EC * EXPORTING defaultoption = 'N' textline1 = da_text1 textline2 = da_text2 titel = text-008 IMPORTING answer = da_answer.
SD_SALES_DOCUMENT_READ CALL FUNCTION 'SD_SALES_DOCUMENT_READ' EXPORTING document_number = xtab-vbeln IMPORTING evbak = vbak evbakkom = vbakkom EXCEPTIONS error_message = 01.
SD_SALES_DOCUMENT_PERFORM CALL FUNCTION 'SD_SALES_DOCUMENT_PERFORM' EXPORTING in_program = 'SAPFV45K' perform = 'KREDITLIMIT_PRUEFEN_BEI_CALL' EXCEPTIONS error_message = 01.
SD_SALES_HEADER_READ CALL FUNCTION 'SD_SALES_HEADER_READ' IMPORTING evbak = vbak.
SD_SALES_DOCUMENT_PERFORM CALL FUNCTION 'SD_SALES_DOCUMENT_PERFORM' EXPORTING in_program = 'SAPMV45A' perform = 'FCODE_BVFP' EXCEPTIONS error_message = 01.
SD_SALES_DOCUMENT_SAVE CALL FUNCTION 'SD_SALES_DOCUMENT_SAVE' EXPORTING synchron = charx IMPORTING evbak = vbak EXCEPTIONS error_message = 01.
REUSE_ALV_LIST_DISPLAY CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY' EXPORTING i_callback_program = gv_repid is_layout = ls_layout it_fieldcat = lt_fieldcat it_events = lt_events TABLES t_outtab = gt_output_mess1 EXCEPTIONS program_error = 1 OTHERS = 2.
REUSE_ALV_EVENTS_GET CALL FUNCTION 'REUSE_ALV_EVENTS_GET' EXPORTING i_list_type = 0 IMPORTING et_events = xt_events.
REUSE_ALV_FIELDCATALOG_MERGE CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING i_program_name = gv_repid i_structure_name = gc_stuct1 CHANGING ct_fieldcat = xt_fieldcat EXCEPTIONS inconsistent_interface = 1 program_error = 2 OTHERS = 3.
REUSE_ALV_FIELDCATALOG_MERGE CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING i_program_name = gv_repid i_structure_name = gc_stuct2 CHANGING ct_fieldcat = xt_fieldcat EXCEPTIONS inconsistent_interface = 1 program_error = 2 OTHERS = 3.
REUSE_ALV_COMMENTARY_WRITE CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE' EXPORTING it_list_commentary = gt_top_of_page.
REUSE_ALV_LIST_DISPLAY CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY' EXPORTING i_callback_program = gv_repid is_layout = ls_layout it_fieldcat = lt_fieldcat it_events = lt_events TABLES t_outtab = gt_output_error EXCEPTIONS program_error = 1 OTHERS = 2.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
SDV03V01 - Updating backorders in Sales: Unconfirmed Documents SDV03V01 - Updating backorders in Sales: Unconfirmed Documents SDV03R02 - Rescheduling of sales and stock transfer documents: Evaluation SDV03R02 - Rescheduling of sales and stock transfer documents: Evaluation SDV03R01 - List backorders in sales SDV03R01 - List backorders in sales