SAP Reports / Programs | Real Estate Management | Flexible Real Estate Management | Land Use Management(RE-FX-LM) SAP RE

RFRELM_FILL_NOTE_ASSMNT_IDOC SAP ABAP Report - Fill an IDoc for NoteAssessmentREFX.Create







RFRELM_FILL_NOTE_ASSMNT_IDOC is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for This report creates an IDoc record (business object NoteAssessmentREFX) for a notice of assessment...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 RFRELM_FILL_NOTE_ASSMNT_IDOC into the relevant SAP transactions such as SE38 or SE80


ABAP code to call this SAP report using the submit statement

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.






SUBMIT RFRELM_FILL_NOTE_ASSMNT_IDOC. "Basic submit
SUBMIT RFRELM_FILL_NOTE_ASSMNT_IDOC AND RETURN. "Return to original report after report execution complete
SUBMIT RFRELM_FILL_NOTE_ASSMNT_IDOC VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Selection Text: P_NANO = D .
Title: Fill an IDoc for NoteAssessmentREFX.Create
Text Symbol: 001 = Select Notice of Assessment for Which IDoc Will Be Created
Text Symbol: E00 = Error: Notice of assessment does not exist.
Text Symbol: E01 = IDoc was created successfully.


INCLUDES used within this REPORT RFRELM_FILL_NOTE_ASSMNT_IDOC

No INCLUDES are used within this REPORT code!


TABLES used within REPORT and the associated SELECT statement:





No SAP DATABASE tables are accessed within this REPORT code!


Function Modules used within report and the associated call statement:

CONV_TO_RE_NOTE_ASSMNT CALL FUNCTION 'CONV_TO_RE_NOTE_ASSMNT' EXPORTING bapi_re_note_assmnt_int = ls_bus_object_int CHANGING bapi_re_note_assmnt = ls_bapi_bus_object.

RELM_API_NA_VALUE_GET CALL FUNCTION 'RELM_API_NA_VALUE_GET' EXPORTING io_notice_assessment = lo_bus_object IMPORTING et_na_value = lt_na_value_int et_text = lt_text_int.

CONV_TO_RE_T_NA_VALUE_DAT CALL FUNCTION 'CONV_TO_RE_T_NA_VALUE_DAT' TABLES it_bapi_re_na_value_int = lt_na_value_int et_bapi_re_na_value_dat = lt_na_value_dat.

CONV_TO_RE_T_TEXT_DAT CALL FUNCTION 'CONV_TO_RE_T_TEXT_DAT' TABLES it_bapi_re_text_int = lt_text_int et_bapi_re_text_dat = lt_text_dat.

REBP_API_PARTNER_GET CALL FUNCTION 'REBP_API_PARTNER_GET' EXPORTING io_has_partner = lo_bus_object IMPORTING et_partner = lt_partner_int.

CONV_TO_RE_T_PARTNER_DAT CALL FUNCTION 'CONV_TO_RE_T_PARTNER_DAT' TABLES it_bapi_re_partner_int = lt_partner_int et_bapi_re_partner_dat = lt_partner_dat.

REBD_API_OBJ_ASSIGN_GET CALL FUNCTION 'REBD_API_OBJ_ASSIGN_GET' EXPORTING io_has_obj_assign = lo_bus_object IMPORTING et_obj_assign = lt_obj_assign_int.

CONV_TO_RE_T_OBJ_ASSIGN_DAT CALL FUNCTION 'CONV_TO_RE_T_OBJ_ASSIGN_DAT' TABLES it_bapi_re_obj_assign_int = lt_obj_assign_int et_bapi_re_obj_assign_dat = lt_obj_assign_dat.

RECA_API_RESUBM_RULE_GET CALL FUNCTION 'RECA_API_RESUBM_RULE_GET' EXPORTING io_has_resubm = lo_bus_object IMPORTING et_resubm_rule = lt_resubm_rule_int.

CONV_TO_RE_T_RESUBM_RULE_DAT CALL FUNCTION 'CONV_TO_RE_T_RESUBM_RULE_DAT' TABLES it_bapi_re_resubm_rule_int = lt_resubm_rule_int et_bapi_re_resubm_rule_dat = lt_resubm_rule_dat.

RECA_API_STATUS_GET CALL FUNCTION 'RECA_API_STATUS_GET' EXPORTING io_has_status = lo_bus_object IMPORTING et_status = lt_status_int.

CONV_TO_RE_T_STATUS_DAT CALL FUNCTION 'CONV_TO_RE_T_STATUS_DAT' TABLES it_bapi_re_status_int = lt_status_int et_bapi_re_status_dat = lt_status_dat.

ALE_RE_NA_CREATE CALL FUNCTION 'ALE_RE_NA_CREATE' EXPORTING noticeassessmentnumberext = ls_bapi_bus_object-notice_assessment_number noticeassessment = ls_bapi_bus_object_dat testrun = 'X' TABLES navalue = lt_na_value_dat partner = lt_partner_dat objassign = lt_obj_assign_dat text = lt_text_dat resubmrule = lt_resubm_rule_dat status = lt_status_dat * EXTENSIONIN = receivers = lt_receiver EXCEPTIONS error_creating_idocs = 1 OTHERS = 2.



Contribute (Add Comments)

Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.







The contribute/comments section below therefore offer's an opportunity for anyone to add additional information. This can be anything from useful hints, tips and screen shots to relevant SAP notes or anything else you feel is relevant to this report.

This will then be available for everyone to easily find by simply searching on the report name RFRELM_FILL_NOTE_ASSMNT_IDOC or its description.