IBSFC_SAVE 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 IBSFC_SAVE 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.
Title: Include IBSFC_SAVE
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
BSFC_WRITE_APPLICATION CALL FUNCTION 'BSFC_WRITE_APPLICATION' EXPORTING i_application = tbsfc003-application i_application_name = tbsfc003t-name.
VIEW_MARK_WRITE CALL FUNCTION 'VIEW_MARK_WRITE' EXPORTING objname = 'SFCMT' begin = 'X' objtype = 'T'.
VIEW_MARK_WRITE CALL FUNCTION 'VIEW_MARK_WRITE' EXPORTING objname = 'SFCMT' begin = ' ' objtype = 'T'.
BSFC_WRITE_QUESEQ CALL FUNCTION 'BSFC_WRITE_QUESEQ' EXPORTING i_application = tbsfc000-application i_queseq = tbsfc000-queseq i_version = tbsfc000-version i_active = tbsfc000-active i_name = tbsfc000t-queseqn i_newv = p_newv i_no_unknown = tbsfc000-no_unknown IMPORTING e_timestamp = tbsfc000-changetime.
BSFC_DELETE_QUESTION CALL FUNCTION 'BSFC_DELETE_QUESTION' EXPORTING i_application = tbsfc000-application i_queseq = tbsfc000-queseq i_version = tbsfc000-version i_language = sy-langu.
BSFC_WRITE_QUESTION CALL FUNCTION 'BSFC_WRITE_QUESTION' EXPORTING i_application = tbsfc000-application i_queseq = tbsfc000-queseq i_version = tbsfc000-version i_newv = p_newv TABLES t_question = lt_ques_ext t_imp_question = lt_imp_question.
BSFC_DELETE_INFOTEXT CALL FUNCTION 'BSFC_DELETE_INFOTEXT' EXPORTING application = tbsfc000-application queseq = tbsfc000-queseq version = tbsfc000-version question = ls_infotext-question EXCEPTIONS OTHERS = 2.
BSFC_WRITE_INFOTEXT CALL FUNCTION 'BSFC_WRITE_INFOTEXT' EXPORTING application = tbsfc000-application queseq = tbsfc000-queseq version = tbsfc000-version question = ls_infotext-question TABLES t_text = ls_infotext-text.
BSFC_GET_INFOTEXT CALL FUNCTION 'BSFC_GET_INFOTEXT' EXPORTING application = tbsfc000-application queseq = tbsfc000-queseq version = lv_version question = ls_question-question TABLES ct_text = ls_infotext-text EXCEPTIONS no_text_found = 1 OTHERS = 2.
BSFC_WRITE_INFOTEXT CALL FUNCTION 'BSFC_WRITE_INFOTEXT' EXPORTING application = tbsfc000-application queseq = tbsfc000-queseq version = tbsfc000-version question = ls_question-question TABLES t_text = ls_infotext-text.
BSFC_COPY_INFOTEXT * CALL FUNCTION 'BSFC_COPY_INFOTEXT' * EXPORTING * from_application = tbsfc000-application * from_queseq = tbsfc000-queseq * from_version = lv_old_version * from_question = ls_question-question * to_application = tbsfc000-application * to_queseq = tbsfc000-queseq * to_version = tbsfc000-version * to_question = ls_question-question.
BSFC_DELETE_ANSWER CALL FUNCTION 'BSFC_DELETE_ANSWER' EXPORTING i_application = tbsfc000-application i_queseq = tbsfc000-queseq i_version = tbsfc000-version i_language = sy-langu.
BSFC_WRITE_ANSWER CALL FUNCTION 'BSFC_WRITE_ANSWER' EXPORTING i_application = tbsfc000-application i_queseq = tbsfc000-queseq i_version = tbsfc000-version i_newv = p_newv TABLES t_answer = lt_answ_ext t_imp_question = lt_imp_question.
COMMIT_TEXT CALL FUNCTION 'COMMIT_TEXT' EXPORTING object = 'BSFC' id = '0001' language = '*' savemode_direct = 'X' keep = 'X' TABLES t_name = lt_name.
BSFC_KEY_GET CALL FUNCTION 'BSFC_KEY_GET' TABLES t_tbsfc000 = lt_tbsfc000 t_l_tabkey000 = l_tabkey000.
TR_OBJECT_INSERT CALL FUNCTION 'TR_OBJECT_INSERT' EXPORTING wi_ko200 = gs_ko200 IMPORTING we_order = ev_order TABLES wt_e071k = lt_e071k EXCEPTIONS cancel_edit_other_error = 1 show_only_other_error = 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.