RNUDIA_LFDBEW_FILL is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Correction Report for Diagnoses that Have Disappeared The error corrected by SAP Note 385026 means that your system contains diagnoses that are not assigned to a movement...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 RNUDIA_LFDBEW_FILL 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.
Selection Text: DELETE = Delete
Selection Text: DISPLAY = Display
Selection Text: FIRSTMVT = Assign to 1st Movement
Selection Text: SE_EINRI = Institution
Selection Text: SE_FALNR = Cases
Selection Text: SE_MOVE0 = Movements with Seq.No.0
Selection Text: SE_MOVEC = Diagnoses for Canceled Mvmts
Selection Text: SE_TESTM = Test Mode
Title: IS-H: Fill NDIA-LFDBEW (SAP Note 384134)
Text Symbol: T01 = Non-Assignable Diagnoses
INCLUDE RNDATA00.
No SAP DATABASE tables are accessed within this REPORT code!
ISH_VERBUCHER_NDIA CALL FUNCTION 'ISH_VERBUCHER_NDIA' EXPORTING tcode = 'RNUDIA_LFDBEW_FILL' upd_icdtxt = upd_icdtxt upd_ndia = 'U' up_date = sy-datum up_time = sy-uzeit TABLES icdtxt = icdtxt xndia = p_xndia yndia = yndia.
ISH_BWART_CHECK CALL FUNCTION 'ISH_BWART_CHECK' EXPORTING ss_einri = p_nbewtab-einri ss_bewty = p_nbewtab-bewty ss_bwart = p_nbewtab-bwart IMPORTING ss_tn14b = tn14b.
ISH_GET_MOVES_FOR_DIAS CALL FUNCTION 'ISH_GET_MOVES_FOR_DIAS' EXPORTING ss_institution = p_einri ss_casenumber = p_falnr ss_drg_category = space TABLES * SS_CASE_MOVEMENTS = p_nbewtab ss_moves_to_choose = moves.
ISH_READ_NFAL CALL FUNCTION 'ISH_READ_NFAL' EXPORTING ss_einri = p_ndia-einri ss_falnr = p_ndia-falnr ss_read_db = on IMPORTING ss_nfal = nfal.
ISH_NPAT_CONCATENATE CALL FUNCTION 'ISH_NPAT_CONCATENATE' EXPORTING ss_patnr = nfal-patnr ss_read_npat = on ss_list = on IMPORTING ss_pname = pname.
ISH_BWART_CHECK CALL FUNCTION 'ISH_BWART_CHECK' EXPORTING ss_einri = p_nbew_tab-einri ss_bewty = p_nbew_tab-bewty ss_bwart = p_nbew_tab-bwart IMPORTING ss_bwatx = bwatx.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
RNUDIA_LFDBEW_FILL - IS-H: Fill NDIA-LFDBEW (SAP Note 384134) RNUDIA_LFDBEW_FILL - IS-H: Fill NDIA-LFDBEW (SAP Note 384134) RNUDIA_BEW_STORN - IS-H: Cancel Diagnoses for Canceled Movements RNUDIA_BEW_STORN - IS-H: Cancel Diagnoses for Canceled Movements RNUDIAGUPPER - IS-H: Change Lower Case Letters in Diagnosis Code to Upper Case RNUDIAGUPPER - IS-H: Change Lower Case Letters in Diagnosis Code to Upper Case