How to see the content of an attachment in sxmb_moni

Hi all,
Does someone know how to see the actual content of an attachment in sxmb_moni?
If I look under Inbound Message (CENTRAL)/Payloads, I would see one node for MainDocument and another node with the name of the attachment.
When I click on the attachment name, a word document shows with one line in it. That line is just the name of the attachment and nothing else.
How can I see the actual content of that attachment?
Thank you. Points will be awarded to helpful answers.
Regards,
-Michelle

I checked my coding again in debug mode. I cannot find anything wrong.
I duplicate here my coding again.
   DATA lo_attachment TYPE REF TO if_ai_attachment.
  lo_attachment  = lo_attachment_protocol->get_attachment_from_binary(
                      data = iv_attachment_content
                      type = iv_attachment_mime_type
                      name = iv_attachment_name
* set the attachment
  DATA lt_attachments TYPE prx_attach.
  APPEND lo_attachment TO lt_attachments.
  lo_attachment_protocol->set_attachments( lt_attachments ).
The local variable LT_ATTACHMENTS has field payload-resource with the following expected values --
KIND : B
TYPE : application/msword
BINDATA :  00530068006F00740073005F0073007700630076002E0064006F00630020002000
The BINDATA correctly contains the dummy data I assigned.
I must have missed something. Can someone help?
Best regards,
-Michelle

Similar Messages

  • How to view the content of Documents attached in Transaction FB03.

    Hi Gurus,
    I want to view / download the content of an attachment, attached in transaction FB03.
    I am not able to view them directly due to some application error.
    I need to check whether a document which is in the attachment list is having any data or not.
    If there is any FM to do this, please let me know.
    Regards,
    Amit.

    I do not know the answer to that. But you can use ssltap (More info in [http://www.mozilla.org/projects/security/pki/nss/tools/ssltap.html|http://www.mozilla.org/projects/security/pki/nss/tools/ssltap.html]) to see the exact request and response being sent to and from the server.

  • How to see the content of stored prodecure in sql plus worksheet or sql.plu

    Hi
    i want to see the content of the stored procedure on sql worksheet or sql plus. is there any command for this ?
    please let me know
    thanks

    Hi Anil:
    Following is for SQL*Plus
    If you are logged on to the schema that owns the stored procedure you can issue the following query:
    select text from user_source where name = 'MY_PROG_NAME'
    ORDER BY TYPE, LINE ASC;
    Where MY_PROG_NAME could be the name of a package, procedure or function. Note that when you look at a package source you'll get the specfification and the body listing, in that case you may want to split them into two with following queries:
    spool MY_PROG_NAME.spec
    select text from user_source
    where name = 'MY_PROG_NAME'
    AND TYPE = 'PACKAGE'
    ORDER BY TYPE, LINE ASC;
    SPOOL OFF
    spool MY_PROG_NAME.body
    select text from user_source
    where name = 'MY_PROG_NAME'
    AND TYPE = 'PACKAGE BODY'
    ORDER BY TYPE, LINE ASC;
    SPOOL OFF
    If you are logged on as SYSTEm, you can substitute USER with DBA and look at code for all schemas, however you may need to add OWNER to your query.
    DESC USER_SOURCE
    Name Null? Type
    NAME NOT NULL VARCHAR2(30)
    TYPE VARCHAR2(12)
    LINE NOT NULL NUMBER
    TEXT VARCHAR2(2000)
    DESC DBA_SOURCE
    Name Null? Type
    OWNER NOT NULL VARCHAR2(30)
    NAME NOT NULL VARCHAR2(30)
    TYPE VARCHAR2(12)
    LINE NOT NULL NUMBER
    TEXT VARCHAR2(2000)
    Hope this helps,
    Thomas

  • How to see the content of a website's certificate?

    I was not able to find how to view the content of a website's certificate using the Android version of Firefox.
    On the desktop, this is possible via a 'view' button in the popup which appear when we click on the lock icon near the url bar. On Firefox for Android, I cannot find this button.

    That's exactly what I wanted to point : it is missing.
    I wish it can be added.

  • How to see the contents of a directory?

    ok, here is my problem. I need to see the contents of a directory (ie. like doing a dir in DOS or ls in Linux) and then process each of the files in the directory.
    Is there a way in java to see the contents of a directory? Please help...

    hi,
    well you can see the contents of a directory, a directory in turn could have files and subdirectories, so you could use the following snippet of code.
    import java.io.File;
    import java.io.IOException;
    public class FileBrowser
         private File mFile;
         public void listDirectory(String fileName)
              mFile = new File(fileName);
              if (mFile.exists()) //check if File or Directory with given name exists
                   if (mFile.isDirectory())
                        File mTempFile[] = mFile.listFiles();
                        if (mTempFile.length > 0)
                             for (int i=0; i < mTempFile.length; i++)
                                  listDirectory(mTempFile.getAbsolutePath()); //recursive call
                   else if (mFile.isFile())
                        printFilePath(mFile);
              else
                   throw new IllegalArgumentException("File or Directory does not exist");
         public void printFilePath(File file)
              System.out.println("File path :" + file.getAbsolutePath());
         public static void main(String args[])
              try
                   FileBrowser fb = new FileBrowser();
                   fb.listDirectory("c://temp//");
              catch(IllegalArgumentException ex)
    the above code snippet first figures out if a File object is representing a File or a Directory, if it represents a File it just call a method which prints out the Absolute path of the file which contains the file name also, else if it is a directory it just recursively scans through all sub-directories and files within the directory, also if the String arguement passed to listDirectory is incorrect, it throws a IllegalArguementException, hope this was useful.
    Cheerz

  • How to see the contents of jar file?

    Hi
    is there any way we can see the contents of jar file.(Since it is similar to zip file can we unzip it and see the contents)

    In total commander Ctrl + PageDown

  • How to see the content once I submitted the data in the form

    Hi,
    I have used webform editor to create a form and I have embedded some idoc scripts. Once I submitted the data to the content server through the form how will I able to see the submitted data again. Is it possible to see the data in html format...when I open the weblocation of hcsp pag, I can see only title , I am not able to see the title I entered n submitted
    Edited by: user10755799 on Jan 27, 2009 5:14 AM

    I checked my coding again in debug mode. I cannot find anything wrong.
    I duplicate here my coding again.
       DATA lo_attachment TYPE REF TO if_ai_attachment.
      lo_attachment  = lo_attachment_protocol->get_attachment_from_binary(
                          data = iv_attachment_content
                          type = iv_attachment_mime_type
                          name = iv_attachment_name
    * set the attachment
      DATA lt_attachments TYPE prx_attach.
      APPEND lo_attachment TO lt_attachments.
      lo_attachment_protocol->set_attachments( lt_attachments ).
    The local variable LT_ATTACHMENTS has field payload-resource with the following expected values --
    KIND : B
    TYPE : application/msword
    BINDATA :  00530068006F00740073005F0073007700630076002E0064006F00630020002000
    The BINDATA correctly contains the dummy data I assigned.
    I must have missed something. Can someone help?
    Best regards,
    -Michelle

  • FPM - How to see the content of the event raise by FPM event

    Hi All,
         I am trying to locate the view that comes up when we select a medical plan and click on the "Add plan" button in the ESS Benefits Open Enrollment.
    I could not find any view by on click of the "Add Plan" it is calling fpm.raiseEvent(IFPM.EVENT_ADD, BenConstants.VAC_PLANSELECTION);
    How can we look for the code under that class??
    Is there any other way to modify the View other than through NWDS??
    Thanks,
    Sujata

    check here
    Object          FUNC HR_BEN_ESS_RFC_CONF_FORM
    Object Header   FUGR HRBEN00ESS
    FUNC HR_FBN_ESS_FILL_DETAIL_FOR_SEL
    FUGR HRFBN00ESS

  • How to see Manifest content ?

    Hello !
    I want to know how to see the content of the manifest file using the jar.exe command ?
    Is this possible ?
    Thanks
    Best regards
    Ludovic

    Yes:
    jar xf yourfile.jar META-INF/MANIFEST.MF

  • How to read the contents of attached files

    Hi,
    I am designing a Form using LiveCycle Designer 8.0
    Scenario:
    User can attach the file through "Attachments" facility provided on Adobe  Reader.
    The requirement is to attach 3 documents and post it to SAP system using Web services.
    I am using the following code(which i got from this forum only) to find the number of files user has attached.
    d = event.target.dataObjects;
    n =  d.length;
    xfa.host.messageBox("Number  of Attachments: "+n);
    //Displaying  the names of the Attached files
    for( i =  0; i < n; i++ )
    xfa.host.messageBox("Name  of the file: "+d[i].name);
    My problem: is how to read the contents of the attached files so that I post it to SAP using Web services
    Thanks in advance!!
    Taha Ahmed

    In order to read the content of the Redo Log files, you should use Logminer Utility
    Please refer to the documentation for more information:
    [Using LogMiner to Analyze Redo Log Files|http://download.oracle.com/docs/cd/B19306_01/server.102/b14215/logminer.htm#SUTIL019]
    Kamran Agayev A. (10g OCP)
    http://kamranagayev.wordpress.com
    [Step by Step install Oracle on Linux and Automate the installation using Shell Script |http://kamranagayev.wordpress.com/2009/05/01/step-by-step-installing-oracle-database-10g-release-2-on-linux-centos-and-automate-the-installation-using-linux-shell-script/]

  • How can i check messages sent to device through my Verizon account online? i want to open the messages and see the contents.

    How can i check messages sent to device through my Verizon account online? i want to open the messages and see the contents.

        I know it's beneficial to be able to check your message content ArmyQueer. Verizon messages offers a wide variety of convenient options to manage messaging. What make and model device is this? When did you download the application on it? Please be aware you will only be able to see content after the app had been downloaded and installed. Content prior to the app being active will not be available. Here's a link with additional info. http://vz.to/1k3gBxd
    JonathanK_VZW
    VZWSupport
    Follow Us on Twitter@VZWSupport

  • How can i see the content of the cache server 2 ?

    How can i see the content of the cache server 2 ?

    Caching server is backed by an sqlite database.  If you want to see what you currently have downloaded, you can glean some information by accessing the database.  Use this command to connect to the database:
    sudo sqlite3 /Library/Server/Caching/Data/AssetInfo.db
    Once connected, you can use .tables to see the tables in the database but the one with the most information appears to be ZASSET.  Use:
       select * from ZASSET;
    To list the current contents.  You will get a series of records similar to the following:
    26|1|5|0|868991341|402440412.42114|402507221.969799|ffaf18a45cd5dd5e853233629036 5767|30B9108D-ABE4-4061-A2E0-42E91301249B|Fri, 06 Sep 2013 18:21:34 GMT|/content/downloads/14/11/091-9722/ognnjd4fno85m4pbapjtnv23b7rf1mkufx/OSXUpd Combo10.8.5.pkg|
    Note that the final value is a human recognizable name of the package.  However, you may also see items like this:
    125|1|4|0|11622676|406739736.508118|406739736.508125|4f1f9b08b32f9f6211e4569604b 1efef|481BF3D9-99BB-415F-ADB6-860EDD24B08E|Thu, 14 Nov 2013 10:24:30 GMT|/us/r1000/032/Purple6/v4/37/a3/d2/37a3d2f7-2594-8224-7eda-712f17a3fd8b/mzps 6227198657217312566.D2.pd.ipa|
    This is an iOS application.  There is no real way that I know of yet to match the package name (mzps6227198657217312566.D2.pd.ipa) to a product name.
    When finished, type .quit
    R-
    Apple Consultants Network
    Apple Professional Services
    Author "Mavericks Server – Foundation Services" :: Exclusively available on the iBooks Store

  • How to see the ms files attachment in outlook in iphone

    how to see the ms files attachment in outlook in iphone

    I believe JDK6 has the Desktop API which allows you to do this.
    Prior to that you can use the Runtime class. Read the HTML page that is displayed when running the example from this posting:
    http://forum.java.sun.com/thread.jspa?forumID=57&threadID=5123633

  • How do you see the contents of your "Domain" file?

    Thanks to this forum I have found out that the photo files on my Web site are stored in the Domain file under Application Support. How do you see the contents of this file? When I double-click on it, iWeb launches and I see the actual Web site.
    12" PowerBook   Mac OS X (10.4.8)   G4 1.5 GHz, 768 MB RAM

    i don't think it will work. because when you open up the domain file after you changed the size of the pictures, iWeb will probably save again while uploading - so the changes were for nothing. yet i haven't tried it.
    other way is to change them after you published. using graphic converter you just drag all at once in and change all the sizes at once.
    mp

  • How do I see the contents of the hard drive on a Mac Mini?

    How do I see the contents of the hard drive on a Mac Mini?

    Welcome to the Apple Support Communities
    1. Go to Finder > Preferences > Sidebar and tick Hard disks.
    2. Select Macintosh HD in the sidebar.
    See > http://support.apple.com/kb/HT2470

Maybe you are looking for