RFFMS180 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for This program performs two functions: It enters commitment items into documents (purchase requisitions and purchase orders) which have no account assignment...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 RFFMS180 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.
Selection Text: P_BSTYP = D Puchasing document category
Selection Text: P_FIPOS = D Commitment item
Selection Text: P_WERKS = D Plant
Selection Text: S_BANFN = D Purchase requisition
Selection Text: S_EBELN = D Purchasing document
Title: Program to Supply MM Documents with Commitment Items
Text Symbol: 010 = Document no.
Text Symbol: 020 = Line item
Text Symbol: 030 = Commitment item
Text Symbol: 100 = Purchase orders
Text Symbol: 200 = Purchase requisitions
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
FI_COMPANY_CODE_DATA CALL FUNCTION 'FI_COMPANY_CODE_DATA' EXPORTING I_BUKRS = T001K-BUKRS IMPORTING E_T001 = G_F_T001.
MR_ACCOUNT_ASSIGNMENT CALL FUNCTION 'MR_ACCOUNT_ASSIGNMENT' EXPORTING BEWERTUNGSKLASSE = MBEW-BKLAS BEWERTUNG_MODIF = T001K-BWMOD KONTENPLAN = U_KTOPL SOLL_HABEN_KENNZEICHEN = 'S' VORGANGSSCHLUESSEL = 'BSX' IMPORTING KONTO = L_HKONT EXCEPTIONS not_found_t030 = 1 not_found_t030b = 2 not_found_t030r = 3 not_found_t030s = 4 others = 5.
FM3R_GET_POSIT_FROM_ACCOUNT CALL FUNCTION 'FM3R_GET_POSIT_FROM_ACCOUNT' EXPORTING I_BUKRS = U_BUKRS I_FLG_BUFFER_ALL = 'X' I_SAKNR = L_HKONT IMPORTING E_FIPOS = C_FIPOS.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
RFFMS180 - Program to Supply MM Documents with Commitment Items RFFMS180 - Program to Supply MM Documents with Commitment Items RFFMS162 - Compare Value Date/Posting Date RFFMS162 - Compare Value Date/Posting Date RFFMS160_REV - Identify Funds Balance in Non Balance Sheet Accounts RFFMS160_REV - Identify Funds Balance in Non Balance Sheet Accounts