Retrieve messages in PI trough a specific tag

Hi all,
how do I retrieve a message using a specific tag in a XML?
I would like to retrieve all the xml's that has the tag .
How can I do this?
Regards,
Sérgio Salomã

You cannot search based on tags.
It can be done when you have TREX engine engaged for index based searches.
Refer this-
http://help.sap.com/saphelp_nw70/helpdata/EN/43/60359ae92f5f87e10000000a1553f6/content.htm

Similar Messages

  • Preparing to retrieve messages... forever

    Sometimes I check my email connected with my mobilephone or a bad wireless connection. If I get disconnected when Mail is checking for new messages - in the middle of downloading a bigger email... it seems like the Mail app get serious problems. The account that was disconnected cannot check mail anymore, and hangs with the activity "Preparing to retrieve messages" forever. The only way I can get the specific account to work again is to check the pop-account and download the messages with an another email program. When the pop-server is empty it seems like the Mail app resets and it will allow me to check for new mail again.
    It's very frustrating!
    Please Apple! Is it something to do, other than having using my old Eudora program just to reset the account. And why is it possible to download messages with Eudora?
    Someone with the same problem?

    nothing changed on both ends, not just my computer but also the server. Another kicker is a fellow employee has had the same issue for months before I ever had it. And another colleague doesnt have the issue at all. I tried re-installing mail, deleting all preferences, all accounts and installed the app from disc and that did not work either.

  • Dreamweaver Help: Code Coloring specific tags

    Hello everyone,
    I would like to set some custom Code Colors on HTML tags in DW to help me in recognizing those tags when I open a page in DW's Code View. I was able to find this BLOG post saying that it this is possible in DW by updating some DW preference files; source: http://blogs.adobe.com/dreamweaver/2009/02/code_coloring_specific_tags.html.. I am a non-technical person so I find it difficult to do the setup. The reason I want this is for me to easily find the text in Code View just by noticing the code color.
    E.g. I want this <span class="specialText"> to have a red code color in DW's Code View
    I hope there's someone who can guide me on how to accomplish this.
    Thanks

    Go to Edit > Preferences > Code Coloring > HTML > Edit Coloring Scheme.
    In DW, <span> tags have the same color scheme as <p> and <h > tags.  I'm not sure  if you can change that.
    As a workaround for quickly finding all span tags of a certain class, use Find (Ctrl+F), Specific Tag, Find All button.  See screenshot:
    Nancy O.
    Message was edited by: Nancy O.  Not Special tag; Specific tag.

  • Retrieve Message body from an appoitment by SOAP

    Hello,
    I am trying to retrieve all the appointment from a specific user by GWSOAP. I use the getItemsRequest method. I specify as container the Appointment folder.
    I retrieve all the appointment. But I cannot retrieve the message body from the appointment. Anybody can help me and explain me how I can retrieve it ?
    Thanks,
    Sebastien

    By default, only the data from the user item in the
    user's database is returned. The user item is linked
    to a common item (that all users share). That common
    item has links to the attachments of the item (which
    the message body is one).
    In the view, you have to explicitly ask for attachments
    / message body. A common view is:
    "default attachments message peek"
    default - Get all of the fields of the user's item.
    attachments - Return the information about the attachments.
    Note: You then have to read the attachment
    data separately.
    message - Return the message body.
    Note: If the message body is greater than 64KB,
    you will only get the id of the message body.
    You will need to read the message body the
    same way you read the other attachments.
    peek - Return the message body, but don't mark the item as
    read.
    Note: If you are reading more that about 20 items, you should
    use the cursor calls instead of getItemsRequest.
    There is more information in the documentation.
    Preston
    >>> On Tuesday, October 05, 2010 at 1:36 AM,
    Sebastienp<[email protected]> wrote:
    > Hello,
    >
    > I am trying to retrieve all the appointment from a specific user by
    > GWSOAP. I use the getItemsRequest method. I specify as container the
    > Appointment folder.
    >
    > I retrieve all the appointment. But I cannot retrieve the message body
    > from the appointment. Anybody can help me and explain me how I can
    > retrieve it ?
    >
    > Thanks,
    >
    > Sebastien

  • XML Parsing, how to get a specific tag?

    Hello,
    I'm new to Flex, am trying to load some data from xml file using httpservice. all is right, but i dont know how to access to a specific tag.
    the xml mapping is showed in the  picture :
    i try to access Device1,  dataService.Lastresult.trames.tramdevices[???] somthing like that. sombody knows how to do? thanks a lot. I used xml with java but in flex is a little bit different. thank you for all.

    Hi neoto,
    Have you tried dataService.Lastresult.trames.tramdevices.Device1 ..??
    Thanks,
    Bhasker

  • Can I retrieve messages from a blackberry email address in Mail for OS X?

    I'm wondering if I can configure Mac OS X Mail to retrieve messages from a blackberry email address.
    Thanks.

    lte me know if my question doesn't make sense.

  • IXML - Reading a specific tag/specific attribute

    Hi,
    I'm trying to get out a specific tag ans specific attribute from an xml string.
    I built my method based on BCCIIXMLT2 & BCCIIXMLT11 and Parsing XML file to Internal table., however it doesn't seem to work.
    I already tried 2 approach, none of them worked
    The loops are ended before the get_attributes method is called.
    My code:
    METHOD /eby/if_xml_output_writer~finish_element.
    * Based on program BCCIIXMLT2 & BCCIIXMLT11
    * \\ ======= iXML =======
      DATA:
        lr_ixml           TYPE REF TO if_ixml,
        lr_xml_doc        TYPE REF TO if_ixml_document,
        lr_node           TYPE REF TO if_ixml_node,
    *    lr_iterator       TYPE REF TO if_ixml_inline_iterator,
        lr_iterator       TYPE REF TO if_ixml_node_iterator,
        lr_nodemap        TYPE REF TO if_ixml_named_node_map,
        lr_stream_factory TYPE REF TO if_ixml_stream_factory,
        lr_istream        TYPE REF TO if_ixml_istream,
        lr_parser         TYPE REF TO if_ixml_parser,
        lr_nnmap          TYPE REF TO if_ixml_named_node_map,
        lr_attr           TYPE REF TO if_ixml_node,
        lc_name           TYPE string,
        lc_value          TYPE string,
        lc_prefix         TYPE string,
        li_type           TYPE i,
        li_indent         TYPE i,
        li_index          TYPE i,
        li_count          TYPE i.
    * // ======= iXML =======
    *=======================================================================
      CLASS     cl_ixml          DEFINITION LOAD.
    *=======================================================================
      CHECK i_parent IS INITIAL.
    *-- Create the main factory
      lr_ixml = cl_ixml=>create( ).
    *-- Create the initial document
      lr_xml_doc = lr_ixml->create_document( ).
    *-- Create the stream factory
      lr_stream_factory = lr_ixml->create_stream_factory( ).
    *-- Create a stream for the input (string)
      lr_istream = lr_stream_factory->create_istream_cstring( i_input ).
    *-- Create the parser
    lr_parser = lr_ixml->create_parser( stream_factory = lr_stream_factory
                                         istream        = lr_istream
                                         document       = lr_xml_doc ).
    *-- We don't need the stream any more, so let's close it...
      lr_istream->close( ).
    * 1st attempt
    *  lr_node = lr_xml_doc.
    *  lr_iterator = lr_node->create_inline_iterator( ).
    *  li_type     = lr_iterator->get_type( ).
    *  WHILE li_type NE 0.
    *    li_indent = lr_iterator->get_height( ) * 2.
    *    CASE li_type.
    *      WHEN if_ixml_node=>co_node_element.
    *        lr_nnmap = lr_iterator->get_attributes( ).
    *        li_index = 0.
    *        li_count  = lr_nnmap->get_length( ).
    *        WHILE li_index < li_count.
    *          lr_attr  = lr_nnmap->get_item( li_index ).
    *          lc_name  = lr_attr->get_name( ).
    *          lc_value = lr_attr->get_value( ).
    *          li_index = li_index + 1.
    *        ENDWHILE.
    *    ENDCASE.
    *    li_type = lr_iterator->advance( ).
    *  ENDWHILE.
    * 2nd attempt
      lr_node ?= lr_xml_doc.
    * Create a node iterator
      lr_iterator = lr_node->create_iterator( ).
    * Get current node
      lr_node = lr_iterator->get_next( ).
    * Loop over all nodes
      WHILE NOT lr_node IS INITIAL.
        li_indent = lr_node->get_height( ) * 2.
        li_indent = li_indent + 20.
        CASE lr_node->get_type( ).
          WHEN if_ixml_node=>co_node_element.
    *       Element node
            lc_name = lr_node->get_name( ).
            lr_nodemap = lr_node->get_attributes( ).
            IF NOT lr_nodemap IS INITIAL.
    *         Attributes
              li_count = lr_nodemap->get_length( ).
              DO li_count TIMES.
                li_index  = sy-index - 1.
                lr_attr   = lr_nodemap->get_item( li_index ).
                lc_name   = lr_attr->get_name( ).
                lc_prefix = lr_attr->get_namespace_prefix( ).
                lc_value  = lr_attr->get_value( ).
              ENDDO.
            ENDIF.
          WHEN if_ixml_node=>co_node_text OR
               if_ixml_node=>co_node_cdata_section.
    *       Text node
            lc_value = lr_node->get_value( ).
        ENDCASE.
    *   Advance to next node
        lr_node = lr_iterator->get_next( ).
      ENDWHILE.
    ENDMETHOD.
    Any idea what could be wrong?
    Thanks in advance,
    Peter

    Thanks!
    Unfortunately my code should also work on 46C, so XLST is not an option. Anyway I used some code from SAPLink  and it works fine now.
    *-- Create the main factory
      lr_ixml = cl_ixml=>create( ).
    *-- Create the initial document
      lr_xml_doc = lr_ixml->create_document( ).
    *-- Create the stream factory
      lr_stream_factory = lr_ixml->create_stream_factory( ).
    *-- Create a stream for the input (string)
      lr_istream = lr_stream_factory->create_istream_cstring( i_input ).
    *-- Create the parser
      lr_parser = lr_ixml->create_parser(
                          stream_factory = lr_stream_factory
                          istream        = lr_istream
                          document       = lr_xml_doc ).
    *-- Parse the stream
      lr_parser->parse( ).
    *-- We don't need the stream any more, so let's close it...
      CLEAR lr_istream.
    * Find the tag
      lr_rootnode = lr_xml_doc->find_from_name( c_tag_structureddocument ).
      lr_attributelist = lr_rootnode->get_attributes( ).
      lr_nodeiterator  = lr_attributelist->create_iterator( ).
      lr_attributenode = lr_nodeiterator->get_next( ).
    * Find the attribute
      WHILE lr_attributenode IS NOT INITIAL.
        lc_name = lr_attributenode->get_name( ).
        IF lc_name = c_attribute_id.
          lc_value = lr_attributenode->get_value( ).
          EXIT.
        ENDIF.
        lr_attributenode = lr_nodeiterator->get_next( ).
      ENDWHILE.
      mc_output = lc_value.

  • TS3899 In the past I have been able to retreive all messages not deleted in the inbox of my mailbox.  This week I have not been able to acces messages received prior to 9/10/13.  what can I do to retrieve messages eceived prior to 9/10/13.

    Until recently I have been able to retrieve all messages not deleted i m mailbox "inbox".  Today I can only retrieve messages from 9/10/13 to present.  How can i retreive all previously sent messages that were not deleted?

    Settings > Mail, Contacts, Calendars > Tap the account in question > Mail days to sync - increase the time to sync.

  • Pse 7 cannot find all photos with a specific tag

    I keep my photos in a series of 'nested' subfolders by year and by topic and I have found that PSE7 will only find the first photo with a specific tag, for instance searching for one of our dogs by tag name will find the first time we saved a photo of her. It will not find her in the subsequent 7 years of folders/photos.  It is v irritating and I thought that I could do this search previously. Help please.  Thanks.

    Thanks, but this didn't work; PSE still finds the first photo with the specific search tag.

  • Not able to see specific tags for FSCM Credit Management on BP master data screen

    Hi All,
    I have already set up Collections & Dispute Management,
    I am now on my way to start FSCM Credit Management setting up. I have already created the BP role (UKM000) and assigned it for direction customer to BP, but I am not able to see any specific tag on BP Master data related to Credit management, (just as I can see "Collections profile" tag, in reference to Coll. Mngmt).
    So, I am not able to see these tags yet: "Credit profile", "Credit worthiness", "Cresit limit and control".....under Credit Management BP role!
    What am I missing there? Have I got to activate BAdi UKM_R3_ACTIVATE in order to be able to "see" those BP tags???
    ....Or what else?
    I will reward with points if someone can provide me any hint about this issue.
    Thanks a lot.

    Hi Pallavi,
    Many thanks for your quick response. However, I have not succeeded in seeing that tab.
    Let me tell you, I may be confused by a document I downloaded from internet about the BP master data views (as for the FSCM Credit Management role, of course) . Please find below the commented tag. It is an imaged I copy to you from that document I told you, for you to see which tag I am talking about:
    I don´t know the content of that tab...but I would like to see it in place....you know..
    Now, I checked you last answer and I saw that everything was already set by factory, please find below:
    BUS4 view:
    BUS5 view:
    However, I´m still not able to see the tab I told you at the beginning (first image). Am I confused about something here? Many thanks for your patience (these things happens when you set FSCM Credit Management for the first time).
    Is that tag accesible?
    Many thanks!
    Wilson

  • Can't see msgs in UWC / reconstruct fails with cannot retrieve message uid

    I have restored several email accounts into a test email account. I'm trying to move some of the .msg files around so that they are easier to find. I have created some new folders and when I move the messages into the folder, I cannot see them in the web client. If I run reconstruct, I get
    ERROR: Inconsistent information: 0 idx records 41 messages 0 expunged
    Reconstructing...
    cannot retrieve message uid 590
    cannot retrieve message uid 807
    cannot retrieve message uid 911
    cannot retrieve message uid 915
    cannot retrieve message uid 1198
    cannot retrieve message uid 1286
    etc where the number at the end is the name of the .msg file.
    # imsimta version
    Sun Java(tm) System Messaging Server 6.3-4.01 (built Aug 3 2007; 64bit)
    libimta.so 6.3-4.01 (built 17:28:45, Aug 3 2007; 64bit)
    SunOS message1 5.10 Generic_127111-02 sun4u sparc SUNW,Sun-Fire-V245
    Normally, after restoring email, I have to recreate the mail folders (either via mboxutil or manually via the UWC or a client), then run reconstruct. Even then, often the messages will show as 'deleted' until I either move them to a different folder or go into the UWC and mark them as undeleted. At this point, I can't see the recently restored messages at all in the UWC. They are on the server. Any ideas would be greatly appreciated.

    In general, manually moving files around inside the store like this should be discouraged.
    reconstruct is telling you something is wrong:
    ERROR: Inconsistent information: 0 idx records   41 messages   0 expunged
    Reconstructing...
    cannot retrieve message uid 590
    cannot retrieve message uid 807
    cannot retrieve message uid 911
    cannot retrieve message uid 915
    cannot retrieve message uid 1198
    cannot retrieve message uid 1286The first line is to be expected based on what you have done. The store.idx indicates there are no messages in the folder. But it found 41 .msg files. So it is going to rebuild store.idx to fix that.
    But then there is some problem with accessing the .msg files. Possibilities would include:
    - wrong ownership/permissions?
    - the .msg file being in the wrong NN subdir ??
    If those guesses do not lead to anything, try truss on the reconstruct command to see what happens when reconstruct tries to open those files.

  • TS2755 How can I retrieve messages that I accidentally cleared?

    How do I retrieve messages that were accidentally cleared?

    If it's on iMessage go to another iMessage device that's currently set up with your account and it might be there. If it's a normal text, go online or contact your provider to see your incomming and outgoing messages.

  • ** List of RFCs to retrieve messages from SXMB_MONI

    Hi friends,
    I found only one RFC 'SXMB_SELECT_MESSAGES'  to retrieve messages from SXMB_MONI. But, this RFC returns only message id.
    Could you kindly tell RFCs or classes other than this which will be usefull to retrieve XML Payload and other things ?
    Kind Regards,
    Jeg P.

    Hi,
    There is a function module SXMB_GET_MESSAGE_LIST through which you can get the messages in SXMB_MONI.
    Refer the below thread for more detail:
    In Which Database Table the Messages are Stored in XI
    Thnx
    Chirag
    Edited by: Chirag Gohil on Feb 15, 2008 6:13 PM

  • View photos with a specific tag only

    I am using Adobe Photoshop Elements 11. How do I view only photos with a SPECIFIC tag, without photos that do not have that tag, but is included in a STACK. It seems that once a photo is included in a stack it is shown even if it does not contain the specific tag that is filtered. I find this very frustrating and hope that somebody can help me.
    Thank you.

    Marung2013 wrote:
    Thank you for the reply.
    What I meant with "... how will I get access to the option to show only the best matches" was - would it be included in an upgrade of the program or what? Is Adobe aware of this and are they planning to fix it?
    Only Adobe knows...
    It's an old problem:
    http://www.johnrellis.com/psedbtool/photoshop-elements-faq.htm#_Searches_are_showing
    Because of this situation I cannot make use of stacks in my catalogue, because then the filtering option is useless.
    I don't know how you are using stacks, but for me it's a very rare problem. I would like it solved, but it does not bother me very often. The problem arises when the items in a stack don't have the same tags. That should not happen if you create stacks before assigning tags.
    I think it would help if you described your own way to use stacks to convince Adobe that an upgrade is necessary.

  • Trying to publish an event to fb from iPhoto '09, 8.1.2. Getting error message: "Line 22: Opening and ending tag mismatch: meta line 0 and head".

    Trying to publish an event to fb from iPhoto '09, 8.1.2. Getting error message: "Line 22: Opening and ending tag mismatch: meta line 0 and head". Never had any trouble before. What in the world?

    See if you can export those same photos to a folder on your Desktop.
    OT

Maybe you are looking for