Adobe Form - SO Creation Offline scenario - Posting problem

Hi,
We have created offline adobe form for Sales order creation using ABAP Workbench SFP.
After entering the Sales order details, this form is emailed to SAP to create SO and SO is created in SAP.
Our requirement is when user1 send this form to SAP, SO has to be created by SAP user1.
and when user2 send this form, SO has to be created by SAP User2.
For this we have maintained Inbound distribution list in SO28. but problem is not solved.
Please help...

Hi ,
I am also creating the SO form.
I am new to adobe so i dont have much idea about it.
Plz explain step by step how to proceed and also how the form should be uploaded in case of OFFLINE forms.
I have created a Z table having all the required fields to create a SO.
Then i have created an interface in SFP having import parameter as type of Z table.
Then i have created the layout for the form having header data and item data.
Am i required to give any submit button,If so then wat is the functionality of it.
Please help me how to proceed further in creating and uploading the form.
Kindly  tell me step by step procedure.
Thanks in advance,
Lina

Similar Messages

  • SAP Delivered forms for an offline scenario?

    Hi,
    Is there any SAP Standard/delivered forms for an offline scenario?
    How many number of SAP standard forms are available?
    Where to look at this information?
    Thanks
    Sundar

    Hi Sundar,
    We have about 2300+ forms delivered through various SAP scenarios.
    To get an overview of this list you could have a look in Service Market Place.
    http://service.sap.com/erp
    -> Media Library - SAP ERP Overview -> Detailed information cross ERP -> Adobe Forms for SAP ERP
    Regards,
    Nikhil

  • Offline scenario - post data from saved form to SQLServer

    This is the scenario am struggling to develop. User downloads the interactive form.  Goes offline. I mean no connection to the Web Application Server. But he will have access to a SQLServer database (it may be on his machine or in his intranet). He will fill the form and save it on his local hard disk. Now, I want his saved form data to be posted to the SQLServer.  I thought about a couple of ways to do this.
    1) Is it possible to change the control type of 'Submit' button to submit and then in the URL field, call some ASP page (this page is deployed on a local IIS) and then submit the form fields to that ASP page which takes care of database connection, posting etc. So user downloads form only once. But fills it with different data each time and clicks submit. First of all, will submit button work when the form is not opened in web browser? I mean when it is saved on a local hard disk opened in a standalone Adobe Reader?
    2) Is it possible to write some java program using any APIs and extract the data from the form saved on local hard disk? It may be possible because I have the .xdp file for the form. But I dont know if there are some APIs available to do the same.
    Any inputs whether these ideas are feasible? Any other new ideas are also welcome. Thanks in advance.

    Hi Narayana,
    if you want to export xml data from Reader to local disk you can use a command:
    xfa.host.exportData("",0);
    It works like from menu Export data from Forms.
    To your second post:
    Yes, you can save form in Adobe Live cycle designer as pdf and you can open it in Adobe Reader and test it. It will work.
    In tab Submit for your button set these properties:
    Submit Format: XML Data (XML)
    Submit to URL: url of your page
    Encoding: UTF8
    Here is a sample code in c# for asp.net. Insert method save to your asp.net page and call it from method Page_Load.
              using System;
              using System.IO;
              using System.Web;
              private void save()
                   const int coniBufferLen=1024;
                   string lsTmpFile;
                   try
                        lsTmpFile="c:\adobe\body.pdf.xml.txt";  // File on local disk where to save xml data sent by Reader. IIS needs rights to write here.
                        FileStream loFS=null;
                        try {loFS=File.Create(lsTmpFile);}
                        catch (Exception e1)
                             // TODO
                             return;
                        int liCelkem=Request.ContentLength;
                        int liNacteno=0;
                        byte[] laResponse=null;
                        int liLen=Math.Min(coniBufferLen,liCelkem-liNacteno);
                        while (liLen>0)
                             try
                                  laResponse=Request.BinaryRead(liLen);
                                  loFS.Write(laResponse,0,liLen);
                             catch (Exception e1)
                                  try {loFS.Close();}
                                  catch {}
                                  try {File.Delete(lsTmpFile);}
                                  catch {}
                                  // TODO
                                  return;
                             liNacteno+=liLen;
                             liLen=Math.Min(coniBufferLen,liCelkem-liNacteno);
                        loFS.Close();
                   catch (Exception e2)
                        // TODO
                        return;
    Michal

  • Adobe form in Web Dynpro Submit Button Problem

    Hi all,
    I've created an Adobe form as a UI element in Web Dynpro as a development component. In this Adobe form, I've included a "Submit to SAP" button from the Web Dynpro Library.
    My whole purpose is to expose this DC as a callable object into Guided Procedures and then run this process, so that the Adobe form(embedded in Web Dynpro) can be seen and allows the user to enter information online into the form or download(maintain offline) and click on the submit button. After clicking of the button, I need the control to return to the GP framework to trigger to the next action. I have configured the button in the Adobe form as a submit format -> XML data and with submit to URL "%com.sap.caf.gp.if.PostProcessorUrl%". I did this because I want it to return the control to GP framework. However, there is also another option of the event submit button in the Web Dynpro UI Adobe element -> event-> onSubmit.... i created an action onsubmit which has the code wdThis.wdGetBformController().complete();
    When I run the GP process, the adobe form appears and when i click submit button, nothing happens... Does anybody know the solution?? Thanks!

    Hello,
    Can somebody tell me if i really need to put this code
    "%com.sap.caf.gp.if.PostProcessorUrl%"
    in the submit button. If so, do i need to configure somewhere what the PostProcessorUrl is? If so, can somebody tell me where i need to do this?
    Thx in advance.
    Kind regards,
    Maarten.

  • Adobe Forms in a Travel scenario

    Hi masters.
    I'm here to ask you about some solution to the following scenario:
    The company have 500 travelers who need to create trip requests on SAP, but they don´t have SAP users, how can I use SAP Interactive Forms by Adobe to solve this issue ?

    Hello,
    Note: the following ideas are the technical ones and I am not sure if they would pass a SAP licensing terms.
    a) the licensing of SAP Adobe forms offers few different models, one is per user per form and I believe you don´t need a SAP users for this one. In fact it would not make sense if you would need SAP users because the goal of adobe forms - help "non SAP users" interact with the SAP system through some automatic interface - would not work
    b) as mentioned, you can use ESS/MSS
    c) you can use Adobe Acrobat the use is limited to 500 users, you can pick the requests this way and upload them into SAP
    d) you can use some custom developed portal to gather the requests and through one service user and the interface send all of them into the SAP system
    e) you can develop a custom application based on the Interactive forms (created by LCD/ Acrobat) using itext to dig the data out of the forms and send them like in d)
    For example, I am sure there are plenty of other ways.
    Regards Otto

  • Passing Data from Adobe to WD Java Offline Scenario

    Hi All,
    I have a web dynpro for java component that has 2 views
    View 1. Upload View
    View 2. Interactive Adobe View
    I have an offline adobe form with two parameter First and Last Names. When I fill the form and then upload it (using view 1).When I click on a button display form it branches to View 2 above and displays the form with the filled in values. Now in the second view I have a Submit to SAP Button embedded within the Adobe  form. When I click on the button Submit it should display by passing the values back to the web dynpro component. Here I see that the values passed back are null.
    I am also invoking ContainerFoundation_JS.SendMessageToContainer(event.target, "submit", "",  "", "", ""); within the javascript of the Submit To SAP button. But, still it doesnt seem to pass the values back to WD Java.
    Kindly help me resolve this issue? I sincerely appreciate any help extended.
    Many thanks,
    Best regards,
    Divya

    I had to have scripting done on the form to invoke this back to webdynpro for java.

  • Adobe Forms Object Creation in PDF document dynamically

    I have the following scenario: I have database of questions and answers, i need to build a webdynpro application that generates a PDF document with the content of this database, but in a dynamically way, for example i have one question like "What is the best color in your opinion?" and four answers like "Yellow, Red, Blue, Gray", i need to take all the questions and the answers from the database and build the PDF form. What are your recommendations for these case? Is there a way to generate a Topic and for these topic 4 checkboxes in a dynamically way?
    All these data come from ECC.
    Thanks for your help!

    Hi Bruno,
    You  can add or remove subform instances dynamically from your form.
    BodyPage1.Subform.instanceManager.addInstance(1);
    Create one subform, that has 4 RadioButtons and 4 InputFields, bind the inputfield with the options.
    Hope this helps,
    Amit

  • Validation of Adobe Form from Web Dynpro

    Hi, can you please support me with the following problem:
    I created an Adobe Form, which contains several mandatory fields. The Submit-button of the form is positioned in the WebDynpro-View, in which the Adobe Form is embedded, but not within the Adobe Form. I choce this way in order to avoid a useless submit button in the Adobe Form for the Offline Scenario.
    (How) is it possible to do a validation check in the Adobe Form if all mandatory fields are filled by clicking the Submit button outside the Form?
    Thanks in advance,
    Thorsten

    Hi Thorsten,
    That would be done exactly the same as checking mandatory text fields in a standard Web Dynpro application, the fact that you use an interactive form makes no difference. Whether you click on a submit button in the form or a button in the Web Dynpro, the end result is simply that the entered data is transferred to the Web Dynpro context and an action is triggered. In the action (Web Dynpro code) you can check if the data in the context is valid, e.g. mandatory fields or whatever validation you like. However, if you want to do validation in the form itself, so mandatory fields are also checked offline, you have to use scripting in the form itself.
    Kind regards,
    Sigiswald

  • Requirement on quotation creation -Adobe forms

    Hi Experts,
    I have created an Adobe form which works online and offline.This is adobe form for creation of quotation making.
    But the problem is -its wrks perfect as offline meaning data is saved in pdf format.
    Now in online case -it accepts all data to fields but doesnt create a quotation-gives an error of sold -to -party needed.
    Bapi used is-BAPI_QUOTATION_CREATEFROMDATA
    if the field PARTN_ROLE is already used then -???
    Fields used are-
    DOC_TYPE -AUART
    SALES_ORG- VKORG
    DISTR_CHAN- VTWEG
    DIVISION- SPART
    PURCH_NO- BSTNK
    PURCH_DATE- BSTDK
    QT_VALID_F- ANGDT_V
    QT_VALID_T- BNDDT
    SHIP_COND- VSBED
    2]ORDER_ITEMS_IN(CHANGING)
    ITM_NUMBER- POSNR_VA
    MATERIAL- MATNR
    PLANT- WERKS_D
    TARGET_QTY - DZMENGC
    REQ_QTY- WMENGC
    SALES_UNIT - VRKME
    COND_TYPE- KSCHA
    COND_VALUE- KBETR
    CURRENCY- WAERS
    3]ORDER_PARTNERS(CHANGING))
    PARTN_ROLE - PARVW
    PARTN_NUMB- KUNNR
    can you please guide me as to why quotation is not getting created?Is it that some more field is needed ?

    someone had similar issue....i don exactly rrm the solution but it is something to do with subforms....
    currently it is disabled because your subforms are of type that doesn allow it.
    so you may play with subform types by changing them n then adding a table in it. IT will definitely fix the problem but you need to work on subform type.

  • Adobe Form

    Hi
    I work on Adobe Form.After creation the interface  i have create the form but in it i  face the problem to drag and drop the contents from interface to context . Can you tell me anyone how to contents drop from interface to context.
    Thanks and Regards
    Sunil Iyer

    This thread will provide the answer to your qurery - Problems with generating the form.
    Kindly update if this helps or not :).
    Good Luck!
    Anto

  • Adobe form displaying data of previous selected records

    Dear All,
    I have created a wd component consisting of 2 views.
    In the first view i am displaying an ALV. When i select a record and click on the alv button, the second view
    gets called which contains an Adobe Form showing the data.
    The problem i am facing is that the record which gets displayed in the adobe form is the one previous selected record and not the current record which i select.
    Kindly give your valuable suggestions .
    Regards,
    Niti

    Hi ,
    Adobe form is just an external media in your case , it has nothing to do with your data.
    Check what data is getting passed to adobe form via debuging .
    check if your getting the selected element .
    You can also post your code here if possible.
    Regards
    Kuldeep

  • Adobe Form Repeat a Subform Every Page

    Hello Adobe Forum,
    I'm an SAP user and am creating an Adobe form (my first). I posted this in an SAP forum, but have yet to receive any feedback whatsoever so I thought it may be better to go to the Adobe experts themselves. I've run into an Adobe issue and am just spinning and spinning trying different techniques to make it work. Any hints would be greatly appreciated.
    In my content area I have three subforms. The first subform is positioned, the fields have to be placed correctly. The second subform is fundamentally a table header for the third subform, which is the rows of the data. All three subforms are wrapped in another subform that is flowed.
    Why would I do it like this? Well, the table in the third subform has control levels so it merges like rows nicely in this way when the first column rows are the same...
    So the first page of my document would look like this...which is what I want.
    H is repeated for every page. So it is on the Master page. That's easy.
    1 is the 'sub-header' and should only be on the first page. This works.
    2 looks like a header for the table, but is really it's own table because of formatting requirements and the values are dynamic. It looks nice, but shows up only on page one.
    3 is the data table. It works great too.
    Page one looks great. Page two looks like this... I can't get part 2 from above to repeat for every new page.
    I have tried numerous approaches, but nothing seems to work. I really need to stick with the control levels, and that keeps me from having one nice table with a header that repeats. Perhaps I've approached this fundamentally wrong?
    Here is my layout in case that helps at all explain my issue. I truly appreciate any help, this is the last hurdle on my form and then it's done. I'm sure a seasoned Adobe person may quickly see the err of my ways.
    Thanks,
    Greg

    Not a solution I'm very fond of, but it works. I created a second page and put the table header on the master page there and moved the content area down a bit. I'd still like to force the subform to simply repeat, but I've got to move on.

  • Attachments in Adobe form for ISR in Employee Interaction center

    Hi Experts,
    I have a requirement to attach a document to Adobe form which uses ISR scenario.
    I am using the attachment option of PDF but the attachment is not going through.
    I am using standard ISR scenarion SEIC.
    Can anyone please let me know if there is any other method for attaching the doc. to Adobe form and send the Adobe form to agents inbox using Workflow.

    Hi Jarret,
    For first option {1. You may be able to use the custom event in the adobe form, and attach a script routine to this event to link the attachment to the PDF form.}
    Can you please let me know how we can add a custom Event for scripting?
    Also i dont know Java script so can you please provide me any reference from where we can start the coding/ writing a Script to add the attachments.
    For the second option { 2. Trigger a custom process instead of the ISR from the ESS.}
    What custom process can we use. Can we go ahead with HCM forms and processes to achieve the functionality?

  • Eed link to the tutorial for creating a Interactive Adobe forms using WDA

    Hi Friends,
      I need link to the tutorial for creating a Interactive Adobe forms using WD ABAP

    Hi,
    Before posting search once in sdn for Blogs or articles.You will get information.Any how please look at this video demonstartion.
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/20029530-54ef-2910-1b93-c41608ae0c90
    and check these blogs
    https://www.sdn.sap.com/irj/sdn/adobe?rid=/webcontent/uuid/24b9e126-0b01-0010-e098-f46384fad9f3

  • Com.sap.pcuigp.xssfpm.java.FPMRuntimeException: No Adobe Form Is Assigned

    Hi Portal Experts,
    We are using Interactive Adobe Forms for an ISR Scenario running on  EP7.0 NW04s, SAP R/3--ECC6.0
    It is working fine from longtime but suddenly i dont know why it is not working now.throwing an FPM Runtime Exception, Recently our R/3 server was refreshed and we found that J2EE stack is down on the R/3 which is used by ADS to run the adobe forms, then our Basis team up the J2ee engine but still we are  facing the FPM Runtime Exception as mentioned below, when the user clicks on the task/workitems in the UWL.
    Initially I followed the SAP Notes: 959462, 944221, 915399, 836174. But still we are unable to resolve the exception.
    Exception:
    com.sap.pcuigp.xssfpm.java.FPMRuntimeException: No Adobe Form Is Assigned to the Scenario
    at com.sap.pcuigp.xssfpm.java.MessageManager.raiseException(MessageManager.java:111)
    at com.sap.pcui_gp.isr.isrprocessevent.FcISRProcessEvent.raiseExceptions(FcISRProcessEvent.java:1948)
    at com.sap.pcui_gp.isr.isrprocessevent.FcISRProcessEvent.callRFCIsrGetFormUrl(FcISRProcessEvent.java:1042)
    at com.sap.pcui_gp.isr.isrprocessevent.FcISRProcessEvent.setTemplateSource(FcISRProcessEvent.java:459)
    at com.sap.pcui_gp.isr.isrprocessevent.FcISRProcessEvent.callRFCIsrProcessEvent(FcISRProcessEvent.java:798)
    at com.sap.pcui_gp.isr.isrprocessevent.FcISRProcessEvent.callIsrProcessEvent(FcISRProcessEvent.java:380)
    at com.sap.pcui_gp.isr.isrprocessevent.wdp.InternalFcISRProcessEvent.callIsrProcessEvent(InternalFcISRProcessEvent.java:1234)
    Please share your valuable ideas----your help would be highly appreciated.
    Regards
    Phani

    Log on to visual Admistrator.
    Click on Services->Security Provider->User Management.
    Hi Hauck,
    I already checked in the Tcode QISRSCENARIO, that the corresponding Form is attached to the scenario.
    Finally I resolved in the following way after all attemps
    In the Visual administartor>Security Provider>Usermanagement
    Search for ADsuser and click on it.
    Switch on to Edit mode for editing ADSUSer.
    Change its password to xxxxxxxx. then select (Check) No Password Change Required.
    Save it. Then again reach 'com.sap.tc.webdynpro.adsproxy.AdsProxy/ConfigPort_Document' and retype the new password.
    Now it is working fine.
    Cheers
    Phani

Maybe you are looking for

  • Media Encoder CS4 does not work

    CS4 Windows 7 Media Encoder does not work!? From PremierePro to the Encoder (fullHD to MPEG2) The encoder is very slow and stops after time. And I see that the encoder try to make a .mpg file but it also makes .m2v and .mpa. in the same time? What to

  • Use of tokens in AMT

    Can anybody explain me what the tokens are in AMT and how they must be used. Are tokens only for security on control level ? And what are the advantages of using these? Thanks for your help.

  • Python+ALPM+Me = pyalpmm a Python High-Level alpm Library now v0.3

    Hi all, The pyalpmm library is usable and stable for the most every-day package-manager tasks there also is a pacman clone called "mmacman" built on top of the pyalpmm lib, but I don't want to write to much, if anyone is interested in reading more: p

  • Bdc program for uploading region data in sales analysis

    hi expert,     i want to upload the region data in sales transaction show that i want to analysis the area wise sales detail for different material.for this which *transaction code* ,i should use for recording.can any body provide me example for BDC

  • Facebook Status cannot be published from Notification Center

    I am receving this error message every time I try posting a status to facebook: "The post cannot be sent because the connection to Facebook failed." I can share things like websites from Safari, or photos, but not status. Is there something wrong on