Database Buffering problem in Interactive Adobe Forms

Hi All,
In our project, there is one interactive adobe form developed to create/update lead data. The lead data from Adobe Form is read using custom class and method of the same class updates the lead. (BOL programming is used to update and create lead. Also, all the Save and Commit statements are used properly).
There is no problem in creating the lead using interactive Adobe Forms. But, when the same lead is updated in the same session using the same adobe form, due to some database buffering issue, system tries to insert duplicate records in CRM_LEAD_H table which is causing error dump - SAPSQL_ARRAY_INSERT_DUPREC. This dump occurs in update function module CRM_LEAD_H_UPDATE_DU.
If we logged off from the session, the database buffer gets refreshed and lead is updated successfully.
Is there any method/function module to refresh DB buffer before calling the adobe form?
Thanks in advance.

Few fields have reference to table XBT. But when I see this in SE 11, such a table is not existing at all.
Can any of you share some ideas or clues?
Thanks in anticipation.
Regds,
Kiran
Edited by: kiran dasari on Jan 26, 2009 7:53 AM

Similar Messages

  • How to extract data from an interactive adobe form and update SAP database

    Hi ,
    I want to create an Interactive Adobe Form with two text fields and a submit button.On click of submit data entered in the text fields should be stored in a ZTable.
    Please let me know the procedure for doing this in ABAP.
    Thanks,
    Prasuna.

    Hi ,
    pls have a look at the link below...
    [http://www.adobe.com/devnet/livecycle/articles/lc_designer_schema_tip.pdf]
    if u r using abap web dynpro application for calling the adobe form than on the CLICK Action of the button give the code :
    zdept is the interface name ..
    method ONACTIONCLICK .
      data:
        Node_Adobe       type ref to If_Wd_Context_Node,
        Node_Zdept       type ref to If_Wd_Context_Node,
        Elem_Zdept       type ref to If_Wd_Context_Element,
        Stru_Zdept       type If_Main_View=>Element_Zdept .
      data wa_zdept type zdept.
    * navigate from <CONTEXT> to <ADOBE> via lead selection
      Node_Adobe = wd_Context->get_Child_Node( Name = IF_MAIN_VIEW=>wdctx_Adobe ).
    * navigate from <ADOBE> to <ZDEPT> via lead selection
      Node_Zdept = Node_Adobe->get_Child_Node( Name = IF_MAIN_VIEW=>wdctx_Zdept ).
    * get element via lead selection
      Elem_Zdept = Node_Zdept->get_Element(  ).
    * get all declared attributes
      Elem_Zdept->get_Static_Attributes(
        importing
          Static_Attributes = Stru_Zdept ).
      wa_zdept-DEPTNO = Stru_Zdept-deptno.
      wa_zdept-DNAME = Stru_Zdept-dname.
      wa_zdept-LOC   = Stru_Zdept-loc.
      insert into zdept values wa_zdept.
    endmethod.
    Hope this helps  !!!
    best of luck !!
    Regards
    Ravi

  • Error while Uploading Interactive Adobe Form

    Hi,
    I have been given a template Interactive Adobe form by Adobe which i have to upload in SAP. I created a test interface and form then i am trying to import the template into the layout. I get following error -
    " Can not Load: "http://dldtc00.wdf.sap.corp:5800/sap/bc/soap/wsdl11?services=test&sap-client120&sap-user=ag&sap-password=d01&. Check that path is correct and that the file is a valid WSDL file."
    Could you please tell me why am i getting this error and how to fix it?
    Thanks,
    Amit

    Abhi
    I too got the same error:
    WebDynpro Exception: The ADS call has failed. You can find information about the cause in the error.
    I refered the link provided by you for testing the ADS configuration and it displayed a 2 page report.
    Is that mean that there is a problem in my form?
    Regards
    Vijai

  • Value Help in Interactive Adobe Form in Web Dynpro

    I have to provide a value help for certain Fields in Interactive Adobe Form using Web Dynpro ABAP. I have managed to get the Value Help Popup for the fields using Java Script in Adobe, but the problem is that whenever I select the Value from the Value Help, the selected value in not getting populated in the field....
       Please let me know the solution in case any one of you come across such kind of requirement.

    Priyanka:
    Can you let me know the steps on how to provide value help in interactive forms?
    Thanks
    Vijai

  • Problem with the Adobe Forms

    Hi,
    I am having two issues regarding Interactive Adobe forms.
    We are impelementing MSS/ESS in ECC5.0,EP6 and <b>first</b> , in the PCR after i select " Change Employee Group/subgroup"  (edit it, preview it) then when i click on Submit button it gives me Parser Exception . Error message reads as below :
    <i>The initial exception that caused the request to fail, was:
    com.sap.engine.lib.xml.parser.ParserException: XMLParser: No data allowed here: (hex) 75, 6e, 64(:main:, row:1, col:3)
    at at com.sap.engine.lib.xml.parser.XMLParser.scanProlog(XMLParser.java:2733)
    at at com.sap.engine.lib.xml.parser.XMLParser.scanDocument (XMLParser.java:2778)
    at at com.sap.engine.lib.xml.parser.XMLParser.parse0(XMLParser.java:227)
    at at com.sap.engine.lib.xml.parser.AbstractXMLParser.parseAndCatchException(AbstractXMLParser.java:141)
    at at com.sap.engine.lib.xml.parser.AbstractXMLParser.parse(AbstractXMLParser.java:156)
      ... 31 more</i>
    <b>second</b>, When i select either "Request for Internal Transfer(Enhanced)" or "Request Promotion " it displays a warning message " <i>Form could not be called up due to an internal error</i> " . Rest of the form types i am able to get them ( view,edit,preview and submit )
    What could be issue in both the cases here. Need your help on this
    Thanks in advance,
    Vijay

    Hi Vijay,
    Check if your XML code is properly. You can do this by going into t-code SFP, open form ISR_FORM_SPEG and go to the layout tab.
    Now Adobe Designer will start. If you don't have a XML tab, Select View > XML source. You can copy the XML source in a new text file and display it with Internet Explorer. If it works, you will see the XML source. If it fails, you will receive an XML parse error from IE.
    The problem may occur by using different languages. SAP provides the SPEG and other MSS scenarios as an <b>example</b>.

  • Contradiction form error in non interactive adobe forms.

    HI All,
    I am woriking on a non interactive adobe forms generation program in ABAP.
    The program uses a variant and generate pdf forms for all the list items on the varient.
    Note: I am not using Webdynpro its the normal pdf generation.
    The problem I am facing is that when the varient has a list of more records at some point of time it generates the contradiction form error and terminates. if I alter the varient so that the list is minimal then there is no problem with that.
    I know that the Contradiction form error occurs when the pdf generation is open and there is another request to open a new form before closing the previous call. but when the varient has minimal data there is no problem with that, my assumption here is the data volume or such which causes the problem.
    Does somebody came accross such an issue earlier or if you have a solution approach please do share it with me.
    Thanks in Advance.
    Sai Krishna.

    Total Posts:  366 
    Total Questions:  110 (59 unresolved) 
    Forum Points:  2 
    Why do you ask so much and never answer? You´d better reconsider the questions/ points balance if you want some help from our side.
    Otto

  • Inserting bullet points within Interactive adobe forms

    Hi,
         I would like to know if it would be possible to include "Bullets & Numbering" within Interactive adobe forms similar to MS word. Please kindly let me know.
    thanks
    anantharam

    Hi Anantharam,
    If you want to place bullets that will remain static, say U need to put certain notes on the form using the bullets preceding them,
    Yes this can be done, but a little tricky, just write the stuff in a word document with bullets, just copy and paste it into your Interactive form..this is the thing i had also implemented in my case, solved my problem..
    but in case u need to add this somewhere which is a runtime specific thing, i haven't yet tried such thing.
    Hope this helps.
    Regards
    Amita

  • Interactive Adobe Form's  Language Translation

    Hi all,
    we activated the MSS 60.1 version on the SAP NetWeaver 2004 Enterprise Portal.
    We need to activate a link on EP that refers to PCR application. From this link we want to call all the Interactive Adobe Forms associated to the ISR standard scenarios.
    Our problem is this: all the standard Adobe Forms are generated in german language. How can we generate them in italian language?
    Thanks a lot to all.

    Hi,
    Maybe useful.
    <b>Translation, globalization, internationalization</b>
    980522   Umlaut is not displayed in Interactive Form
    994045   Non-Latin-1 characters in PDF forms
    963063   Special characters not allowed in the name (create form)
    950271   Translation process in SFP
    837217   Update of translation process
    917483   Translation update
    864990   Form Builder: Layout translation settings
    876203   ISR Layout translation
    Source: <a href="/people/markus.meisl/blog/2006/11/03/the-most-important-sap-notes-for-sap-interactive-forms">/people/markus.meisl/blog/2006/11/03/the-most-important-sap-notes-for-sap-interactive-forms</a>

  • How to download interactive adobe form with filled data

    Hi Experts,
    i have created a module pool program that is showing interactive adobe form, i created a button 'SAVE' to download the interactive adobe form to the presentation server.
    but the problem is that i am unable to save the interactive adobe form with filled data. Please provide me the code how to download interactive adobe form with filled data.
    Please provide me valuable information to clear the issue.
    Thank you,
    B. Raghu Prasad.

    Hi Raghu,
    is this adobe form in web dynpro ? if so, I suggest to go to [Web Dynpro |Web Dynpro ABAP; forum to get more advice because it seems to be more specific topic.
    Regards,
    Vincent

  • Issue with interactive adobe forms in webdynpro JAVA

    hi all,
    I have added new field in interactive adobe form in NWDS and also did required changes to RFC function module which extract the data from database tables. Also, i have mapped the exporting parameter of the function module with newly added field on the interactive adobe form. After all required changes i did manual deployment of .EAR, .XDP and .WDP files in J2EE server (my client doesnt have auto deployment like right click on the project and click on deploy). After doing the manual deploy, i do see new filed on the interactive adobe form, but i do not see any value in that new field. I wanted to know am i missing any other step in deploy or what i am missing.
    FYI.. i also tried restarting the J2EE server, still no use.
    Could any one please help me to resolve this issue.
    Thanks,
    Chandra

    You found it? Use "Open" instead of "show" and it will work like ours.

  • Text field data in the Interactive adobe form to long text

    Hi Expert,
    I have a text field(allow multiple line) in the interactive adobe form which has been binded to table type(char132) field of the context element.
    Now I want the save text field data as a long text using SAVE_TEXT.
    When I enter some value in the text field and trigger SUBMIT event then it is going to dump.
    I am unable to trace out what is wrong, since control is not reaching to INIT method of the view.
    please help.
    Regards,
    Rajesh.

    Hi,
    what is in ST22 for this problem?
    Regards Jiri

  • HCM Interactive Adobe Form hangs on EP 7.

    Hi all,
      we are developing pay change form for manager to approve pay change request. we currently be able to see a form on the portal and fill in data into interactive adobe form.
      However, on the step of check and send, when we click on that step, the process is running forever. No work item created.
      If we test in SAP system using test tool, it works fine.
      How can I solve this problem?
    Thanks,
    Phon

    Hi Phon,
    Check out the notes 1101340 and 955795
    Or goto transaction SFP, open your adobe form, go to the layout tab Utilities --> Insert Web dynpro Script.
    Hope this is the same problem you are facing that I was facing. If it helps then points dont hurt me
    Cheers,
    Rahul.

  • How to use SAP Business Workflow along with Interactive Adobe Form

    Hi Experts,
    I am working on SAP Business Workflow since last couple of years.
    Now i have got a new Project where client wants to use SAP Business Workflow along with Interactive Adobe Form.
    I am new to Interactive Adobe Form and Portal thing and i really dont know from where to start.
    We have one central system and 2 local systems. when we do create a Material document using adobe form workflow should trigger and notification should go to group of users who can approve or reject it, once they approve it document gets created in central system and replicated to 2 local system through ALE.
    In the Local system they do extend the document to different plants, again workflow triggers and notification will go to Managers inbox for the approval.
    Once the final approval done data should go and store in SAP.
    Now here i have couple of Questions.
    1. In SAP R3 Business workflow when i execute the workitem from the inbox i do get the application screen ( i.e. MM01 MRP View ) , what is going to happen if the same case i have with Adobe form?? is it possible or do we have to design a adobe form and we will have to map the fields with backend application??
    2. Do i have to maintained 3 separate Org Structure for 3 different system or using UWL  i can manage the show
    3. Untill final submit is not done, where the application data is going to be, is there any kind of buffer that we will have to keep it or its there with XML file??
    Please help me out.
    Thanks in Advance.
    Regards,
    Manoj

    Hi Manoj,
    Welcome to ADOBE Forms related Workflow Development. Well, here are my answers.
    1) You can go for either go for ISR based development or WD development with Adobe form. In both the cases you can achieve your requirement. Yes, you will have to design the Adobe form and bind the fields to backend.
    2) Am not clear or your System landscape to advice you in these regards.
    3) Until final Submit/Approval is done, the data can be stored in WORKFLOW CONTAINERS or XML FORM(If you go for ISR based Development).
    Hope this helps.
    Regards
    <i><b>Raja Sekhar</b></i>

  • Multiple images into a subform in a dynamic non-interactive adobe form

    I want to convert a set of images into a PDF (one page for each image) with Webdynpro. I'm trying with a non-interactive adobe form.
    I followed the tutorial "Dynamic Non-Interactive PDF Form".
    I've got a multiple Context node: 'Images' with a string attribute 'url' for each image.
    In the form, I've created subform1, and subform2 within. I put an image field into subform2, setting its url to: $record.Images[*].url
    and its script to: this.value.image.href = xfa.resolveNode(this.value.image.href).value;
    It doesn't work.
    If I add a field into subform2 binding it to url attribute, I can see some lines with the correct path for each image, but the image isn't displayed.
    It works with a single dynamic image in the page. What am I doing wrong?
    Regards
    Anibal Pozo.

    No. It's form scripting. In any case I'm working with Webdynpro Java.
    I tried this code in table 'initialize' event.
    for int=0 upto $record.nImages do
    Table1.Row1[int].ImageField.value.image.href = $record.Images[int].url;
    Table1.Row1[int].Cell4.value.#image.href = $record.Images[int].url;
    endfor
    Cell4 is a static image.
    In 04SP9, it show always the same image in the image field (first column), and alternating image in cell4 (second column).
    In 04sSP6, it shows always the same image in all the rows in both columns.
    Any idea? I didn't find any OSS related.

  • Login details when Webservice is called from Interactive Adobe form

    Hello Experts,
    Can you please suggest me the procedure to overcome the below issue.
    I am calling the Webservice from my interactive adobe form.
    When ever i click on the Submit button on my form, it is triggering the webservice but asking for the login details for authentication in the popup.
    In the real time scenario i will not be having any user id and passwords. So, I don't want this popup.
    What do i need to follow to get this done.
    Regards,
    Ram

    Turn off security on your web service.
    Paul

Maybe you are looking for

  • How can I get a refund for an app that doesn't work?

    I just purchased "DVDRipper Pro 3.2.19. However, it just doesn't work. I was unable to get contact with the developer website to ask for support. Could anyone tell how can I get refund from App Store. Thanks.

  • Can't get video transitions to work?

    I'm doing something wrong but I can't figure out what it is. I want to make a Cross Dissolve between 2 clips butted together. I put the playhead at the edit point and click. The timeline responds with the brackets and I can add the cross dissolve. Th

  • Question (noob) on Xserve

    Hi, I'd like to know if there is a software for xserve that would have the same function as Dropbox -http://www.dropbox.com/- (remote backup and constant differential backup) for the user connected locally and remotely. Thanks, R

  • Establish receivables and credit memos from suppliers

    hi, How I can Establish receivables and credit memos from suppliers to whom the authority has made duplicate or erroneous payments and indicate them separately so as consider this while processing future payments to the party how i can implement this

  • Podcast headers remain after deleting usnig the swip method added in 2.2

    I have a 2nd gen iPod Touch with firmware 2.2 and I am able to delete podcasts with the swip method and it says it deletes them and they are removed from the list. The problem is that if I shut the touch off and turn it back on, all of the podcasts I