SAPDBBUD is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for The logical database 'BUD' allows read access to all existing loans and to all the postings stored for each loan...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 SAPDBBUD 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: BUKRS = Company code
Selection Text: RANL = Loan number
Selection Text: SO_GSART = Product type
Selection Text: SO_RBEAR = Entered by
Selection Text: SO_REFKO = Acct assignment ref.
Selection Text: SO_STITE = Loan type
Selection Text: SO_WHR = Contract Currency
Title: Access to log.database 'BUD'
Text Symbol: BL1 = General selections
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
TRANSACTION_LOAN_LOAD * CALL FUNCTION 'TRANSACTION_LOAN_LOAD' " Belegarchivierung Kötz 010202 * EXPORTING * bukrs = vdarl-bukrs * p_i_type = 'I' " keine BEPP's * ranl = vdarl-ranl * sanlf = vdarl-sanlf * TABLES * yvdbeki = rvdbeki * yvdbepi = rvdbepi * yvdbepp = rvdbepp * EXCEPTIONS * OTHERS = 01.
LOAN_FLOWS_SUPPLY CALL FUNCTION 'LOAN_FLOWS_SUPPLY' " Belegarchivierung Kötz 010202 EXPORTING i_bukrs = vdarl-bukrs i_ranl = vdarl-ranl read_scheduled_records = ' ' " no scheduled records (VDBEPP) * READ_POSTED_RECORDS = 'X' * NO_STORNO = ' ' * READ_TRDC_REC = ' ' * I_TECH_RECORDS_CREATE = 'X' * I_DVALUT_UNTIL = '99991231' TABLES o_vdbeki = rvdbeki o_vdbepi = rvdbepi o_arc_doc_rec = rvdarc_doc_rec o_vdbepp = rvdbepp.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.