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.

Similar Messages

  • Receiving the error message while executing the Real Time DTP

    Hi,
    I am receiving the error message while executing the Real time DTP for Billing data.
    Error Message - Record filtered in advance as error records with the same key exist     RSM2     722
    When I check the logs below is the message I am able to see. Can someone suggest as how to proceed further.
    Diagnosis
    The existing DTP requires a serialized update because fields are updated
    non-commutatively during the processing run (for example, MOVE).
    Therefore all new data records that have the same semantic key as
    incorrect records that have not yet been corrected in earlier requests
    or earlier data packages of the same request, are filtered out after the
    extraction in a special step. In this way the system ensures that
    incorrect data records are not repeated for your changes, which may not
    contain errors themselves.
    System Response
    The data record is not updated but is written to an error stack.
    Procedure
    Procedure
    Correct all incorrect data records and update them using an error DTP.
    Procedure for System Administration
    I checked the error stack and corrected the entries and let me know as how to proceed further. I am unable to execute the Error DTP as its not allowing me to edit and has only display options.
    Regards,
    Ram

    Hi Arvindh,
    Its  write optimized DSO.. there is no option to generate SIDs.
    Hi Kiran,
    I checked the link u sent me. Here the main issue is..The function module is standard  and its not allowing me  to do enhancement  point..
    Any idea in using Badi's??
    Thanks all...

  • Ds4  can't save files.  Error message: while executing onload in_opOpen.htm

    All of a sudden I'm getting this error message. I can view files and create files but can no longer save files.
    If I try to save a file, I get the following message:
    Full text of message: While executing onLoad in_opOpen.htm, the following Javascript error(s) occurred: In file "_opOpen": onOpen is not defined
    If I click ok in the alert,
    The following translators were not loaded due to errors:
    ASP.html has configuration information that is invalid.
    Data.htm: has configuration information that is invalid.
    ICERegionals.htm has configuration information that is invalid
    Not sure how these were corrupted. How do I fix this problem? The resolutions I've found on line are not working.An example: delete the file called ‘WinFileCache-[random numbers].dat’.. That did not work. I'm using Windows 7 Professional.

    If you've already tried clearing the cache file and personal config folder: Deleting a corrupted cache file
    A good next step would be restoring preferences: Restore preferences | Dreamweaver CS4, CS5, CS5.5, CS6
    Here are some other troubleshooting steps: http://helpx.adobe.com/dreamweaver/kb/troubleshoot-javascript-errors-dreamweaver-cs4.html
    If nothing works, a clean reinstall will probably do the trick: Use the CC Cleaner Tool to solve installation problems | CC, CS3-CS6

  • Pop-up an error message while executing in foreground

    Hi,
    I have a requirement from my client, they want an error message while they are trying to executing the program in foreground. The main reason for this it does not create a spool while executing the program in foreground, it creates only in background.
    Is there any way of doing this?
    Any sort of ideas is highly appreciated.
    Thanks,
    Srini

    Check with your ABAP technical memeber. He should be able to add the error message to the porgram

  • Error message while executing international payroll with schema x000

    Dear Team,
    I am getting the below error message while running international payroll with schema x000.
       "Jump from DAYPR to detailed log
       Incorrect generation of wage types"
    Request forum members to help me on the same.
    Thank you,
    Srinivas

    Hi,
    Thank you for the reply please find below i reviewed all the below tables please gothrough and advice me if any i missed out.
    1)     T555E-Message Descriptions----
    2) T551C-Period work schedule evaluation---
    Grpg        Period ws     Description     Start Date      End Date      Cntg Class
       01     PWTC         Period WS     01.01.1990      31.12.9999     1
    3) V_551C_B-Valuation class for Periodic work schedule
    Grpg  Period ws  Description     start Date       End Date       Val.Classfor PWS
    01      PWTC      Period WS       01.01.1990    31.12.9999       1
    4) V_t508A-Work schedule rule
    ESG    ES grpg for ws     Holiday      Text      PSG   WSrule    St Date          End Date
    2        Salaried Employee   TCD             TC         01     TCWR    01.01.1900   31.12.9999
    5) V_001P_H-Personnel Subarea grouping for Time Recording
    Personnel area  Personnel Area Text Personnel Subarea Pers.Subarea  Ps Group
    1100                 JEDDAH            1110              MAIN OFFICE           01
    6) V_T555Z- Time type Determination
    Can you advice me on this what I need to maintain here
    7) V_T510S-Time wage type selection rule
    Tm.WT  Dy Grpg          No                                                   Wagetype  Wage Type Long Text
    54       01               001                                              1010            Basic Pay
    Regards,
    Srinivas

  • Error message while executing a SWF File

    Hi All,
    Iam trying to execute a SWF file which has its actionscript
    written in AS3. When i execute this, I am getting an error message
    which is as follows
    Verify Error 1030# Stack Depth unbalanced 1 != 0.
    Can anyone tell me what could be the root cause?
    Thanks in advance,
    Prabakaran Srinivasan.

    Hi All,
    I am able to find the root cause for this. For AS 3 classes,
    while parsing the ABC code, every method body will be a set of
    instructions in which each instruction will have an offset to it.
    This offset will be useful to mark the target for branching
    instructions like if, while etc.... Because, these instructions
    contains targetoffset as a parameter to which the instruction has
    to jump when the condition becomes true or false. The process what
    i am doing is i do some code injection to replace the URLRequest
    calls. The flash file in which i got this error, i did replace the
    URLRequest call to my own method call and this code was being
    wrapped up by an IF block. Because of the code injection, i need to
    update the offset of the instructions with the difference offset
    value. I did this, but i missed the jumpoffset parameter of the if
    block wrapping my injected code which was the root cause. I did fix
    this...
    Thanks,
    Prabakaran Srinivasan.

  • Error Message while executing the Application

    Hi,
    I am new to Webdynpro and I created my first application by following some blog on a portal.I was able to activate my application successfully and when I executed I get this below error message.
    I checked the cardinality and it is 0..1.My Inti.Lead Selection is set to NO.
    I mappedthe nodes in my views also. But still i don't know whay am getting this error.
    Note
    The following error text was processed in the system RS2 : Adapter error in &VIEW_ELEMENT_TYPE& "VBELN" of view "Z_MYFIRST_WEBDYNPRO.MAIN": Context binding of property VALUE cannot be resolved: Node MAIN.1.NODE_VBAK does not contain any elements
    The error occurred on the application server ucerp18_RS2_00 and in the work process 11 .
    The termination type was: RABAX_STATE
    The ABAP call stack was:
    Method: RAISE_FOR of program CX_WDR_ADAPTER_EXCEPTION======CP
    Method: RAISE_BINDING_EXCEPTION of program CL_WDR_VIEW_ELEMENT_ADAPTER===CP
    Method: GET_BOUND_ELEMENT of program CL_WDR_VIEW_ELEMENT_ADAPTER===CP
    Thanks
    Kiran

    Hi,
    I changed the cardinality to 1:1 and I can see the selection screen. But, can you please explain why I should change this from 0:1 to 1:1.
    Now I have a new error:
    After I enter the sales order Number and hit my FIND button, am getting this error:
    The following error text was processed in the system RS2 : Could not find attribute VBELN
    Thanks,
    Kiran
    Now am getting a different error:
    Invalid operand type for the MOVE-CORRESPONDING statement
    Thanks
    Kiran
    Edited by: kiran dasari on Aug 20, 2009 10:54 PM

  • Error messages while executing File - RFC - File.

    Hi,
    I am doing a File - RFC - File scenario from Raj's blog.
    https://www.sdn.sap.com/irj/scn/wiki?path=/display/xi/file-rfc-file%2528without+bpm%2529&
    I am getting series of error messages.
    Someone please drive me in the right way. I am following each and every step in the same way mentioned there.
    1. Everytime the file is picked up, i can see 3 messages in Moni. One from File - RFC. 2 messages from RFC - File. I changed the sender QOS with BE and EO and EOIO. but all the time it shows 3 messages. Why are 3 messages executing for this scenario? what should be QOS on the sender File CC?
    2.. It throws a error message in response message for WS - RFC as .... RFC Adapter application error.
    I re created CC, re imported RFC, searched for that erorr message in sdn and followed everything. no luck
    3. Of the other 2 messages in MONI (RFC - WS), one of them shows error messageg as 2 and the other one shows a error message that Interface mapping does not exist in run time cache.
    I re created IR objects again, I created MI for RFC which I dint do earlier, I re mapped, activated, did all cahce refreshes in SXI_Cache, CPA delta and full cache refresh.
    But still it shows up the same error message.
    Can you guys tell me whats bad going on with my scenario?
    Appreciate your help,
    Venkat.

    Hi Venkat,
    From this line:
    It throws a error message in response message for WS - RFC as .... RFC Adapter application error.
    It seems there might be a problem in RFC Adapter. Can you see the error in Communication channel Monitoring what error it is showing. Probably the communication between PI and SAP might be a problem. If you put the error here, somebody might be able to help you out.
    Regards,
    ---Satish

  • "When I try to create a new file I am getting this message:  "While executing getDynamicContent in AddressURL.htm, a JavaScript error occured".... what should I do?  Thank you, Lisa

    "When I try to create a new file I am getting this message:  "While executing getDynamicContent in AddressURL.htm, a JavaScript error occured".... what should I do?  Thank you, Lisa

    Troubleshoot JavaScript errors | Dreamweaver CS4, CS5, CS5.5, CS6
    Start with steps #4, #12 and #10.
    Nancy O.

  • An error occurred while executing batch. Error message is: There is not enough space on the disk.

    Hello all,
    I execute a T-SQL query, which will retrieve large amount of data, however, I get an error message after a few seconde.
    The error message is :
    An error occurred while executing batch. Error message is: There is not enough space on the disk.
    Who can tell me the reason and waht's the steps to solve this issue ?
    Really thanks.
    Thanks, Jed deng

    The other two posters suggested that the problem with tempdb or you data/log files. This is not the case here. The error message relates to the client-side of things. Apparently SSMS needs to store data on disk. I don't recall exactly when this happens,
    but I seem to recall that the files appear in you %TEMP% directory.
    I would suggest that your correct action is to clean up the disk. Not the least there may be a lot of junk in your %TEMP% and %TMP% directories.
    Erland Sommarskog, SQL Server MVP, [email protected]
    Thanks Erland, I was not aware of this earlier. Now, I am able to find out one of the resons for slowness of SSMS gird. Also, I have just checked it with process monitor, SSMS is creating tmp%.tmp files..
    - Chintak (My Blog)

  • An unknown error occurred while executing the PowerShell script:

    Hello all,
    Not the most descriptive title, granted. I'm hoping this may prompt the next version toprovide additional valuable content.
    Kindly requesting any help on this problem. I'm running VMM 2012 R2 version 3.2.7668
    When I try to look at properties of an existing Private Cloud, I get this error, only if I "look" at certain attributes. If I stay away from the specific attributes, everything is hunky dory. For reasons unknown, after I get this error, I have
    to exit and go back into VMM in order to get anything else to run.
    The text in the error dialogue box is not entirely applicable because I was connected to the VMM server and will connect again, when I exit/relaunch.
    An unknown error occurred while executing the PowerShell script:
    The connection to the VMM management server scvmm2.mmmmmm.com was lost.
    Ensure that scvmm2.mmmmmm.com is online and that you can access the server remotely from your computer. Then connect to scvmm2.mmmmmm.com and try the command again using the new connection. Or, you can ensure that the Virtual Machine Manager service is started
    on scvmm2.mmmmmm.com. Then connect to scvmm2.mmmmmm.com and try the command again using the new connection. If the command fails again because of a connection failure, restart the Virtual Manager service and then try the operation again.
    Try the operation again. If the issue persists, contact Microsoft Help and Support.
    ID: 27235
    This is what I get in Events
    Warning 4/9/2015 3:27:04 PM PowerShell (Microsoft-Windows-PowerShell) 4100 Executing Pipeline
    Log Name:      Microsoft-Windows-PowerShell/Operational
    Source:        Microsoft-Windows-PowerShell
    Date:          4/9/2015 3:27:04 PM
    Event ID:      4100
    Task Category: Executing Pipeline
    Level:         Warning
    Keywords:      None
    User:          mmmmmm\paufra
    Computer:      tools-francis.mmmmmm.com
    Description:
    Error Message = The connection to the VMM management server scvmm2.mmmmmm.com was lost. (Error ID: 1610)
    Ensure that scvmm2.mmmmmm.com is online and that you can access the server remotely from your computer. Then connect to scvmm2.mmmmmm.com and try the command again using the new connection. Or, you can ensure that the Virtual Machine Manager service is started
    on scvmm2.mmmmmm.com. Then connect to scvmm2.mmmmmm.com and try the command again using the new connection. If the command fails again because of a connection failure, restart the Virtual Manager service and then try the operation again.
    Fully Qualified Error ID = 1610,Microsoft.SystemCenter.VirtualMachineManager.Cmdlets.GetSCReplicationGroupCmdlet
    Recommended Action = Ensure that scvmm2.mmmmmm.com is online and that you can access the server remotely from your computer. Then connect to scvmm2.mmmmmm.com and try the command again using the new connection. Or, you can ensure that the Virtual Machine Manager
    service is started on scvmm2.mmmmmm.com. Then connect to scvmm2.mmmmmm.com and try the command again using the new connection. If the command fails again because of a connection failure, restart the Virtual Manager service and then try the operation again.
    Context:
            Severity = Warning
            Host Name = Default Host
            Host Version = 4.0
            Host ID = 94963cd4-5979-4786-9da2-c8814de8c7c3
            Host Application = C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\VmmAdminUI.exe
            Engine Version = 4.0
            Runspace ID = 359d7a46-3752-4929-8c09-0de4152d10e4
            Pipeline ID = 16
            Command Name = Get-SCReplicationGroup
            Command Type = Cmdlet
            Script Name =
            Command Path =
            Sequence Number = 91
            User = mmmmmm\paufra
            Shell ID = Microsoft.PowerShell
    User Data:
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Microsoft-Windows-PowerShell" Guid="{A0C1853B-5C40-4B15-8766-3CF1C58F985A}" />
        <EventID>4100</EventID>
        <Version>1</Version>
        <Level>3</Level>
        <Task>106</Task>
        <Opcode>19</Opcode>
        <Keywords>0x0</Keywords>
        <TimeCreated SystemTime="2015-04-09T22:27:04.993655700Z" />
        <EventRecordID>285</EventRecordID>
        <Correlation ActivityID="{48059811-1A63-41E1-9057-7498D0E4FC20}" />
        <Execution ProcessID="2344" ThreadID="4076" />
        <Channel>Microsoft-Windows-PowerShell/Operational</Channel>
        <Computer>tools-francis.mmmmmm.com</Computer>
        <Security UserID="S-1-5-21-4008432563-1984933819-4238309236-2721" />
      </System>
      <EventData>
        <Data Name="ContextInfo">        Severity = Warning
            Host Name = Default Host
            Host Version = 4.0
            Host ID = 94963cd4-5979-4786-9da2-c8814de8c7c3
            Host Application = C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\VmmAdminUI.exe
            Engine Version = 4.0
            Runspace ID = 359d7a46-3752-4929-8c09-0de4152d10e4
            Pipeline ID = 16
            Command Name = Get-SCReplicationGroup
            Command Type = Cmdlet
            Script Name =
            Command Path =
            Sequence Number = 91
            User = mmmmmm\paufra
            Shell ID = Microsoft.PowerShell
    </Data>
        <Data Name="UserData">
        </Data>
        <Data Name="Payload">Error Message = The connection to the VMM management server scvmm2.mmmmmm.com was lost. (Error ID: 1610)
    Ensure that scvmm2.mmmmmm.com is online and that you can access the server remotely from your computer. Then connect to scvmm2.mmmmmm.com and try the command again using the new connection. Or, you can ensure that the Virtual Machine Manager service is started
    on scvmm2.mmmmmm.com. Then connect to scvmm2.mmmmmm.com and try the command again using the new connection. If the command fails again because of a connection failure, restart the Virtual Manager service and then try the operation again.
    Fully Qualified Error ID = 1610,Microsoft.SystemCenter.VirtualMachineManager.Cmdlets.GetSCReplicationGroupCmdlet
    Recommended Action = Ensure that scvmm2.mmmmmm.com is online and that you can access the server remotely from your computer. Then connect to scvmm2.mmmmmm.com and try the command again using the new connection. Or, you can ensure that the Virtual Machine Manager
    service is started on scvmm2.mmmmmm.com. Then connect to scvmm2.mmmmmm.com and try the command again using the new connection. If the command fails again because of a connection failure, restart the Virtual Manager service and then try the operation again.
    </Data>
      </EventData>
    </Event>

    Hi Sir,
    First , please try to run the VMM configuration analyzer on that computer :
    http://www.microsoft.com/en-us/download/details.aspx?id=41555
    In addition , please try to use "VMMTrace" mentioned in following article to collect trace log and find some useful information :
    http://blogs.technet.com/b/jonjor/archive/2011/01/07/vmmtrace-simplified-scvmm-tracing.aspx
    Best Regards,
    Elton Ji
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected] .

  • Error in while Executing Query in the Query Designer

    Hi,
    I  created info Set based two  info object and  three Data Store Objects. and join condition is Left Outer Join.
    there are Business Partner info object, CRM  BP Sales View Info Object and Data Store Objects are  BP: Roles (0BP_ROLE),Partner: Industries(0BP_IS),CRM Marketing Attributes for Business Partner(0ATR_DS01)
    I given some Selection Parameters while executing query in the Query Designer. in That i given city is selection parameters
    and i creted variable for this info object.
    it gives the Error Messages
    Beim Lesen der Daten sind Fehler aufgetreten. Navigation ist möglich
    Der Wert "New Delhi " von Merkmal 0CITY40 enthält an der 10.ten Stelle einen Fehler
    it is very urgent , can any one help me regarding this.

    Hi Reddy,
    The Error message in english is this
    While reading the data mistakes have appeared. Navigation is possible
    The value " New of Delhi " from sign 0CITY40 contains a mistake at the 10.ten place
    and i think you need to run the change run and run the report with out selecting the variable option.and navigate in the report by filtering the report for your requirement.
    Try this and let me know.
    Thanks,
    RK

  • Error message after executing KKRC- How to define Hierarchy ID ?

    Hi Gurus
    Ours’ is a Chemical Mfg./ Marketing Company. We have ECC 5.0 version implemented in our Company. We  have the Production process orders of different types ( Normal Process order , Reprocess Process order etc.). For the purpose of MIS it is our regular practice to download data in Worksheets & then work upon it ( pivot tables etc.)  &  compile the reports. We have the requirement to have SKU wise ( Finished Goodswise ) summarised compilation of  different type of Variances ( both Qty. , value of input materials, wherever applicable) .
    While browsing the SAP’s BPX community database I have come across the query similar to my requirement . refer thread Product costing - Information system, order summarization  
    Posted: Sep 30, 2007 3:21 AM
    As suggested in the response to that query  I have followed the steps .
    KKRV followed by KKRC . The error message after executing  KKRC reads
    “ No IDs defined for Hierarchy type CO
    Diagnosis No Hierarchy id is defined in customising for the hierarchy type you selected
    Procedure : go in to the customising and define the structure of hierarchy  by means of an appropriate Hierarchy ID. “
    Can some one give me further leads ( i.e. navigation/path and clues for  defining   Hierarchy ID)
    Or
    is there any other way to address the requirement mentioned in opening para.
    With best regards
    Sudheer

    Hi Patrick,
    unfortunately I cannot provide an ad-hoc solution for your nested exception without further investigations.
    Nevertheless I'm very interested to know, why you "gave up" using the Adaptive WS Model in Web Dynpro. What's the problem?
    Perhaps the coding which now requires to create a model instance:
    /** Hook method called to initialize controller. */
    //@@end
    public void wdDoInit() {
      //@@begin wdDoInit()
      // create a new model instance (1)
      EmailAdWSModel model = new EmailAdWSModel();
      // create model objects (2, 3)
      Request_SendEmail requestMO = new Request_SendEmail(model);
      SendEmail emailMO = new SendEmail(model);
      // associate model objects (4)
      requestMO.setSendEmail(emailMO);
      // bind executable model object to context node (5)
      wdContext.nodeRequest_SendEmail().bind(requestMO);
      //@@end
    Regards, Bertram

  • Bypass the error messages while opening the Web Analysis 9.3.1 Report

    I am using WA 9.3.1 to create a few reports. The login users will have some essbase meta-read security filters to restrict the access into certain regions and entities.
    For example:
    user a has the meta-read and read access of @idescendants (east);
    user b has the meta-read and read access of @idescendants (west);
    user c has all the accesses
    However, in the first start-up page (Web Analysis 9.3.1 dashboard), I have a dashboard which contains all the regions access. When user a login, he shall only see his own dashboard (speedometers, etc.).
    Currently the user login will get some error messages (such as "loading document produce error", etc). I wonder whether we can set the message level in Web Analysis so that there is no such error message while the user is opening the reports.
    Thanks

    Karen,
    Thanks for the reply.
    I have checked my Web Analysis report, and I still have the error message of "Error Occur while opening document. Document ID = {0}" while using the some user id to login.
    In my Web Analysis database connection preference, my setting is "user the user id and password". I have verified this (when I use "user a" to login, and in essbase connection, i can see the session with "user a").
    In the WA report, however, I use the multiple-level combo box, so that it can give me different levels of entities, for example, the top level is all regions, the 2nd level is east/west/south/ ec, and the next level is cities, and so on. And if "user a" login, he will be able to see the all regions and east, and then east cities (of course, if he select all regions, there will be no data available).
    Do you think this multiple level combo boxes can be the cause of this error message?
    Thanks a lot

  • While making a backup copy in Itunes of my Iphone I receive the following error message: While making a backup copy of this Iphone (-35) an error has occurred.  Do you want to continue with altering this Iphone? When you continue al the material on this I

    While making a backup copy in Itunes of my Iphone I receive the following error message: While making a backup copy of this iPhone (-35) an error has occurred.  Do you want to continue with altering this Iphone? When you continue al the material on this Iphone will be lost.
    I reinstalled iTunes but that dit not help. After synching iTunes with my iPhone it also asks to authorize my pc and when i Click on ok, it says it is already authorized.
    Please can somebody help me, so I can make backup.
    Greetz,
    Derk

    It's likely that your backup is corrupt. Try deleting the backup, then right click on the name of the phone in iTunes and choose "back up". To delete go to iTunes Preferences, Devices tab. Highlight and delete the most recent backup. Note that sometimes deleting this way leaves some garbage around that can still interfere with a new backup, so you should verify that the backup folder is empty.
    from: http://support.apple.com/kb/HT4946
    The folder where your backup data are stored varies depending on the computer's operating system.   Make sure the backup folder is included in your periodic data-backup routine.
    iTunes places the backup files in the following places:
    Mac:  ~/Library/Application Support/MobileSync/Backup/
    Windows XP:  \Documents and Settings\(username)\Application Data\Apple Computer\MobileSync\Backup\
    Note: To quickly access the Application Data folder, click Start, and choose Run. Type %appdata% and click OK.
    Windows Vista and Windows 7:  \Users\(username)\AppData\Roaming\Apple Computer\MobileSync\Backup\
    Note: To quickly access the AppData folder, click Start. In the search bar, type %appdata% and press the Return key.

Maybe you are looking for

  • My apple Id is not recognised via my iphone.

    Jun 13, 2011 2:03 AM                                                                                                                                         An application 'Find my iphone' was downloaded and installed. To access the app for the 1st t

  • JTree rendering extra node and leaf icons at the end of the label

    Hi, Does anyone know how to add an icon to a JTree node or leaf in such a way that it will be displayed behind the text label? In an example: - rootnode - childnode [icon] |- leaf + childnode [icon] Where -/+ are the default (un)collapse icons I'd li

  • Siri can't connect to net work

    Siri keeps saying can't connect to network  or says having trouble connecting to network

  • Print report parameter and column headers PDF format from Discoverer Viewer

    Hi, From Discoverer Viewer 4i I'm presently using the printer friendly version to print my workbooks. I would like to know if their is a way to include report parameters and print column headers on every page. I would appreciate any pointers or worka

  • Errors using ABAP tasks to create users

    All: I have done the inital loading from ABAP systems. I would like to create users using workflow and provision it back to the ABAP system. While using CreateABAPuser task I get the following error: Error Exception initializing Triple DES java.lang.