Error message in AP inv

hi All,
Wew've got error message : "money overflow : cannot display all digits (ODBC-104) {7001 -21]" when add A/P invoice. We use SAP B1 2007A SP01 PL8. Pls advice.
Thx and Rgds,
Andres

Hi dear,
Check the below thread:
Money Overflow when copying from AP reserve Invoice
Money overflow error when updating a Purchase Order
Money Overflow (ODBC -104) Error
You can check SAP note 1224266. Although it is for some other document types, it may relate to you.
Regards,
Neetu

Similar Messages

  • ALV .....uregent plzz (some error message while executing)

    *& Report  ZAREPAS22
    REPORT  zarepas22 LINE-SIZE 250.
    TABLES : vbak,vbap,likp,lips,vbrk,vbrp,kna1,vbfa.
    DATA : ok_code              LIKE        sy-ucomm,
           g_container          TYPE scrfname VALUE 'BCALV8_GRID_DEMO_0100_VASU',
           docking              TYPE REF TO cl_gui_docking_container,
           splitter_1           TYPE REF TO cl_gui_splitter_container,
           splitter_2           TYPE REF TO cl_gui_splitter_container,
           splitter_3           TYPE REF TO cl_gui_splitter_container,
           cell_top1            TYPE REF TO cl_gui_container,
           cell_bottom1         TYPE REF TO cl_gui_container,
           cell_top2            TYPE REF TO cl_gui_container,
           cell_bottom2         TYPE REF TO cl_gui_container,
           cell_left            TYPE REF TO cl_gui_container,
           cell_middle          TYPE REF TO cl_gui_container,
           cell_right           TYPE REF TO cl_gui_container,
           grid1                TYPE REF TO cl_gui_alv_grid,
           grid2                TYPE REF TO cl_gui_alv_grid,
           grid3                TYPE REF TO cl_gui_alv_grid,
           grid4                TYPE REF TO cl_gui_alv_grid,
           grid5                TYPE REF TO cl_gui_alv_grid.
    DATA: li_fieldcat1          TYPE lvc_t_fcat,
          li_fieldcat2          TYPE lvc_t_fcat,
          li_fieldcat3          TYPE lvc_t_fcat,
          li_fieldcat4          TYPE lvc_t_fcat,
          li_fieldcat5          TYPE lvc_t_fcat,
          lv_layout             TYPE lvc_s_layo,
          lv_variant            TYPE disvariant.
    TYPES:BEGIN OF gty_itab1,
          vbeln                 TYPE vbak-vbeln,
          kunnr                 TYPE vbak-kunnr,
          erdat                 TYPE vbak-erdat,
    END OF gty_itab1.
    TYPES:BEGIN OF gty_itab2,
          vbeln                 TYPE vbap-vbeln,
          posnr                 TYPE vbap-posnr,
          matnr                 TYPE vbap-matnr,
          kwmeng                TYPE vbap-kwmeng,
          netwr                 TYPE vbap-netwr,
    END OF gty_itab2.
    TYPES:BEGIN OF gty_itab3,
          vbeln                 TYPE likp-vbeln,
          ernam                 TYPE likp-ernam,
          erzet                 TYPE likp-erzet,
          posnr                 TYPE lips-posnr,
          matnr                 TYPE lips-matnr,
    END OF gty_itab3.
    TYPES:BEGIN OF gty_itab4,
          vbeln                 TYPE vbrk-vbeln,
          fkart                 TYPE vbrk-fkart,
          posnr                 TYPE vbrp-posnr,
          fkimg                 TYPE vbrp-fkimg,
    END OF gty_itab4.
    TYPES:BEGIN OF gty_itab5,
          kunnr                 TYPE kna1-kunnr,
          name1                 TYPE kna1-name1,
          name2                 TYPE kna1-name2,
    END OF gty_itab5.
    DATA:gt_itab1 TYPE STANDARD TABLE OF gty_itab1,
         gwa_itab1 TYPE gty_itab1.
    DATA:gt_itab2 TYPE STANDARD TABLE OF gty_itab2,
         gwa_itab2 TYPE gty_itab2.
    DATA:gt_itab3 TYPE STANDARD TABLE OF gty_itab3,
         gwa_itab3 TYPE gty_itab3.
    DATA:gt_itab4 TYPE STANDARD TABLE OF gty_itab4,
         gwa_itab4 TYPE gty_itab4.
    DATA:gt_itab5 TYPE STANDARD TABLE OF gty_itab5,
         gwa_itab5 TYPE gty_itab5.
    Global data
    DATA: gt_fieldcat TYPE STANDARD TABLE OF lvc_s_fcat,
          gwa_fieldcat LIKE LINE OF gt_fieldcat.
    Macro to fill field catalog
    DEFINE m_fill_field_catalog.
      gwa_fieldcat-tabname   = &1.
      gwa_fieldcat-fieldname = &2.
      gwa_fieldcat-scrtext_s = &3.
      gwa_fieldcat-scrtext_l = &4.
      Append field catalog details to field catalog internal table
      append gwa_fieldcat to gt_fieldcat.
    END-OF-DEFINITION.
    *selection screen for selecting range of values
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
    SELECT-OPTIONS: s_vbeln FOR vbak-vbeln.   " OBLIGATORY.      " OBLIGATORY
    SELECTION-SCREEN END OF BLOCK b1.
          CLASS lcl_eventhandler DEFINITION
    CLASS lcl_eventhandler DEFINITION.
      PUBLIC SECTION.
        CLASS-METHODS:
          handle_double_click FOR EVENT double_click OF cl_gui_alv_grid
            IMPORTING
              e_row
              e_column
              es_row_no
              sender.  " sending control, i.e. ALV grid that raised event
    ENDCLASS.                    "lcl_eventhandler DEFINITION
          CLASS lcl_eventhandler IMPLEMENTATION
    CLASS lcl_eventhandler IMPLEMENTATION.
      METHOD handle_double_click.
    *DEFINE LOCAL DATA.
    *DISTINGUISH ACCORDING TO SENDING GRID INSTANCE
        CASE sender.
          WHEN grid1.
            READ TABLE gt_itab1 INTO gwa_itab1 INDEX e_row-index.
            CHECK ( gwa_itab1-vbeln IS NOT INITIAL ).
            CALL METHOD grid1->set_current_cell_via_id
              EXPORTING
                is_row_no = es_row_no.
            CALL METHOD cl_gui_cfw=>set_new_ok_code
              EXPORTING
                new_code = 'ORDER_DETAILS'.
          WHEN grid2.
            READ TABLE gt_itab2 INTO gwa_itab2 INDEX e_row-index.
            CHECK ( gwa_itab2-vbeln IS NOT INITIAL ).
            CALL METHOD grid2->set_current_cell_via_id
              EXPORTING
                is_row_no = es_row_no.
            CALL METHOD cl_gui_cfw=>set_new_ok_code
              EXPORTING
                new_code = 'DELIVERY_DETAILS'.
          WHEN grid3.
            READ TABLE gt_itab3 INTO gwa_itab3 INDEX e_row-index.
            CHECK ( gwa_itab3-vbeln IS NOT INITIAL ).
            CALL METHOD grid3->set_current_cell_via_id
              EXPORTING
                is_row_no = es_row_no.
            CALL METHOD cl_gui_cfw=>set_new_ok_code
              EXPORTING
                new_code = 'BILLING_DETAILS'.
          WHEN grid4.
            READ TABLE gt_itab4 INTO gwa_itab4 INDEX e_row-index.
            CHECK ( gwa_itab4-vbeln IS NOT INITIAL ).
            CALL METHOD grid4->set_current_cell_via_id
              EXPORTING
                is_row_no = es_row_no.
            CALL METHOD cl_gui_cfw=>set_new_ok_code
              EXPORTING
                new_code = 'BILLING_DETAILS'.
          WHEN grid5.
            READ TABLE gt_itab5 INTO gwa_itab5 INDEX e_row-index.
            CHECK ( gwa_itab5-kunnr IS NOT INITIAL ).
          WHEN OTHERS.
        ENDCASE.
      ENDMETHOD.                    "handle_double_click
    ENDCLASS.    "lcl_eventhandler IMPLEMENTATION
    START-OF-SELECTION.
      SELECT vbeln kunnr erdat FROM vbak INTO TABLE gt_itab1
                              WHERE vbeln IN  s_vbeln.
    creating docking container
      CREATE OBJECT docking
        EXPORTING
         parent     = cl_gui_container=>screen0
         ratio      = 90
       EXCEPTIONS
        OTHERS      = 6.
      IF sy-subrc EQ 0.
      ENDIF.
    Create splitter container
      CREATE OBJECT splitter_1
          EXPORTING
            parent            = docking
            rows              = 1
            columns           = 3
          EXCEPTIONS
            cntl_error        = 1
            cntl_system_error = 2
            OTHERS            = 3.
      IF sy-subrc  EQ 0.
      ENDIF.
    Get cell container
      CALL METHOD splitter_1->get_container
        EXPORTING
          row       = 1
          column    = 1
        RECEIVING
          container = cell_left.
      CALL METHOD splitter_1->get_container
        EXPORTING
          row       = 1
          column    = 2
        RECEIVING
          container = cell_middle.
      CALL METHOD splitter_1->get_container
        EXPORTING
          row       = 1
          column    = 3
        RECEIVING
          container = cell_right.
    Create 2nd splitter container
      CREATE OBJECT splitter_2
      EXPORTING
          parent            = cell_left
          rows              = 2
          columns           = 1
        EXCEPTIONS
          cntl_error        = 1
          cntl_system_error = 2
          OTHERS            = 3.
      IF sy-subrc  EQ 0.
      ENDIF.
    Get cell container
      CALL METHOD splitter_2->get_container
        EXPORTING
          row       = 1
          column    = 1
        RECEIVING
          container = cell_top1.
      CALL METHOD splitter_2->get_container
        EXPORTING
          row       = 2
          column    = 1
        RECEIVING
          container = cell_bottom1.
    Create 3rd splitter container
      CREATE OBJECT splitter_3
          EXPORTING
            parent            = cell_middle
            rows              = 2
            columns           = 1
          EXCEPTIONS
            cntl_error        = 1
            cntl_system_error = 2
            OTHERS            = 3.
      IF sy-subrc  EQ 0.
      ENDIF.
    Get cell container
      CALL METHOD splitter_3->get_container
        EXPORTING
          row       = 1
          column    = 1
        RECEIVING
          container = cell_top2.
      CALL METHOD splitter_3->get_container
        EXPORTING
          row       = 2
          column    = 1
        RECEIVING
          container = cell_bottom2.
    Create ALV grids
      CREATE OBJECT grid1
        EXPORTING
          i_parent          = cell_top1
        EXCEPTIONS
          OTHERS            = 5.
      IF sy-subrc  EQ 0.
      ENDIF.
      CREATE OBJECT grid2
        EXPORTING
          i_parent          = cell_bottom1
        EXCEPTIONS
          OTHERS            = 5.
      IF sy-subrc  EQ 0.
      ENDIF.
      CREATE OBJECT grid3
        EXPORTING
          i_parent          = cell_top2
        EXCEPTIONS
          OTHERS            = 5.
      IF sy-subrc  EQ 0.
      ENDIF.
      CREATE OBJECT grid4
        EXPORTING
          i_parent          = cell_bottom2
        EXCEPTIONS
          OTHERS            = 5.
      IF sy-subrc  EQ 0.
      ENDIF.
      CREATE OBJECT grid5
        EXPORTING
          i_parent          = cell_right
        EXCEPTIONS
          OTHERS            = 5.
      IF sy-subrc  EQ 0.
      ENDIF.
    Set event handler
      SET HANDLER: lcl_eventhandler=>handle_double_click FOR grid1.
      SET HANDLER: lcl_eventhandler=>handle_double_click FOR grid2.
      SET HANDLER: lcl_eventhandler=>handle_double_click FOR grid3.
      SET HANDLER: lcl_eventhandler=>handle_double_click FOR grid4.
      SET HANDLER: lcl_eventhandler=>handle_double_click FOR grid5.
    lv_layout-zebra             = 'X'.
    lv_layout-cwidth_opt        = 'X'.
    lv_variant                  = 'ZAREPAS22'.
    Display data
      PERFORM prepare_alv_fieldcat1  CHANGING li_fieldcat1.
    *commented lines i suppose to include here....
      CALL METHOD grid1->set_table_for_first_display
        EXPORTING
          is_variant      = lv_variant
          i_save          = 'A'
          i_default       = space
          is_layout       = lv_layout
        CHANGING
          it_outtab       = gt_itab1
          it_fieldcatalog = li_fieldcat1
        EXCEPTIONS
          OTHERS          = 4.
      PERFORM prepare_alv_fieldcat2  CHANGING li_fieldcat2.
      CALL METHOD grid2->set_table_for_first_display
        EXPORTING
          is_variant      = lv_variant
          i_save          = 'A'
          i_default       = space
          is_layout       = lv_layout
        CHANGING
          it_outtab       = gt_itab2
          it_fieldcatalog = li_fieldcat2
        EXCEPTIONS
          OTHERS          = 4.
      PERFORM prepare_alv_fieldcat3  CHANGING li_fieldcat3.
      CALL METHOD grid3->set_table_for_first_display
        EXPORTING
          is_variant      = lv_variant
          i_save          = 'A'
          i_default       = space
          is_layout       = lv_layout
        CHANGING
          it_outtab       = gt_itab3
          it_fieldcatalog = li_fieldcat3
        EXCEPTIONS
          OTHERS          = 4.
      PERFORM prepare_alv_fieldcat4  CHANGING li_fieldcat4.
      CALL METHOD grid4->set_table_for_first_display
        EXPORTING
          is_variant      = lv_variant
          i_save          = 'A'
          i_default       = space
          is_layout       = lv_layout
        CHANGING
          it_outtab       = gt_itab4
          it_fieldcatalog = li_fieldcat4
        EXCEPTIONS
          OTHERS          = 4.
      PERFORM prepare_alv_fieldcat5  CHANGING li_fieldcat5.
      CALL METHOD grid5->set_table_for_first_display
        EXPORTING
          is_variant      = lv_variant
          i_save          = 'A'
          i_default       = space
          is_layout       = lv_layout
        CHANGING
          it_outtab       = gt_itab5
          it_fieldcatalog = li_fieldcat5
        EXCEPTIONS
          OTHERS          = 4.
    Link the docking container to the target dynpro
      CALL METHOD docking->link
        EXPORTING
          repid  = syst-repid
          dynnr  = '0100'
        EXCEPTIONS
          OTHERS = 4.
      IF sy-subrc  EQ 0.
      ENDIF.
    NOTE: dynpro does not contain any elements (ok_code -> GD_OKCODE)
      CALL SCREEN '0100'.
    END-OF-SELECTION.
    *&      Module  STATUS_0100  OUTPUT
          text
    MODULE status_0100 OUTPUT.
      SET PF-STATUS 'STATUS_0100'.
    SET TITLEBAR 'xxx'.
    Refresh display of detail ALV list
      CALL METHOD grid2->refresh_table_display
        EXCEPTIONS
          OTHERS = 2.
      IF sy-subrc  EQ 0.
      ENDIF.
    Refresh display of detail ALV list
      CALL METHOD grid3->refresh_table_display
        EXCEPTIONS
          OTHERS = 2.
      IF sy-subrc  EQ 0.
      ENDIF.
    Refresh display of detail ALV list
      CALL METHOD grid4->refresh_table_display
        EXCEPTIONS
          OTHERS = 2.
      IF sy-subrc  EQ 0.
      ENDIF.
    Refresh display of detail ALV list
      CALL METHOD grid5->refresh_table_display
        EXCEPTIONS
          OTHERS = 2.
      IF sy-subrc  EQ 0.
      ENDIF.
    ENDMODULE.                 " STATUS_0100  OUTPUT
    *&      Module  USER_COMMAND_0100  INPUT
          text
    MODULE user_command_0100 INPUT.
      CASE sy-ucomm.
        WHEN 'BACK' OR
             'EXIT'  OR
             'CANCEL'.
          SET SCREEN 0.LEAVE SCREEN.
    USER HAS PUSHED BUTTON "DISPLAY OREDERS"
        WHEN 'ORDER_DETAILS'.
          PERFORM order_show_details.
        WHEN 'DELIVERY_DETAILS'.
          PERFORM delivery_show_details.
        WHEN 'BILLING_DETAILS'.
          PERFORM billing_show_details.
        WHEN OTHERS.
      ENDCASE.
      CLEAR : ok_code.
    ENDMODULE.                 " USER_COMMAND_0100  INPUT
    *&      Form  ORDER_SHOW_DETAILS
          text
    -->  p1        text
    <--  p2        text
    FORM order_show_details .
    define local data
      DATA:
        ld_row      TYPE i,
        gwa_itab1     TYPE vbak.
      CALL METHOD grid1->get_current_cell
        IMPORTING
          e_row = ld_row.
      READ TABLE gt_itab1 INTO gwa_itab1 INDEX ld_row.
      CHECK ( syst-subrc = 0 ).
      SELECT kunnr name1 name2 FROM  kna1 INTO TABLE gt_itab5
             WHERE  kunnr  = gwa_itab1-kunnr.
      SELECT vbeln posnr matnr kwmeng netwr FROM  vbap INTO TABLE gt_itab2
             WHERE  vbeln  = gwa_itab1-vbeln.
    *REFRESH: gt_LIPS.
    ENDFORM.                    " ORDER_SHOW_DETAILS
    *&      Form  DELIVERY_SHOW_DETAILS
          text
    -->  p1        text
    <--  p2        text
    FORM delivery_show_details .
    define local data
      DATA:
        ld_row      TYPE i.
       gwa_itab2     TYPE vbap.
      CALL METHOD grid2->get_current_cell
        IMPORTING
          e_row = ld_row.
      READ TABLE gt_itab2 INTO gwa_itab2 INDEX ld_row.
      CHECK ( syst-subrc = 0 ).
      SELECT SINGLE * FROM vbfa WHERE vbelv = gwa_itab2-vbeln
                                  AND vbtyp_n = 'J'.
      SELECT posnr matnr FROM lips INTO TABLE gt_itab3
           WHERE vbeln = vbfa-vbeln
             AND vgpos = gwa_itab2-posnr.
    *REFRESH: gt_LIPS.
    ENDFORM.                    " DELIVERY_SHOW_DETAILS
    *&      Form  BILLING_SHOW_DETAILS
          text
    -->  p1        text
    <--  p2        text
    FORM billing_show_details .
    define local data
      DATA:
        ld_row      TYPE i.
       gwa_itab3     TYPE lips.
      CALL METHOD grid3->get_current_cell
        IMPORTING
          e_row = ld_row.
      READ TABLE gt_itab3 INTO gwa_itab3 INDEX ld_row.
      CHECK ( syst-subrc = 0 ).
      SELECT SINGLE * FROM vbfa WHERE vbelv = gwa_itab3-vbeln
                                  AND vbtyp_n = 'M'.
      SELECT posnr fkimg FROM vbrp INTO TABLE gt_itab4
           WHERE vbeln = vbfa-vbeln
             AND vgpos = gwa_itab3-posnr.
    ENDFORM.                    " BILLING_SHOW_DETAILS
    *&      Form  prepare_alv_fieldcat
    FORM prepare_alv_fieldcat1  CHANGING lpi_fieldcat1 TYPE lvc_t_fcat.
      m_fill_field_catalog 'GTY_ITAB1' 'VBELN' 'Ord Num'(004) 'Order Number'(005).
      m_fill_field_catalog 'GTY_ITAB1' 'kunnr' 'sold party'(006) 'SOLD TO PARTY'(007).
      m_fill_field_catalog 'GTY_ITAB1' 'ERDAT' 'Ord Date'(008) 'Order Date'(009).
      lpi_fieldcat1[] = gt_fieldcat[].
      REFRESH gt_fieldcat.
    ENDFORM.                    "prepare_alv_fieldcat1
    *&      Form  prepare_alv_fieldcat
          text
         -->LPI_FIELDCAT  text
    FORM prepare_alv_fieldcat2  CHANGING lpi_fieldcat2 TYPE lvc_t_fcat.
      m_fill_field_catalog 'GTY_ITAB2' 'vbeln'  'sales Doc'(010) 'sales document'(011).
      m_fill_field_catalog 'GTY_ITAB2' 'POSNR'  'sales Doc'(012) 'sales documentITEM'(013).
      m_fill_field_catalog 'GTY_ITAB2' 'matnr'  'Mat num'(014) 'material number'(015).
      m_fill_field_catalog 'GTY_ITAB2' 'kwmeng' '*** ord qty'(016) 'cumilative order qty'(017).
      m_fill_field_catalog 'GTY_ITAB2' 'netwr'  'nwt val'(018) 'net val of item'(019).
      lpi_fieldcat2[] = gt_fieldcat[].
      REFRESH gt_fieldcat.
    ENDFORM.                    "prepare_alv_fieldcat2
    *&      Form  prepare_alv_fieldcat
          text
         -->LPI_FIELDCAT  text
    FORM prepare_alv_fieldcat3  CHANGING lpi_fieldcat3 TYPE lvc_t_fcat.
      m_fill_field_catalog 'GTY_ITAB3' 'posnr'  'del item'(020) 'delivery item'(021).
      m_fill_field_catalog 'GTY_ITAB3' 'matnr'  'mat num'(022) 'material number'(023).
      lpi_fieldcat3[] = gt_fieldcat[].
      REFRESH gt_fieldcat.
    ENDFORM.                    "prepare_alv_fieldcat3
    *&      Form  prepare_alv_fieldcat
          text
         -->LPI_FIELDCAT  text
    FORM prepare_alv_fieldcat4  CHANGING lpi_fieldcat4 TYPE lvc_t_fcat.
      m_fill_field_catalog 'GTY_ITAB4' 'posnr'  'bill item'(024) 'billing item'(025).
      m_fill_field_catalog 'GTY_ITAB4' 'fkimg'  'act inv'(026) 'actuval inv qty'(028).
      lpi_fieldcat4[] = gt_fieldcat[].
      REFRESH gt_fieldcat.
    ENDFORM.                    "prepare_alv_fieldcat4
    *&      Form  prepare_alv_fieldcat
          text
         -->LPI_FIELDCAT  text
    FORM prepare_alv_fieldcat5  CHANGING lpi_fieldcat5 TYPE lvc_t_fcat.
      m_fill_field_catalog 'GTY_ITAB5' 'kunnr'  'cust no'(029) 'cust number'(030).
      m_fill_field_catalog 'GTY_ITAB5' 'name1'  'name1'(031) 'name1'(032).
      m_fill_field_catalog 'GTY_ITAB5' 'name2'  'name2'(033) 'name2'(034).
      lpi_fieldcat5[] = gt_fieldcat[].
      REFRESH gt_fieldcat.
    ENDFORM.                    "prepare_alv_fieldcat5
    *appending
    *FORM append_catalog1 USING value(p_fname)
                             value(p_tname)
                             value(p_coltext).
    DATA : v_fcat TYPE lvc_s_fcat.
            v_fcat-fieldname = p_fname.
            v_fcat-ref_table = p_tname.
            v_fcat-coltext   = p_coltext.
    APPEND v_fcat TO li_fieldcat1.
    *ENDFORM.                    "append_catalog

    Hi Srinivas,
    What is the Report Requirement,
    What is the Error Message u r getting.

  • Error Message when trying to update a form

    Hello,
    I receive the following error message when I try to update a form:
    Error: The preference path does not exist: ORACLE.WEBVIEW.PARAMETERS.1129327645 (WWC-51000)
    The preference path does not exist: ORACLE.WEBVIEW.PARAMETERS.1129327645 (WWC-51000)
    Insufficient privileges (WWV-12600)
    When I click on the Update button on my form, I call a dynamic page which calls a procedure to update the database and display a confirmation message to the user.
    The parameter I am having a problem with is the v_ins_1.
    This links does not work: http://XXX:####/servlet/page?v_prt_stck_1=CLIENT+PAPER&v_prt_stck_2=&v_prt_stck_3=&v_prt_stck_4=&v_env_stck=&v_ins_1=SS-002+Dollar+Cost+Averaging+%28PMID+%3D+40215%29&v_ins_2=&v_in s_3=&v_ins_4=&v_ins_5=&v_ins_6=&v_del_opt=&submit=Update&p_plan_id=01234&p_cust_id=INV&p_lot_type=MAIN&_pageid=59&_dad=portal30&_schema=PORTAL30&_mode=3&_type=site&_fsiteid=34&_fid =2543&_fnavbarid=1&_fnavbarsiteid=34&_fedit%3D0%26_fmode=2&_fdisplaymode=1&_fcalledfrom=1&_fdisplayurl=
    This link works: http://XXX:####/servlet/page?v_prt_stck_1=CLIENT+PAPER&v_prt_stck_2=&v_prt_stck_3=&v_prt_stck_4=&v_env_stck=&v_ins_1=*Custom+Inventory&v_ins_2=&v_ins_3=&v_ins_4=&v_ins_5=&v_ins_6=& v_del_opt=&submit=Update&p_plan_id=01234&p_cust_id=INV&p_lot_type=MAIN&_pageid=59&_dad=portal30&_schema=PORTAL30&_mode=3&_type=site&_fsiteid=34&_fid=2543&_fnavbarid=1&_fnavbarsitei d=34&_fedit%3D0%26_fmode=2&_fdisplaymode=1&_fcalledfrom=1&_fdisplayurl=
    Any suggestions?

    Also got a message "Acrobat failed to set up a workflow folder in the specified shared folder or hosted service"..?

  • How to track Error message no.

    Hi,
    Could anyone please expalin how to track error messages using message no.
    Urgent???????????????????
    Reg,
    CM

    Hi,
    You can not track just based on the Message number whether it is Error or Warning Message and where it is effecting.
    But for this message number you will have Message class/Application Area Based on this Message class you can check on which area (Masterdata/Purchasing/Inv Mgmt/LIV) this message number is effecting.
    Then in SE91 you can enter this Message class then system will show you which area it is related,what is the message number description.
    Then in MM IMG Settings you can check message number for that Particular Area.--Define Attibutes for System messages in every area.
    rgds
    Chidanand

  • Error message in MIRO

    Hi Masters of MIRO,
    I have REQUIRMENT where i have to display an ERROR message.
    currently IF company code, Ref NO & Inv Date alreday exists it issues an error message.
    Check if invoice already entered under accounting doc. no. 5100000010 2011
    Message no. M8108
    now i want add another field called AMOUNT to Company code, Ref NO & Inv Date
    IF 4 OF THEM exists THEN only an ERROR message should COME.
    how can i achieve this...is their any USEREXIT or BADI where by we can enhance.
    much appriciated in advance.
    thank you,
    pasala.

    Hi
    Ok now I've understood what u need
    The problem is SAP standard check the duplicated invoice for Company Code, doc. date and doc. reference so just as your actual situation; if  it's not set the control for reference, then SAP will use the amount.
    That means standard control doesn't use Company code, Document Date, Reference and Amount together.
    In the FM MRM_FI_DOCUMENT_CHECK is called the BTE for Argentin only, that any BTE is available there
    Moreover the problem is your control is more selective than SAP one, that mean u should deactive the standard control and insert a your own one.
    U can try to use the BTE for invoice checking as 00001020, 00001025 or 00001060
    But it could be very dangerous to deactive in standard control, so u should consider to change (or enhance) the standard function module MRM_FI_DOCUMENT_CHECK
    Max

  • Unwanted error message

    how do I get the message not to appear by day Invalid
    (Frm-50004) in forms 6i

    Hy Craig, I entered the debug mode runtime messages and realized that the
    problem is the ON-ERROR trigger, where the
    following code:
    Declare
         ret_alert number;
         errnum NUMBER := ERROR_CODE;
         errtxt VARCHAR2(80) := ERROR_TEXT;
         errtyp VARCHAR2(3) := ERROR_TYPE;
    begin
    --If errnum = 40202 then
         -- mensagem('ale_1','need Date',ret_alert);
    if errnum = 50002 then
         mensagem('ale_1','invalid month',ret_alert);
         --message('Mês inválido');
    raise form_trigger_failure;     
    end if;
    if errnum = 50004 then
    mensagem('ale_1','invalid day',ret_alert);
    --message('Dia inválido');*
    raise form_trigger_failure;
    end if;
    if errnum = 50003 then
         mensagem('ale_1','invalid year',ret_alert);
         --message('Ano inválido');
    raise form_trigger_failure;
    end if;
    if errnum = 50026 then
         mensagem('ale_1','invalid format',ret_alert);
         --message('Formato de Data Inválido');
    raise form_trigger_failure;                              
    end if;
    end;
    The problem in this line "if errnum = 50004 then"
    run to the line of RAISE, then control returns to
    the beginning of the line of the IF, and does it for 3 times.
    Edited by: user6670632 on 20/04/2010 14:41

  • MIRO, multi-account assignment, error message M8063,

    When I do MIRO referring to a PO with multi-account assignment and Indicator GR-Based Invoice Verification is untick, I receive the following error message u201CDocument does not contain any items Message no. M8063 Diagnosis The document contains no posting lines with a value other than zerou201D.
    But when I make a good receipt MIGO, so I can post my invoice correctly (MIRO).
    The business process is to post a MIRO referring to a PO with multi-account assignment without a GR.
    Thanks

    the GR-Based Inv. Verif indicator in vendor master record is untick.
    however, I can now post ,but before, in MIRO, I have to enter the quantities and the amounts in the multi account assignment dialog box (in MIRO, clic on the buton called Acct Assgt).
    so the question now, why doesn t  the system default the multi-account assignment from the PO?
    thanks

  • Windows Vista: Ipod Error Message, no longer read by PCs

    Hello,
    I have a 5th generation black ipod video with 30GB of memory.
    The other day I hooked it up to my laptop (Toshiba, 4 months old) that it's been functioning on with no problems whatsoever. This weird error message flashed twice about it not being able to sync because of some software problem.
    Eversince then, the only thing I can charge my ipod on is the family treadmill in the basement (~_~) as no other computer in the house recognizes it. I can't even charge it through the wall sockets, either.
    I have changed the ipod cord, still no luck. I've also reset the device about 3 or 4 times and uninstalled, restarted the laptop then reinstalled itunes. I would like to reset it back to factory settings but that's impossible as computers/laptops don't pick it up. I live very far from a Mac store...
    What's a girl to do? I can't live without my Busta Rhymes and Wu-Tang Clan!
    Any advice would be greatly appreciated! Thanks!

    you have to update Vista go to this site and up-date http://windowsupdate.microsoft.com

  • Error message into a Variable.

    Dear users,
    I have a rather usual (unusual from the weekend beers for me though!!) query which I can't figure out a proper way to implement.
    My requirement is like this:
    I have a message class in which I want to define a text 'Employee number & not found'.
    I want to use this in the program, but not to raise this error. Instead, I want to move this error message with the Employee number into a Character(200) variable.
    So instead of using MESSAGE e0xx(messageclass) USING employee number, I would like to move the error text into a variable which looks like:
    lv_text = e0xx(messageclass) USING '1234'   which stores the text 'Employee number 1234 not found' in lv_text.
    How would I acheive it??
    Thanks, V!

    Try tis way
    message e999(00) with i_emp-empno into lv_text.
    press f1 in message will provide you more details

  • IPod seen by windows, not by iTunes+ weird error message

    I have a first generation 2GB iPod nano and i use windows xp. I can't load any music because iTunes doesn't see my iPod and an error message pops up that reads like this: "iTunes: iTunes.exe corrupt file. The file or directory \iPod_Control\iTunes is corrupt and unredable. Please run the checkdisk utility." I've tried everything, reinstalling iTunes, different versions, reinstalling OS, resetting iPod, even on another computer, same problem. Other than that, the iPod works normally, it's just lacking music..
    and why is there no email adress from apple for service qustions? 10x

    I still don't get it, how can I put it in disk mode if I CANNOT see the iPod in iTunes..?
    Did you read the document i linked you to? here's another link to it:
    Putting iPod into Disk Mode
    whereabouts in that procedure in that document (that you get to by clicking that link) does it say that you have to connect it to iTunes to put it into disk mode?
    ... never mind ... i guess you've fixed it anyway ...

  • Error message iPod cannot update b/c all of the playlists no longer exist

    Hello. I have been getting this error message. "Songs on the iPod "MAR(the name of my iPod)" cannot update because all of the playlists selecting for updating no longer exist." And my playlists are still on the left side in my iTunes. They do exist. I have a feeling ths might have to do with the fact that on vacation the person I was visiting gave me a gift of putting all of his music that would fit into the external hard drive part of my iPod, and for the past week or so I have been putting that music onto my 40 GB portable hard drive at home. I suspect I took a vital folder out of my iPod by accident. Right now I have the folder iPod_control if I open my iPod up in My Computer. Am I missing something? Right now my iPod is empty because iTunes made a composite playlist last week and I deleted it thinking I could get my real playlists back. Can you help me, or reccomend a site/someone who can? Thank you.
    PC   Windows XP  

    hiya!
    And my playlists are still on the left side in my iTunes. They do exist.
    let's just doublecheck this. folks get this message if they have "automatically update selected playlists only" selected in their itunes "ipod" preferences tab. so bring up that tab ("edit > preferences", click "ipod" while the ipod is showing up in the source list), and do a playlist by playlist crosscheck of the playlists selected in that tab, and the playlists showing up in the itunes sourcelist.
    is there any playlist selected in the preferences tab that isn't showing up in the sourcelist?
    love, b

  • Windows Blue Screen Error Message Appears As Soon As IPod Connected

    Everytime I connect my IPod to my computer, I get the Windows Blue Screen error message. Thought it was the cable, so plugged cable in by itself. No problem. Uninstalled IPod and ITunes software and then plugged in IPod, still got the Blue Screen. The Blue Screen says something about "recent plugged in device problem". It is not the cable, it must be the IPod. Did not have this problem when I bought it. Tried it on labtop and get the same error message. I can't do updater or anything that requires me to plug the IPod into a computer because the Blue Screen appears immediately. When I unplug, the Blue Screen remains and locks up the computer so I have to restart each time. I have tried everything I can think of. Please help.

    Hi Mike thank you for replying,
    I am not able to start the computer in safe mode, safe mode with networking, last good known configuration etc, Each time it quickly blue screens and restarts about two secs into the process.
    I was unable to try a clean OS install from the disk as it gave the blue screen error shown in the original post. The same thing happened when I tried to use the repair option on the XP home disc. So i can't get into the computer at all to start diagnosing the fault, the only clue I have is the error message, and after searching the internet I haven't found much enlightenment from that yet.
    If you can help me out or suggest where to search it would be much appreciated.
    Thx

  • IPod Error Message: "The disk could not be read from or written to."

    Hello!
    I was syncing my sister's video iPod (30GB) and this error message pops up "Attempting to copy to the disk. "SARAH'S IPO" failed. The disk could not be read from or written to."
    I have restored it three times already, but once it starts putting the music and files back onto the iPod it pops up with that error message. I have updated to the latest version of iTunes and iPod software available. My OS is Windows XP.
    Is this something serious? Will I be able to fix it myself or will I need to send it in to be fixed by Apple? Will that be expensive? We didn’t get the Apple replacement plan. D=
    Any help would be greatly appreciated. Thank you in advance. ^_^
    PowerBook G4   Mac OS X (10.4.3)   15" PowerBook 1.5 GHz PowerPC G4, 1.5GB RAM - Windows XP with iPod 5 Generation

    Okay I went thru that entire list and here's what I got...
    (1) My OS is XP and is running fine.
    (2) I've updated my windows
    (3) I don't know of any software that might be interfering.
    (4) There are no damaged files.
    (5) My Windows hard-drive is not damaged and I've tried restoring my iPod's disk thru iTunes but it still doesn't work.
    (6) I don't have an iPod photo and I can't find the folder to delete the cache if if I did.
    (7) The USB cord is firmly connected into my USB port and my iPod
    (8) My music is on my external hard-drive so I need to keep 3rd-party hardware connected
    (9) I will try another USB cord to see if that works.
    Is there anything else that I can do? Can Apple fix this?
    Please let me know.

  • IPod Touch will no longer sync...error message.

    For some reason my older iPod Touch without a camera on it will not sync any more and I am getting an error message saying this iPod cannot be synced. Now I had it set up to sync over Wi-Fi and I would occasionally hook up to the computer with the cable and got error messages on both. Now I read something about removing the SC Info Folder. If I do that will that mess things up with syncing my iPhone? 

    What is the exact wording of the error message?

  • Error Message: Need to purge Cache in Adobe Bridge CC (on PC)

    I tried purging using Adobe Bridge by going to Edit/Preferences/Cache then purging, but it becomes non responsive.  The error message said the problem files were at Users/(my user name)/AppData/Roaming/Adobe/BridgeCC/Cache.   There are 4 files in there that are taking up 124 GB!  Can I simply delete these files or will it corrupt my regular files?  I tried doing as some other forums suggested and hold the ALT key down when opening Bridge before purging, but no luck.

    Yes, you can delete the cache files manually,  Just be advised that Bridge will become very, very slow until it finishes rebuilding its caches.  Depending on your files, that can take a few minutes or several hours.
    A good way of doing it is at night, so you can do it before going to bed and let Bridge rebuild caches overnight.
    If you can, save the cache files before deleting them to an external drive, so that you'll have them as backup if something goes wrong.

Maybe you are looking for

  • Mac mini verses dvd recorder: need advice

    I am looking at DVD recorders, mostly so I can burn dvds of programs I have stored on my Comcast DVR. Could a superdrive mac mini do the job instead? I think the Comcast box has Firewire out, as well as component and composite outputs. What is confus

  • Can't install Lightroom 2 on Mac 10.8.2

    Error message says "The Installer encountered an error that caused the installation to fail. Contact the software manufacturer for assistance". Do I need to update in order to install on a Mac running Mountain Lion? thanks, david

  • Load Balance HTTPS servers with redirection

    Hello, I have been tasked with ACE configuration at work as the prior go-to guy for load balancing is no longer available. Trouble is, I have little idea what I’m doing when it comes to the ACE. So, forgive me if the question I have is super basic. A

  • Purpose of using LabVIEW

    Hi: I would like the main purpose of programming the Labview and then make an application. Is the main purpose to reduce the testing time in manufacturing area compared in using the scope or DMM setup with the test fixture without computer. It should

  • Oracle Answers and duplicate rows

    Hello, I have a SQL view called "dups" that shows all rows that are same for 4 key fields INCNUM,TAKE,SAMP,CORR. Now there are a few rows that are indeed duplicates considering those 4 key column BUT there are also rows that are 100% duplicates. Orac