SAP Reports / Programs

RWBILL SAP ABAP Report - Program RWBILL







RWBILL is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for BRF events of PSCD can be tested with this report...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 RWBILL into the relevant SAP transactions such as SE38 or SE80


Transaction Code(s):

Below is a list of transaction codes which are relevant to this SAP report

RWBILL - Billing


ABAP code to call this SAP report using the submit statement

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.






SUBMIT RWBILL. "Basic submit
SUBMIT RWBILL AND RETURN. "Return to original report after report execution complete
SUBMIT RWBILL VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Selection Text: ABTYP = Submission Type
Selection Text: DEL = Delete Document Again
Selection Text: DSP = Display Document
Selection Text: GPART = Business Partner
Selection Text: MSG = Display Messages
Selection Text: PERSL = Period Key
Selection Text: PRT = Print Display
Selection Text: PSOBKEY = Contract Object
Selection Text: TRC = Display BRF Trace
Selection Text: VKONT = Contract Account
Selection Text: XSIMU = Simulate
Title: Program RWBILL


INCLUDES used within this REPORT RWBILL

No INCLUDES are used within this REPORT code!


TABLES used within REPORT and the associated SELECT statement:





No SAP DATABASE tables are accessed within this REPORT code!


Function Modules used within report and the associated call statement:

BRF_TRACE_START_TOOLBOX * CALL FUNCTION 'BRF_TRACE_START_TOOLBOX' * EXPORTING * iv_applclass = 'RAODPRICING'.

FMCA_REVTYPE_READ CALL FUNCTION 'FMCA_REVTYPE_READ' EXPORTING i_abtyp = abtyp IMPORTING e_fmca_revtype = ls_revtype.

FMCA_BRFEVENT_SELECT CALL FUNCTION 'FMCA_BRFEVENT_SELECT' EXPORTING i_abtyp = ls_revtype-abtyp i_persl = persl TABLES t_fmca_brfevent = lt_brfevent EXCEPTIONS not_found = 1.

BRF_TRACE_START_TOOLBOX CALL FUNCTION 'BRF_TRACE_START_TOOLBOX' EXPORTING iv_applclass = ls_brfevent-applclass.

FMCA_BILLING_OBJECT_BASED CALL FUNCTION 'FMCA_BILLING_OBJECT_BASED' EXPORTING i_dpsob_bp_acc = is_dpsob_bp_acc i_fkkvkp = is_fkkvkp it_fkkvk = lt_fkkvk it_dpsob = lt_dpsob irt_revtype = lrt_revtype irt_persl = lrt_persl is_standard = ls_standard i_simulation = xsimu i_bill = 'X' IMPORTING et_billdoc = lt_billdoc CHANGING ct_return = lt_return "e_trc = e_trc EXCEPTIONS invalid_period = 1 OTHERS = 2.

BRF_TRACE_DISPLAY CALL FUNCTION 'BRF_TRACE_DISPLAY'.

CONVERSION_EXIT_ALPHA_INPUT CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT' EXPORTING input = billdocno IMPORTING output = srcdocno.



Contribute (Add Comments)

Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.







The contribute/comments section below therefore offer's an opportunity for anyone to add additional information. This can be anything from useful hints, tips and screen shots to relevant SAP notes or anything else you feel is relevant to this report.

This will then be available for everyone to easily find by simply searching on the report name RWBILL or its description.