FTR_STAV_SET_STATUS is a standard Executable ABAP Report 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 FTR_STAV_SET_STATUS into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
TABR - Settle
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.
Title: Program FTR_STAV_SET_STATUS
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
DEALDATA_READ CALL FUNCTION 'DEALDATA_READ' EXPORTING COMPANYCODE = P_BUKRS DEALNO = P_RFHA IMPORTING DEAL = L_FHA.
FTR_STAV_CHECK_ACTIVITY CALL FUNCTION 'FTR_STAV_CHECK_ACTIVITY' EXPORTING OBJNR = L_FHA-OBJNR VRGNG = 'TABR' * CHECK_ONLY = ' ' EXCEPTIONS ACTIVITY_NOT_ALLOWED = 1 OBJECT_NOT_FOUND = 2 STATUS_INCONSISTENT = 3 STATUS_NOT_ALLOWED = 4 WRONG_INPUT = 5 WARNING_OCCURED = 6 OTHERS = 7.
FTR_STAV_SET_STATUS CALL FUNCTION 'FTR_STAV_SET_STATUS' EXPORTING BUKRS = P_BUKRS RFHA = P_RFHA IMPORTING FLAG_CHANGED = L_CHANGE EXIT_CODE = L_CODE EXCEPTIONS STATUS_NOT_ALLOWED = 1 NO_AUTHORITY = 2 OTHERS = 3.
FTR_STAV_SET_STATUS CALL FUNCTION 'FTR_STAV_SET_STATUS' EXPORTING BUKRS = P_BUKRS RFHA = P_RFHA IMPORTING FLAG_CHANGED = L_CHANGE EXIT_CODE = L_CODE EXCEPTIONS STATUS_NOT_ALLOWED = 1 NO_AUTHORITY = 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.