RGJVBUP2 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Updating old billing extracts for new and modified fields in billing structures T8JVB03 and T8JVB26...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 RGJVBUP2 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: S_VENTRE = Venture
Selection Text: P_YEAR2 = To Year
Selection Text: P_YEAR1 = From Year
Selection Text: P_PER2 = To Period
Selection Text: P_PER1 = From Period
Selection Text: P_COMPNY = Company
Title: Change report for jvbx
Text Symbol: 034 = Warning: Supplemental indicator was
Text Symbol: 033 = Temporary area = t9
Text Symbol: 032 = Temporary area = t8
Text Symbol: 031 = Temporary area = t7
Text Symbol: 030 = Temporary area = t6
Text Symbol: 029 = Temporary area = t5
Text Symbol: 028 = Temporary area = t4
Text Symbol: 027 = Temporary area = t3
Text Symbol: 026 = Temporary area = t2
Text Symbol: 025 = Temporary area = t1
Text Symbol: 024 = Unknown release:
Text Symbol: 023 = Error in getting release for field length:
Text Symbol: 022 = Fail to import directory from table jvbx.
Text Symbol: 021 = Fail to read table dirtab for field length.
Text Symbol: 020 = is unknown
Text Symbol: 019 = Type of extract (Relid):
Text Symbol: 018 = Process Completed.
Text Symbol: 017 = Error in exporting data to jvbx. RELEASE =
Text Symbol: 016 = in jvbx. RELEASE =
Text Symbol: 015 = Error in exporting data to temporary work area
Text Symbol: 014 = Release =
Text Symbol: 013 = Error in importing data from jvbx to internal table.
Text Symbol: 012 = relid
Text Symbol: 011 = : The current release has unknown
Text Symbol: 010 = Release
Text Symbol: 009 = Error in form get_dir.
Text Symbol: 008 = Srtfd =
Text Symbol: 007 = Company
Text Symbol: 006 = To period
Text Symbol: 005 = From period
Text Symbol: 004 = To year
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
JV_AUTHORITY_CHECK_REP CALL FUNCTION 'JV_AUTHORITY_CHECK_REP' EXPORTING ACTIVITY = 'A5' BUKRS = P_COMPNY.
VALIDATE_YEAR CALL FUNCTION 'VALIDATE_YEAR' EXPORTING I_YEAR = P_YEAR1 IMPORTING E_VALID = FLD_VALID_YEAR EXCEPTIONS INCOMPLETE = 1.
JV_COLLECT_MESSAGE CALL FUNCTION 'JV_COLLECT_MESSAGE' EXPORTING MSGID = 'GJ' MSGNO = '743' STATUS = 'E' IMPORTING MAX_SEVERITY = FLD_MAX_SEVERITY.
VALIDATE_PERIOD CALL FUNCTION 'VALIDATE_PERIOD' EXPORTING I_PERIOD = P_PER1 IMPORTING E_VALID = FLD_VALID_PERIOD EXCEPTIONS INCOMPLETE.
JV_COLLECT_MESSAGE CALL FUNCTION 'JV_COLLECT_MESSAGE' EXPORTING MSGID = 'GJ' MSGNO = '671' STATUS = 'E' IMPORTING MAX_SEVERITY = FLD_MAX_SEVERITY.
JV_INITIALISE_MESSAGE CALL FUNCTION 'JV_INITIALISE_MESSAGE'.
JV_COLLECT_MESSAGE CALL FUNCTION 'JV_COLLECT_MESSAGE' EXPORTING MSGID = 'G4' MSGNO = '628' STATUS = 'E' IMPORTING MAX_SEVERITY = FLD_MAX_SEVERITY.
JV_WRITE_MESSAGE CALL FUNCTION 'JV_WRITE_MESSAGE' EXPORTING SORT_ORDER = '1'.
REPORT_END CALL FUNCTION 'REPORT_END'.
JV_COLLECT_MESSAGE CALL FUNCTION 'JV_COLLECT_MESSAGE' EXPORTING MSGID = 'GJ' MSGNO = '731' STATUS = 'E' IMPORTING MAX_SEVERITY = FLD_MAX_SEVERITY.
CONVERSION_EXIT_KONPR_INPUT CALL FUNCTION 'CONVERSION_EXIT_KONPR_INPUT' EXPORTING INPUT = IN_AFENUM IMPORTING OUTPUT = TEMP_AFENUM EXCEPTIONS OTHERS = 1.
K_POSID_OBJECT_KEY_GET CALL FUNCTION 'K_POSID_OBJECT_KEY_GET' EXPORTING PSPNR = TEMP_AFENUM IMPORTING OBJNR = OUT_AFENUM EXCEPTIONS OTHERS = 1.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.