DBIDFPLUSFPT 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 DBIDFPLUSFPT 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!
MV_GET_AREA_TO_CONDITION CALL FUNCTION 'MV_GET_AREA_TO_CONDITION' EXPORTING bukrs = vimi01-bukrs swenr = vimi01-swenr smenr = vimi01-smenr dstich = vzzkopo-dguel_kp * FLEIN = ' ' skoart = vzzkopo-skoart i_kz_bezugsflache_if_not_found = 'X' IMPORTING rbezflart = rbezflart EXCEPTIONS no_other_area_for_condition = 1 error_mv_get_area = 2 error_reading_object = 3 OTHERS = 4.
BPAR_R_PARTNER_CHECK CALL FUNCTION 'BPAR_R_PARTNER_CHECK' EXPORTING partner = vzgpo-partnr IMPORTING bp000_entry = bp000 EXCEPTIONS partner = 1 partner_not_released = 2 OTHERS = 3.
MV_GET_AREA CALL FUNCTION 'MV_GET_AREA' EXPORTING bukrs = vimi01-bukrs swenr = vimi01-swenr smenr = vimi01-smenr dstich = loc_dstich i_vimi01 = vimi01 i_viob01 = viob01 IMPORTING rmedat = rmedat EXCEPTIONS areadesc_notfound = 1 areatype_notfound = 2 area_notfound = 3 database_error = 4 me_notfound = 5 OTHERS = 6.
G_SET_CHECK_NAME CALL FUNCTION 'G_SET_CHECK_NAME' EXPORTING setname = par_i_sname.
G_SET_ENCRYPT_SETID CALL FUNCTION 'G_SET_ENCRYPT_SETID' EXPORTING setclass = par_i_setclass shortname = par_i_sname * KOKRS = * KTOPL = IMPORTING setid = par_e_setid.
G_SET_GET_INFO CALL FUNCTION 'G_SET_GET_INFO' EXPORTING * CLASS = ' ' "must be initial if SETID is used * NO_SET_TITLE = ' ' setname = par_e_setid * TABLE = ' ' * USE_TABLE_BUFFER = ' ' * CLIENT = IMPORTING info = par_loc_s_info EXCEPTIONS set_not_found = 1 illegal_field_replacement = 2 OTHERS = 3 .
G_SET_AUTHORITY_CHECK CALL FUNCTION 'G_SET_AUTHORITY_CHECK' EXPORTING actvt = '02' "activity: change authgr = ls_setinfo-authgr EXCEPTIONS OTHERS = 1.
G_SET_FETCH CALL FUNCTION 'G_SET_FETCH' EXPORTING no_authority_check = 'X' setnr = pic_setid IMPORTING set_header = pes_header TABLES set_lines_basic = lt_lines EXCEPTIONS * NO_AUTHORITY = 1 * SET_IS_BROKEN = 2 * SET_NOT_FOUND = 3 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.