Reg : adobe in web dynpro

hi ,
I am working on Adobe Online Interactive Form using webdynpro for ABAP.
Steps followed for development:
In WD I have created a service call and added the bapi   to create  sale order.
Mapped the context from component controller to view controller.
From the view layout, I have configured the UI element properties.(data source, pdf source, onsubmit,templatesource etc.)
Inside the interactive form (ZCI type), I have binded all my UI element with the context elements that is displyed in data view.
and then
went to the layout of adobe form, in the menu Utilities->Insert web dynpro script.
i have a button in my view.
I put a break-point on the action handler method.
when i enter the data on adobe form and click the button on vuew...it is not going into debigging mode.
it is saying WAIT...and thats it,
can any one help plz.
regards
Arjun

Hi,
Check out these links-
https://www.sdn.sap.com/irj/sdn/adobe
https://www.sdn.sap.com/irj/sdn/adobe?rid=/webcontent/uuid/24b9e126-0b01-0010-e098-f46384fad9f3
Regards
Lekha

Similar Messages

  • Reg: Workflow in Web Dynpro ABAP

    Dear Experts,
    Im new to Workflow. I need some guidance in sending a smartform for approval to next level approver's workflow inbox, im using web dynpro abap when i click on approve button in web dynpro abap the smartform should move to next level approver inbox.
    Regards
    Arun.P

    Hi Arun,
    Here rather than using smart form, make use of INteractive adobe form.
    This will disaply the required fileds of your amartform as well as buttons to approve o reject.
    Do a little search on SDN and you will get plenty of examples to use adobe forms in web dynpro.
    Once you have designed the adobe form, you can make use of SAP_WAPI* function modules to transfer data to workflow.
    Hope this helps.
    Regards,
    Sangvir Singh

  • Adobe ABAP web dynpro

    How  to put data from  internal table into Adobe interactive form in ABAP Web dynpro?

    Nikita,
    Check this [thread|Re: How to transfer Internal table to a Adobe form? ....urgent...; if it helps.
    Chintan

  • Adobe vs  Web dynpro

    Hi Experts
    I am trying to find out
    What Adobe achieve that Web Dynpro can not?
    What are pros and cons of both.
    any link to this appreciated

    Hi.
    They are two totally different things.
    You could use Web Dynpro to provide user interface as stand-alone or as portal applications(more common).
    You can use Adobes Interactive Forms to produce reports from your Web Dynpro applications.
    Your alternatives to using Interactive forms would probably be smart forms, but that would require additional skills in your development team.
    There are a lot of smart forms and bsp pages developed already so I guess in normal situations you would already require those skills in your team.
    Adobe has developed some smart solutions with signing of forms etc. that could be useful and in comparison to other report techniques gives Adobe the edge.
    Please specify your question if you feel you didn't get a sufficient answer.
    Regards, Mikael

  • Difference between pdfsource & datasource in adobe forms - web dynpro abap

    Friends,
    Please let me know the difference between the adobe form attributes pdfsource and datasource, when used in Web Dynpro ABAP. What is the significance of specifying both and the difference between them.
    Points will be rewarded for helpful answers.
    Thanks.

    Hi,
    Pdfsource is a attribute defined to read the form. Suppose in an Application you need to read values from fields on the pdf form. In that case you give an attribute as a pdfsource which will contain all the data in XML format. You can read these values and assign to different data node. normally its helpful in reading offline forms.
    Datasource is a node containing one or many attributes which stores data at runtime. The fields on the interactive forms are bound to these attributes. When you give a context node as data source to the interactive form then it appears in the designer on the left handside in the data view. From there you can bind the fields on the form to the attributes in the context node.
    The difference between both is that a pdfsource is used to read the complete form in XML format with all the fields on it while the data source is used to transfer data from context to the fields on the form. Note that the datasource contains a node with multiple or single attribute and a field on the form can be bound to a single attribute.
    I hope it clears all your doubts.
    Regards,
    Vaibhav Tiwari.

  • Interactive Forms by Adobe in Web Dynpro for ABAP: offline scenario

    Hi colleagues,
    I have the following problem:
    So I created a web-Dynpro with an interactive from. In this application there are two scenarios:
    -     An Online scenario: it works!
    -     An Offline scenario: unfortunately doesn’t work (The problem persists in this scenario).
    As I understood correct, I should be able to upload the PDF-file from my documents. But the up-load option doesn’t work.
    Please see the steps I follow:
    1. I created a FileUpload-application and then I browsed a PDF- File by using browse-button. And I got a standard open-window and I was able to choose a PDF-file, which I want to open.
    2. I click on the button upload and it doesn’t work. But the current page is only refreshed. In case it works, I should see the information I have uploaded onto my PDF-form.
    I already discussed this issue with my colleague, but couldn’t find the solution yet.
    Does anybody have the idea, why the Upload option doesn’t work?
    Thank you in advance!
    Kind Regards,
    Mohamed

    Hi Mahamed,
    I got your problem. You have not done anything wrong.
    It is WebAS version which is not supported for this functionality.
    But there is solution to this problem
    Please refer to the SAP Note number - 1055738.
    I think you will get the answer and the scenario described there will match your requirement.
    This is a know issues with WebDypro ABAP but this works fine for Java Web Dynpro.
    I have also tried for 2 months but finally came to know about it.
    Regards
    Satya

  • Reg:Locking in Web Dynpro for JAVA.

    Hi All,
    When a user logged in the front end i am calling the lock function module(based on this locking mechanism is working) and when a user logged out i am calling the unlock function module(now the locked mechanism is getting unlocked).
    now my problem is when a user closes the window abruptly without loging out,the unloeck mechanism should work at that particular instance.Please suggest me if this is possible or not in web dynpro for java.  
    Thanks,
    Mahesh Nuli.

    Hi,
    I will give you two different solutions, use whatever you think fits best for you.
    First One:
    Whenever you call your "LOCK" function module, do not disconnect the ModelInstance. Create a Locking method in Java which returns a "com.sap.tc.webdynpro.modelimpl.dynamicrfc.DynamicRFCModelClassExecutable" instance. It should look like this:
    InputClass inputInstance..
    node.bind(inputInstance);
    inputInstance.execute();
    if fails, return null;
    otherwise, return your inputInstance;
    Keep this inputInstance into some Context Attribute. Whenever you wanna "Unlock", you can disconnect this input from the backend system.
    InputClass inputInstance = wdContext.getInputInstance();
    inputInstance.modelInstance().disconnectIfAlive();
    This will work for all the cases you are currently having problem. However, this solution holds one connection.
    Second One:
    Assuming your transaction runs in one View, you can set this View lifecyle to "when_visible" - Doing that, whenever you navigate "away" from this View the method wdDoExit of that ViewController will be executed.
    In this appoach, you dont need to store any "InputClass" - You can perform your Lock and disconnect from the backend. In your wdDoExit method you can code a "Disconnect If Connected" method.
    Use whatever fits best.
    Regards,
    Daniel

  • Reg : JA310 : Java Web Dynpro Release 640

    Hello All,
              I'm following the SAP's JA310 Java Web Dynpro Release 640 Documentation as part of my learning.
    In this Documentation I found some examples in which it says to open an already existing project with a pre-defined structure.
    I guess SAP may have provided some CD with solutions of the Exercises along with this documentation .
    I don't have that CD.
    If any of u guys have this then I request you to send the content of that CD to my Personnel mail id : <b>[email protected]</b>.
    Thanks in advance for ur understanding.
    Regards,
    Deepu.K

    Hi,
    there is no solution CD for the JA310 course.
    The mentioned "open an already existing project" describes the process
    of importing the project while sitting in the class, having access to
    the WTS-infrastructure of SAP during the course.
    Regards,
    Michael

  • Reg: Login to Web Dynpro

    Hi All,
    Need some help. In my requirement i need to know the User Name who has logged into SAP ABAP WEBDYNPRO.
    I mean i don't need the SAP Logon Details like generally we get them when we use SY-UNAME.
    Please Provide me Portal Login Details. Any code or setting's related to it. Let me know is this possible.
    Thanks,
    Sandy.

    Hi Sandy,
    You can get the portal logon details in your Web dynpro Application by passing application parameters from portal iView. check my article, [How to integrate WDA in portal and Capture Portal Log on details|http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/008fc414-997f-2e10-3899-fd895ec8eb5e]
    Hope this helps u.,
    Thanks & Regards,
    Kiran.

  • Very Urgent!!!! Reg Tables in Web Dynpros

    Hi all,
    The following is my requirement.
    I need to display values in my table on the view. But based on the Field content in one perticular column i need to make that entire row editable/in editable.
    Say I have a column Status in my Table.
    If the status field content for a given row is 'In progress' then that row should be made Editable and all other rows with status other than 'In Progress' should be made Ineditable.
    Please Revert back ASAP.
    Thanks
    Sravan.

    No, do not use wdDoModifyView().
    You could add a calculated boolean attribute "ReadOnly" under the data source node "Rows", and (assuming the table cell editor is an InputField) bind the "readOnly" property of the input field to this attribute.
    In the generated getter for the calculated attribute, you would write something like
    boolean getRowsReadOnly(IWDNodeElement element)
      //@@begin ...
      IRowsElement row = (IRowsElement) element;
      return row.getState() != State.IN_PROGRESS;
      //@@end
    Armin

  • After SP upgrade, pdf in web dynpro could not display dollar symbol

    Dear Experts,
          We have updated the following support packages:
         SAP_BASIS 14-18
         SAP_ABA 14-18
         PI_BASIS 14-18
         SAP_BW 15-20
         SAP_AP 12-15
         EA-HR 23-61
         SAP-HR 23-61
         E-RECRUITMENT 18
         After that, Some webdynpro for abap which used PDF report has some errors, which dollar could not be displayed, which indicates some kind of error 'o'.
         We check that the pattern is of this column is from old version :num{$zzz,zzz,zz9.99} to num{($z,zzz,zz9.99)} . How could we deal with this ? And where could I find the related influence of the SP upgrade of adobe and web dynpro?
    Thanks & Best Regards,
    Derek

    Chris,
    You may be right. Also it requires some configuration in SAP KPro ( document class etc).
    Please see SAP [Help |http://help.sap.com/printdocu/core/print46c/en/data/pdf/BCSRVBDS/BDS_STRUCTURE.pdf]on Business Document Services.
    At page 64 of this document under topic 'Display Documents' 'Feature it says. "If it is not possible to display the document in place, an appropriate viewer that is available on the
    PC is started and the document is displayed u201Cout placeu201C

  • Is it possible to integrate web dynpro java  with xPD screens?

    We have a requirement to integrate the xPD screens with Adobe using web dynpro java. The UI has to be completely Adobe and the xPD transactions would be triggered through Adobe.
    Is it possible?? Please let me know how if anyone worked on this.
    We are using SAP NW SP12 and NWDS 7.0.1
    Thank you,
    Vasu

    Vasu,
    I'm in the same boat as you because I have no idea where to start either.  Right now we are just evaluating some possible solutions for our UI needs that our Business is asking for.  Originally I only heard about the Adobe Forms.  Then I heard about this Web Page Composer which could also provide us a way to display our iViews and other links in a more user friendly page.
    So learning how to display xPD in either area is new to me and I am just starting to learn SAP all together.  If I hear anything or read anything, I will share with you.  Maybe we can help each other out. 
    Jennifer

  • REG : ADOBE FORM IN WEB DYNPRO

    HI,
    I have a req to create a time sheet in web dynpro thru ADOBE.
    I created a view and in the view..i used INTERACTIVE FORM UI element and then crated an interface also.
    now I am in adobe form.
    when I searched the  in ADOBE ,i found the TIME SHEET provided by sap.
    now i want to make use of that adobe form in my web dynpro component.
    my question i s:
    how to map the exising ADOBE TIME SHEET  fields to my web dynpro component.
    do i need to create the nodes and attributes for all the   elements in CONTEXT.
    PLZ HELP ME.
    regards
    arjun

    Hi
    Check out these links-
    https://www.sdn.sap.com/irj/sdn/adobe
    https://www.sdn.sap.com/irj/sdn/adobe?rid=/webcontent/uuid/24b9e126-0b01-0010-e098-f46384fad9f3
    Regards
    Lekha

  • Error when using Adobe form in Web Dynpro..

    I created an adobe form and gave the form name in template source property of interactive form in web dynpro component.The context node used in that form is automatically created. I pass value to that node using set_static_attributes. When I run the application I am getting an error msg 'Node <node name> does not contain any elements'.Can someone tell me how to solve this problem?

    Dear friend,
    Check the Below link
    https://www.sdn.sap.com/irj/sdn/adobe?rid=/webcontent/uuid/24b9e126-0b01-0010-e098-f46384fad9f3

  • Web dynpro with adobe integration is not working in quality system

    Hi Experts,
       We have developed a web dynpro component with adobe flex integration. In development system everything is ok. Now the object moved to quality. In quality we are not getting the landing page. I checked in debug mode that the control come into SAP and code got executed. Finally the message which is issued from SAP is displaying in the page but the remaining page is blank. What reason might cause for this defect. If any one faced same kind of issue earlier. Respond to my request if you know the answer.
    Cheers,
    Bujji
    Moderator Message: Webdynpro have their own forums. Please post your question there.
    Edited by: kishan P on Sep 13, 2010 5:35 PM

    Hi Romero,
    Ur guess is correct, i have investiagte in the system, the variants saved a  $tmp, thats why it is not migrated.Later i migrated the variants. Now it is perfectly working. Thanks for the inputs.. Sorry for the delay response.
    Thanks
    surendra

Maybe you are looking for

  • Problem in uploading a file

    Hi All, I did one application on file upload using the tutorial given in the ****************. But i am unable to run my application due to the function module 'HR_KR_XSTRING_TO_STRING' that does not exist.Can anybody plz tell me the name of the func

  • Ipod plays a different file (audiobook) from the one selected.

    I have a mystery. let me start by saying i have done all the standard stuff all the way up to wiping and reinstalling the ipod. I have about 8 audio books (short stories for the kids to listen to) and when I select one to play it always plays a diffe

  • Qik video chat on Revolution

     Ok now I'm getting tired of video chat not working at all on Revolution. I click on it and open and then click video chat and a box pops up saying it has stopped unexpectedly and I have to force close. Went in for help and it sys have gps on so I en

  • 9500/200

    I have just bought a MacBook Pro and want to use it in my office and while travelling because I was having such problems with my portable PC. So what to do in the office?? In the office I have a big HP machine that handles the network. I have an old

  • SAP-MM Flow

    Dear Gurus,                    Is there any flow diagrams related to business chains related to SAP-MM modules in which all processes showed diagrammatically such as flow chart. Thanks and Regards Abhinav