J_3RFZDB_PDF is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Using the program J_3RFZDB in accordance with the legislation conditions, you can print payment requests for: normal customer invoice document down payment requests (BKPF-BSTAT = S, BSEG-UMSKZ = F) parked document (BKPF-BSTAT = V) Printing is carried out: on an open item or on already cleared/paid document (if the clearing date is specified on the selection screen) on documents in a currency specified on the selection screen in the currency other than the document currency (if the Payment currency field is defined on the selection screen) The program uses the F110_RU_PLATTREB standard form or J_3RFPLTR form (Add-on FI/LO for Russia)...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 J_3RFZDB_PDF into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
J3RFZDBPDF - Print Payment Orders (Russia)
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: DOKUMENT = Document number
Selection Text: DOWNPAY = Process prepayment orders
Selection Text: D_WAERS = Document currency
Selection Text: FORMULAR = Layout set
Selection Text: IMMEDIAT = Print immediately
Selection Text: NEWSPOOL = New spool request
Selection Text: NORMAL = Process standart documents
Selection Text: NUMBCOPY = Number of copies
Selection Text: PRELIM = Process prelim. posted doc.
Selection Text: PREVIEW = Print preview
Selection Text: PRINTER = Printer
Selection Text: P_WAERS = Payment currency
Selection Text: SPOOLNAM = Spool name
Selection Text: SUFFIX1 = Spool suffix 1
Selection Text: SUFFIX2 = Spool suffix 2
Title: Print Payment Orders (Russia)
Text Symbol: 956 = tyin
Text Symbol: 955 = tenge
Text Symbol: 954 = kopeyki
Text Symbol: 953 = kopeek
Text Symbol: 952 = kopeyka
Text Symbol: 951 = kop.
Text Symbol: 950 = grn.
Text Symbol: 948 = VAT
Text Symbol: 947 = ,
Text Symbol: 946 = =
Text Symbol: 944 = -
Text Symbol: 001 = Non-taxable
Text Symbol: 002 = Including VAT 0%- 0-00
Text Symbol: 003 = /
Text Symbol: 004 = by post
Text Symbol: 005 = by cable
Text Symbol: 006 = electronic
Text Symbol: 007 = w-o accept
Text Symbol: 008 = with accep
Text Symbol: 009 = 5
Text Symbol: 010 = (
Text Symbol: 011 = )
INCLUDE J_3RFPAYM.
No SAP DATABASE tables are accessed within this REPORT code!
CONVERT_TO_LOCAL_CURRENCY CALL FUNCTION 'CONVERT_TO_LOCAL_CURRENCY' EXPORTING DATE = SY-DATUM FOREIGN_AMOUNT = REGD-WRBTR FOREIGN_CURRENCY = BKPF-WAERS LOCAL_CURRENCY = PAR_WAERS * RATE = 0 * TYPE_OF_RATE = 'M' IMPORTING * exchange_rate = LOCAL_AMOUNT = REGD-WRBTR * foreign_factor = * local_factor = * exchange_ratex = EXCEPTIONS NO_RATE_FOUND = 1 OVERFLOW = 2 NO_FACTORS_FOUND = 3 NO_SPREAD_FOUND = 4 OTHERS = 5.
SPELL_AMOUNT CALL FUNCTION 'SPELL_AMOUNT' EXPORTING AMOUNT = REGD-WRBTR " regd-sdmbt CURRENCY = REGH-WAERS FILLER = ' ' LANGUAGE = LANG IMPORTING IN_WORDS = SPELL EXCEPTIONS NOT_FOUND = 1 TOO_LARGE = 2 OTHERS = 3.
FP_JOB_OPEN CALL FUNCTION 'FP_JOB_OPEN' CHANGING ie_outputparams = gv_fp_outputparams EXCEPTIONS cancel = 1 usage_error = 2 system_error = 3 internal_error = 4 OTHERS = 5.
FP_JOB_CLOSE CALL FUNCTION 'FP_JOB_CLOSE' IMPORTING e_result = ls_sfpjoboutput EXCEPTIONS usage_error = 1 system_error = 2 internal_error = 3 OTHERS = 4.
PRELIMINARY_POSTING_DOC_READ CALL FUNCTION 'PRELIMINARY_POSTING_DOC_READ' EXPORTING BELNR = BKPF-BELNR BUKRS = KNB1-BUKRS GJAHR = BKPF-GJAHR TABLES T_VBKPF = HVBKPF T_VBSEC = HVBSEC T_VBSEG = HVBSEG T_VBSET = HVBSET EXCEPTIONS DOCUMENT_LINE_NOT_FOUND = 1 DOCUMENT_NOT_FOUND = 2 OTHERS = 3.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
J_3RFZDB_PDF - Print Payment Orders (Russia) J_3RFZDB_PDF - Print Payment Orders (Russia) J_3RFVATSDTOP - TOP-include for J_3RFVATSD (Russia: VAT for goods in transit) J_3RFVATSDSEL - Selection-screens for J_3RFVATSD (Russia: VAT for goods in transit) J_3RFVATSDF01 - Subroutines for J_3RFVATSD (Russia: VAT for goods in transit) J_3RFVATSDEVE - Events of J_3RFVATSD (Russia: VAT for goods in transit)