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

Similar Messages

  • How to Read the content of E-mail Body data

    Hi All,
    I am creating an E-mail webdynpro application, In that i want to read the content of body part. what will be the type of that TEXTEDIT field?
    and how can i read the content ?? is there any method or function module for that ???
    Thanks.

    Hi,
    There is standard WDA available on sending Emails. It is RPLM_MP_SENDEMAIL_COMP.
    See the code in this WD application and get the relevant logic for your functionality.
    I hope this will solve your problem.
    Thanks,
    Chandra

  • I just reset my apple ID password and now all the imap folders in Apple Mail are greyed out. I can see the contents, but I don't get whay the folders are all greyed out. Can anyone help?

    I just reset my apple ID password and now all the imap folders in Apple Mail are greyed out. I can see the contents, but I don't get whay the folders are all greyed out. Can anyone help? Sorry for the long title on this message...

    Assuming this is an iCloud mail account, sign out of iCloud in its preference pane, then sign back in with the new password.

  • HT2506 How do I drag an image around in the view, once it's magnified larger than the viewing area? I can imagine a simple "hand" tool like in Adobe PDF Reader doing this, but it's oddly missing in this application, quite a shame.

    How do I drag an image around in the view, once it's magnified larger than the viewing area? I can imagine a simple "hand" tool like in Adobe PDF Reader doing this, but it's oddly missing in this application, quite a shame.

    @Csound1 how is my mac relevant? I'm talking about software not hardware.
    @Kurt Lang sorry, I composed the message when looking at "Preview" application help on this site, the fact that it missed the context here, is another issue I have with Apple's "famous" UI/UX design...
    So for the record, I'm talking about the "Preview" app that comes bundles with Max OSX.

  • I got  a new computer, how do i put the content of my ipad into itunes on the new computer

    i got  a new computer, how do i put the content of my ipad into itunes on the new computer?

    You should copy everything from your old computer, or your backup copy of your old computer, to your new one.

  • How to combine a content search with an attribute search with the API

    Hi
    I have been working with searches in Content Services using the API and I have successfully set up the search over the contents of a document and inside of the Category attributes of the document.
    My problem comes when I try to combine this 2 kinds of search, that is when I want to find all the documents that cointain the text "test" and at the same time contain other text into their category attributes.
    What I do is to build 2 SearchExpression's one for the content search and the other for the attributes search and then joining them in a third SearchExpression object using the FdkConstants.OPERATOR_AND. When I search using only the first or the second SearchExpression everything works fine. But when I do the search using the third SearchExpression an ORACLE.FDK.ParameterError:ORACLE.FDK.InvalidSearchExpression
    exception id raised.
    The code I'm using is like this:
    private SearchExpression getMainSE(String contentQuery, CategoryInfo catInfo)
         SearchExpression contentSE = null;
         SearchExpression catSE = null;
         SearchExpression mainSE = null;
         if(contentQuery != null)
              contentSE = this.setupSE4Contents(contentQuery);
         if(catInfo != null)
              catSE = this.setupSE4Category(catInfo);
         if(contentSE != null && catSE != null)
              mainSE = new SearchExpression();
              mainSE.setLeftOperand(FdkConstants.OPERATOR_AND);
              mainSE.setLeftOperand(catSE);
              mainSE.setRightOperand(contentSE);
         else
              mainSE = contentSE != null ? contentSE : catSE;
         return mainSE;
    CategoryInfo is one class made by my own that contains the categoryId of the document and a List of the attributes where I want to search. mainSE is the SearchExpression that is returned.The portion of code that appears to be having problems is this:
    if(contentSE != null && catSE != null)
         mainSE = new SearchExpression();
         mainSE.setLeftOperand(FdkConstants.OPERATOR_AND);
         mainSE.setLeftOperand(catSE);
         mainSE.setRightOperand(contentSE);
    And finally I only execute the search using the mainSE returned by the function:
    // Define search options
    NamedValue[] nv = WsUtility.newNamedValueArray(new Object[][] {
         { Options.FOLDER_RESTRICTION,
              folder != null ? new Long(folder.getId()) : null },
         { Options.SEARCH_VERSION_HISTORY, Boolean.TRUE } });
         SearchExpression mainSE = this.getMainSE(contentQuery, catInfo);
         try
              // Search documents
              NamedValue[] result = sem.search(mainSE, nv, null);
              // etc....
    Is this the correct way to combine a content search with an attribute search???
    I know that this is possible since I have seen that it can be done in the Collaboration Suite UI.
    I hope yoy can help me...
    Thanks in advance

    Not sure if this is a typo (while pasting code on the forum) or is the cause of the problem you describe.
    Shouldn't mainSE.setLeftOperand(FdkConstants.AND) be replaced by mainSE.setOperator(FdkConstants.AND) ?
    Ravikiran

  • Issue while playing the content of Azure Media Services after deleting the channel.

    Hi,
    We are having the issue while playing the content of Azure Media Services after deleting the channel.
    Please find detail scenarios below:
    We have done live streaming of an event using Azure Media Services, event was around 5-6 hrs. After completion of event channel was deleted, when we checked content data
    it was only 1hr. Content has only last 1 hr. recording, we are unable to get full recoding.
    We divided event into two parts to avoid above issue. After completion of 1st part which was of 2 hrs., we stopped the streaming and deleted the channel. New channel was
    created and streaming was started for 2<sup>nd</sup> part, after completion of event channel was deleted. Now we are unable to play the content data for 1st part but able to play the 2nd part of event through content publish URL.
    We have done streaming of 3 hrs. event on 18th April with same process and full recoding was available. 
    Can you let me know what might be the issue?

    Hi,
    Please refer to Justin’s blog and see if it helps:
    http://www.justinkobel.com/post/2012/04/30/SharePoint-2010-Claims%E2%80%93Operation-is-not-valid-due-to-the-current-state-of-the-object.aspx
    As suggested by Alex, please provide more information about your process of changing password.
    Here is an article for updating passwords on SharePoint 2010:
    http://blogs.technet.com/b/seanearp/archive/2011/01/25/updating-passwords-on-sharepoint-2010.aspx
    Regards,
    Rebecca Tu
    TechNet Community Support

  • Dynamically change the contents of one combo box based on the other

    Hi Forum,
    I have a question which might have a possibly simple answer. Well anyway help me out since i could not find the simple answer.
    I am building an application using Swing and binding with BC4J using JClient. My GUI has combo boxes, grids, editboxes. My requirement is that i should be able to dynamically change the contents of one combo box based on the selected item in trhe previous combo box. For example, when i choose a country in the "country combo box", the "states combo box" should show the list of the states of the selected country.
    Now how do i do this using binding. If not, how do i write custom querirs in BC4J layer and return a resultset to the remote application so theat i can populate the dependent combo boxes.
    I will appreciate if anyone can help me out in this regard.
    Thank You
    Sumit

    there could be quite a few number of ways of solving this problem.
    One way is through event handlers.
    taking your example as a model when user selects a country you could fire an action with a flag set to ture. A method will return the states from the DB or your temporary files or what ever and then the true flag will be used in the states combo box rendering.
    other way: javascript
    this might be a bit clumsy as you will need the states information in a property file and you can get the info as the user selects a country.
    regards,
    raj

  • HT1766 i have backed up my iphone 5 and have a 5s I want to set up from that backup file. I have gone through the process once, and when I next connect the new AND the old phone to the mac and open itunes, restore or create new phone comes up not synch??

    i have backed up my iphone 5 and have a 5s I want to set up from that backup file. I have gone through the process once, and when I next connect the new AND the old phone to the mac and open itunes, restore or create new phone comes up not synch?? Tried starting the whole process over once but same result. Seems not to recognise the phone and just synch as it should. Help?

    Hello CosK,
    The following guide can step you through the process of using a backup of your iPhone 5 to transfer your content to your iPhone 5s.
    Transfer content from an iPhone, iPad, or iPod touch to a new device
    http://support.apple.com/kb/HT2109
    Should one or both of your phones fail to appear in iTunes, the following article provides troublesooting steps that can assist.
    iOS: Device not recognized in iTunes for Windows
    http://support.apple.com/kb/TS1538
    Cheers,
    Allen

  • I am developing a site where the content is 1300 pixels in depth but the browser background is 2500 pixels in depth. I want the browser background to be just a little longer than the content, but cannot seem to make that happen. Does anyone have an idea

    I am developing an iWEB site where the content is 1300 pixels in depth but the browser background is 2500 pixels in depth. I want the browser background to be just a little longer than the content, say about 1340 pixels, but cannot seem to shorten the browser measurements. Does anyone have an idea how I can solve this problem?   I have tried to make height adjustments in the Page Layout section of the Inspector, but content height heading has no affect on anything.  I have built about 75 sites in iWEB and this is my first experience like this.

    That is a legitimate Mozilla newsletter. As it says in the email:
    You're receiving this email because you subscribed to receive email newsletters and information from Mozilla. If you do not wish to receive these newsletters, please click the Unsubscribe link below.
    Unsubscribe https://www.mozilla.org/en-US/newsletter/existing/ad9febcf-65ac-41fd-810b-798945f448f3/
    Modify your preferences https://www.mozilla.org/en-US/newsletter/existing/ad9febcf-65ac-41fd-810b-798945f448f3/ "

  • Why does the content of my emails not show on the main Mail page but does in the Inbox list of all emails?

    Why does the content of my emails not show on the main Mail page but does in the Inbox list of all emails?

    Try a Reset [Hold the Home and Sleep/Wake buttons down together for 10 seconds or so (until the Apple logo appears) and then release. When the screen goes blank power On again in the normal way.] It is absolutely/appsolutely safe!

  • How do I get access to my backed up data in the iCloud?i

    How do I get access to my backed up data on the cloud?

    Just go to iCloud.com and log in.  Choose iCloud Drive if you are looking for documents that you lost on your mac and had put into iCloud drive prior to your hard drive dying.  Contacts, Mail, Calendars will all be there under the log in to choose from.

  • Blueray drive on Envy the content is not allowed to play in the current display mode.

    HP Envy 17 Notebook PC
    Windows 7 64 bit
    When I play a blueray disc  I get the following message:
    The content is protected.
    The content is not allowed to play in the current display mode.
    I am trying to run it in HP media smart on my pc monitor.
    I have the same message before and after I updated the media smart software.
    I am running version 4.1.2.5219

    This should be an easy one. Press the "Windows" and "P" key at the time and choose projector only when the monitor is plugged in.
     If you want to have both on then you need to use SlySoft to remove the HDCP protocols in Media Smart and the movie, but that's not free.
     Here it is if you want it.
     http://www.slysoft.com/en/anydvd.html
     If you are still having problems with that version of Media Smart, then there is a newer one available.
     Even better, Cyberlink Power DVD10 is available for free for HP owners.
     Post again if you need the links.

  • Why can't I change the content for some songs when I click the Get Info button?

    Why can't I change the content for some songs when I click the Get Info button?  The information on the song, artist, genre is grayed out and will not allow me to alter the information.

    Hi htechadmin,
    Revcevied your PM and noted all details, Many Thanks.
    Getting this addressed by the team, either they will reply to you, here, or they shall email Or Call you.
    Regards,
    LP

  • Is it possible to create a Webservice in BI which takes XML as an input and gives PDF as output with an additional requirement that Siebel expecting the XSD from BI to send data in the BI requested format

    Is it possible to create a Webservice in BI which takes XML as an input and gives PDF as output with an additional requirement that Siebel expecting the XSD from BI to send data in the BI requested format. Siebel wants to send the data as xml to BI but not sure of the BI capabilities on giving WSDL embedded with XSD (input is a hierarchical)

    Hi All,
    I am able to fulfil above requirement. Now I am stuck at below point. Need your help!
    Is there any way to UPDATE the XML file attached to a Data Definition (XML Publisher > Data Definition) using a standard package or procedure call or may be an API from backend? I am creating an XML dynamically and I want to attach it to its Data Definition programmatically using SQL.
    Please let me know if there is any oracle functionality to do this.
    If not, please let me know the standard directories on application/database server where the XML files attached to Data Definitions are stored.
    For eg, /$APPL_TOP/ar/1.0/sql or something.
    Regards,
    Swapnil K.

Maybe you are looking for

  • How to modify page without clicking on Execute?

    Hi. I have 2 radio buttons(YES and NO) and one text field parameter(Request Number). I want that if I click on YES, the field-active for field Request Number should become 1, and similarly when I click on NO, the field-active should become 0. I have

  • Accessing java class in JSP on Tomcat 5.5 server

    Just i want to use a java class in JSP. Explanation in following steps : a. MY JSP Code - SimpleBean.jsp b. My Java file - test.java c. Path ( Root, jdk, jre , myfiles-test.java, SimpleBean.jsp ) d. Environment Variables e. Error Message faced Now Br

  • Use of variable types and rounding...

    I'm kinda confused on what variable types to use. I want it so that when I divide two numbers, it'll either round up or down, and give me a rounded number w/o a decimal. Examples... 184/2683=7 164/2683=6 I have been fiddling with it for a while now,

  • Corrupted Illustrator files

    Recently our IT department copied files from one drive to another on our server. A lot of our files are now corrupted. We are using Windows XP and Adobe CS3. The error I am getting is "Acrobat PRF File Format is having difficulties. Expected a dict o

  • IPhoto cropping exports

    I'm having a rather annoying issue with iPhoto, where certain photos are cropping to a very strange dimension when I export them. It doesn't affect all images, just some. They're not cropped in iPhoto, so I'm confused as to how this could happen. If