FDM_P2P_INVOICE_UPDATE is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). Below is the basic information available for this SAP report including which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC. Also check out the submitted Comments related to this SAP report or see any standard documentation available.
If you would like to execute this report or see the full code listing simply enter FDM_P2P_INVOICE_UPDATE into the relevant SAP transactions such as SE38 or SE80
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.
Title: Update of Invoice Number in Promise to Pay
INCLUDE FDM_P2P_INVOICE_UPDATE_TOP . " GLOBAL DATA
INCLUDE FDM_P2P_INVOICE_UPDATE_F01.
No SAP DATABASE tables are accessed within this REPORT code!
FDM_COM_DESTINATION_GET CALL FUNCTION 'FDM_COM_DESTINATION_GET' EXPORTING im_method = 'ATTRIBUTESCHANGE' IMPORTING e_destination = l_destination es_return = ls_return.
BAPI_DISPUTE_ATTRIBUTES_CHANGE CALL FUNCTION 'BAPI_DISPUTE_ATTRIBUTES_CHANGE' DESTINATION l_destination EXPORTING case_guid = ls_dcobj_inv-case_guid_loc IMPORTING return = ls_return TABLES attributes = lt_attributes.
BAPI_DISPUTE_ATTRIBUTES_CHANGE CALL FUNCTION 'BAPI_DISPUTE_ATTRIBUTES_CHANGE' EXPORTING case_guid = ls_dcobj_inv-case_guid_loc IMPORTING return = ls_return TABLES attributes = lt_attributes.
BAPI_TRANSACTION_COMMIT CALL FUNCTION 'BAPI_TRANSACTION_COMMIT' DESTINATION l_destination.
BAPI_TRANSACTION_COMMIT CALL FUNCTION 'BAPI_TRANSACTION_COMMIT' DESTINATION l_destination.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
FDM_P2P_INVOICE_UPDATE - Update of Invoice Number in Promise to Pay FDM_P2P_INVOICE_UPDATE - Update of Invoice Number in Promise to Pay FDM_P2P_CUSTOMER_LIST_TOP - Include FDM_P2P_CUSTOMER_LIST_TOP FDM_P2P_CUSTOMER_LIST_F01 - Include FDM_P2P_CUSTOMER_LIST_F01 FDM_P2P_CUSTOMER_LIST - Customer List - Process Receivables FDM_P2P_CUSTOMER_LIST - Customer List - Process Receivables