Output is not displaying using FM:REUSE_ALV_GRID_DISPLAY

Hi,
We have copied the standard transaction code(ME2L) to custom tcode(ZMM_ME2L).the custom tcode is working good in development system but not displaying data in the output screen eventhough the output internal table conatins data and fieldcatalog as well.
Could you please let me know why the function module:REUSE_ALV_GRID_DISPLAY is not displaying any output.
Regards
RPN

Hi,
I have passed all import and export parameters to FM.pls see the below function module which i have used in my program.
CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
      i_callback_program                = 'ZMM_RM06EL00'
      i_callback_pf_status_set          = 'SET_PF_STATUS'
      i_callback_user_command           = 'USER_COMMAND'
    i_callback_top_of_page            = 'TOP_OF_PAGE'
      is_layout                         = gs_layout
      it_fieldcat                       = gt_field_cat
      i_default                         = 'X'
      i_save                            = 'A'
      it_events                         = gt_events
      IT_EVENT_EXIT
    IMPORTING
      es_exit_caused_by_user            = ls_exit_by_user
    TABLES
      t_outtab                          = gt_rpt
    EXCEPTIONS
      program_error                     = 1
      OTHERS                            = 2.
  IF sy-subrc NE 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
            WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
  ENDIF.
Regards,
RPN

Similar Messages

  • The padlock icon shown when entering secure sites using Firefox 3.x is not displayed using Firefox 4. How can this be restored? Is it indicating another problem?

    The padlock icon shown when entering secure sites using Firefox 3.x is not displayed using Firefox 4.

    It has been changed. Please read this article:
    https://support.mozilla.com/en-US/kb/Site%20Identity%20Button
    You can use this add-on to get the classic icon back:
    https://addons.mozilla.org/en-US/firefox/addon/padlock-icon/

  • APex Images not displaying using OHS in linux

    Hi all
    we are using
    Apex 4.0
    Database 11gr1
    We have installed ohs and we copied image in instance1 folder, alias name given in dad.conf like
    alias /i/  "/app/OHS/Oracle_WT1/instances/instance1/images/"but images are not displaying. Is there any configuration required in Linux.
    Thanks,
    Nag

    it must be a issue with your web-server
    Just try accessing the images directory via URL like this
    http://hostname:port/i/anysampleimage.gif
    Troubleshoot like this http://docs.oracle.com/cd/E17556_01/doc/install.40/e15513/trouble.htm#HTMIG271

  • Downloaded files with ActiveX not displays using Windows 8 and IE 11

    We are using ActiveX for downloading file from our server. After downloading ActiveX decrypt downloaded files. ActiveX works fine with all other IE versions but in case of IE 11, when we download the files ActiveX doesn't throw any error, but when we check
    the files at downloaded location, it looks like there was no files downloaded. When we the same process again using "IE 11 using "run as Administrator" the downloaded files displays at the downloaded location.
    After debugging, We didn't found error like "access denied or path not found or any other error." with or without Administrator mode. but still facing this issue.
    When we download file again using "Browse for Folder" it display the previous downloaded folders, but not exists at the actual location.
    Your quick reply will highly appreciated.
    Thanks

    Hi,
    on the user account.
    Tools>Manage Addons>Show all addons>Locate your custom download control in the list and double click it to display its properties.
    at the bottom of the Properties dialog there is a list of allowed sites. compare this with the settings on the Administrators account. The value should be the same as on the user account.
    If you are talking about the Akami Download manager from TechNet.
    Name:                   DLM Control
    Publisher:              Akamai Technologies Inc.
    Type:                   ActiveX Control
    Architecture:           32-bit
    Version:                2.2.6.2
    File date:              ‎Thursday, ‎28 ‎June ‎2012, ‏‎4:02 PM
    Date last accessed:     ‎Wednesday, ‎24 ‎October ‎2012, ‏‎9:23 PM
    Class ID:               {4871A87A-BFDD-4106-8153-FFDE2BAC2967}
    Use count:              3
    Block count:            1
    File:                   DownloadManagerV2.ocx
    Folder:                 C:\Windows\Downloaded Program Files
    it is only available in the x86 version.
    On server versions of windows you can only download software from MS on the Admin account. By default
    http://microsoft.com is mapped to the Trusted sites list...
    If possible please post back with the Properties of your custom AX download control from the Manage Addons dialog.
    Rob^_^

  • JTable column headers not displaying using custom table model

    Hi,
    I'm attempting to use a custom table model (by extending AbstractTableModel) to display the contents of a data set in a JTable. The table is displaying the data itself correctly but there are no column headers appearing. I have overridden getColumnName of the table model to return the correct header and have tried playing with the ColumnModel for the table but have not been able to get the headers to display (at all).
    Any ideas?
    Cheers

    Class PublicationTableModel:
    public class PublicationTableModel extends AbstractTableModel
        PublicationManager pubManager;
        /** Creates a new instance of PublicationTableModel */
        public PublicationTableModel(PublicationManager pm)
            super();
            pubManager = pm;
        public int getColumnCount()
            return GUISettings.getDisplayedFieldCount();
        public int getRowCount()
            return pubManager.getPublicationCount();
        public Class getColumnClass(int columnIndex)
            Object o = getValueAt(0, columnIndex);
            if (o != null) return o.getClass();
            return (new String()).getClass();
        public String getColumnName(int columnIndex)
            System.out.println("asked for column name "+columnIndex+" --> "+GUISettings.getColumnName(columnIndex));
            return GUISettings.getColumnName(columnIndex);
        public Publication getPublicationAt(int rowIndex)
            return pubManager.getPublicationAt(rowIndex);
        public Object getValueAt(int rowIndex, int columnIndex)
            Publication pub = (Publication)pubManager.getPublicationAt(rowIndex);
            String columnName = getColumnName(columnIndex);
            if (columnName.equals("Address"))
                if (pub instanceof Address) return ((Address)pub).getAddress();
                else return null;
            else if (columnName.equals("Annotation"))
                if (pub instanceof Annotation) return ((Annotation)pub).getAnnotation();
                else return null;
            etc
           else if (columnName.equals("Title"))
                return pub.getTitle();
            else if (columnName.equals("Key"))
                return pub.getKey();
            return null;
        public boolean isCellEditable(int rowIndex, int colIndex)
            return false;
        public void setValueAt(Object vValue, int rowIndex, int colIndex)
        }Class GUISettings:
    public class GUISettings {
        private static Vector fields = new Vector();
        private static Vector classes = new Vector();
        /** Creates a new instance of GUISettings */
        public GUISettings() {
        public static void setFields(Vector f)
            fields=f;
        public static int getDisplayedFieldCount()
            return fields.size();
        public static String getColumnName(int columnIndex)
            return (String)fields.elementAt(columnIndex);
        public static Vector getFields()
            return fields;
    }GUISettings.setFields has been called before table is displayed.
    Cheers,
    garsher

  • Case attachments not displayed using PCUI CRMD_CASE

    Hi all,
    We´ve developped an WDA in order to create cases in case management, using BAPI
    BAPI_CASE_CREATE, developped as follows:
    call function 'BAPI_CASE_CREATE'
        exporting
          case_type              = gc_zcas
        importing
          guid                   = lv_guid
        tables
          return                 = lt_return
          case_attributes        = lt_attributes
          case_notes             = lt_casenotes
          case_note_ids          = lt_casenotesid
          element_identification = lt_identifi
          element_insertion      = lt_insertion
          element_relations      = lt_relations.
    call function 'BAPI_TRANSACTION_COMMIT'
        exporting
          wait = 'X'.
    On this web dynpro we´ve also created a file upload field in order to attach a document to the case created previously, using method "m_insertar_adjunto".
    Method call uses the following parameters:
      wd_this->m_insertar_adjunto(
                                      guid     = lv_guid
                                      content  = ls_adjunto-filecontent
                                      filename = ls_adjunto-filename
    method m_insertar_adjunto .
      data: l_folid type soodk,
            l_folderid type soobjinfi1-object_id,
            l_size type i,
            lt_content type table of solisti1.
      data ls_content like line of lt_content.
      data: ls_document_data type sodocchgi1.
      data: l_doctype type soodk-objtp.
      data: l_docinfo type sofolenti1.
      data: lt_words type table of string,
            l_token type string.
      data: l_att_key type swotobjid-objkey.
      check content is not initial.
      call function 'SO_FOLDER_ROOT_ID_GET'
        exporting
          region                      = 'B'
         importing
          folder_id                   =  l_folid
        exceptions
          communication_failure       = 1
          owner_not_exist             = 2
          system_failure              = 3
          x_error                     = 4
          others                      = 5
      l_folderid = l_folid.
      call function 'SCMS_XSTRING_TO_BINARY'
        exporting
          buffer          = content
          append_to_table = 'X'
        importing
          output_length   = l_size
        tables
          binary_tab      = lt_content.
      data: lc_word(100).
      l_token =  filename.
      while l_token ca ''.
        split l_token at '' into lc_word l_token.
      endwhile.
      split l_token at '.' into lc_word l_doctype.
      ls_document_data-obj_name = l_token.
      ls_document_data-obj_descr = 'Adjunto Caso'.
      ls_document_data-obj_langu = sy-langu.
      ls_document_data-doc_size = l_size.
      ls_document_data-no_change = 'X'.
      call function 'SO_DOCUMENT_INSERT_API1'
        exporting
          folder_id                  = l_folderid
          document_data              = ls_document_data
          document_type              = l_doctype
        importing
          document_info              = l_docinfo
        tables
          object_content             = lt_content
        exceptions
          folder_not_exist           = 1
          document_type_not_exist    = 2
          operation_no_authorization = 3
          parameter_error            = 4
          x_error                    = 5
          enqueue_error              = 6
          others                     = 7.
      l_att_key = l_docinfo-doc_id.
      data: object_a type sibflporb,
            object_b type sibflporb.
      object_a-instid = guid.
      object_a-typeid = 'BUS20900'.
      object_a-catid  = 'BO'.
      object_b-instid = l_att_key.
      object_b-typeid = 'MESSAGE'.
      object_b-catid = 'BO'.
      try.
      call method cl_binary_relation=>create_link
        exporting
          is_object_a = object_a
          is_object_b = object_b
          ip_reltype  = 'ATTA'.
      endtry.
      if sy-subrc eq 0.
        commit work and wait.
      endif.
    endmethod.
    Our problem is the following: when we ONLY use PCUI CRMD_CASE (case management) something goes wrong, because case is displayed but its attachments  do not appear.
    The behaviour is not the same if you display case in GUI or in PCUI; even if you enter firstly in CRM GUI and afterwards in PCUI, the behaviour changes; the possibilities are the following:
    1 -->  Using CRM GUI (only) case and attachments are displayed right.
    2 -->  Using PCUI CRMD_CASE (only) and not entering previously on CRM GUI, case is displayed right but its attachments are lost.
    3 -->  If you enter CRM GUI firstly to see case and attachments and entering PCUI CRMD_CASE afterwards, everything (case and attach) is displayed right.
    It seems that something is refreshed in database when you enter in CRM GUI and this is exactly what allows system to show rightly in PCUI.
    We don´t know how to solve the problem.
    Could anybody help us to solve this issue?
    Thanks in advance.
    Carmen Rodriguez

    Hi Carmen,
    You can use FM  ZGI_CREAR_ADJUNTO_CASO to solve your problem.
    FUNCTION ZGI_CREAR_ADJUNTO_CASO.
    ""Interfase local
    *"  IMPORTING
    *"     REFERENCE(GUID) TYPE  BAPISCMGCASE-CASE_GUID
    *"     REFERENCE(FILENAME) TYPE  STRING
    *"     REFERENCE(FILECONTENT) TYPE  XSTRING
    Variables
      data: lv_business_object type sibflporb.
      data: ls_new_phio    type skwf_io,
            ls_new_loio    type skwf_io,
            lv_error       type skwf_error,
            lv_size type i.
      data: lv_doctype type soodk-objtp.
      data: ls_document_data type sodocchgi1.
      data: lt_filecontent type table of sdokcntbin .
      data: lv_retcode     type sy-subrc.
      data: lv_objkey      type swo_typeid.
      data: ls_fileinfo   type sdokfilaci,
            lt_fileinfos  type table of sdokfilaci.
      data: ls_file_info  type crmt_icss_file_info.
      data: lt_loio_properties type table of sdokpropty,
            lt_phio_properties type table of sdokpropty.
      data  ls_property        type sdokpropty.
      data: lv_length type i.
      data: lv_file(1200),
          lv_dir(1200),
          lv_delimiter        type c,
          lv_offset           type i,
          lv_bytes            type i,
          lv_delimiter_offset type i,
          lv_delimiter_bytes  type i,
          lv_char             type c,
          lv_previous_char    type c,
          lv_last_char        type c.
      check filecontent is not initial.
    class
      class cl_kwui_utilities definition load.
    Binary
      call function 'SCMS_XSTRING_TO_BINARY'
        exporting
          buffer          = filecontent
          append_to_table = 'X'
        importing
          output_length   = lv_size
        tables
          binary_tab      = lt_filecontent.
    file name
      lv_length = strlen( filename ).
      lv_offset = 0.
      while lv_offset < lv_length.
      Remember last character
        lv_last_char = lv_char.
        lv_bytes = charlen( filename+lv_offset ).
      Get current character
        lv_char = filename+lv_offset(lv_bytes).
        if lv_char = '/' or
           lv_char = '' or
           lv_char = ':'.
          if lv_delimiter is initial or
             lv_delimiter = ':'.
            lv_delimiter = lv_char.
          endif.
          if lv_char = lv_delimiter.
            lv_delimiter_offset = lv_offset.
            lv_delimiter_bytes = lv_bytes.
          remember character in front of delimiter:
            lv_previous_char = lv_last_char.
          endif.
        endif.
        lv_offset = lv_offset + lv_bytes.
      endwhile.
      if not lv_delimiter is initial.
        lv_offset = lv_delimiter_offset + lv_delimiter_bytes.
        lv_file = filename+lv_offset.
        if lv_previous_char = ':' or lv_delimiter = ':'.
        path ends with or after drive identifer, include the delimiter
          lv_dir = filename(lv_offset).
        elseif not lv_delimiter_offset is initial.
        do not include a trailing delimiter for compatibility reasons
          lv_dir = filename(lv_delimiter_offset).
        else.
          clear lv_dir.
        endif.
      else.
        lv_dir = space.
        lv_file = filename.
      endif.
    PHIO
    Description
      if not cl_kwui_utilities=>property_is_modelled( p_class = 'CRM_P_CASE' p_property = skwfc_prop_description ) is initial.
        ls_property-name = skwfc_prop_description.
        ls_property-value = 'Adjunto Caso'..
        append ls_property to lt_phio_properties.
      endif.
    Link name
      if not cl_kwui_utilities=>property_is_modelled( p_class = 'CRM_P_CASE' p_property = skwfc_prop_relative_url ) is initial.
        ls_property-name = skwfc_prop_relative_url.
        ls_property-value = lv_file..
        append ls_property to lt_phio_properties.
      endif.
    Language
      if not cl_kwui_utilities=>property_is_modelled( p_class = 'CRM_P_CASE' p_property = skwfc_prop_language ) is initial.
        ls_property-name = skwfc_prop_language.
        ls_property-value = sy-langu.
        append ls_property to lt_phio_properties.
      endif.
    *LOIO
    Description
      if not cl_kwui_utilities=>property_is_modelled( p_class = 'CRM_L_CASE' p_property = skwfc_prop_description ) is initial.
        ls_property-name = skwfc_prop_description.
        ls_property-value = 'Adjunto Caso'..
        append ls_property to lt_loio_properties.
      endif.
    Link name
      if not cl_kwui_utilities=>property_is_modelled( p_class = 'CRM_L_CASE' p_property = skwfc_prop_relative_url ) is initial.
        ls_property-name = skwfc_prop_relative_url.
        ls_property-value = lv_file.
        append ls_property to lt_loio_properties.
      endif.
    Language
      if not cl_kwui_utilities=>property_is_modelled( p_class = 'CRM_L_CASE' p_property = skwfc_prop_orig_language ) is initial.
        ls_property-name = skwfc_prop_orig_language.
        ls_property-value = sy-langu.
        append ls_property to lt_loio_properties.
      endif.
    create the document itself
      clear lv_error.
      clear ls_new_phio.
      clear ls_new_loio.
      clear lv_objkey.
      call function 'SKWF_LOIO_WITH_PHIO_CREATE'
        exporting
          loio_class      = 'CRM_L_CASE'
          phio_class      = 'CRM_P_CASE'
        importing
          error           = lv_error
          phio            = ls_new_phio
          loio            = ls_new_loio
        tables
          loio_properties = lt_loio_properties
          phio_properties = lt_phio_properties.
      if lv_error is not initial.
        exit.
      endif.
    file information
      ls_fileinfo-file_size = lv_size.
      ls_fileinfo-binary_flg = 'X'.
      ls_fileinfo-file_name = lv_file.
      call function 'SDOK_MIMETYPE_GET'
        exporting
          extension            = lv_doctype
          x_use_local_registry = 'X'
        importing
          mimetype             = ls_fileinfo-mimetype.
      append ls_fileinfo to lt_fileinfos.
    file store
      clear lv_error.
      call function 'SKWF_PHIO_STORE_CONTENT'
        exporting
          phio                = ls_new_phio
        importing
          error               = lv_error
        tables
          file_access_info    = lt_fileinfos
          file_content_binary = lt_filecontent.
      if lv_error is not initial.
        exit.
      endif.
    Fill BO  'BUS20900'.
      clear lv_business_object.
      lv_business_object-instid = guid.
      lv_business_object-typeid = 'BUS20900'.
      lv_business_object-catid  = 'BO'.
    Link create
      try.
          call function 'SKWG_OLS_IO_LINK_CREATE'
            exporting
              io              = ls_new_loio
              business_object = lv_business_object.
        catch cx_obl.
        cleanup.
      endtry.
    ENDFUNCTION.
    Regards
    José Miguel Haro

  • Macbook Pro 13"- HDMI output does not display 1920x1080

    Hi
    When I connect my Macbook Pro 13" to my Samsung 46" TV using the Apple HDMI to HDMI cable
    The Macbook detects the TV but doesn't give me the option to change the resolution to 1920x1080
    I have tried 1080p and 1080i but these does give me the correct setting either
    Has anybody any ideas?
    J

    See
    http://mac.bigresource.com/Hardware-Mini-Display-Port-NOT-working-at-resolutions -over-1600X1200--G5rVJl3Wm.html#Ae8cBkplo
    Apple doesn't "do" 1920x1080 with non-Apple Studio monitors.  It's bait & switch, a fraud, immoral, unacceptable.  A Mac lover & evangilist for 20 years, I'm now likely to never buy another.  I bought a new Asus monitor today, just to discover my MacBook Pro won't talk to it because Apple made their computer compatible with only overpriced Apple Studio monitors, not the leading brands. 
    Here's that post, pasted.  The answer's the same for VGA and DVI.
    Mac Pro :: Mini Display Port Not Working At Resolutions Over 1600X1200?
    Problem:
    Apple Mini Display Port does NOT work at resolutions over 1600X1200 on NON Apple Cinema Displays.
    That means if you own any other brand of monitor such as NEC, Lacie, etc. you will NOT get native resolution on your 24 inch monitor as it is stuck at a maximum resolution of 1600X1200.
    This story was mentioned on "Macbreak Weekly" show 4-14-2009. I have since checked with a few people and it would indeed seem to be true at this point.
    I REALLY hope a solution from Apple comes soon and this is not some new policy of theirs. If so, it may be the last Mac Pro I will or can ever own. The reason is I do a lot of 3D work with C4D, Vue, Modo and Photoshop CS4 so I MUST have a monitor like the high-end ones from Lacie that have 100% color gamut and Adobe RGB. I can NOT be tied down to an Apple Cinema display due to that work. At this time, it seems this means I would only get 1600X1200 resolution on that 24 inch monitor.
    I am HIGHLY concerned by this. Has anyone else confirmed this too and if so what the heck is Apple thinking or better still going to do about it? I LOVE my Mac Pro but if they start forcing Apple displays on us then I won't be buying another Mac, it's just that simple.

  • Confirmation on mess stack not displayed using putDialogMessage in EEO

    In an extended entity object class, a confirmation put on the message stack using putDialogMessageis never displayed. Howevever, when the same message is put in an extended Application Module, it displays properly. The extensions were done using jDev 10.1.3.3.0.3.
    The following code is used in both cases to put the message on the stack.
    MessageToken[] tokens = { new MessageToken("INFMTCA_RESP", att8) };
    OAException message = new OAException("AR", "HBP_AR_INFMTC_RESP", tokens, OAException.CONFIRMATION, null);
    getOADBTransaction().putDialogMessage(message);
    The extended classes are:
    HzPuiLocationEOExImpl - updateRow, inertRow methods.
    HzPuiAddressAMImpl - initQuery methos.
    Since the message was never displayed in the Entity Object class, I extended the Application Module class to display the message. However, I can not find a method in the Application Module that always gets executed.
    The following forum entry is similar:
    Re: How to show warning message in am

    Hello Arun ,
         I got the solution . The error message was raised properly . The problem is  message filter at every view or viewset of a component is actually switched off by default.With standard components the filter gets activated at runtime if the component controller contains a BOL entity.
    In our case , since it was a custom component with no BOL entity the filter was switched off and hence the messages from the application level were not read.
    Therefore we redefined the filter method IF_BSP_WD_STATE_CONTEXT~GET_MESSAGE_FILTER at the view/viewset level and turned on the filter by default.hence even if the component does not return an entity the message filter gets activated.
    Thanks for your inputs.
    Thanks & Regards,
    Sriram

  • Data is not displaying using ABAP WebDynPro

    Hi,
    Thanks in Advance.
    I am trying to get the data of field AUFNR and KTEXT from AUFK table into Layout.
    These are the attributes of Change Node
    Node Name            PROD_ORDER
    Interface Node                   : No
    Input Element (Ext.)           : No
    Dictionary structure AUFK
    Cardinality                    :      0..n
    Selection                     :       0..1
    Init. Lead Selection       :   Yes
    Singleton                     : No
    Supply Function
    Mapping Path
    Method :
    I have written the following code to fetch the data from AUFK table
    method WDDOINIT .
    Data: it_AUFK type standard table of AUFK,
          context_node type ref to if_wd_context_node.
    select AUFNR KTEXT from AUFK INTO table it_AUFK.
      if sy-subrc eq 0.
        context_node = wd_context->get_child_node( name = 'PROD_ORDER').
        context_node->bind_table( it_AUFK ).
      endif.
    endmethod.
    There is no syntax error and getting activated. But while testing no data or even column is displaying into browser. It is blank page.
    Am not sure where I am wrong. Please assist me.
    Thanks

    Hi ,
    Check this for testing purpose :
    Afer you have binded the internal table to the node , check if node has some vlaues in it or not :
    Use this code to get the data of node into an internal table and see if the node is getting populating with data  or not :
    DATA lo_nd_cn_table TYPE REF TO if_wd_context_node.
        DATA lo_el_cn_table TYPE REF TO if_wd_context_element.
        DATA ls_cn_table TYPE wd_this->element_cn_table.
    DATA it_table  TYPE wd_this->elements_cn_table.
    *   navigate from <CONTEXT> to <CN_TABLE> via lead selection
        lo_nd_cn_table = wd_context->get_child_node( name = wd_this->wdctx_cn_table ).
    *lo_nd_cn_table->get_static_attributes_table( IMPORTING table = lt_table).*
    <CN_table is my node binded to table.>

  • Output type NOT displaying

    Hi,
    I am creating a new Message type - zse1 to output the Purchase Order thru EDI.
    I have done the basic settings, of defining the Partner profile, message type, port definiton.
    But when I create Purchase Order & goto the messages tab, I am not able to see the new output type that I configured, nor can also select manually from the drop down list.
    How should I make the output type to automatically show up in my Purchase Orders?
    Any config I have missed out?  Pls help.
    regards,
    pri

    Hi Anne..
    For congiguring the Outputtype...the steps are..
    1.Define Output type ( Hope you did....)
    2.Assign this in to the output determination Schema RMBEF1
    3.Assign this schema into Purchase order in "Assign
       Schema to Purchase Order"
    4.Go to MN04
    5.Enter your message type and select the Key combination.
    6.Maintain all the entries and after that Select that line and
       click "Communication".
    7.Maintain the printer and all settings in this communication.
    Now put your PO ...and defineteluy the message type will pick up Automaticaly.....
    Award if solved.....
    Thans and Regards
    R.B.K.Kannan

  • Help with spry not displaying using ssi

    Hi,
    I have reviewed previous tutorials and can't find where my mistake is.  I cut and pasted the code for spry onto an include file with the extention .shtml .  I pointed to the file and the header seeems to correct,
    My files are root relative
    I have a file called includes, you can view the source here
    http://crystalbeach.com/funthings/includes.shtml
    Here is my link that is supposed to be displaying the spry navigation bar.
    http://crystalbeach.com/funthings/index_erinn.shtml
    Please help!
    thanks

    http://crystalbeach.com/funthings/index_erinn.shtml
    Line 29
    <!--include file="includes.shtml"--> is simply a plain HTML comment. It doesn't do anything.
    Change to
    <!--#include virtual="/funthings/includes.shtml" -->
    This assumes that your include file is named includes.shtml and is always stored inside a folder named "funthings". Many people store includes inside a folder named "includes" in the root folder on the server.
    NOTE: the .shtml file extension only applies to the parent page calling the include file.
    The include file can have any file extension e.g. menu.monkeybutt where the include code would change to <!--#include virtual="/includes/menu.monkeybutt" -->

  • Icons do not display using Windows 7 on HP Pavilion DM4 laptop. They display with Chrome browser-same laptop. Also display on Dell desktop with Windows XP

    An example:
    In gmail, when you click on an email in your in-box, icon graphics depicting options for the selected email (e.g., trash box, etc.) show up in Chrome but are replaced by empty rectangle images in Firefox or Internet Explorer. You can move the cursor over each box to get text to display explaining the option and then click on it and it will work. On my Dell desk top PC, the icon graphics show up in Firefox as well as IE and Chrome.

    Can you attach a screenshot?
    *http://en.wikipedia.org/wiki/Screenshot
    *https://support.mozilla.org/kb/how-do-i-create-screenshot-my-problem
    Use a compressed image type like PNG or JPG to save the screenshot.
    Make sure that you haven't enabled a High Contrast theme in the Windows/Mac Accessibility settings and that you allow pages to choose their colors in Firefox.
    *http://kb.mozillazine.org/Website_colors_are_wrong
    *http://kb.mozillazine.org/Websites_look_wrong
    *Tools > Options > Content : Fonts & Colors > Colors : [X] "Allow pages to choose their own colors, instead of my selections above"

  • Exceptions not displayed using Web Application Designer

    Hi there,
    I've got a query including a simple exception. If I execute these query out of the query designer (in the web) or in the BEx Analyzer the exception is displeyd as defined. (red, green, yellow...)
    Do I use these query as DataProvider in a Web Template (Analysis Item -> Exceptions displayer as color) the exceptions are not shown. Does anybody have an idea?
    Thanks a lot in advance
    Mark

    If you need to use Exception in Web, you will have to open the query in the Web Analyzer and create an exception in the Web Analyzer in the Settings.
    Check it out.
    Regards,
    Vikram

  • XML sql query not displayed using SQLPLUS

    Have a registered schema and 1 xml document successfully inserted using Oracle 10.2.0.3.0
    I then run the following query:
    select extract(object_value,'/warehouse/warehousename')from xwarehouses;
    Expecting 1 record to be returned in SQLPLUS but get the following result:
    EXTRACT(OBJECT_VALUE,'/WAREHOUSE/WAREHOUSENAME')
    1 row selected.
    Can anyone shed any light?

    Thanks A-non.
    I checked the long and longchunksize settings and they are the same as yours.
    Your sample code runs perfectly but still my original problem remains.

  • Custom screen not displaying using BADI ME_GUI_PO_CUST

    Hello Experts,
    I was working on BAD ME_GUI_PO_CUST to add custom subscreen on header
    I have created a subscreen ZNRD_SAPMEGUI_PO with number 9999.
    I have created implementation of ME_GUI_PO_CUST as ZME_GUI_PO_CUST.
    I have added screen details to the BADI.as follows
    CALLPROGRAM = SAPLMEGUI.
    Scr No = 1102
    Subscreen area = TABSTRIPCONTROL2SUB
    Program called = ZNRD_SAPMEGUI_PO
    Scr no = 9999.
    Now to the method SUBSCRIBE to the implemented BADI ZME_GUI_PO_CUST
    I have wriiten the following codes.
    method if_ex_me_gui_po_cust~subscribe.
    data: ls_subscriber like line of re_subscribers.
    if sy-tcode eq ' ME21N' or sy-tcode eq 'ME22N' or sy-tcode eq 'ME23N'.
    check im_application = 'PO'.
    check im_element = 'HEADER'.
    * CLEAR re_subscribers[].
    ls_subscriber-name = 'ZNRD_SAPMEGUI_PO'.
    ls_subscriber-dynpro = '9999'.
    ls_subscriber-program = 'SAPLMEGUI'.
    *ls_subscriber-struct_name = 'MEPO_SUBSCRIBERS'.
    ls_subscriber-label = 'Customer Data'.
    ls_subscriber-position = 10.
    ls_subscriber-height = 7.
    append ls_subscriber to re_subscribers.
    endif.
    endmethod.
    BADI is active
    Now when irun ME21N i dont see the additional custom tab on header coming up.
    Please guide will be appreciated.
    Regards,
    Ranjith

    Hi
    I have been through the documentation friends still I am unable to go ahead thats the I am seeking your help.
    Please guide.
    Shailaja could you please explain why do i need to use the user-exit  MM06E005 when I am using the BADI.
    Regards,
    Ranjith N

Maybe you are looking for