Form Inputs are not transfered to context

Hi Experts,
I created a interactive and inserted it into a webdynpro view.
The component component is mapped to the view's context and the node is bound to the "data--source" property in the form.
The problem is, that no changes made inside the pdf forms are transfered to the context attributes.
Does anybody has a clue why the data in the context is not changed after editing the form?
I compared my Application with the demo application "DEMO_ADOBE_OFFLINE" which also implemented a roundtrip and they seem to be identical.
Please help, as I don't have any idea what to check anymore!
Thank you!
Benedikt

Solved!
http://help.sap.com/saphelp_tm70/helpdata/de/44/e96677f1c367d6e10000000a155369/content.htm

Similar Messages

  • SRM PO Changes are not transferred to Back end

    Hi All,
    I have a problem in PO changes.
    We are using extended classic scenario. User create PO in the portal and the PO will be transferred to the back end R/3 via RFC. Earlier in 4.7 we the PO's are updated with the changes.
    Recently we have upgraded to ECC 6.0. Now the changes are not transferable.
    Could any one help me to fix this issue and please give the steps that i need to check for fixing it.
    Regards
    Pratap J

    Hi Thaigo,
    Thanks for your input. please go through the below.
    These are the table entries in BBP_BACKEND_DEST
    Client Logical system Destination                        System type RFC possible Local FI validation
    500    EP1CLNT500     EP1CLNT500                         EBP_5.0                  X      0
    500    RP1CLN500D     RP1CLNT500DIAG                     R/3_4.70    X                   0
    500    RP1CLNT500     RP1CLNT500                         R/3_4.70    X                   0
    In the table, it was still 4.70. So it needs to changed to ERP_4.0 ?
    Regards
    Pratap J

  • Form values are not submitting to ActionForm class

    Hi All,
    I have a problem with <html:form> tag. When i am submitting the form using the submit button it is going to the Struts-config.xml file and getting the action mapping for the HazSummary.do. It is getting the HazardSummaryAction class and getting the input from HazardSummary Form class. If result is sucees it is going to the next jsp page.
    All above things are happening properly. But the form values are not getting in to the HazardSummaryForm.jav.
    Here in this case Action class is HazardSummaryAction.java, Action Form class is HazardSummaryForm.java and jsp page is Hazard.jsp.
    Here is the code for Hazard.jsp
    <html:form action="/HazSummary.do">
    <table width="100%" border="0" style="border-collapse: collapse" bordercolor="#111111" cellpadding="0" cellspacing="0">
         <tr colspan="4"><td>
         <%String jd="jmd";
         String st="closed";%>
         <input type="text" name="wkploc" value=<%=jd%>>
         <input type="text" name="hastat" value=<%=st%>>
    <html:submit property="action">
    <bean:message key="haz.save.label"/>
    </html:submit>
         </td></tr>
    </table>
    </html:form></body>
    Here is the code for HazardSummaryAction.java
    package com.prospecta.WSOProject.action;
    import java.io.IOException;
    import javax.servlet.ServletException;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    import javax.servlet.http.HttpSession;
    import org.apache.struts.action.Action;
    import org.apache.struts.action.ActionForm;
    import org.apache.struts.action.ActionForward;
    import org.apache.struts.action.ActionMapping;
    public class HazSummaryAction extends Action{
         public String hazstatus;
         public String workplace;
         public String prin1;
         public ActionForward execute(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException
              HazardSummaryForm hsf = new HazardSummaryForm();
              HttpSession session = request.getSession(true);
         try{
         hazstatus=hsf.gethastat();
         System.out.println(hazstatus);
         workplace=hsf.getwkploc();
         System.out.println(workplace);
         session.setAttribute("stat",hazstatus);
         session.setAttribute("loc",workplace);
         return mapping.findForward("success");
         catch(NullPointerException nex){
              return mapping.findForward("failure");
              }catch(Exception e)
         e.printStackTrace();
         return mapping.findForward("failure");
    Here is the code for HazardSummaryForm.java
    package com.prospecta.WSOProject.action;
    import org.apache.struts.action.ActionForm;
    public class HazardSummaryForm extends ActionForm {
         public String wkploc;
         public String hastat;
         public void setwkploc(String wkploc)
              this.wkploc=wkploc;
         public String getwkploc()
              return this.wkploc;
         public void sethastat(String hastat)
              this.hastat=hastat;
         public String gethastat()
              return this.hastat;
    Here is the code for Struts-config.xml file
    <?xml version = '1.0' encoding = 'windows-1252'?>
    <!DOCTYPE struts-config PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 1.1//EN" "http://jakarta.apache.org/struts/dtds/struts-config_1_1.dtd">
    <struts-config>
         <form-beans>
    <form-bean name="HazSumForm"     type="com.prospecta.WSOProject.action.HazardSummaryForm">
                   <form-property name="wkploc" type="java.lang.String"/>
                   <form-property name="hastat" type="java.lang.String"/>
         </form-bean>     
         </form-beans>
    <action-mappings>
    <action path="/HazSummary" input="/HazSumForm" name="HazSumForm" scope="request" validate="false" type="com.prospecta.WSOProject.action.HazSummaryAction">
                   <forward name="success" path="/HazardSummary.jsp"/>
                   <forward name="failure" path="/Hazard.jsp"/>
              </action>                                         
         </action-mappings>
         <controller processorClass="fr.improve.struts.taglib.layout.workflow.LayoutRequestProcessor" locale="true"/>
         <message-resources parameter="com.prospecta.WSOProject.ApplicationResources"/>
         <plug-in className="org.apache.struts.tiles.TilesPlugin">
              <set-property property="definitions-config" value="/WEB-INF/tileDefinitions.xml"/>
         <set-property property="moduleAware" value="true"/>
         <set-property property="definitions-parser-validate" value="false"/>
         </plug-in>
         <plug-in className="org.apache.struts.validator.ValidatorPlugIn">
         <set-property property="pathnames" value="/WEB-INF/validator/validator-rules.xml,/WEB-INF/validator/validations.xml"/>
         </plug-in>
    </struts-config>
    i followed the same process for previous pages which they are working. But in this case it was not working properly.
    Please resolve this problem ....................

    Hi Sreelatha,
    When you develop any interactive form please keep in mind the below things which you need to check:
    1. The layout type of the form should be ZCI. Select it from the form properties tab in SFP t-code.
    2. In web dynpro application (in case you are using for the form), the form type should be selected as native.
    3. In the form layout insert web dynpro script using menu->utilities->insert web dynpro script.
    4. After that come out of the form and run the report FP_ZCI_UPDATE giving your form name, also select the update check box in the report.
    Once these things are done your form should work fine.
    Regards,
    Vaibhav

  • HT204053 I have a problem. I bought Pages and Numbers for my iMac and so far everything was OK.  Suddenly i have a problem with connection to iCloud. Dokuments created on iMac in Pages or Numbers are not transfered to iCloud. Not uploaded in iCloud.

    I have a problem.
    I bought Pages and Numbers for my iMac and so far everything was OK.
    Suddenly i have a problem with connection to iCloud.
    Dokuments created on iMac in Pages or Numbers are not transfered to iCloud. Not uploaded to iCloud. There is a sign  (small shape of iCloud), that they are waiting to be uploaded to iCloud.
    I think the iCloud is OK.
    i can see and manage documents in iCloud. i can create them on iPad and  see them and delete them in iCloud.
    But not on iMac.
    i dont know what has happened and I am not abble to find the solution. It was OK till some days ago….

    I have a similar problem! Everything stopped working after upgrading to Mac OS 10.8.4 through the App Store. Help!

  • Free of charge items, ie price = u00A30.00 are not transferred to backend.

    Free of charge items, ie price = £0.00 are not transferred to backend. PO created with held status, but the SRM PO item IR flag is selected. If we manually amend the SRM PO item to remove the 'invoice receipt' flag, then save the PO, the PO does get to the backend with a price of zero, the IR flag de-selected and the 'free' item flag selected.
    How do we manage to get the PO with free items to the backend without having to manually change the held PO in SRM? We are on SRM 5.0 using extended classic.

    Hi
    <b>We have done this type of requirment.. several times.. This is easily possible ..</b>
    <u>You need to Implement the BADI - BBP_CREATE_PO_BACK using SE18 Transaction.</u>
    <b>Either you can do this sample code inside BAPI (Make changes accordingly) or inside the BADI - BBP_CREATE_PO_BACK / BBP_CREATE_PO_BACK_NEW depending on your requirement.</b>
      LOOP AT po_items INTO ls_po_items WHERE net_price IS INITIAL.
    * Reset the IR Indicator for Items with Zero net price
        ls_po_items_add_data-po_item = ls_po_items-po_item.
        ls_po_items_add_data-ir_ind  = space.
        ls_po_items_add_data-gr_ind  = 'X'.
        ls_po_items_add_data-gr_non_val = 'X'.
        APPEND ls_po_items_add_data TO po_items_add_data.
      ENDLOOP.
    <b>Related link -></b>
    Re: Final Entry/ Final Invoice Indicator to be checked Auotmatically
    <u>Do let me know.</u>
    Regards
    - Atul

  • When I take photos with my ipad 3 the photos do not go to photostream anymore...they just go to the camera roll so they are not transferring to my pc

    When I take photos now with my ipad 3 the photos do not go to the photostream folder...they go to the camera roll so they are not transferring to my pc although they were up till today. How can I fix this?

    I went there and the problem might be because of low battery power..I am charging my ipad now and will let you know if that has helped...Thanks for the link..

  • Call on PRI Line are not transfered to IP-AA on CCM

    Greetings,
    Having an issue with H.323 Voice gateway. Incoming calls are not transferred to Auto-Attendant. This happens randomly but I have noticed that the frequency is higher when there are no incoming call no PRI lines.
    (Check the attachments for debugs)
    The calls seems to be answered by gateway but ISDN-Connect message is never displayed. I tried to call from my IP Phone to but no ISDN-Connect message for this call, however, the call is landed on gateway. Running CCM 4.2(3), IPCC Express 4.0(4),IOS version 12.4(8) Advance IP Services, tried IOS 12.4(5a) Advance Enterprise Services as well but in vain.
    Another questions is that: we can run both MGCP and H.323 on voice gateway but how will it register with CallManager. I guess we can use some loopback technique for this purpose. Need suggestions/comments!!!
    Please find the attachments of Q921 and Q931 debugs. Took debugs for 2-scenarios
    1- Called from and outside number to PRI line
    2- Called from IP-phone to PRI line
    Regards,
    Syed Khalid Ali

    You can refer this guide for more information on configuring loopback for PRI interface:
    http://www.cisco.com/en/US/docs/ios/12_2/dial/configuration/guide/dafchant.html#wp1002838

  • Files Are Not Transferring Correctly from Captivate 4 to 5

    My files from Captivate 4 are not transferring correctly into Captivate 5.  The images and quiz questions are not in the same place. Help!

    This is a bug.
    We all have it.
    Keep CP4 for the old courses, and develop new ones in CP5. That is what I am doing.
    Alternative is to manually adjust everything (don't even get me started on rollovers...)
    Terry

  • Changes to order are not transferred

    Hi,
    our PPDS users are facing an issue in Product Planning Table ( transaction /sapapo/ppt1).
    When we create a planned order and convert to production orders, the system converts with out any issues.
    After some time when we drag the production order to a new time ( in DS board), fix the order, then when we save, we get the message " Changes to order 100065265 are not transferred" and the order moves back to where it was... The  # 100065265 is our production order in created status.
    Looking at the error details, I thought there are some changes to the order being done in R/3, but there were no changes to that order in R/3 at that point and the same change, if done after some time goes through...
    This is happening almost for every order and it's annoying to keep click ok on this order, wait and then reprocess again...some time we get the error multiple time before the system accepts the changes...
    Any idea on what might be happening?
    More details about the error,
    ===
    Changes to order 100065265 are not transferred
    Message no. /sapapo/cdpssimulati015
    Diagnosis:
    The changes made to the order 100065265 in SAP APO can not be transferred as the order has already been changed by the linked R/3 system
    System Response:
    If you have made minor changes to an order in SAP APO and changes to this order are simultaneously being transferred from the R/3 system, only the changes from the R/3 system are adopted. The changes you made to the order manually in SAP APO are lost
    In technical information, I see the application area as /SAPAPO/SIMULATI, MESSAGE # 015 and main program SAPLSHL2.
    Thanks,K

    Hi,
    It seems the production order details are getting updated in ECC with order related settings you maintained at ECC, like settlement profile, etc., During that time, if you try to change the production order in APO, since the ECC update for the order is not yet completed, it gives the error. Thats why after sometime, when you change the production order, it allows you to change.
    Please try this, once you convert the order in APO, go to ECC and try to open the order in CO02 or CO03, it will give you an error the order is already being processed by XXXX. If so, then it is the time taking to update the production order in ECC.
    Also, try this, once you convert the order, immediately save and after sometime you change the time.
    Please check and revert.
    Regards,
    Manimaran M.

  • TS3989 Some of my pictuers on iPhone are not transferring to my ipad

    Some of my pictuers on iPhone are not transferring to my ipad

    UM Go Blue wrote:
    Until today, all of my music was on both my Mac and iPad 2.  I too just sync'd my iPad 2 with my Mac.  Originally, none of the music from the Mac showed up on iPad.  Tried again, and now some albums are showing up, but only a few.  Have plenty of capacity/space.  Also noticed the "iPod" icon is now a "Music" icon on the iPad.  Any ideas?
    Sounds like you just updated your IOS.  Check the iTunes settings and confirm that nothing was changed:

  • Why bookmarks are not transferring when i sync

    I followed the instructions for setting up my sync account but my bookmarks are not transferring from my desktop to my laptop.

    Try using a third party alternative.
    Syncios : http://syncios.com/

  • SOLUTION MANAGER - VAR Scenario - Attributes are not transfered

    Hi Solman Gurus
    I have an issue regarding connection between Customer and VAR solman.
    IThe connection is established following document How To Setup ServiceDesk 2 ServiceDesk Connection Nov 09.pdf.
    The problem is in VAR Solman.
    When message is transfered from Customer solman to VAR solman the following attributes are not transfered:
    Sold-to party, Reported by, Support Team, Message Processor.
    The Ibase is configured in both systems. When message is posted from satelite to Customer Solman all this attributes
    are transfered. In the next steep, when message is transfered from Customer solman to VAR solman this attributes remain
    empty in VAR Solman.
    What confugration is missing in VAR Solman?
    Thank you in advance
    Marko

    Hello Marko,
    How did you define the value mapping? Automatically or manually?
    Have you checked that Incoming and outgoing value mapping has been created in both systems?
    Are you copying the values or taking an other action?
    Could there be a rule that is setting the value to space?
    I'd take a closer look at your value mapping and make sure incomming and outgoing have been defined properly on each system and make sure the rule is correct, and its not taking some unexpected action like set the value to blank when you wanted to copy it.
    Regards,
    Paul

  • Currently using Flash Pro CS5,  getting error when trying to open CS4 file.  Error is "Slides and Forms documents are not supported in this version of Flash. Please open in previous version.

    Currently using Flash Pro CS5,  getting error when trying to open CS4 file.  Error is "Slides and Forms documents are not supported in this version of Flash. Please open in previous version.  Has there been a fix or patch to this issue or do I have to convert back to CS4 to open the file?

    Having the same problem in CS6.  I can tell you that converting back to CS4 will NOT solve the problem.  It seems when support for backward compatibility is discontinued, there's just no way to get
    any help at all?  Absolute failure to provide any user support so far...

  • I can no longer shoot directly into phaseone software since i use my new macbook pro with retina display. pictures are not transfered from the camera into captureone. anyone else with this problem? any solutions?

    i can no longer shoot directly into phaseone software - neihter version 6 or 7 - since i use my new macbook pro with retina display. pictures are not transfered from the camera into captureone. anyone else with this problem? any solutions?

    My eyes just glazed over...Please in the future break down each of your issues with paragraphs separated by two carriage returns. It would be much easier when trying to address your issues.
    Go to Apple menu -> System Preferences -> Keyboard and Mouse -> Mouse
    And edit your mouse settings to do what you want it to do.
    Secondly, this is not the place to vent. If you have a complaint, there is:
    http://www.apple.com/feedback/
    or http://www.apple.com/contact/
    We are just end users here helping other end users.
    Third, from my understanding, it would appear you are concerned about the noise the hard drive makes when it falls asleep? Why not put your machine in screen saver mode instead? Apple menu -> System Preferences -> Energy Saver turn off all Energy Saver settings, or set them to run Never.
    Fourth, if your machine was purchased just a few days ago, you may still be able to get an exchange from the store, quicker than you can get a repair done. You may want to look into that possibility.
    Fifth, it does appear you found the Logic forum. I would persist in asking there how to solve your technical issue with Logic regarding the audio. It may be you don't have to do anything special to the hard drive. Remember audio can be transmitted by wire, avoiding ambient sounds.
    Good luck!

  • Raw adjustments made in Photoshop CS file browser are not transferring to Lightroom 4.

    I have thousands of images all on external hard drives with raw adjustments made in Photoshop CS file browser.  When I import these raw files from the external drive into Lightroom 4 the original raw adjustments are not transferring or at least the preview of those adjustments are not showing up the way they do in file browser.  Why? Please help. 

    Hi JGJenson,
    Were the images already imported into iPhoto when you edited them in PS?
    If they were then in order for the edit to be reflected within iPhoto you have to save with the same name.
    So you need to navigate the iPhoto Library in the Finder and drag out the images that you saved back into the library with the different names. Drag them to the desktop, then import them from there.
    If you are using PS as an external editor that you set up within iPhoto's preferences then the images must be saved with the same name and be flattened for the edits to be reflected within iPhoto.
    If you want to save them with a different name, they must not be saved into the iPhoto Library. They need to be saved to the desktop and then imported into iPhoto.
    Lori

Maybe you are looking for