SAP_COLLECTOR_FOR_PERFMONITOR dumping MEMORY_NO_MORE_PAGING

Dear friends,
In one of our BW production system, 2 instance of hourly job SAP_COLLECTOR_FOR_PERFMONITOR is dumping MEMORY_NO_MORE_PAGING.
I have already checked this thread :
MEMORY_NO_MORE_PAGING
But I am unable to find out the reason and also i do not find any Moni Key in abap dump. Please suggest.
PART OF ABAP DUMP :
   40          SEGMT     = SEGMT.
   41 *     exceptions
   42 *          others       = 1.
   43
   44 EXPORT TS    TO MEMORY ID 'RSORAT2M'.
   45 EXPORT TD110 TO MEMORY ID 'RSORAT4M'.
>>>>> EXPORT SEGMT TO MEMORY ID 'RSORAT6M'.
   47
   48 * INCLUDE rsorat0b.       T.S. 11/96
   49 * INCLUDE rsorat0m.       T.S. 11/96
   50 * INCLUDE rsorat0f.       T.S. 11/96
   51 *INCLUDE RSORAT2F.
thanks
ashish

Hello friends,
Of-Course MEMORY_NO_MORE_PAGING is a memory dump and it can be avoided if i increage paging sizes. We have smaller value for this parameter and I am not convinced if it is required now to increase it. This was working nicely sometime back.
So, When we say we have abap statement EXPORT which is causing MEMORY_NO_MORE_PAGING. But the same abap statement was working fine sometime back and we did not had this problem. So i assume if there is something like large number of history records as per SAP Note 713211 is troubling us.
Now, i want to findout what is causing so much of memory requirement & page files.
We also get similar dumo when we manually try to perform DB Checks & update histories with transaction DB02OLD. This is the same this what Collector Job also doing and dumping.
Any new suggestion please..
thanks
ashish

Similar Messages

  • ABAP dump:- Memory_No_More_Paging

    Please let me know the exact reason for occurence of ABAP dump:-> Memory_No_More_Paging in ECC 6 system...

    Hi,
    You have to analyse ST02 and adjust the appropriate parameters and also refer SAP OSS note 619876 and 88416 for more information.
    Use the below links....
    ABAP runtime error (  MEMORY_NO_MORE_PAGING  - Paging Area Dump)
    http://sap.ittoolbox.com/groups/technical-functional/sap-basis/memory_no_more_paging-urgent-205968
    With Regards,
    Krishna.

  • MEMORY_NO_MORE_PAGING dump in LCEI0F6O

    Hi Experts,
    When i run a background job for a zprogram automatically another job is getting triggered and it is getting cancelled after some time. When i check the Job log i saw the dump
    MEMORY_NO_MORE_PAGING in the iinclude LCEI0F6O of SAPLCEI0
    Short text says "SAP paging overflow when storing data in the ABAP/4 memory"
    and soucre code extract shows dump at the "Clear Statement"
       49   EXPORT
       50          multi_lingual
       51          mi
       52          wi
       53          anw
       54          gt_ghcl
       55          TO MEMORY ID gs_memory_id.
       56
    >>>>>   CLEAR gs_memory_id-memid.
       58
       59   EXPORT gv_actual_memory_id
       60          gt_memory
       61          TO MEMORY ID gs_memory_id.
    Please suggest me in correcting the above dump
    Thank you,
    Kavya

    Hi,
    It is not problem in standarad program, but it in zprogram problem. When you export data to memory it has some limitation parameter to limit the maximum data to store. when your zprogram run it try to store more data in to application server memory and it not allow to store the maximum due to limit it.
    In your porgram you are reading large amount of data. Don't read all data at all but you do the modification in your program to read data partially and process it. do the same for may time but don't forget to refresh or free the memory of internal table which is store unnecessary data.

  • Abap program causing MEMORY_NO_MORE_PAGING

    Please help me to crack the code, which is causing the dump MEMORY_NO_MORE_PAGING.
    ============================================================
    report AQA0ZFINAPP=====ZFINAPP_ARINV=
       line-size 255 no standard page heading line-count 000(001).
    include <symbol>.
    include <icon>.
    selection-screen: begin of block prog
                               with frame title text-f58.
    tables BKPF.
    data %count-BKPF(4) type x.
    data %linr-BKPF(2).
    tables BSEG.
    data %count-BSEG(4) type x.
    data %linr-BSEG(2).
    tables T001.
    data %count-T001(4) type x.
    data %linr-T001(2).
    tables aqldb.
    include rsaqexcd.
    data: begin of %st_liste occurs 100,
              head(1),
              tab(3),
              line(6) type n,
              cont(1) type n,
              fint(1),
              finv(1),
              fcol(1) type n,
              text(0255),
          end of %st_liste.
    data %data_selected(1).
    data %glframe(1)  value 'X' .
    data %uflag(1).
    data %ustflag(1).
    data %grst_text(255).
    data %glline type i.
    data %tabix like sy-tabix.
    data %prflag(1) type x value '02'.
    data: %textpool_read(1),
          %textpool_langu type textpool occurs 0,
          %textpool_langu_line type textpool.
    data: %txt1        type textpool-entry,
           %txt2        type textpool-entry,
           %txt3        type textpool-entry,
           %txtkey      type textpool-key,
           %txt_unknown type textpool-entry value 'UNKNOWN TEXT'.
    data TEXT_BKPF_BLART like T003T-LTEXT.
    data TEXT_BKPF_BUKRS like T001-BUTXT.
    data TEXT_BKPF_USNAM like ADDR3_VAL-NAME_TEXT.
    data TEXT_BSEG_BUKRS like T001-BUTXT.
    data TEXT_BSEG_KUNNR like KNA1-NAME1.
    data TEXT_BSEG_SEGMENT like FAGL_SEGMT-NAME.
    data TEXT_BSEG_SHKZG like DD07D-DDTEXT.
    data TEXT_BSEG_ZZCOMM_CD like ZCOMMODITY-ZZCOMM_DS.
    data TEXT_BSEG_ZZMFG_CD like ZMFG-ZZMFG_DS.
    data TEXT_EKKO_LIFNR like LFA1-NAME1.
    data %perc(4) type p decimals 3.
    data %p100(4) type p decimals 3 value '100.000'.
    data %rangct type i.
    data %rangcc(8).
    select-options SP$00001 for BKPF-BLART memory id BAR.
    select-options SP$00002 for BKPF-BLDAT.
    select-options SP$00003 for BKPF-BUDAT.
    select-options SP$00005 for BKPF-BUKRS memory id BUK.
    select-options SP$00004 for BKPF-GJAHR memory id GJR.
    selection-screen skip 1.
    selection-screen: begin of block direct
                      with frame title text-f59.
    selection-screen: begin of line.
    *selection-screen: comment 1(12) text-f57.
    selection-screen: pushbutton 75(18) pb%exco user-command expcol
                                       modif id new.
    selection-screen: end of line.
    selection-screen: begin of line.
    parameters:       %alv radiobutton group func user-command outbut
                                    modif id new  default 'X' .
    selection-screen: comment 4(26) text-f72 for field %alv
                                    modif id new.
    parameters:       %alvl type slis_vari modif id new.
    selection-screen: end of line.
    selection-screen: begin of line.
    parameters:       %nofunc radiobutton group func modif id old.
    selection-screen: comment 4(26) text-f66 for field %nofunc
                                             modif id old.
    parameters:       %tview radiobutton group func modif id old.
    selection-screen: comment 34(26) text-f68 for field %tview
                                              modif id old,
                      end of line.
    selection-screen: begin of line.
    parameters:       %graph radiobutton group func modif id old.
    selection-screen: comment 4(26) text-f61 for field %graph
                                             modif id old.
    parameters:       %text radiobutton group func modif id old.
    selection-screen: comment 34(26) text-f69 for field %text
                                              modif id old,
                      end of line.
    selection-screen: begin of line.
    parameters:       %abc radiobutton group func modif id old.
    selection-screen: comment 4(26) text-f70 for field %abc
                                             modif id old.
    parameters:       %excel radiobutton group func modif id old.
    selection-screen: comment 34(26) text-f60 for field %excel
                                             modif id old,
                      end of line.
    selection-screen: begin of line.
    selection-screen: end of line.
    selection-screen: begin of line.
    parameters:       %xint radiobutton group func modif id xin.
    selection-screen: comment 4(26) text-f73 for field %xint
                                             modif id xin.
    parameters:       %xintk like AQXINT-XIKEY lower case modif id xin.
    selection-screen: end of line.
    selection-screen: begin of line.
    parameters:       %down radiobutton group func modif id old.
    selection-screen: comment 4(26) text-f64 for field %down
                                             modif id old.
    parameters:       %path type AQ_FILENAME lower case modif id old.
    selection-screen: end of line.
    selection-screen: begin of line.
    parameters:       %save radiobutton group func modif id lis.
    selection-screen: comment 4(26) text-f62 for field %save
                                             modif id lis.
    parameters:       %listid like AQCAQL-TEXT visible length 40
                      lower case modif id lis.
    selection-screen: end of line.
    selection-screen: end of block direct.
    selection-screen: end of block prog.
    data: begin of %g00 occurs 100,
                BKPF-BUKRS like BKPF-BUKRS,
                BKPF-BELNR like BKPF-BELNR,
                BKPF-BLART like BKPF-BLART,
                BKPF-BLDAT like BKPF-BLDAT,
                BKPF-BUDAT like BKPF-BUDAT,
                BKPF-WWERT like BKPF-WWERT,
                BKPF-XBLNR like BKPF-XBLNR,
                BKPF-BKTXT like BKPF-BKTXT,
                BKPF-AWKEY like BKPF-AWKEY,
                BSEG-XREF1 like BSEG-XREF1,
                BSEG-XREF2 like BSEG-XREF2,
                BSEG-BUKRS like BSEG-BUKRS,
                BSEG-BUZEI like BSEG-BUZEI,
                BSEG-HKONT like BSEG-HKONT,
                BSEG-SEGMENT like BSEG-SEGMENT,
                BSEG-PRCTR like BSEG-PRCTR,
                BSEG-KOSTL like BSEG-KOSTL,
                BSEG-ZZCOMM_CD like BSEG-ZZCOMM_CD,
                BSEG-ZZMFG_CD like BSEG-ZZMFG_CD,
                TEXT_BSEG_SHKZG like TEXT_BSEG_SHKZG,
                BSEG-WRBTR like BSEG-WRBTR,
                BKPF-WAERS-0121 like BKPF-WAERS,
                BSEG-DMBTR like BSEG-DMBTR,
                T001-WAERS-0122 like T001-WAERS,
                BSEG-DMBE2 like BSEG-DMBE2,
                BKPF-HWAE2-0123 like BKPF-HWAE2,
                BSEG-DMBE3 like BSEG-DMBE3,
                BKPF-HWAE3-0124 like BKPF-HWAE3,
                BSEG-KUNNR like BSEG-KUNNR,
                TEXT_BSEG_KUNNR like TEXT_BSEG_KUNNR,
          end of %g00.
    data: begin of %%g00,
                BKPF-BUKRS(004),
                BKPF-BELNR(010),
                BKPF-BLART(002),
                BKPF-BLDAT(010),
                BKPF-BUDAT(010),
                BKPF-WWERT(010),
                BKPF-XBLNR(016),
                BKPF-BKTXT(025),
                BKPF-AWKEY(020),
                BSEG-XREF1(012),
                BSEG-XREF2(012),
                BSEG-BUKRS(004),
                BSEG-BUZEI(003),
                BSEG-HKONT(010),
                BSEG-SEGMENT(010),
                BSEG-PRCTR(010),
                BSEG-KOSTL(010),
                BSEG-ZZCOMM_CD(003),
                BSEG-ZZMFG_CD(004),
                TEXT_BSEG_SHKZG(060),
                BSEG-WRBTR(016),
                BKPF-WAERS-0121 like BKPF-WAERS,
                BSEG-DMBTR(016),
                T001-WAERS-0122 like T001-WAERS,
                BSEG-DMBE2(016),
                BKPF-HWAE2-0123 like BKPF-HWAE2,
                BSEG-DMBE3(016),
                BKPF-HWAE3-0124 like BKPF-HWAE3,
                BSEG-KUNNR(010),
                TEXT_BSEG_KUNNR(035),
          end of %%g00.
    data %znr type i.
    data %lznr type i value 99999.
    field-groups header.
    field-groups %fg01.
    data %any-01.
    controls tview100 type tableview using screen 100.
    AT SELECTION-SCREEN.
    perform alvl_check(rsaqexce) using %alvl 'G00'.
    perform testmode(rsaqexce).
    perform check_expcol(rsaqexce) using %alv.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR %ALVL.
    perform alvl_value_request(rsaqexce) using %alvl 'G00'.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR %XINTK.
    perform xint_value_request(rsaqexce).
    AT SELECTION-SCREEN OUTPUT.
    perform save_initial_sscr(rsaqexce).
    perform rinit(rsaqbrst).
    perform set_expcol(rsaqexce) using %alv pb%exco.
    perform alvl_set_invisible(rsaqexce).
    perform set_xint_params(rsaqexce).
    INITIALIZATION.
    perform init_xint(rsaqexce).
    perform set_www_flags(rsaqexce).
    perform init_print_params(rsaqexce).
    if %textpool_read is initial.
      read textpool sy-repid into %textpool_langu language sy-langu.
      %textpool_read = 'X'.
    endif.
    START-OF-SELECTION.
    insert %count-BKPF into header.
    insert %linr-BKPF into header.
    insert %count-BSEG into header.
    insert %linr-BSEG into header.
    insert BKPF-BUKRS into %fg01.
    insert BKPF-BELNR into %fg01.
    insert BKPF-BLART into %fg01.
    insert BKPF-BLDAT into %fg01.
    insert BKPF-BUDAT into %fg01.
    insert BKPF-WWERT into %fg01.
    insert BKPF-XBLNR into %fg01.
    insert BKPF-BKTXT into %fg01.
    insert BKPF-AWKEY into %fg01.
    insert BSEG-XREF1 into %fg01.
    insert BSEG-XREF2 into %fg01.
    insert BSEG-BUKRS into %fg01.
    insert BSEG-BUZEI into %fg01.
    insert BSEG-HKONT into %fg01.
    insert BSEG-SEGMENT into %fg01.
    insert BSEG-PRCTR into %fg01.
    insert BSEG-KOSTL into %fg01.
    insert BSEG-ZZCOMM_CD into %fg01.
    insert BSEG-ZZMFG_CD into %fg01.
    insert TEXT_BSEG_SHKZG into %fg01.
    insert BSEG-WRBTR into %fg01.
    insert BKPF-WAERS into %fg01.
    insert BSEG-DMBTR into %fg01.
    insert T001-WAERS into %fg01.
    insert BSEG-DMBE2 into %fg01.
    insert BKPF-HWAE2 into %fg01.
    insert BSEG-DMBE3 into %fg01.
    insert BKPF-HWAE3 into %fg01.
    insert BSEG-KUNNR into %fg01.
    insert TEXT_BSEG_KUNNR into %fg01.
    perform init_texthandling(rsaqexce) using 'CL_TEXT_IDENTIFIER' ' ' 'ZFINAPP_BRM'.
    "webgui
    data: %ret type i.
      if sy-subrc is initial and %excel is not initial.
        perform check_wingui(rsaqsyst) using %ret.
        if %ret <> 0.
          message e842(aq).
        endif.
      endif.
    "webgui
    perform %comp_ldesc.
    GET BKPF .
      %dbacc = %dbacc - 1.
      if %dbacc = 0.
        stop.
      endif.
      check SP$00001.
      check SP$00002.
      check SP$00003.
      check SP$00005.
      check SP$00004.
      add 1 to %count-BKPF.
      %linr-BKPF = '99'.
    GET BSEG .
      %dbacc = %dbacc - 1.
      if %dbacc = 0.
        perform %_get_BKPF_late in program (sy-cprog) if found
                using %selected BKPF.
        stop.
      endif.
      perform textfield_refresh(rsaqexce).
      perform textfield_context(rsaqexce) using 'BSEG' BSEG.
      perform textfield_context(rsaqexce) using 'BKPF' BKPF.
      perform textfield_call(rsaqexce) using BSEG 'BSEG' 'KUNNR' TEXT_BSEG_KUNNR.
      perform textfield_call(rsaqexce) using BSEG 'BSEG' 'SHKZG' TEXT_BSEG_SHKZG.
      add 1 to %count-BSEG.
      %linr-BSEG = '01'.
      extract %fg01.
      %linr-BSEG = '99'.
    END-OF-SELECTION.
    sort as text.
    %diact = space.
    %printon = space.
    %batch = sy-batch.
    if %batch <> space.
      if %alv <> space.
        %diact = 'V'.
        %printon = 'X'.
        %alv_layout = %alvl.
        new-page print on destination 'NULL' no dialog
                 line-size 0255 line-count 0065.
      endif.
      if %save <> space.
        %diact = 'S'.
        %printon = 'X'.
        new-page print on destination 'NULL' no dialog
                 line-size 0255 line-count 0065.
      endif.
    elseif %called_by_www <> space.
      %diact = space.
    elseif %called_by_www_alv <> space.
      %diact = 'V'.
    else.
      perform init_print_params(rsaqexce).
      if %save  <> space. %diact = 'S'. endif.
      if %xint  <> space. %diact = 'I'. endif.
      if %tview <> space. %diact = 'T'. endif.
      if %alv   <> space. %diact = 'V'. endif.
      if %down  <> space. %diact = 'D'. endif.
      if %graph <> space. %diact = 'G'. endif.
      if %excel <> space. %diact = 'X'. endif.
      if %text  <> space. %diact = 'W'. endif.
      if %abc   <> space. %diact = 'A'. endif.
      if %diact <> space and %diact <> 'S' and %diact <> 'W'.
        %printon = 'X'.
        new-page print on destination 'NULL' no dialog
                 line-size 0255 line-count 0065.
      endif.
      %pathname = %path.
      if %diact = 'I'.
        %functionkey = %xintk.
      endif.
      if %diact = 'V'.
        %alv_layout = %alvl.
      endif.
    endif.
    free memory id 'AQLISTDATA'.
    if %memmode <> space.
      if %batch <> space and %printon = space.
        %printon = 'X'.
        new-page print on destination 'NULL' no dialog
                 line-size 0255 line-count 0065.
      endif.
      %diact = '1'.
    endif.
    %titel = ' '.
    if sy-subty o %prflag and %titel = space.
      new-page with-title.
    endif.
    %tvsize = 0200.
    %pline = 1.
    %pzgr  = 1.
    %first = 'X'.
    perform %output.
    %first = space.
    if %diact <> space and %diact <> 'S'.
      if %batch = space.
        new-page print off.
        if not ( %diact = 'V' and %ucomm = 'PRIN' ).
          new-page no-heading no-title.
          write space.
        endif.
      endif.
    else.
      perform pf-status(rsaqexce) using 'XX    '.
    endif.
    clear: %tab, %line, %cont.
    if %data_selected = space.
      if %diact = '1'.
        export empty from %empty to memory id 'AQLISTDATA'.
        leave.
      else.
        if %batch = space and
           %called_by_www = space and
           %called_by_www_alv = space.
          message s260(aq).
          leave list-processing.
        else.
          if %called_by_www_alv = space.
            %diact = space.
          endif.
        endif.
      endif.
    endif.
    if %diact = 'S'.
      perform %save_list.
      leave list-processing.
    endif.
    if %diact = 'V' and %batch <> space.
      new-page print off.
      perform set_print_params(rsaqexce).
      perform %download using 'ALV'.
      leave.
    endif.
    if %diact = 'V' and %called_by_www_alv <> space.
      perform %download using 'ALV'.
      leave.
    endif.
    *if %diact = 'V' and ( %ucomm = 'PRIN' or sy-subty = '07' ).
    data %is_submit_to_spool type c.
    if %diact = 'V'.
      CALL FUNCTION 'IS_SUBMIT_TO_SPOOL'
        IMPORTING FLAG = %is_submit_to_spool.
      if ( %ucomm = 'PRIN' or %is_submit_to_spool = 'X' ).
        perform set_print_params(rsaqexce).
        perform %download using 'ALV'.
        set parameter id 'SPI' field sy-spono.
        leave list-processing.
      endif.
    endif.
    if %diact = 'P' and %batch <> space.
      perform %download using '+DAT'.
      leave list-processing.
    endif.
    if %diact = 'E' and %batch <> space.
      perform %download using 'EIS'.
      leave list-processing.
    endif.
    if %diact = '1'.
      perform %download using '+MEM'.
      leave.
    endif.
    if %diact = 'X'.
      set user-command 'XXL'.
    elseif %diact = 'W'.
      set user-command 'TEXT'.
    elseif %diact = 'V'.
      set user-command 'ALV'.
    elseif %diact = 'T'.
      set user-command 'VIEW'.
    elseif %diact = 'G'.
      set user-command 'GRAF'.
    elseif %diact = 'A'.
      set user-command 'ABCA'.
    elseif %diact = 'E'.
      set user-command 'EIS'.
    elseif %diact = 'D'.
      set user-command 'DOWN'.
    elseif %diact = 'I'.
      set user-command 'XINT'.
    elseif %diact = 'P'.
      set user-command '+DAT'.
    endif.
    TOP-OF-PAGE.
    perform %top-of-page.
    END-OF-PAGE.
    perform page_foot(rsaqexce).
    perform %save_page.
    TOP-OF-PAGE DURING LINE-SELECTION.
    perform %top-of-page.
    AT USER-COMMAND.
    case sy-ucomm.
    when 'EXIT'.
      leave program.
    when 'RETN'.
      perform return(rsaqexce).
    when 'CANC'.
      perform return(rsaqexce).
    when 'WEIT'.
      perform return(rsaqexce).
    when 'INHA'.
      perform catalogue(rsaqexce).
    when 'AUSL'.
      perform pickup(rsaqexce).
    when 'AUSW'.
      perform pickup(rsaqexce).
    when 'RCAA'.
      perform rchain(rsaqbrst).
    when 'RCAL'.
      perform rcall(rsaqbrst).
    when 'VGLI'.
      perform change(rsaqexce).
    when 'VGLE'.
      perform change(rsaqexce).
    when 'TOTO'.
      perform change(rsaqexce).
    when 'VSTA'.
      perform change(rsaqexce).
    when 'VSTE'.
      perform return(rsaqexce).
    when 'SAVL'.
      perform %save_list.
    when 'ODRU'.
      perform print_list(rsaqexce).
    when 'COPA'.
      perform print_cover_page(rsaqexce).
    when 'TEXT'.
      perform %download using 'TEXT'.
    when 'ALV'.
      perform %download using 'ALV'.
    when 'VIEW'.
      perform %view.
    when 'XXL'.
      perform %download using 'XXL'.
    when 'GRAF'.
      perform %download using 'GRAF'.
    when 'ABCA'.
      perform %download using 'ABCA'.
    when 'DOWN'.
      perform %download using 'DOWN'.
    when 'XINT'.
      perform %download using 'XINT'.
    endcase.
    clear: %cline, %zgr.
    clear: %tab, %line, %cont.
    if %diact <> space.
      leave list-processing.
    endif.
    form %comp_ldesc.
      refresh %ldesc.
      refresh %gdesc.
      read table %textpool_langu into %textpool_langu_line
                                 with key ID = 'I' key = 'A00'.
      if sy-subrc is initial. %txt1 = %textpool_langu_line-entry.
      else. %txt1 = %txt_unknown.
      endif.
      read table %textpool_langu into %textpool_langu_line
                                 with key key = 'B00'.
      if sy-subrc is initial. %txt2 = %textpool_langu_line-entry.
      else. %txt2 = %txt_unknown.
      endif.
      read table %textpool_langu into %textpool_langu_line
                                 with key key = 'H00'.
      if sy-subrc is initial. %txt3 = %textpool_langu_line-entry.
      else. %txt3 = %txt_unknown.
      endif.
      perform ldesc(rsaqexce) using 'G00010000X004       00  01'
        %txt1 %txt2 %txt3 'BKPF-BUKRS' BKPF-BUKRS 'BKPF-BUKRS'.
      read table %textpool_langu into %textpool_langu_line
                                 with key ID = 'I' key = 'A01'.
      if sy-subrc is initial. %txt1 = %textpool_langu_line-entry.
      else. %txt1 = %txt_unknown.
      endif.
      read table %textpool_langu into %textpool_langu_line
                                 with key key = 'B01'.
      if sy-subrc is initial. %txt2 = %textpool_langu_line-entry.
      else. %txt2 = %txt_unknown.
      endif.
      read table %textpool_langu into %textpool_langu_line
                                 with key key = 'H00'.
      if sy-subrc is initial. %txt3 = %textpool_langu_line-entry.
      else. %txt3 = %txt_unknown.
      endif.
      perform ldesc(rsaqexce) using 'G00020000X010       00  01'
        %txt1 %txt2 %txt3 'BKPF-BELNR' BKPF-BELNR 'BKPF-BELNR'.
      read table %textpool_langu into %textpool_langu_line
                                 with key ID = 'I' key = 'A02'.
      if sy-subrc is initial. %txt1 = %textpool_langu_line-entry.
      else. %txt1 = %txt_unknown.
      endif.
      read table %textpool_langu into %textpool_langu_line
                                 with key key = 'B02'.
      if sy-subrc is initial. %txt2 = %textpool_langu_line-entry.
      else. %txt2 = %txt_unknown.
      endif.
      read table %textpool_langu into %textpool_langu_line
                                 with key key = 'H00'.
      if sy-subrc is initial. %txt3 = %textpool_langu_line-entry.
      else. %txt3 = %txt_unknown.
      endif.
      perform ldesc(rsaqexce) using 'G00030000X002       00  01'
        %txt1 %txt2 %txt3 'BKPF-BLART' BKPF-BLART 'BKPF-BLART'.
      read table %textpool_langu into %textpool_langu_line
                                 with key ID = 'I' key = 'A03'.
      if sy-subrc is initial. %txt1 = %textpool_langu_line-entry.
      else. %txt1 = %txt_unknown.
      endif.
      read table %textpool_langu into %textpool_langu_line
                                 with key key = 'B03'.
      if sy-subrc is initial. %txt2 = %textpool_langu_line-entry.
      else. %txt2 = %txt_unknown.
      endif.
      read table %textpool_langu into %textpool_langu_line
                                 with key key = 'H00'.
      if sy-subrc is initial. %txt3 = %textpool_langu_line-entry.
      else. %txt3 = %txt_unknown.
      endif.
      perform ldesc(rsaqexce) using 'G00040000X010       00  01'
        %txt1 %txt2 %txt3 'BKPF-BLDAT' BKPF-BLDAT 'BKPF-BLDAT'.
      read table %textpool_langu into %textpool_langu_line
                                 with key ID = 'I' key = 'A04'.
      if sy-subrc is initial. %txt1 = %textpool_langu_line-entry.
      else. %txt1 = %txt_unknown.
      endif.
      read table %textpool_langu into %textpool_langu_line
                                 with key key = 'B04'.
      if sy-subrc is initial. %txt2 = %textpool_langu_line-entry.
      else. %txt2 = %txt_unknown.
      endif.
      read table %textpool_langu into %textpool_langu_line
                                 with key key = 'H00'.
      if sy-subrc is initial. %txt3 = %textpool_langu_line-entry.
      else. %txt3 = %txt_unknown.
      endif.
      perform ldesc(rsaqexce) using 'G00050000X010       00  01'
        %txt1 %txt2 %txt3 'BKPF-BUDAT' BKPF-BUDAT 'BKPF-BUDAT'.
      read table %textpool_langu into %textpool_langu_line
                                 with key ID = 'I' key = 'A05'.
      if sy-subrc is initial. %txt1 = %textpool_langu_line-entry.
      else. %txt1 = %txt_unknown.
      endif.
      read table %textpool_langu into %textpool_langu_line
                                 with key key = 'B05'.
      if sy-subrc is initial. %txt2 = %textpool_langu_line-entry.
      else. %txt2 = %txt_unknown.
      endif.
      read table %textpool_langu into %textpool_langu_line
                                 with key key = 'H00'.
      if sy-subrc is initial. %txt3 = %textpool_langu_line-entry.
      else. %txt3 = %txt_unknown.
      endif.
      perform ldesc(rsaqexce) using 'G00060000X010       00  01'
        %txt1 %txt2 %txt3 'BKPF-WWERT' BKPF-WWERT 'BKPF-WWERT'.
      read table %textpool_langu into %textpool_langu_line
                                 with key ID = 'I' key = 'A06'.
      if sy-subrc is initial. %txt1 = %textpool_langu_line-entry.
      else. %txt1 = %txt_unknown.
      endif.
      read table %textpool_langu into %textpool_langu_line
                                 with key key = 'B06'.
      if sy-subrc is initial. %txt2 = %textpool_langu_line-entry.
      else. %txt2 = %txt_unknown.
      endif.
      read table %textpool_langu into %textpool_langu_line
                                 with key key = 'H00'.
      if sy-subrc is initial. %txt3 = %textpool_langu_line-entry.
      else. %txt3 = %txt_unknown.
      endif.
      perform ldesc(rsaqexce) using 'G00070000X016       00  01'
        %txt1 %txt2 %txt3 'BKPF-XBLNR' BKPF-XBLNR 'BKPF-XBLNR'.
      read table %textpool_langu into %textpool_langu_line
                                 with key ID = 'I' key = 'A07'.
      if sy-subrc is initial. %txt1 = %textpool_langu_line-entry.
      else. %txt1 = %txt_unknown.
      endif.
      read table %textpool_langu into %textpool_langu_line
                                 with key key = 'B07'.
      if sy-subrc is initial. %txt2 = %textpool_langu_line-entry.
      else. %txt2 = %txt_unknown.
      endif.
      read table %textpool_langu into %textpool_langu_line
                                 with key key = 'H00'.
      if sy-subrc is initial. %txt3 = %textpool_langu_line-entry.
      else. %txt3 = %txt_unknown.
      endif.
      perform ldesc(rsaqexce) using 'G00080000X025       00  01'
        %txt1 %txt2 %txt3 'BKPF-BKTXT' BKPF-BKTXT 'BKPF-BKTXT'.
      read table %textpool_langu into %textpool_langu_line
                                 with key ID = 'I' key = 'A08'.
      if sy-subrc is initial. %txt1 = %textpool_langu_line-entry.
      else. %txt1 = %txt_unknown.
      endif.
      read table %textpool_langu into %textpool_langu_line
                                 with key key = 'B08'.
      if sy-subrc is initial. %txt2 = %textpool_langu_line-entry.
      else. %txt2 = %txt_unknown.
      endif.
      read table %textpool_langu into %textpool_langu_line
                                 with key key = 'H00'.
      if sy-subrc is initial. %txt3 = %textpool_langu_line-entry.
      else. %txt3 = %txt_unknown.
      endif.
      perform ldesc(rsaqexce) using 'G00090000X020       00  01'
        %txt1 %txt2 %txt3 'BKPF-AWKEY' BKPF-AWKEY 'BKPF-AWKEY'.
      read table %textpool_langu into %textpool_langu_line
                                 with key ID = 'I' key = 'A09'.
      if sy-subrc is initial. %txt1 = %textpool_langu_line-entry.
      else. %txt1 = %txt_unknown.
      endif.
      read table %textpool_langu into %textpool_langu_line
                                 with key key = 'B09'.
      if sy-subrc is initial. %txt2 = %textpool_langu_line-entry.
      else. %txt2 = %txt_unknown.
      endif.
      read table %textpool_langu into %textpool_langu_line
                                 with key key = 'H00'.
      if sy-subrc is initial. %txt3 = %textpool_langu_line-entry.
      else. %txt3 = %txt_unknown.
      endif.
      perform ldesc(rsaqexce) using 'G00100000X012       00  01'
        %txt1 %txt2 %txt3 'BSEG-XREF1' BSEG-XREF1 'BSEG-XREF1'.
      read table %textpool_langu into %textpool_langu_line
                                 with key ID = 'I' key = 'A10'.
      if sy-subrc is initial. %txt1 = %textpool_langu_line-entry.
      else. %txt1 = %txt_unknown.
      endif.
      read table %textpool_langu into %textpool_langu_line
                                 with key key = 'B10'.
      if sy-subrc is initial. %txt2 = %textpool_langu_line-entry.
      else. %txt2 = %txt_unknown.
      endif.
      read table %textpool_langu into %textpool_langu_line
                                 with key key = 'H00'.
      if sy-subrc is initial. %txt3 = %textpool_langu_line-entry.
      else. %txt3 = %txt_unknown.
      endif.
      perform ldesc(rsaqexce) using 'G00110000X012       00  01'
        %txt1 %txt2 %txt3 'BSEG-XREF2' BSEG-XREF2 'BSEG-XREF2'.
      read table %textpool_langu into %textpool_langu_line
                                 with key ID = 'I' key = 'A11'.
      if sy-subrc is initial. %txt1 = %textpool_langu_line-entry.
      else. %txt1 = %txt_unknown.
      endif.
      read table %textpool_langu into %textpool_langu_line
                                 with key key = 'B11'.
      if sy-subrc is initial. %txt2 = %textpool_langu_line-entry.
      else. %txt2 = %txt_unknown.
      endif.
      read table %textpool_langu into %textpool_langu_line
                                 with key key = 'H01'.
      if sy-subrc is initial. %txt3 = %textpool_langu_line-entry.
      else. %txt3 = %txt_unknown.
      endif.
      perform ldesc(rsaqexce) using 'G00120000X004       00  02'
        %txt1 %txt2 %txt3 'BSEG-BUKRS' BSEG-BUKRS 'BSEG-BUKRS'.
      read table %textpool_langu into %textpool_langu_line
                                 with key ID = 'I' key = 'A12'.
      if sy-subrc is initial. %txt1 = %textpool_langu_line-entry.
      else. %txt1 = %txt_unknown.
      endif.
      read table %textpool_langu into %textpool_langu_line
                                 with key key = 'B12'.
      if sy-subrc is initial. %txt2 = %textpool_langu_line-entry.
      else. %txt2 = %txt_unknown.
      endif.
      read table %textpool_langu into %textpool_langu_line
                                 with key key = 'H01'.
      if sy-subrc is initial. %txt3 = %textpool_langu_line-entry.
      else. %txt3 = %txt_unknown.
      endif.
      perform ldesc(rsaqexce) using 'G00130000X003       00  02'
        %txt1 %txt2 %txt3 'BSEG-BUZEI' BSEG-BUZEI 'BSEG-BUZEI'.
      read table %textpool_langu into %textpool_langu_line
                                 with key ID = 'I' key = 'A13'.
      if sy-subrc is initial. %txt1 = %textpool_langu_line-entry.
      else. %txt1 = %txt_unknown.
      endif.
      read table %textpool_langu into %textpool_langu_line
                                 with key key = 'B13'.
      if sy-subrc is initial. %txt2 = %textpool_langu_line-entry.
      else. %txt2 = %txt_unknown.
      endif.
      read table %textpool_langu into %textpool_langu_line
                                 with key key = 'H01'.
      if sy-subrc is initial. %txt3 = %textpool_langu_line-entry.
      else. %txt3 = %txt_unknown.
      endif.
      perform ldesc(rsaqexce) using 'G00140000X010       00  02'
        %txt1 %txt2 %txt3 'BSEG-HKONT' BSEG-HKONT 'BSEG-HKONT'.
      read table %textpool_langu into %textpool_langu_line
                                 with key ID = 'I' key = 'A14'.
      if sy-subrc is initial. %txt1 = %textpool_langu_line-entry.
      else. %txt1 = %txt_unknown.
      endif.
      read table %textpool_langu into %textpool_langu_line
                                 with key key = 'B14'.
      if sy-subrc is initial. %txt2 = %textpool_langu_line-entry.
      else. %txt2 = %txt_unknown.
      endif.
      read table %textpool_langu into %textpool_langu_line
                                 with key key = 'H01'.
      if sy-subrc is initial. %txt3 = %textpool_langu_line-entry.
      else. %txt3 = %txt_unknown.
      endif.
      perform ldesc(rsaqexce) using 'G00150000X010       00  02'
        %txt1 %txt2 %txt3 'BSEG-SEGMENT' BSEG-SEGMENT 'BSEG-SEGMENT'.
      read table %textpool_langu into %textpool_langu_line
                                 with key ID = 'I' key = 'A15'.
      if sy-subrc is initial. %txt1 = %textpool_langu_line-entry.
      else. %txt1 = %txt_unknown.
      endif.
      read table %textpool_langu into %textpool_langu_line
                                 with key key = 'B15'.
      if sy-subrc is initial. %txt2 = %textpool_langu_line-entry.
      else. %txt2 = %txt_unknown.
      endif.
      read table %textpool_langu into %textpool_langu_line
                                 with key key = 'H01'.
      if sy-subrc is initial. %txt3 = %textpool_langu_line-entry.
      else. %txt3 = %txt_unknown.
      endif.
      perform ldesc(rsaqexce) using 'G00160000X010       00  02'
        %txt1 %txt2 %txt3 'BSEG-PRCTR' BSEG-PRCTR 'BSEG-PRCTR'.
      read table %textpool_langu into %textpool_langu_line
                                 with key ID = 'I' key = 'A16'.
      if sy-subrc is initial. %txt1 = %textpool_langu_line-entry.
      else. %txt1 = %txt_unknown.
      endif.
      read table %textpool_langu into %textpool_langu_line
                                 with key key = 'B16'.
      if sy-subrc is initial. %txt2 = %textpool_langu_line-entry.
      else. %txt2 = %txt_unknown.
      endif.
      read table %textpool_langu into %textpool_langu_line
                                 with key key = 'H01'.
      if sy-subrc is initial. %txt3 = %textpool_langu_line-entry.
      else. %txt3 = %txt_unknown.
      endif.
      perform ldesc(rsaqexce) using 'G00170000X010       00  02'
        %txt1 %txt2 %txt3 'BSEG-KOSTL' BSEG-KOSTL 'BSEG-KOSTL'.
      read table %textpool_langu into %textpool_langu_line
                                 with key ID = 'I' key = 'A17'.
      if sy-subrc is initial. %txt1 = %textpool_langu_line-entry.
      else. %txt1 = %txt_unknown.
      endif.
      read table %textpool_langu into %textpool_langu_line
                                 with key key = 'B17'.
      if sy-subrc is initial. %txt2 = %textpool_langu_line-entry.
      else. %txt2 = %txt_unknown.
      endif.
      read table %textpool_langu into %textpool_langu_line
                                 with key key = 'H01'.
      if sy-subrc is initial. %txt3 = %textpool_langu_line-entry.
      else. %txt3 = %txt_unknown.
      endif.
      perform ldesc(rsaqexce) using 'G00180000X003       00  02'
        %txt1 %txt2 %txt3 'BSEG-ZZCOMM_CD' BSEG-ZZCOMM_CD 'BSEG-ZZCOMM_CD'.
      read table %textpool_langu into %textpool_langu_line
                                 with key ID = 'I' key = 'A18'.
      if sy-subrc is initial. %txt1 = %textpool_langu_line-entry.
      else. %txt1 = %txt_unknown.
      endif.
      read table %textpool_langu into %textpool_langu_line
                                 with key key = 'B18'.
      if sy-subrc is initial. %txt2 = %textpool_langu_line-entry.
      else. %txt2 = %txt_unknown.
      endif.
      read table %textpool_langu into %textpool_langu_line
                                 with key key = 'H01'.
      if sy-subrc is initial. %txt3 = %textpool_langu_line-entry.
      else. %txt3 = %txt_unknown.
      endif.
      perform ldesc(rsaqexce) using 'G00190000X004       00  02'
        %txt1 %txt2 %txt3 'BSEG-ZZMFG_CD' BSEG-ZZMFG_CD 'BSEG-ZZMFG_CD'.
      read table %textpool_langu into %textpool_langu_line
                                 with key ID = 'I' key = 'A19'.
      if sy-subrc is initial. %txt1 = %textpool_langu_line-entry.
      else. %txt1 = %txt_unknown.
      endif.
      read table %textpool_langu into %textpool_langu_line
                                 with key key = 'B19'.
      if sy-subrc is initial. %txt2 = %textpool_langu_line-entry.
      else. %txt2 = %txt_unknown.
      endif.
      read table %textpool_langu into %textpool_langu_line
                                 with key key = 'H01'.
      if sy-subrc is initial. %txt3 = %textpool_langu_line-entry.
      else. %txt3 = %txt_unknown.
      endif.
      perform ldesc(rsaqexce) using 'G00201000X060       00  02'
        %txt1 %txt2 %txt3 'TEXT_BSEG_SHKZG' TEXT_BSEG_SHKZG 'TEXT_BSEG_SHKZG'.
      read table %textpool_langu into %textpool_langu_line
                                 with key ID = 'I' key = 'A20'.
      if sy-subrc is initial. %txt1 = %textpool_langu_line-entry.
      else. %txt1 = %txt_unknown.
      endif.
      read table %textpool_langu into %textpool_langu_line
                                 with key key = 'B20'.
      if sy-subrc is initial. %txt2 = %textpool_langu_line-entry.
      else. %txt2 = %txt_unknown.
      endif.
      read table %textpool_langu into %textpool_langu_line
                                 with key key = 'H01'.
      if sy-subrc is initial. %txt3 = %textpool_langu_line-entry.
      else. %txt3 = %txt_unknown.
      endif.
      perform ldesc(rsaqexce) using 'G00211063 016F      00  02'
        %txt1 %txt2 %txt3 'BSEG-WRBTR' BSEG-WRBTR 'BSEG-WRBTR'.
      read table %textpool_langu into %textpool_langu_line
                                 with key ID = 'I' key = 'A21'.
      if sy-subrc is initial. %txt1 = %textpool_langu_line-entry.
      else. %txt1 = %txt_unknown.
      endif.
      read table %textpool_langu into %textpool_langu_line
                                 with key key = 'B21'.
      if sy-subrc is initial. %txt2 = %textpool_langu_line-entry.
      else. %txt2 = %txt_unknown.
      endif.
      read table %textpool_langu into %textpool_langu_line
                                 with key key = 'H01'.
      if sy-subrc is initial. %txt3 = %textpool_langu_line-entry.
      else. %txt3 = %txt_unknown.
      endif.
      perform ldesc(rsaqexce) using 'G00221000 005W      00  02'
        %txt1 %txt2 %txt3 'BKPF-WAERS' BKPF-WAERS 'BKPF-WAERS-0121'.
      read table %textpool_langu into %textpool_langu_line
                                 with key ID = 'I' key = 'A22'.
      if sy-subrc is initial. %txt1 = %textpool_langu_line-entry.
      else. %txt1 = %txt_unknown.
      endif.
      read table %textpool_langu into %textpool_langu_line
                                 with key key = 'B22'.
      if sy-subrc is initial. %txt2 = %textpool_langu_line-entry.
      else. %txt2 = %txt_unknown.
      endif.
      read table %textpool_langu into %textpool_langu_line
                                 with key key = 'H01'.
      if sy-subrc is initial. %txt3 = %textpool_langu_line-entry.
      else. %txt3 = %txt_unknown.
      endif.
      perform ldesc(rsaqexce) using 'G00231086 016F      00  02'
        %txt1 %txt2 %txt3 'BSEG-DMBTR' BSEG-DMBTR 'BSEG-DMBTR'.
      read table %textpool_langu into %textpool_langu_line
                                 with key ID = 'I' key = 'A23'.
      if sy-subrc is initial. %txt1 = %textpool_langu_line-entry.
      else. %txt1 = %txt_unknown.
      endif.
      read table %textpool_langu into %textpool_langu_line
                                 with key key = 'B23'.
      if sy-subrc is initial. %txt2 = %textpool_langu_line-entry.
      else. %txt2 = %txt_unknown.
      endif.
      read table %textpool_langu into %textpool_langu_line
                                 with key key = 'H01'.
      if sy-subrc is initial. %txt3 = %textpool_langu_line-entry.
      else. %txt3 = %txt_unknown.
      endif.
      perform ldesc(rsaqexce) using 'G00241000 005W      00  02'
        %txt1 %txt2 %txt3 'T001-WAERS' T001-WAERS 'T001-WAERS-0122'.
      read table %textpool_langu into %textpool_langu_line
                                 with key ID = 'I' key = 'A24'.
      if sy-subrc is initial. %txt1 = %textpool_langu_line-entry.
      else. %txt1 = %txt_unknown.
      endif.
      read table %textpool_langu into %textpool_langu_line
                                 with key key = 'B24'.
      if sy-subrc is initial. %txt2 = %textpool_langu_line-entry.
      else. %txt2 = %txt_unknown.
      endif.
      read table %textpool_langu into %textpool_langu_line
                                 with key key = 'H01'.
      if sy-subrc is initial. %txt3 = %textpool_langu_line-entry.
      else. %txt3 = %txt_unknown.
      endif.
      perform ldesc(rsaqexce) using 'G00251109 016F      00  02'
        %txt1 %txt2 %txt3 'BSEG-DMBE2' BSEG-DMBE2 'BSEG-DMBE2'.
      read table %textpool_langu into %textpool_langu_line
                                 with key ID = 'I' key = 'A25'.
      if sy-subrc is initial. %txt1 = %textpool_langu_line-entry.
      else. %txt1 = %txt_unknown.
      endif.
      read table %textpool_langu into %textpool_langu_line
                                 with key key = 'B25'.
      if sy-subrc is initial. %txt2 = %textpool_langu_line-entry.
      else. %txt2 = %txt_unknown.
      endif.
      read table %textpool_langu into %textpool_langu_line
                                 with key key = 'H01'.
      if sy-subrc is initial. %txt3 = %textpool_langu_line-entry.
      else. %txt3 = %txt_unknown.
      endif.
      perform ldesc(rsaqexce) using 'G00261000 005W      00  02'
        %txt1 %txt2 %txt3 'BKPF-HWAE2' BKPF-HWAE2 'BKPF-HWAE2-0123'.
      read table %textpool_langu into %textpool_langu_line
                                 with key ID = 'I' key = 'A26'.
      if sy-subrc is initial. %txt1 = %textpool_langu_line-entry.
      else. %txt1 = %txt_unknown.
      endif.
      read table %textpool_langu into %textpool_langu_line
                                 with key key = 'B26'.
      if sy-subrc is initial. %txt2 = %textpool_langu_line-entry.
      else. %txt2 = %txt_unknown.
      endif.
      read table %textpool_langu into %textpool_langu_line
                                 with key key = 'H01'.
      if sy-subrc is initial. %txt3 = %textpool_langu_line-entry.
      else. %txt3 = %txt_unknown.
      endif.
      perform ldesc(rsaqexce) using 'G00271132 016F      00  02'
        %txt1 %txt2 %txt3 'BSEG-DMBE3' BSEG-DMBE3 'BSEG-DMBE3'.
      read table %textpool_langu into %textpool_langu_line
                                 with key ID = 'I' key = 'A27'.
      if sy-subrc is initial. %txt1 = %textpool_langu_line-entry.
      else. %txt1 = %txt_unknown.
      endif.
      read table %textpool_langu into %textpool_langu_line
                                 with key key = 'B27'.
      if sy-subrc is initial. %txt2 = %textpool_langu_line-entry.
      else. %txt2 = %txt_unknown.
      endif.
      read table %textpool_langu into %textpool_langu_line
                                 with key key = 'H01'.
      if sy-subrc is initial. %txt3 = %textpool_langu_line-entry.
      else. %txt3 = %txt_unknown.
      endif.
      perform ldesc(rsaqexce) using 'G00281000 005W      00  02'
        %txt1 %txt2 %txt3 'BKPF-HWAE3' BKPF-HWAE3 'BKPF-HWAE3-0124'.
      read table %textpool_langu into %textpool_langu_line
                                 with key ID = 'I' key = 'A28'.
      if sy-subrc is initial. %txt1 = %textpool_langu_line-entry.
      else. %txt1 = %txt_unknown.
      endif.
      read table %textpool_langu into %textpool_langu_line
                                 with key key = 'B28'.
      if sy-subrc is initial. %txt2 = %textpool_langu_line-entry.
      else. %txt2 = %txt_unknown.
      endif.
      read table %textpool_langu into %textpool_langu_line
                                 with key key = 'H01'.
      if sy-subrc is initial. %txt3 = %textpool_langu_line-entry.
      else. %txt3 = %txt_unknown.
      endif.
      perform ldesc(rsaqexce) using 'G00291000X010       00  02'
        %txt1 %txt2 %txt3 'BSEG-KUNNR' BSEG-KUNNR 'BSEG-KUNNR'.
      read table %textpool_langu into %textpool_langu_line
                                 with key ID = 'I' key = 'A29'.
      if sy-subrc is initial. %txt1 = %textpool_langu_line-entry.
      else. %txt1 = %txt_unknown.
      endif.
      read table %textpool_langu into %textpool_langu_line
                                 with key key = 'B29'.
      if sy-subrc is initial. %txt2 = %textpool_langu_line-entry.
      else. %txt2 = %txt_unknown.
      endif.
      read table %textpool_langu into %textpool_langu_line
                                 with key key = 'H01'.
      if sy-subrc is initial. %txt3 = %textpool_langu_line-entry.
      else. %txt3 = %txt_unknown.
      endif.
      perform ldesc(rsaqexce) using 'G00301000X035       00  02'
        %txt1 %txt2 %txt3 'TEXT_BSEG_KUNNR' TEXT_BSEG_KUNNR 'TEXT_BSEG_KUNNR'.
      perform gdesc(rsaqexce) using 'G00' 1 20 ' ' ' ' 'X'.
      perform complete_ldesc(rsaqexce) tables %ldesc.
    endform.
    form %read_ldesc using p_lid   type aql_lid
                           p_ldesc type rsaqtldesc.
      p_lid = 'G00'.
      perform %comp_ldesc.
      p_ldesc[] = %ldesc[].
    endform.
    form %output.
    describe table %prlist lines %max_prlist.
    %head = 'AAA'.
    %keyempty = space.
    new-page.
    perform %output_gl.
    perform complete_page(rsaqexce).
    %head = 'ZZZ'.
    perform last_ptab_entry(rsaqexce).
    new-page.
    if %keyempty <> space.
      message s894(aq).
    endif.
    endform.
    form %top-of-page.
    if sy-ucomm = 'INHA'. exit. endif.
    if sy-ucomm = 'COPA'. exit. endif.
    if %head    = space.  exit. endif.
    if %head = 'DDD'.
      perform tviewpage(rsaqexce).
      exit.
    endif.
    if %head = 'GGG'.
      perform page(rsaqexce) using 'G00' text-grl 205 %glframe 001.
      set left scroll-boundary column 002.
      perform set_scroll_boundary(rsaqexce) using 002.
      if %toto <> space. exit. endif.
    else.
      case %head.
      when others.
      endcase.
    endif.
    endform.
    form %newline.
    data: %llen type i.
      %llen = 205.
      %uflag = space.
      new-line.
      write: '|', 205 '|'.
      position 2.
    endform.
    form %skip using count.
      if sy-linno > 1.
        %uflag = space.
        do count times.
          new-line.
          format reset.
          write: '|', 205 '|'.
        enddo.
      endif.
    endform.
    form %uline.
      if %uflag = space.
        if sy-linno > 1.
          uline /1(205).
        endif.
        %uflag = 'X'.
      endif.
    endform.
    form %hide.
      if %batch <> space and %diact = 'S'.
        perform hide(rsaqexce).
      else.
        hide: %tab, %line, %cont.
      endif.
    endform.
    form %hide_color.
      if %batch <> space and %diact = 'S'.
        perform hide_color(rsaqexce).
      else.
        hide: %fint, %fcol.
      endif.
    endform.
    form %rcall using name value.
    field-symbols <field>.
      assign (name) to <field>.
      if sy-subrc <> 0.
        value = space.
        exit.
      endif.
      read current line field value <field> into value.
      if value = space and %tab = 'G00' and %ldesc-fcur na 'FM'.
        read table %g00 index %line.
        if sy-subrc = 0.
          assign component %ldesc-fnameint of structure %g00
                                           to <field>.
          if sy-subrc = 0.
            write <field> to value(%ldesc-folen).
          endif.
        endif.
      endif.
    endform.
    form %save_page.
      if %batch <> space and %diact = 'S'.
        perform save_page(rsaqexce) tables %st_liste.
      endif.
    endform.
    form %replace_var using text.
    field-symbols <var>.
      assign text+1(*) to <var>.
    endform.
    form %save_list.
    data: %sflag,
          qreport like sy-repid.
      if %diact = 'S'. %sflag = 'X'. endif.
      qreport = sy-repid.
      perform save_list(rsaqexce) tables %st_liste
                                  using qreport %sflag %listid.
      if %ql_id <> space.
        %dlflag = 'X'.
        %listsize = 0255.
        perform comp_selection_screen(rsaqexce).
        export %st_liste %ptab %ldesc %gdesc %dlflag %listsize
               %selections
               %g00
               to database aqldb(aq) id %ql_id.
      endif.
    endform.
    form %refresh.
      case %tab.
      when 'G00'.
        import %g00 from database aqldb(aq) id %ql_id.
      endcase.
    endform.
    form %download using code.
    data: qreport like sy-repid.
      perform init_download(rsaqexce).
      qreport = sy-repid.
      case %tab.
      when 'G00'.
        perform download(rsaqexce)
                tables %g00 using code qreport text-grl.
      when others.
        message s860(aq).
      endcase.
    endform.
    form %set_data changing l_lines type i.
      import ldata to %g00 from memory id 'AQLISTDATA'.
      describe table %g00 lines l_lines.
      free memory id 'AQLISTDATA'.
    endform.
    form %get_data tables datatab structure %g00
                   using  first type i
                          last  type i.
      append lines of %g00 from first to last to datatab.
    endform.
    form %get_ref_to_table using lid         like rsaqldesc-lid
                                 ref_to_itab type ref to data
                                 subrc       like sy-subrc.
      subrc = 0.
      case lid.
      when 'G00'.
        create data ref_to_itab like %g00[].
      when others.
        subrc = 4.
        message s860(aq).
      endcase.
    endform.
    form %view.
    data: ret type i.
      perform check_wingui(rsaqsyst) using ret.
      if ret <> 0.
        message s841(aq).
        perform %download using 'ALV'.
        exit.
      endif.
    data: anz type i,
          prog like sy-repid.
      prog = sy-repid.
      perform init_download(rsaqexce).
      case %tab.
      when 'G00'.
        perform generate_view_dynpro(rsaqexce)
                using prog text-grl.
        describe table %g00 lines anz.
        tview100-lines = anz.
        perform init_view(rsaqexce) tables %g00 using tview100.
        call screen 100.
        perform reset_view_dynpro(rsaqexce).
      when others.
        message s860(aq).
      endcase.
    endform.
    form %colhead_print changing lines like sy-linno
                                 hflag type c.
    data: l_text(255).
      if %textpool_read is initial.
        read textpool sy-cprog into %textpool_langu language sy-langu.
        %textpool_read = 'X'.
      endif.
      lines = lines +  2.
      if  2 = 0. clear hflag. else. hflag = 'X'. endif.
      write at (1) '|' no-gap.
      read table %textpool_langu into %textpool_langu_line
                                 with key ID = 'I' key = 'B001'.
      if sy-subrc is initial.
        l_text = %textpool_langu_line-entry.
      else.
        clear l_text.
      endif.
      perform replace_vars(rsaqexce) using l_text 'X'.
      write at 000(004) l_text(004)  no-gap.
      write at (1) '|' no-gap.
      read table %textpool_langu into %textpool_langu_line
                                 with key ID = 'I' key = 'B011'.
      if sy-subrc is initial.
        l_text = %textpool_langu_line-entry.
      else.
        clear l_text.
      endif.
      perform replace_vars(rsaqexce) using l_text 'X'.
      write at 000(010) l_text(010)  no-gap.
      write at (1) '|' no-gap.
      read table %textpool_langu into %textpool_langu_line
                                 with key ID = 'I' key = 'B021'.
      if sy-subrc is initial.
        l_text = %textpool_langu_line-entry.
      else.
        clear l_text.
      endif.
      perform replace_vars(rsaqexce) using l_text 'X'.
      write at 000(002) l_text(002)  no-gap.
      write at (1) '|' no-gap.
      read table %textpool_langu into %textpool_langu_line
                                 with key ID = 'I' key = 'B031'.
     

    Hi Vijay,
    The code is not developed, this is automatically generated code, when you create a SAP query using SQ01 this code get generated. There is no need to change the code. When you execute this program, then on selection screen give less entries to select.
    Regards,
    Atish

  • MEMORY_NO_MORE_PAGING " dump

    Hi All,
    We are at SAP ECC 5.0 SAP_BASIS 640.
    Today morning while running mb51 we got " MEMORY_NO_MORE_PAGING " dump.
    Could please help to fix this problem?
    Here is the error info:
    What happened?
    The current ABAP program had to be terminated because the
    ABAP processor detected an internal system error.
    The current ABAP program "RM07DOCS" had to be terminated because the ABAP
    processor discovered an invalid system state.
    Error analysis
    An internal error occurred when releasing memory in
    SAP Paging. The release ended with the error code
    "-1".
    How to correct the error
    It is probably not possible to eliminate the system error
    with ABAP alone.
    If you have access to SAPnet, you can search for a relevant note
    using the following keywords:
    "MEMORY_PGFREE_FAILED" " "
    "RM07DOCS" bzw. "RM07DOCS_GENERATED"
    "DATA_SELECTION"
    171 endloop.
    172
    173 * process SELECT command depending on the
    174 * required material selection
    175 if l_cnt_matnr_total > 0 and
    176 l_cnt_matnr_total = l_cnt_matnr_i_eq.
    177 * work with .. for all entries ...
    178 select (l_t_fields)
    179 into corresponding fields of table itab
    180 from mkpf inner join mseg
    181 on mkpfmandt = msegmandt
    182 and mkpfmblnr = msegmblnr
    183 and mkpfmjahr = msegmjahr
    184 for all entries in matnr
    185 where matnr = matnr-low
    186 and MKPF~BUDAT in BUDAT
    187 and MSEG~BWART in BWART
    188 and MSEG~CHARG in CHARG
    189 and MSEG~KUNNR in KUNNR
    190 and MSEG~LGORT in LGORT
    191 and MSEG~LIFNR in LIFNR
    192 and MKPF~MJAHR in MJAHR
    193 and MSEG~SOBKZ in SOBKZ
    194 and MKPF~USNAM in USNAM
    195 and MKPF~VGART in VGART
    196 and MSEG~WERKS in WERKS
    197 and MKPF~XBLNR in XBLNR
    198 .
    199 else.
    200 * work with the select command as usual
    >>>>> select (l_t_fields)
    202 into corresponding fields of table itab
    203 from mkpf inner join mseg
    204 on mkpfmandt = msegmandt
    205 and mkpfmblnr = msegmblnr
    206 and mkpfmjahr = msegmjahr
    207 WHERE MKPF~BUDAT in BUDAT
    208 and MSEG~BWART in BWART
    209 and MSEG~CHARG in CHARG
    210 and MSEG~KUNNR in KUNNR
    211 and MSEG~LGORT in LGORT
    212 and MSEG~LIFNR in LIFNR
    213 and MSEG~MATNR in MATNR
    214 and MKPF~MJAHR in MJAHR
    215 and MSEG~SOBKZ in SOBKZ
    216 and MKPF~USNAM in USNAM
    217 and MKPF~VGART in VGART
    218 and MSEG~WERKS in WERKS
    219 and MKPF~XBLNR in XBLNR
    Regards,
    Leo

    Note 1091141 & note 1104914 also are recommending that you upgrade your Basis kernel release to resolve the error.
    4.6D: 2348
    6.40: 204
    7.00: 131
    If your Basis kernel release is not listed but you are receiving the error often, I would still upgrade to the latest kernel release.

  • SAP job SAP_COLLECTOR_FOR_PERFMONITOR getting failed  with abap dump LOAD_PROGRAM_NOT_FOUND

    Dear Experts,
    Background job SAP_COLLECTOR_FOR_PERFMONITOR getting failed  with abap dump LOAD_PROGRAM_NOT_FOUND.
    As it is hourly scheduled job and it gets finished 22 times in a day but other 2 times fails with abap dump.
    Finished Job log
    Job started
    Step 001 started (program RSCOLL00, variant , user ID Bharath)
    Clean_Plan:Cleanup of DB13 Plannings
    Clean_Plan:started by RSDBPREV                       on server
    Clean_Plan:Cleaning up jobs of system DEV
    Clean_Plan:finished
    Job finished
    Failed Job Log
    Job started
    Step 001 started (program RSCOLL00, variant , user ID Bharath)
    Internal session terminated with a runtime error (see ST22).
    Kindly suggest on this..
    Thanks,
    Bharath.

    Dear Divyanshu,
    Our system in ERP 6.0 EHP5 with SP level 10. The ABAP Dump shows below error.
    |Short text                                                                                        |
    |    Program "RSORA811" not found.                                                                 |
    |What happened?                                                                                    |
    |    There are several possibilities:                                                              |
    |                                                                                                  |
    |    Error in the ABAP Application Program                                                         |
    |                                                                                                  |
    |    The current ABAP program "RSCOLL00" had to be terminated because it has                       |
    |    come across a statement that unfortunately cannot be executed.                                |
    |    or                                                                                            |
    |    Error in the SAP kernel.                                                                      |
    |                                                                                                  |
    |    The current ABAP "RSCOLL00" program had to be terminated because the                          |
    |    ABAP processor detected an internal system error.                                             |
    |What can you do?                                                                                  |
    |    Note down which actions and inputs caused the error.                                          |
    |                                                                                                  |
    |                                                                                                  |
    |    To process the problem further, contact you SAP system                                        |
    |    administrator.                                                                                |
    |                                                                                                  |
    |    Using Transaction ST22 for ABAP Dump Analysis, you can look                                   |
    |    at and manage termination messages, and you can also                                          |
    |    keep them for a long time.                                                                    |
    |Error analysis                                                                                    |
    |    On account of a branch in the program                                                         |
    |    (CALL FUNCTION/DIALOG, external PERFORM, SUBMIT)                                              |
    |    or a transaction call, another ABAP/4 program                                                 |
    |    is to be loaded, namely "RSORA811".                                                           |
    |                                                                                                  |
    |    However, program "RSORA811" does not exist in the library.                                    |
    |                                                                                                  |
    |    Possible reasons:                                                                             |
    |    a) Wrong program name specified in an external PERFORM or                                     |
    |       SUBMIT or, when defining a new transaction, a new                                          |
    |       dialog module or a new function module.                                                    |
    |    b) Transport error                                                                            |
    |Information on where terminated                                                                   |
    |    Termination occurred in the ABAP program "RSCOLL00" - in                                      |
    |     "LOOP_AT_SYSTEMS_AND_REPORTS".                                                               |
    |    The main program was "RSCOLL00 ".                                                             |
    |                                                                                                  |
    |    In the source code you have the termination point in line 535                                 |
    |    of the (Include) program "RSCOLL00".                                                          |
    |    The program "RSCOLL00" was started as a background job.                                       |
    |    Job Name....... "SAP_COLLECTOR_FOR_PERFMONITOR"                                               |
    |    Job Initiator.. " bharath"                                                                       |
    |    Job Number..... 18243400
    Kindly check and suggest..
    Thanks,
    Bharath.

  • SAP_COLLECTOR_FOR_PERFMONITOR failing with dump

    HI All,
    SAP standard job SAP_COLLECTOR_FOR_PERFMONITOR is failing with below job log
    31.05.2012 00:19:03 Job started
    31.05.2012 00:19:03 Step 001 started (program RSCOLL00, variant , user ID CP1SUP)
    31.05.2012 00:19:06 Clean_Plan:Cleanup of DB13 Plannings
    31.05.2012 00:19:06 Clean_Plan:started by RSDBPREV                       on server ttahmsv2050
    31.05.2012 00:19:06 Clean_Plan:Cleaning up jobs of system PRD
    31.05.2012 00:19:06 You are not authorized for DB access (S_DBCON: <LOCAL SYSTEM> PRD <Windows authentication> 03)
    31.05.2012 00:19:06 Function DB6_PLAN_STOP_BATCH_JOB failed with return code = Job error
    31.05.2012 00:19:06 Clean_Plan:terminated with error
    31.05.2012 00:19:06 REASON=Job error
    31.05.2012 00:19:06 ABAP/4 processor: COMPUTE_INT_TIMES_OVERFLOW
    31.05.2012 00:19:06 Job cancelled
    and its also getting finished with job log
    31.05.2012 01:19:03 Job started
    31.05.2012 01:19:03 Step 001 started (program RSCOLL00, variant , user ID CP1SUP)
    31.05.2012 01:19:06 Database system not supported
    31.05.2012 01:19:06 Database system not supported
    31.05.2012 01:19:11 Job finished
    i.e every alternate run it gets finsihed and gets cancelled
    Dump obtained is COMPUTE_INT_TIMES_OVERFLOW
    I have found this note 1027512 not sure if there is any other way

    Hi,
    thank you all for your help. I tried the solution provided in SAP Note 199586. Although, it does not talk about my specific issue, however, I tried solution 1 and after that job is running fine.
    Thanks again for all your help.
    Regards,
    Sudhir

  • Job SAP_COLLECTOR_FOR_PERFMONITOR - short dump (DBIF_SETG_SQL_ERROR)

    Hi gurus,
    Good day.
    I would like to ask for your help with regard to the short dump that we experienced with Job SAP_COLLECTOR_FOR_PERFMONITOR (program RSCOLL00).  The error is DBIF_SETG_SQL_ERROR.
    Date       Time     Message  text                                                                               
    24.11.2008 02:30:39 Job started                                                       
    24.11.2008 02:30:39 Step 001 started (program RSCOLL00)
    24.11.2008 02:30:44 ABAP/4 processor: DBIF_SETG_SQL_ERROR                             
    24.11.2008 02:30:44 Job cancelled                                                     
    ORA-01455 is said to be the reason why we encountered DBIF_SETG_SQL_ERROR.
    Database error text........: "ORA-01455: converting column overflows integer datatype"                                                                 
    Can you advise an OSS Note or certain solution that can fix this issue?  Thank you very much!

    This looks like an SAP Upgrade ECC 6 Problem, right?
    Do you have any idea where I can check the date when the ECC 6 upgrade or patch has been made?
    I'm an ABAPer and to be honest, currentlly, I don't have any idea if the client really did an ECC 6 upgrade --- when they did it. I will just check the table that you sent.
    I just had the impression that it might be due to an ECC 6 Upgrade since I saw this case over the Internet:
    "DBIF_SETG_SQL_ERROR" and "ORA-03106: fatal two-task communication protocol error" after ERP 6.0 Upgrade ( http://sap.ittoolbox.com/groups/technical-functional/sap-basis/dbif_setg_sql_error-and-ora-03106-fatal-two-task-communication-protocol-error-after-erp-60-upgrade-1640408 ).
    Yes, we are also experiencing DBIF_SETG_SQL_ERROR (ORA-03106). But, I'm taking care of DBIF_SETG_SQL_ERROR (ORA-01455).
    By the way, I saw that jobs EU_PUT and EU_REORG are being executed in background every morning at around 1 AM. And we are receiving the error DBIF_SETG_SQL_ERROR (ORA-01455) at around 2 AM - 3 AM, and a few at around 3 AM - 5 AM.
    With these I have two questions:
    (1) Do you think we still need to rerun EU_PUT and EU_REORG? Perhaps before 2 AM ?
    (2) Do you think this is a Basis Issue and nothing to do with ABAP anymore?
    Thank you very much!

  • Dump While Extracting with MEMORY_NO_MORE_PAGING.

    Hello Experts,
    I have enhanced a Standard Datasoure with 3 fields in which for 2 of the fields  I have used a standard function module to populate the data.It was working fine.
    Now I have a situation when I am extracting data from BI my load is going fine at one point if time and same one fails at another point of time.giving a Error mesage in the joblog that MEMORY_NO_MORE_PAGING.
    I am calling my FM in the Exit some 80000 times as the dataloaded to BI are 80000 records when I have a case of sucessful load when Extracted to BI from ECC. I have checked Commenting my FM called in EXIT and checked RSA3 the results are 80000 records working fine.
    Please advise if this could be a Page memory Problem or if I am calling my FM 80000 times in the Exit it needs a sufficient memory to retrieve the data.
    Please advise if we have any SAP notes related to the BAPI that corresponds to memory issue.
    STD FM-BAPI_TRIP_GET_DETAILS.
    Regards,
    KOKA.

    Answered

  • SAP_COLLECTOR_FOR_PERFMONITOR getting cancelled

    Dear All,
    The job SAP_COLLECTOR_FOR_PERFMONITOR is getting cancelled daily at 7.00 AM. It is scheduled to run hourly. All other times it finishes succesfully. But only 1 time at 7 it gets cancelled. The job log is :-
    Date       Time     Message text                                                Message class Message no. Message type                                                                               
    15.11.2007 07:00:17 Job started                                                      00           516          S       
    15.11.2007 07:00:17 Step 001 started (program RSCOLL00, variant , user ID DDIC)      00           550          S       
    15.11.2007 07:00:38 ABAP/4 processor: CONNE_IMPORT_WRONG_COMP_TYPE                   00           671          A       
    15.11.2007 07:00:38 Job cancelled                                                    00           518          A                                                                               
    the Dump is pasted below:-
                                                                                    ShrtText                                                                               
    Error when attempting to IMPORT object "HIST2".                                                                               
    What happened?                                                                               
    Error in ABAP application program.                                                                               
    The current ABAP program "RSORAT4M" had to be terminated because one of the                 
        statements could not be executed.                                                                               
    This is probably due to an error in the ABAP program.                                                                               
    When attempting to import data, it was discovered that the data                             
        type of the stored data was not the same as that specified in the                           
        program.                                                                               
    Error analysis                                                                     
        An exception occurred. This exception is dealt with in more detail below       
        . The exception, which is assigned to the class 'CX_SY_IMPORT_MISMATCH_ERROR', 
         was neither                                                                   
        caught nor passed along using a RAISING clause, in the procedure               
         "AKT_DAY_HIST2" "(FORM)"                                                      
    Since the caller of the procedure could not have expected this exception       
         to occur, the running program was terminated.                                 
        The reason for the exception is:                                               
        When importing the object "HIST2", the component no. 8 in the                  
        dataset has a different type from the corresponding component                  
        of the target object in the program "RSORAT4M".                                                                               
    The data type is "I" in the dataset, but "P" in the program.                   
    How to correct the error                                                               
        Try to find out why the type of the object is different.                           
        There are several possible reasons:                                                
    --- In the ABAP Dictionary, the type of the imported                               
    field has changed. Make sure that the type of the imported                     
    field matches the length of the Dictionary field.                              
    |   If the data could not be restored from another source, this data               
        |   must be read with the "old" structure, then converted and exported             
        |   back with the new structure, so that future IMPORTs always work                
        |   with the new structure.                                                        
        |                                                                               
    --- A new program version is active, and it no longer matches the                  
            dataset. Try to solve the error by generating the program "RSORAT4M" again     
            as follows:                                                                    
            In the SAP System, choose the transaction SE38. Enter the program              
            name "RSORAT4M". Then choose the "Activate" function.                                                                               
    ===
    It is saying
    The data type is "I" in the dataset, but "P" in the program.                              
    But it runs 23 times correctly except 1 time.
    Can Anyone help me in this please
    Thanks
    Tajinder

    Hi,
    Can u please suggest me what will be the monikey here. below is the dump for that
    154   DATA: FLAG VALUE ' '.                                                       
    155   LOOP AT HIST2.                                                              
    156     IF HIST2-DATE = DATE. DELETE  HIST2. FLAG = '*'. ENDIF.                   
    157   ENDLOOP.                                                                    
    158   IF FLAG NE SPACE. SUBTRACT 1 FROM LOGBUCH-ANZDAYS. ENDIF.                   
    159 ENDFORM.                                                                      
    160                                                                               
    161 FORM AKT_DAY_HIST2.                    " Aktualisiere Tage-Historie           
    162   PERFORM PREPARE_MONIKEY USING 36.    " Lese Historie                        
    >>>>   IMPORT HIST2 FROM DATABASE MONI(DB) ID MONIKEY.                             
    164   IF SY-SUBRC <> 0.                                                           
    165     REFRESH HIST2. CLEAR HIST2.                                               
    166     PERFORM LOGBUCH_INIT USING 1.                                             
    167     PERFORM TRANSFORM_ALL_HISTORIES.   " Strukturaenderung fuer Dynami        
    168     PERFORM PREPARE_MONIKEY USING 36.    " Lese Historie                      
    169     IMPORT HIST2 FROM DATABASE MONI(DB) ID MONIKEY.                           
    170   ENDIF.                                                                      
    171   READ TABLE HIST2 INDEX 1.                                                   
    172   IF SY-SUBRC <> 0.                                                           
    173     REFRESH HIST2. CLEAR HIST2.                                               
    174     PERFORM LOGBUCH_INIT USING 1.                                             
    175   ENDIF.                                                                      
    176   PERFORM DELETE_AKT_DAY_HIST2.        " Delete aktuellen Tag                 
    177   LOOP AT HIST2_DAY.                   " Füge neue Analyse an                 
    178     MOVE-CORRESPONDING HIST2_DAY TO HIST2.                                    
    179     APPEND HIST2.                                                             
    180   ENDLOOP.                                                                    
    181   ADD 1 TO LOGBUCH-ANZDAYS.                                                   
    182   MOVE DATE TO LOGBUCH-LASTDAY.                                               
    Thanks
    tajinder

  • SAP ST22 dump SAPSQL_ARRAY_INSERT_DUPREC

    Hi All,
    We are getting dump SAPSQL_ARRAY_INSERT_DUPREC in testing system. SAP basis: 701 and Oracle 10.2.0.2
    We are getting this dump from yesterday only and the details of the dump are as mentioned below:
    ============================================================================================
    Short text
        The ABAP/4 Open SQL array insert results in duplicate database records.
    What happened?
        Error in the ABAP Application Program
        The current ABAP program "SAPLSBAL_DB_INTERNAL" had to be terminated because it
         has
        come across a statement that unfortunately cannot be executed.
    Error analysis
        An exception occurred that is explained in detail below.
        The exception, which is assigned to class 'CX_SY_OPEN_SQL_DB', was not caught
         in
        procedure "BAL_DB_INTERNAL_NO_UPDATE_TASK" "(FUNCTION)", nor was it propagated
         by a RAISING clause.
        Since the caller of the procedure could not have anticipated that the
        exception would occur, the current program is terminated.
        The reason for the exception is:
        If you use an ABAP/4 Open SQL array insert to insert a record in
        the database and that record already exists with the same key,
        this results in a termination.
        (With an ABAP/4 Open SQL single record insert in the same error
        situation, processing does not terminate, but SY-SUBRC is set to 4.)
    Information on where terminated
        Termination occurred in the ABAP program "SAPLSBAL_DB_INTERNAL" - in
         "BAL_DB_INTERNAL_NO_UPDATE_TASK".
        The main program was "SWNCCOLL ".
        In the source code you have the termination point in line 64
        of the (Include) program "LSBAL_DB_INTERNALU02".
        The program "SAPLSBAL_DB_INTERNAL" was started as a background job.
        Job Name....... "SAP_COLLECTOR_FOR_PERFMONITOR"
        Job Initiator.. "BASIS"
        Job Number..... 08893100
        The termination is caused because exception "CX_SY_OPEN_SQL_DB" occurred in
        procedure "BAL_DB_INTERNAL_NO_UPDATE_TASK" "(FUNCTION)", but it was neither
         handled locally nor declared
        in the RAISING clause of its signature.
        The procedure is in program "SAPLSBAL_DB_INTERNAL "; its source code begins
         line
        1 of the (Include program "LSBAL_DB_INTERNALU02 ".
    System environment
        SAP-Release 701
        Application server... "appl543"
        Network address...... "122.99.01.88"
        Operating system..... "AIX"
        Release.............. "5.3"
        Hardware type........ "099DER88BN90000"
        Character length.... 16 Bits
        Pointer length....... 64 Bits
        Work process number.. 27
        Shortdump setting.... "full"
        Database server... "appl543"
        Database type..... "ORACLE"
        Database name..... "Q22"
        Database user ID.. "SAPSR3"
    =====================================================================================================
    Also some jobs are cancelled and they are forming the above dump. the detials are:
    SAP_COLLECTOR_FOR_NONE_R3_STAT                 BASIS        Canceled        17.12.2010 00:43:31
    SAP_COLLECTOR_FOR_NONE_R3_STAT                 BASIS        Canceled        17.12.2010 02:43:31
    SAP_COLLECTOR_FOR_NONE_R3_STAT                 BASIS        Canceled        17.12.2010 03:43:31
    SAP_COLLECTOR_FOR_NONE_R3_STAT                 BASIS        Canceled        17.12.2010 04:43:31
    SAP_COLLECTOR_FOR_NONE_R3_STAT                 BASIS        Canceled        17.12.2010 05:43:31
    SAP_COLLECTOR_FOR_NONE_R3_STAT                 BASIS        Canceled        17.12.2010 06:43:31
    **The cancelled job SAP_COLLECTOR_FOR_NONE_R3_STAT generating the above dump at ST22.**
    Please suggest us a solution. Thanks in advance!!!
    Regards
    Veera
    Edited by: Veerab on Dec 17, 2010 11:33 AM

    >     1 of the (Include program "LSBAL_DB_INTERNALU02 ".
    Try the following:
    open http://service.sap.com/notes
    Search for "LSBAL_DB_INTERNALU02"
    Markus

  • SAP_COLLECTOR_FOR_PERFMONITOR background job cancelled in SM37

    Dear all ,
    One of the scheduled background job has been  cancelled .
    Kindly check the below loga and Background job details .
    Job name        SAP_COLLECTOR_FOR_PERFMONITOR
    Job class       C
    Status          Canceled
    (ABAP Program
    Name           RSCOLL00
    Variant
    Language       EN)
    Job Log :
    30.05.2010 06:20:32 Job started
    30.05.2010 06:20:32 Step 001 started (program RSCOLL00, variant , user ID DDIC)
    30.05.2010 06:20:37 Clean_Plan:Cleanup of DB13 Plannings
    30.05.2010 06:20:37 Clean_Plan:started by RSDBPREV                       on server PRDCIXI
    30.05.2010 06:20:38 Clean_Plan:Cleaning up jobs of system IRP
    30.05.2010 06:20:39 Clean_Plan:finished
    30.05.2010 06:20:43 ABAP/4 processor: DBIF_RTAB_SQL_ERROR
    30.05.2010 06:20:43 Job cancelled
    Kindly suggest

    Dear all ,
    Kindly check the ST22 error logs .
    Short text SQL error occurred in the database when accessing a table. What happened? The database system detected a deadlock and avoided it by rolling back your transaction. What can you do? If possible (and necessary), repeat the last database transaction in the hope that locking the object will not result in another deadlock. Note which actions and input led to the error. For further help in handling the problem, contact your SAP administrator . You can use the ABAP dump analysis transaction ST22 to view and manage termination messages, in particular for long term reference. Error analysis The database system recognized that your last operation on the database would have led to a deadlock. Therefore, your transaction was rolled back to avoid this. ORACLE always terminates any transaction that would result in deadlock. The other transactions involved in this potential deadlock are not affected by the termination. Last error logged in SAP kernel Component............ "SAP-Gateway" Place................ "SAP-Gateway on host PRDCIXI / sapgw01" Version.............. 2 Error code........... 679 Error text........... "program prodoradb.sapccmsr.99 not registered" Description.......... "TP prodoradb.sapccmsr.99 not registered" How to correct the error Database error text........: "ORA-00060: deadlock detected while waiting for resource" Internal call code.........: "[RTAB/UPD /MONI ]" Please check the entries in the system log (Transaction SM21). If the error occures in a non-modified SAP program, you may be able to find an interim solution in an SAP Note. If you have access to SAP Notes, carry out a search with the following keywords: "DBIF_RTAB_SQL_ERROR" " " "RSHOST3M" or "RSHOST3M" "PUT_LOGBOOK" If you cannot solve the problem yourself and want to send an error notification to SAP, include the following information: 1. The description of the current problem (short dump) To save the description, choose "System->List->Save->Local File (Unconverted)". 2. Corresponding system log Display the system log by calling transaction SM21. Restrict the time interval to 10 minutes before and five minutes after the short dump. Then choose "System->List->Save->Local File (Unconverted)". 3. If the problem occurs in a problem of your own or a modified SAP System call.......... " " Module............... "gwr3cpic.c" Line................. 1835 The error reported by the operating system is: Error number..... " " Error text....... " "
    for detail log.
    System environment
    SAP-Release 700
    Application server... "PRDCIXI"
    Network address...... "10.54.145.32"
    Operating system..... "AIX"
    Release.............. "5.3"
    Hardware type........ "000184CAD400"
    Character length.... 16 Bits
    Pointer length....... 64 Bits
    Work process number.. 8
    Shortdump setting.... "full"
    Database server... "PRODORADB"
    Database type..... "ORACLE"
    Database name..... "IRP"
    Database user ID.. "SAPSR3"
    Terminal................. " "
    Char.set.... "C"
    SAP kernel....... 700
    created (date)... "Mar 7 2010 21:00:49"
    create on........ "AIX 2 5 005DD9CD4C00"
    Database version. "OCI_102 (10.2.0.2.0) "
    Patch level. 246
    Patch text.. " "
    Database............. "ORACLE 10.1.0.., ORACLE 10.2.0.., ORACLE 11.2...*"
    SAP database version. 700
    Operating system..... "AIX 1 5, AIX 2 5, AIX 3 5, AIX 1 6"
    Memory consumption
    Roll.... 1217248
    EM...... 0
    Heap.... 0
    Page.... 32768
    MM Used. 1050520
    MM Free. 146024
    and Transaction
    Client.............. 000
    User................ "DDIC"
    Language key........ "E"
    Transaction......... " "
    Transactions ID..... "4BFF227871E00187E10080000A369120"
    In the source code you have the termination point in line 521
    of the (Include) program "RSHOST3M".
    The program "RSHOST3M" was started as a background job.
    Job Name....... "SAP_COLLECTOR_FOR_PERFMONITOR"
    Job Initiator.. "DDIC"
    Job Number..... 02033500
    In the source code you have the termination point in line 521
    of the (Include) program "RSHOST3M".
    The program "RSHOST3M" was started as a background job.
    Job Name....... "SAP_COLLECTOR_FOR_PERFMONITOR"
    Job Initiator.. "DDIC"
    Job Number..... 02033500
    Program............. "RSHOST3M"
    Screen.............. "SAPMSSY0 1000"
    Screen line......... 6
    rmation on where terminated
    Termination occurred in the ABAP program "RSHOST3M" - in "PUT_LOGBOOK".
    The main program was "RSHOST3M ".

  • MEMORY_NO_MORE_PAGING problem

    Hi,
      I need help with this issue:
      I am facing a MEMORY_NO_MORE_PAGING problem, and I don't know how to solve it. This problem is happening often during the week.
      As an example I pasted on DUMP log. In addition, at the beginning I pasted the screen information of transaction ST02.
      I have already checked the disk space and itu2019s ok, there is plenty of free space.     
    Best regards,
    Fernando.
    ST02 information:
    System: SRV-SAPPROD_PRO_00                        Tune summary
    Date & time of snapshot: 05.11.2009  11:14:41     Startup: 19.10.2009  08:15:59
           Buffer            Hitratio   Allocated         Free space        Dir. size      Free directory         Swaps       Database
                                                               Entries      Entries                          accesses
    Nametab (NTAB)
       Table definition        99,28         6.447            0     0,00        30.000            0     0,00        17.354      106.524
       Field description       99,33        49.289        2.299     4,79        30.000       11.890    39,63        45.037       70.424
       Short NTAB              99,79         3.498        2.755    91,83         7.500        6.303    84,04             0        1.212
       Initial records         99,08         9.998        8.192    86,23         7.500          653     8,71        41.690       48.659
    Program                   98,99       400.000        1.102     0,29       100.000       89.560    89,56       159.655      520.665
    CUA                       99,89         5.000          208     4,67         2.500        1.464    58,56             0        1.360
    Screen                    99,88        19.531        6.272    32,31         2.000        1.298    64,90             0        1.667
    Calendar                 100,00           488          369    76,88           200           54    27,00             0          146
    OTR                      100,00         4.096        3.657   100,00         2.000        2.000   100,00             0            0
    Tables
       Generic key             99,92        48.828       20.810    43,46         5.000          262     5,24           168       97.934
       Single record           92,56        30.000          479     1,60           500          394    78,80            70      439.952
    Export/import             87,68         4.096          110     3,01         2.000          187     9,35       245.701            0
    Exp./Imp. SHM             95,02         4.096        3.581    97,92         2.000        1.999    99,95             0            0
         SAP memory              Current use      Max. use  In memory   On disk
      Roll area                 2,29      6.009      8.728     65.536    196.608
      Paging area              91,36    239.487    262.136    124.480    137.664
      Extended Memory          64,86  1.325.056  1.728.512  2.042.880
      Heap Memory                             0  1.356.990
    DUMP LOG:
    Errores tiempo ejec.   MEMORY_NO_MORE_PAGING
    Fecha y hora           05.11.2009 10:43:41
    Txt.brv.
    SAP paging overflow when storing data in the ABAP/4 memory.
    ¿Qué ha sucedido?
    The current program requested storage space from the SAP paging area,
    but this request could not be fulfilled.
    of this area in the SAP system profile.
    Notas para corregir errores
    |    The amount of storage space (in bytes) filled at termination time was:                   
    Roll area...................... 8112
    Extended memory (EM)........... 143208832
    Assigned memory (HEAP)......... 0
    Short area..................... " "
    Paging area.................... 32768
    Maximum address space.......... " "
    You may able to find an interim solution to the problem
    in the SAP note system. If you have access to the note system yourself,
    use the following search criteria:
    "MEMORY_NO_MORE_PAGING" C
    "SAPDBIOC" or "DBIOCF02"
    "FILL_MEMORY"
    Entorno sistema
    SAP Release.............. "640"
    Application server....... "SRV-SAPPROD"
    Network address.......... "172.16.1.11"
    Operating system......... "Windows NT"
    Release.................. "5.2"
    Hardware type............ "4x Intel 801586"
    Character length......... 8 Bits
    Pointer length........... 32 Bits
    Work process number...... 3
    Short dump setting....... "full"
    Database server.......... "SRV-SAPPROD"
    Database type............ "MSSQL"
    Database name............ "PRO"
    Database owner........... "pro"
    Character set............ "Spanish_Spain.1252"
    SAP kernel............... "640"
    Created on............... "Aug 7 2009 22:57:17"
    Created in............... "NT 5.2 3790 Service Pack 2 x86 MS VC++ 14.00"
    Database version......... "SQL_Server_9.00 "
    Patch level.............. "295"
    Patch text............... " "
    Supported environment....
    Database................. "MSSQL 7.00.699 or higher, MSSQL 8.00.194"
    SAP database version..... "640"
    Operating system......... "Windows NT 5.0, Windows NT 5.1, Windows NT 5.2,
    Windows NT 6.0"
    Memory usage.............
    Roll..................... 8112
    EM....................... 143208832
    Heap..................... 0
    Page..................... 32768
    MM Used.................. 121508448
    MM Free.................. 9141720
    SAP Release.............. "640"
    Usuario y transacción
    Client.............. 300
    User................ "AMATUCHESKI"
    Language key........ "S"
    Transaction......... "COOISPI "
    Program............. "SAPDBIOC"
    Screen.............. "SAPMSSY0 1000"
    Screen line......... 6
    Líneas de pila C en núcleo (estructura diferente según la plataforma)
    SAP (R) - R/3(TM) Callstack, Version 1.0
    Copyright (C) SAP AG. All rights reserved.
    Callstack without Exception:
    App       : disp+work.EXE (pid=5596)
    When      : 11/5/2009 10:43:38.343
    Threads   : 2
    Computer Name       : SRV-SAPPROD
    User Name           : SAPServicePRO
    Number of Processors: 4
    Processor Type: x86 Family 15 Model 4 Stepping 3
    Windows Version     : 5.2 Current Build: 3790
    Stack Dump for Thread Id 15e0
    Edited by: Fernando Zanelli on Nov 5, 2009 1:29 PM

    Hi,
               After the first chart that displays the actual system memory status you can find the system parameters.The rdisp/PG_MAXFS as you can see is deactivated and his default value is 32768.
               It should stay deactivated or I need to bring it active?
    SAP Memory St02:
    SAP memory              Current use      Max. use  In memory   On disk
                                         [%]      [kB]            [kB]          [kB]       [kB]
    Roll area                   2,15      5.630      6.888     65.536    196.608
    Paging area              91,63    240.203   262.136    124.480    137.664
    Extended Memory     60,75  1.241.088  1.514.496  2.042.880
    Heap Memory                             0          0
    system parameters:
    |X|abap/fieldexit                             |yes
    |X|login/system_client                        |300
    |X|SAPSYSTEMNAME                              |PRO
    |X|INSTANCE_NAME                              |DVEBMGS00
    |X|SAPSYSTEM                                  |00
    |X|rdisp/wp_no_dia                            |8
    |X|rdisp/wp_no_btc                            |4
    |X|rdisp/wp_no_vb                             |3
    |X|rdisp/wp_no_vb2                            |2
    |X|rdisp/wp_no_enq                            |1
    |X|rdisp/wp_no_spo                            |2
    |X|SAPGLOBALHOST                              |srv-sapprod
    |X|PHYS_MEMSIZE                               |1996
    |X|DIR_TRANS                                  |C:\usr\sap\trans
    |X|icm/server_port_0                          |PROT=HTTP,PORT=8000
    |X|abap/buffersize                            |400000
    |X|zcsa/table_buffer_area                     |50000000
    |X|rtbb/buffer_length                         |30000
    |X|rsdb/cua/buffersize                        |5000
    |X|gw/max_conn                                |2000
    |X|gw/max_sys                                 |2000
    |X|gw/max_overflow_size                       |25000000
    |X|enque/table_size                           |10000
    |X|zcsa/presentation_buffer_area              |20000000
    |X|rdisp/appc_ca_blk_no                       |100
    |X|rdisp/wp_ca_blk_no                         |300
    |X|rsdb/ntab/entrycount                       |30000
    |X|rsdb/ntab/ftabsize                         |48000
    |X|rsdb/ntab/irbdsize                         |9500
    |X|rsdb/ntab/sntabsize                        |3000
    |X|DIR_ROLL                                   |C:\usr\sap\PRO\DVEBMGS00\data
    |X|DIR_PAGING                                 |C:\usr\sap\PRO\DVEBMGS00\data
    |X|DIR_DATA                                   |C:\usr\sap\PRO\DVEBMGS00\data
    |X|DIR_REORG                                  |C:\usr\sap\PRO\DVEBMGS00\data
    |X|DIR_TEMP                                   |.
    |X|DIR_SORTTMP                                |C:\usr\sap\PRO\DVEBMGS00\data
    |X|zcsa/system_language                       |S
    |X|zcsa/installed_languages                   |EDPS
    |X|install/codepage/appl_server               |1100
    |X|abap/use_paging                            |0
    | |ztta/roll_first                            |1024
    | |ztta/roll_area                             |2000896
    |X|rdisp/ROLL_SHM                             |8192
    | |rdisp/ROLL_MAXFS                           |32768
    |X|rdisp/PG_SHM                               |15560
    | |rdisp/PG_MAXFS                             |32768
    | |abap/heap_area_dia                         |2000683008
    | |abap/heap_area_nondia                      |2000683008
    | |abap/heap_area_total                       |2000683008
    | |abap/heaplimit                             |40894464
    |X|abap/swap_reserve                          |20971520
    | |ztta/roll_extension                        |2000683008
    | |em/initial_size_MB                         |1840
    |X|em/blocksize_KB                            |1024
    |X|em/stat_log_size_MB                        |20
    |X|em/stat_log_timeout                        |0
    | |em/address_space_MB                        |512

  • MEMORY_NO_MORE_PAGING

    Hi
    I have just installed NSP testdrive - in System:Status it says: SAP EHP 1 for SAP NetWeaver 7.0
    When i try to run transaction SWO3 i get a MEMORY_NO_MORE_PAGING dump. What can I do about that?
    The dump:
    Runtime Errors         MEMORY_NO_MORE_PAGING
    Short text
         SAP paging overflow when storing data in the ABAP/4 memory.
    What happened?
         The current program requested storage space from the SAP paging area,
         but this request could not be fulfilled.
         of this area in the SAP system profile.
    Error analysis
         The ABAP/4 runtime system and the ABAP/4 compiler use a common
         interface to store different types of data in different parts of
         the SAP paging area. This data includes the
         ABAP/4 memory (EXPORT TO MEMORY), the SUBMIT REPORT parameters,
         CALL DIALOG and CALL TRANSACTION USING, as well as internally defined
         macros (specified with DEFINE).
         To store further data in the SAP paging area, you attempted to
         allocate a new SAP paging block, but no more blocks were
         available.
         When the SAP paging overflow occurred, the ABAP/4 memory contained
         entries for 5 of different IDs.
         Please note:
         To facilitate error handling, the ABAP/4 memory was
         deleted.
    Trigger Location of Runtime Error
         Program                                 SAPLSEUT
         Include                                 LSEUTU12
         Row                                     60
         Module type                             (FORM)
         Module Name                             TR_PUSH

    Hi Thomas,
    Go to ST22, click on "How to correct" it will give the necessary steps.
    You need to tweak some meomory pramater to get rid of this paging error.
    Thanks,
    Debasis.

  • MEMORY_NO_MORE_PAGING error

    Hi,
    We are using ECC 5.0 here. Our DB is Oracle 9.2.0.6 and OS is AIX.
    We have a problem here.
    Our Finance people run a report "S_ALR_87013542". It was working fine.
    But now it is giving an error with ABAP Dump. The error is MEMORY_NO_MORE_PAGING.
    I have increased the parameter "rdisp/PG_SHM" to the double value. Now the value is 16384. But it is still giving the same error.
    I increased it on a Dialog Instance (application server through which Finance people access SAP)
    I searched the notes, but could not find anything relevant about my error.
    I have tried to run the report in the night when there is no load on the server. But even then it gives the same error.
    My different Memory Paramters for the App server for finance people are listed below:-
    ztta/roll_area                              3000320   
    rdisp/ROLL_SHM                              16384     
    rdisp/ROLL_MAXFS                            32768     
    rdisp/PG_SHM                                16384     
    rdisp/PG_MAXFS                              32768     
    abap/heap_area_dia                          2000683008
    abap/heap_area_nondia                       2000683008
    abap/heap_area_total                        2000683008
    abap/heaplimit                              40894464  
    abap/swap_reserve                           20971520  
    ztta/roll_extension                         2000683008
    My ABAP dump gives this error:-
    Error analysis
        The ABAP/4 runtime system and the ABAP/4 compiler use a common
        interface to store different types of data in different parts of
        the SAP paging area. This data includes the
        ABAP/4 memory (EXPORT TO MEMORY), the SUBMIT REPORT parameters,
        CALL DIALOG and CALL TRANSACTION USING, as well as internally defined
        macros (specified with DEFINE).
                                                                                    To store further data in the SAP paging area, you attempted to
        allocate a new SAP paging block, but no more blocks were
        available.
                                                                                    When the SAP paging overflow occurred, the ABAP/4 memory contained
        entries for 55 of different IDs.
                                                                                    Please note:
        To facilitate error handling, the ABAP/4 memory was
        deleted.
    How to correct the error
        The amount of storage space (in bytes) filled at termination time was:
                                                                                    Roll area...................... 16128
        Extended memory (EM)........... 418992800
        Assigned memory (HEAP)......... 0
        Short area..................... " "
        Paging area.................... 40960
        Maximum address space.......... 4294967295
                                                                                    By calling Transaction SM04 and choosing 'Goto' -> 'Block list',
        you can display an overview of the current roll and paging memory
        levels resulting from active users and their transactions. Try to
        decide from this whether another program requires a lot of memory
        space (perhaps too much).
                                                                                    The system log contains more detailed information about the
        termination. Check for any unwanted recursion.
        Determine whether the error also occurs with small volumes of
        data. Check the profile (parameter "rdisp/PG_MAXFS", see
        Installation Guidelines).
        Is the disk or the file system that contains the paging file
        full to the extent that it cannot be increased, although it has
        not yet reached the size defined in the profile? Is the
        operating system configured to accommodate files of such a
        size?
                                                                                    The ABAP processor stores different types of data in the SAP paging area
        . These include:
                                                                                    (1) Data clusters (EXPORT ... TO MEMORY ...)
           (2) Parameters when calling programs (SUBMIT REPORT ...),
            dialog modues (CALL DIALOG ...) and transactions
            (CALL TRANSACTION USING ...)
        (3) Internally defined macros (DEFINE ...)
                                                                                    Accordingly, you should check the relevant statements in a program
    that results in an overflow of the SAP paging area.
                                                                                    The EXPORT statement is particularly critical - specifically when many
    internal tables, possibly with different IDs, are written to the
    memory.                                                                   
    Kindly help
    Regards,
    Tajinder

    Hello,
    Here the parameters for concern are
    1.rdisp/PG_SHM
    2.rdisp/PG_MAXFS
    1.rdisp/PG_SHM :
    The value specifies the size of the paging buffer in 8KB blocks.
    A paging buffer is no longer required for SAP Memory Managment,
    because internal tables and lists are not stored in SAP paging.
    Default : 0
    2.rdisp/PG_MAXFS :
    This value specifies the size of the SAP paging file in 8KB
    blocks.  The paging file is used to store extracts and for
    Export to Memory.
    Aim:
    The paging file must be sufficiently large. It is not a problem
    if it is set to too large a size.
    Dependencies:
    Sufficient disk space
    You can try
    1.Optimize the code, to use less memory.
    OR
    2.Increasing the parameter rdisp/PG_MAXFS as per the availability of disk space.
    Hope this solves your problem.
    Regards,
    Edited by: Satish P on Oct 21, 2008 2:01 PM

Maybe you are looking for

  • ICal and PHP iCalendar Issue/Conflict

    I'm currently using iCal 2.0.4 and I'm trying to publish some calendars to my private server using PHP iCalendar. I have it all set up and I can get it working, but I am running into one specific problem: The minimum permissions needed for this whole

  • Planning version 3.3

    Hello all- In Hyperion Planning prior to version 9 (during the time of application manager) how did we add attributes to the application( was it through web client?) and how was refresh of application done via planning desktop? Thanks! Edited by: use

  • My playlist starts from the end

    Hi, I've burned 9 cd's and they all start from the last song.   I've tried reversing the order but it still plays from the last song.   Any suggestions will be appreciated.   thank you in advance

  • C# Application using Oracle database

    Hello! I need to create a C# app using oracle database. I don't know how to create a database files (i found that oracle use more than one file for database). I need to create new database, than tables and then connect it in C# application. I don't k

  • Newbie trying to set up time machine

    I've just tried setting up Time Machine and it's tell me that I need Airport Utility. I'm using another wireless modem. Can it be set up without Airport Utility? I just bought a wireless modem should I take it back and buy Airport Utility? Thanks, mi