FV60C360 is a standard ABAP INCLUDE available within your SAP system (depending on your version and release level). Below is the basic information available for this SAP report including which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC. Also check out the submitted Comments related to this SAP report or see any standard documentation available.
If you would like to execute this report or see the full code listing simply enter FV60C360 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.
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
J_1BSA_COMPONENT_ACTIVE CALL FUNCTION 'J_1BSA_COMPONENT_ACTIVE' EXPORTING BUKRS = VBRK-BUKRS COMPONENT = 'TH' EXCEPTIONS COMPONENT_NOT_ACTIVE = 1 OTHERS = 2.
POPUP_GET_VALUES_DB_CHECKED call function 'POPUP_GET_VALUES_DB_CHECKED' exporting check_existence = 'X' popup_title = sy-title importing returncode = returncode tables fields = xtemp exceptions error_in_fields = 1 others = 2.
CUSTOMIZED_MESSAGE CALL FUNCTION 'CUSTOMIZED_MESSAGE' EXPORTING I_ARBGB = 'F5' I_DTYPE = 'E' I_MSGNR = '883'.
DATE_CHECK_WORKINGDAY CALL FUNCTION 'DATE_CHECK_WORKINGDAY' EXPORTING DATE = D_KURDT FACTORY_CALENDAR_ID = *T001W-FABKL MESSAGE_TYPE = 'W' EXCEPTIONS DATE_AFTER_RANGE = 1 DATE_BEFORE_RANGE = 2 DATE_INVALID = 3 DATE_NO_WORKINGDAY = 4 FACTORY_CALENDAR_NOT_FOUND = 5 MESSAGE_TYPE_INVALID = 6 OTHERS = 7.
READ_EXCHANGE_RATE CALL FUNCTION 'READ_EXCHANGE_RATE' EXPORTING * date = vbrk-fkdat DATE = D_KURDT FOREIGN_CURRENCY = VBRK-WAERK LOCAL_CURRENCY = T001-WAERS TYPE_OF_RATE = VBRK-KURST IMPORTING EXCHANGE_RATE = VBRK-KURRF EXCEPTIONS NO_RATE_FOUND = 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.