JAVA WEBDYNPRO : ADOBE FORMS

Hi Experts,
Im a newbie in WEBDYNPRO, please suggest where can I read on ADOBE Forms for JAVA WebDynpro. I have a to start learning from scratch. Please suggest some good tutorials and PDF's. Please also suggest if I need to have some special packages installed on my WAS.
Regards
Saurabh

Hi Arjun,
Warm Welcome to Web Dynpro World!!!!
For Adobe form I suggest you to go through these Links,
http://help.sap.com/saphelp_nw2004s/helpdata/en/37/47a2be350c4ac8afe36b691203971f/frameset.htm
http://help.sap.com/saphelp_nw2004s/helpdata/en/60/6fc10c6748479392101e09c9e8d33a/content.htm
http://help.sap.com/saphelp_nw2004s/helpdata/en/46/55c841d202c317e10000000a155106/frameset.htm
For Webdynpro Learning Documents,
<a href="https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/webcontent/uuid/28113de9-0601-0010-71a3-c87806865f26?rid=/webcontent/uuid/8921447c-0501-0010-07b4-83bd39ffc7be">Getting Started</a>
<a href="https://www.sdn.sap.com/irj/sdn/developerareas/webdynpro">Webdynpro Java</a>
<a href="https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/webcontent/uuid/28113de9-0601-0010-71a3-c87806865f26?rid=/library/uuid/49f2ea90-0201-0010-ce8e-de18b94aee2d">Webdynpro Sample Applications ans Tutorials</a>
https://www.sdn.sap.com/irj/sdn/thread?threadID=139467
https://www.sdn.sap.com/irj/sdn/thread?threadID=200852
Very useful
http://help.sap.com/saphelp_nw04/helpdata/en/5c/1b76bc3da0504e8b535cf3e154eaa7/content.htm
Value help in webdynpro Applications:
Please gothrough these documents,
https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/391ee590-0201-0010-1c89-f1193a886421
https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/e038cf90-0201-0010-0a9a-ec69262a1564
https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/cf40cf90-0201-0010-4a85-e5a207b900d8
https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/2833ce90-0201-0010-f1af-d3cfe1155b16
https://weblogs.sdn.sap.com/pub/wlg/5508
https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/58a7e390-0201-0010-abb1-8eec7eb7a2ec
webdynpro UI's(pdf)
https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/webdynpro/Developing%20Web%20Dynpro%20User%20Interfaces.pdf
*Reward Points for useful answers.
Regards,
<b>Ramganesan K</b>

Similar Messages

  • WebDynpro ABAP vs WebDynpro JAVA for Adobe forms--PCRs--MSS

    Hi Experts,
    This might be a generic question :
    I am modifying PCRs (MSS 1.0,EP 7,ECC 6.0) and now I have come to a point where I need to decide if I have to use Webdynpro JAVA or Webdynpro ABAP for modifying Adobe interactive forms which come with MSS 1.0 out of the box from SAP.
    What does SAP suggest??
    What do you suggest??
    Quick answers appreciated

    Hi Aditi,
    Thanx for your suggestion but let me just detail what Iam looking for;
    I will have to develop a custom PCR for Hire/Rehire (no workflow -- weird right),
    now if I develop Adobe forms for this, my question is how am I going to bind these forms to the scenario (QISRSCENARIO).
    Whatever is entered  in  this form is not going through workflow but is going to be directly updated in the database when the manager says SUBMIT.
    Usually the HR developer goes to the scenario and selects input by Adobe form and clicks <b>generate</b>, but now if I develop the form using Webdynpro JAVA how am I going to integrate the generated form to that particular scenario.
    Sorry if Iam not clear enough, but I really need help in this regard.
    Thank you

  • Comined ABAP Webdynpro Adobe Form

    Hi,
    we're actually investigation the possibility to print out sales representative data
    from ECC to Adobe Forms. This works realy fine. The Idea is to send the pdf's to
    the sales representative which will fill out the forms offline and upload the pdf's via
    Webdynpro to the ECC-System back again.
    The question is now, that we do not get the pdf data back in the webdynpro. I was
    using a howto from sdn to get the upload of the pdf done and the pdf is shown to
    the user for review and then click on the send button. so far so good - the data will
    be send, but i don't know how to handle the data then.
    Has anyone of you an idea??
    Thanks for every hint,
    Mike
    PS: ECC 6.0

    Hi @ll,
    sorry, i forgot to mention the solution.
    The problem exactly was that I didn't know exactly the structure of the adobe
    document and had to update the data in the ECC-System, but I found the
    following sdn thread and  and could have a look at the adobe structure
    and did some xml-processing to get the data.
    The process goes on as follows:
    1. a new contact is being created in transaction VC01N
    2. a adobe interactive form is being send to the sales representative
    3. the sales p. filles out the form and uploads it to a webdynpro app
    4. the wd-app updates the contact in VC01n
    here is the code (maybe not the smatest code, but it works g):
    public void onActionFormSubmit(com.sap.tc.webdynpro.progmodel.api.IWDCustomEvent wdEvent )
        //@@begin onActionFormSubmit(ServerEvent)
        String xmlData = null;
         try{
              byte[] filebytearray = wdContext.currentContextElement().getPDFObject();
              ByteArrayOutputStream out = new ByteArrayOutputStream();
              IOUtil.write(new ByteArrayInputStream(filebytearray), out);
              IWDPDFObject pdfObject = WDPDFObjectFactory.getPDFObject();
              pdfObject.setPDF(out);
              InputStream in = pdfObject.getData();
              if (in == null) {
                   xmlData = "<empty>";
              else{
                   java.io.DataInputStream din = new java.io.DataInputStream(in);
                   StringBuffer sb = new StringBuffer();
                   String line = null;
                   while((line=din.readLine()) != null){
                        sb.append(line+"n");
                   xmlData = sb.toString();
                   //for debugging only (to see the xml structure before): wdContext.currentVBKAVBElement().setINCLUDETEXT(xmlData);
           catch( Exception ex ){}
           try{
              DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
              DocumentBuilder documentBuilder = factory.newDocumentBuilder();
              Document doc = documentBuilder.parse(new InputSource(new StringReader(xmlData)));
              NodeList tmpNodeList = doc.getElementsByTagName("VBELN");
              Node tmpTextNode = tmpNodeList.item(0);
              Text tmpText = (Text) tmpTextNode.getFirstChild();
              wdContext.currentVBKAVBElement().setVBELN(tmpText.getNodeValue());
              NodeList tmpNodeList2 = doc.getElementsByTagName("KTABG");
              Node tmpTextNode2 = tmpNodeList2.item(0);
              Text tmpText2 = (Text) tmpTextNode2.getFirstChild();
              wdContext.currentVBKAVBElement().setKTABG(tmpText2.getNodeValue());
              tmpNodeList = doc.getElementsByTagName("KTAEN");
              tmpTextNode = tmpNodeList.item(0);
              tmpText = (Text) tmpTextNode.getFirstChild();
              wdContext.currentVBKAVBElement().setKTAEN(tmpText.getNodeValue());
              tmpNodeList = doc.getElementsByTagName("KTABT");
              tmpTextNode = tmpNodeList.item(0);
              tmpText = (Text) tmpTextNode.getFirstChild();
              wdContext.currentVBKAVBElement().setKTABT(tmpText.getNodeValue());
              tmpNodeList = doc.getElementsByTagName("KTAET");
              tmpTextNode = tmpNodeList.item(0);
              tmpText = (Text) tmpTextNode.getFirstChild();
              wdContext.currentVBKAVBElement().setKTAET(tmpText.getNodeValue());
              tmpNodeList = doc.getElementsByTagName("KTEXT");
              tmpTextNode = tmpNodeList.item(0);
              tmpText = (Text) tmpTextNode.getFirstChild();
              wdContext.currentVBKAVBElement().setKTEXT(tmpText.getNodeValue());
              tmpNodeList = doc.getElementsByTagName("KUNNR");
              tmpTextNode = tmpNodeList.item(0);
              tmpText = (Text) tmpTextNode.getFirstChild();
              wdContext.currentVBKAVBElement().setKUNNR(tmpText.getNodeValue());
    } catch( Exception ex2){}
    Mike
    Message was edited by: Mike
            Mike Fröhlich

  • How to attach a WebDynpro Adobe form to backend Business Object?

    Hello,
    I would like to know if anyone has created an Interactive Adobe Form, and then after the user has filled it out (online, via WebDynpro view), attach the pdf form to an SAP Document, for example, Order, Purchase Order or Contract?
    I know how to create the WebDynpro Interactive Form, and I then have the pdf object in context attribute of WebDynpro.  But am not sure how to do the next step of taking that pdf and attaching it to the SAP Document.
    Any suggestions or code samples would be greatly appreciated.
    Thanks,
    Colleen

    The interactiveForm UI element has one action called onSubmit.  This action is triggered when any server event occurs within the Adobe Form itself.  So if you place a submitButton from the Web Dynpro Native (assuming you are using ZCI forms) within the form, it will automatically trigger the onSubmit action and WD event handler.
    Here is a video that shows the process -  although it is a little bit older and uses ACFx forms.  You would want to use the new ZCI form approach. The general process for linking the events is the same however.
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/media/uuid/c766e918-0b01-0010-99b1-c2b78cd059b3

  • Need WebDynpro & Adobe Forms Sample Programs

    HI Gurus,
    I am new to WebDynpro and ADOBE Forms  in ABAP and would appreciate, if you provide me some useful examples/useful resources of both.
    Regards,
    Srinivas

    hi,
    refer these tutorials/videos  for WD ABAP :
    http://help.sap.com/saphelp_nw2004s/helpdata/en/03/0048413e466e24e10000000a155106/content.htm
    Main Topic Page:
    http://sdn.sap.com/irj/sdn/nw-wdabap#section2
    Tutorials for Beginners:
    Web Dynpro for ABAP: Tutorials for Beginners [original link is broken]
    eLearning Videos:
    /people/thomas.jung/blog/2006/06/20/web-dynpro-abap-demonstration-videos
    For help with Dynamic coding check out these sources:
    Have a look at the documentation for the WDDOMODIFYVIEW section of the phase model:
    http://help.sap.com/saphelp_nw70ehp1/helpdata/en/d2/8acd409cc4dd50e10000000a1550b0/frameset.htm
    There is also the class CL_WD_DYNAMIC_TOOL:
    http://help.sap.com/saphelp_nw70ehp1/helpdata/en/67/6935425394033be10000000a1550b0/frameset.htm
    regards,
    amit

  • Not able to edit the Webdynpro Adobe Form

    Hi all,
                 I am new to Adobe interactive forms. I have created an small application which includes the text boxes & tables. But when i execute the application I am not able to edit any of the text field values.
    we have done all the ADS Configurations successfully & we tested also.
    If anyone bring me the solution it wwould be more helpful to us.
    Regards,
    Malar.

    Malar,
      Please check the following...
    In the Life Cycle designer, goto Edit -> Form Properties -> Defaults and check in the XDP Preview format if you have "Acrobat 7.0.5 Dynamic PDF" and also in
      Tools -> Options -> Document Handling ->
    Check what do you have in the Default File Type for New forms drop down box and make sure it is : "Acrobat 7.0.5  Dynamic PDF Form File".
    Also try to deploy the Adobe Interactive Forms Tutorial application from(Online Interactive PDF Form) the following URL and see if everything is fine with the tutorial application.
    https://www.sdn.sap.com/irj/sdn/webdynpro?rid=/library/uuid/49f2ea90-0201-0010-ce8e-de18b94aee2d#50
    Thanks!
    Surya.

  • ADS configuration error - PDF form not displaying for Java WebDynpro

    Hi Experts,
    Sub : Problem with configuring Adobe Document Services
    We have installed .. NW2004s SP12 on HP-UX OS.
    As of now all the services are working fine, recently started configuring "Adobe Document Services", followed all the instructions given in the guide.
    Environment :
    =============
    - Configuring ADS Webservice for "BASIC" Authentication, not for SSL
    - Poratl (AS JAVA) and BI (AS ABAP) are running in different systems.
    - Portal using UME as the data storage.
    - OS is HP-UX
    Configuration Check for Interactive Forms in Web Dynpro for Java
    =================================================================
    1. Checking the User and Password ---
    http://<server>:<port>/AdobeDocumentServices/Config -- the system displays the version number of the Adobe document services in the response area.
    2. Configured Webservice for Basic Authentication -- success
    In the process of testing this configuration -- i've developed a Java Webdynpro interactive form and deployed into my DEV server (NW2004s Sp12).
    Unfortunately, form is displaying in my sneak preview version (Nw2004s SP9), getting error when deployed into Dev server - NW2004s SP12 on HP-UX.
    We haven't installed ADS separately, making use of ADS comes with the default installation.
    Error :
    =======
    java.net.SocketTimeoutException: Reatimed out
    com.sap.tc.webdynpro.clientserver.adobe.pdfdocument.base.core.PDFDocumentRuntimeException: Failed to  UPDATEDATAINPDF
    I found that the following directory is empty in DEV server ... /usr/sap/EPL/JC03/j2ee/os_libs/adssap/XMLFormService, but not in sneak preview version.
    Please do let me know to solve the problem.
    Thanks

    Thanks for quick response.
    Installed Reader in my PC, i can view the deployed interactive form thru sneak preview, but getting the following error when running the same application thru my development server.
    java.net.SocketTimeoutException: Reatimed out
    com.sap.tc.webdynpro.clientserver.adobe.pdfdocument.base.core.PDFDocumentRuntimeException: Failed to  UPDATEDATAINPDF
    I've installed Adobe Reader in the client PC not is the server system.
    Thanks
    Message was edited by:
            Mohan krishna Mallepaddi

  • Testing WebDynpro Adobe Interactive forms Using eCATT or any other testing

    Hi All,
    We are testing WebDynpro Adobe forms (Java). is there any methodology to test Interactive forms not normal webdynpro applications. Especially Interactive form with UI fields like dropdwons, datepickers dropdown values are from BAPI/RFC's  in these forms we will perfom actions like send data to backend and display PO created in onther view.
    once we repaly the test script all the drop down values are not updated this test scenario we tested with LR.
    Is there any procedure to test this scenario using eCATT or any other testing Tool.
    Rehards,
    Murali

    Hi Vara,
    You can develop Interactive forms using WD ABAP also.
    [E Learning- Interactive Forms using WD ABAP|https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/media/uuid/c766e918-0b01-0010-99b1-c2b78cd059b3]
    WD Java is useful in case, when your ABAP system is less than ECC 6.0. Otherwise you can achieve same functionalities in WD ABAP also.
    Hope this will help you.
    Amit

  • How to combine two or more adobe forms in Java web dynpro

    Hi All,
             I have a scenario where I have few screens each  - a separate adobe form. For e.g. One adobe form for item creation, one fore details, one for planning. I need to combine all this into one and save a copy of the PDF.
    Save PDF option is present in the adobe options but it saves only the current form. I want to combine few forms and save the whole thing into 1 PDF document. Is there anyway we can do this?
    I am using web dypro java for Adobe forms on NWDS 7.0
    Adobe Live cycle designer - 7.1
    Adobe Reader - 8.1
    SAP NW SP 12
    PLease help!
    Thank you,
    Vasu

    Hi Amit,
    Thanks for the response but my requirement is different.
    I have to combine the contents of three PDFs (different adobe forms in different views in one web dynpro component) into one PDF ( a separate Adobe Form in different view in the same web dypro component).
    I would be glad to know if you have a solution for such scenario. I am working on this since 4 days with no solution yet.
    Thank you,
    Vasu

  • Adobe forms, non-interactive (HR)

    Hi,
    I'm trying to get in touch with SAP web applications (webdynpro, adobe form, bsp...).
    I have the following requirement:
    I have to provide a page within the sap enterprise portal to allow the employee to track his presence. In this page the employee has to check a presence/absence flag and in another page he can justify his absence with some reason.
    I didn't find a standard functionality to meet this requirement, so I think a new form has to be created.
    As additional requirement this form as to be stored as PDF document and it is not needed to store the information contained in the form in the sap backend system. The information contained in the form has to be stored in a non-sap system, so this information should be available as flat file to be imported in the non-sap system.
    I'd like to understand the possible scenarios from a technical point of view to create the required functionalities.
    ADOBE Interactive Form.
    This is a webdynpro (java or abap) that contains the adobe component. The fields of the adobe component are linked to the sap backend system and are editable. The adobe component reads some data from sap bakend system and stores the values filled by the employee via the adobe component in the backend system.
    ADOBE non-interactive Form
    A webdynpro (java or abap) or a BSP has to be built to create some values, then once the user save/submit the information a PDF document is created with the information created in the previous page.
    What is the difference between ADOBE (non-interactive) Form and ADOBE Interactive Form? The difference is that the first one is not editable? There is a big difference in terms of complexity develop an interactive or a non-interactive adobe form?
    BSP that generate the PDF as output?
    Could you please provide some input/defintion/sample to clarify this topic?
    Thanks in advance
    MP

    Hi,
    I'm trying to get in touch with SAP web applications (webdynpro, adobe form, bsp...).
    I have the following requirement:
    I have to provide a page within the sap enterprise portal to allow the employee to track his presence. In this page the employee has to check a presence/absence flag and in another page he can justify his absence with some reason.
    I didn't find a standard functionality to meet this requirement, so I think a new form has to be created.
    As additional requirement this form as to be stored as PDF document and it is not needed to store the information contained in the form in the sap backend system. The information contained in the form has to be stored in a non-sap system, so this information should be available as flat file to be imported in the non-sap system.
    I'd like to understand the possible scenarios from a technical point of view to create the required functionalities.
    ADOBE Interactive Form.
    This is a webdynpro (java or abap) that contains the adobe component. The fields of the adobe component are linked to the sap backend system and are editable. The adobe component reads some data from sap bakend system and stores the values filled by the employee via the adobe component in the backend system.
    ADOBE non-interactive Form
    A webdynpro (java or abap) or a BSP has to be built to create some values, then once the user save/submit the information a PDF document is created with the information created in the previous page.
    What is the difference between ADOBE (non-interactive) Form and ADOBE Interactive Form? The difference is that the first one is not editable? There is a big difference in terms of complexity develop an interactive or a non-interactive adobe form?
    BSP that generate the PDF as output?
    Could you please provide some input/defintion/sample to clarify this topic?
    Thanks in advance
    MP

  • ADOBE form interactive and non-interactive... (HR)

    Hi,
    I'm trying to get in touch with SAP web applications (webdynpro, adobe form, bsp...).
    I have the following requirement:
    I have to provide a page within the sap enterprise portal to allow the employee to track his presence. In this page the employee has to check a presence/absence flag and in another page he can justify his absence with some reason.
    I didn't find a standard functionality to meet this requirement, so I think a new form has to be created.
    As additional requirement this form as to be stored as PDF document and it is not needed to store the information contained in the form in the sap backend system. The information contained in the form has to be stored in a non-sap system, so this information should be available as flat file to be imported in the non-sap system.
    I'd like to understand the possible scenarios from a technical point of view to create the required functionalities.
    ADOBE Interactive Form.
    This is a webdynpro (java or abap) that contains the adobe component. The fields of the adobe component are linked to the sap backend system and are editable. The adobe component reads some data from sap bakend system and stores the values filled by the employee via the adobe component in the backend system.
    ADOBE non-interactive Form
    A webdynpro (java or abap) or a BSP has to be built to create some values, then once the user save/submit the information a PDF document is created with the information created in the previous page.
    What is the difference between ADOBE (non-interactive) Form and ADOBE Interactive Form? The difference is that the first one is not editable? There is a big difference in terms of complexity develop an interactive or a non-interactive adobe form?
    BSP that generates the PDF as output?
    Could you please provide some input/defintion/sample to clarify this topic?
    Thanks in advance
    MP

    Reader credential rights missing. Now it works.

  • Conversion of Adobe form developed in Java webdynpro to ABAP webdynpro

    Developed an Interactive Forms in Web Dynpro for Java. I am trying to find a way to integrate this into ABAP webdynpros. Is it possible to do this. I found this article and it looks like it supports this. <br />
    Before the introduction of the XML-based interface, an ABAP Dictionary-based interface was created for a form during integration of the same. Such an interface, however, was not easily linked to the context of a Web Dynpro component. All the forms created from within the Web Dynpro context are not automatically equipped with an XML-based interface. In certain situations, however, it can be necessary to integrate an old form with a function module-based interface into a Web Dynpro application. The Web Dynpro runtime makes it possible, in principle, to display or print such a form within a Web Dynpro
    application. In special cases, it is even possible to integrate a form of this type in an interactive mode
    Any help on this is greatly appreciated.
    Thanks.

    Hi Vasudha,
                          R u tried download the java form into XML and then uplaod to WD Adobe Form.this is simple way to import and export the Adobe forms.
    Thanks,
    Madhukar.

  • Adobe Forms in SFP + JAVA Webdynpro

    Hello All,
    I would like to know if this is possible.
    1) I create a PDF form in Transaction Code 'SFP' using the SAP Gui.
    2) I create another RFC which call the FMs to display the PDF form created in step1.
    3) In my JAVA webdynpro I call the RFC created in step 2.
    Will this work ? Will the PDF form I designed in T.Code SFP be visible in the Java Webdynpro if I embed it into an RFC ? Has anyone tried this before ?
    Thanks,
    Shruthi

    Hi,
    I think it is possible to access the adobe forms created in SFP from Webdynpro JAVA.
    I'm not exactly sure on how to access it, but in one of the standard SAP WD JAVA DC (paasrformstep), SAP used the same concept. I believe that they are trying to access the form template using the function module ISR_GET_FORM_URL. If you can dig more into this DC you will find some answers.
    Regards
    Srikanth KV

  • Adobe Interactive forms - ABAP Webdynpro or JAVA Webdynpro?

    Hi,
    I am an ABAPER and I got few requirements for Adobe Interactive forms Offline Scenario/Online scenarios & ALV reports.
    I have practiced a session ( How Tou2026execute an RFC model with inputs from Interactive Formswith RFC  Module ) -JAVA webdynpro where it interacts with SAP via BAPI.
    Now my question is  I am bent more towards ABAP.. I want to do this in ABAP but unfortunately I haven't found any similar material for ABAP webdynrpo.Could anyone pls suggest me !
    FYI.. We are also developing some ALV Webdynpro reports and I am using PURE ABAP which i like it.
    So the other reason is we don't want install NWDI and complicate this structure as we don't have ESS/MSS requirment here. Just we  need some forms/reports on portal.
    Any suggestions and links which can help me here?
    rgds
    Vara

    Hi Vara,
    You can develop Interactive forms using WD ABAP also.
    [E Learning- Interactive Forms using WD ABAP|https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/media/uuid/c766e918-0b01-0010-99b1-c2b78cd059b3]
    WD Java is useful in case, when your ABAP system is less than ECC 6.0. Otherwise you can achieve same functionalities in WD ABAP also.
    Hope this will help you.
    Amit

  • Dropdown and Value Help in Adobe Form (WebDynpro Java)

    Hi Experts,
    I need to develop a Adobe form where i have to implement Dropdown and Value Help, which will coming from custom BAPI. I am using WebDynpro Java, EP 7.0 and ALD 8.0. Please let me know how can i implement those 2 UI Elemnts..
    Regards
    Subhrajyoti

    Hi Jyothi,
    Herewith I had Explained detailed Procedure,
    For Dropdown,
    1.     Create a node and attribute to the dropdown ,
    2.     call the bapi,
    3.     Assign the Bapi attribute to the Dropdown node attribute
    4.     Place the Interactive form UI to the Java Application
    5.     Create an another  attribute for read the interactive form
                  a.Name: pdf_src
                  b.Type :byte, Assign this attribute to PDF Source property of the Interactive form UI Element.
    6.     Give the Name to the Template source property of the Interactive form UI and double click the        template source.
    7.     It asking Name for the Interactive form, Give the name for that
    8.     Once give the Name, It ask context for Adobe form, assign the already created node for dropdown in Webdynpro application to the interactive form.
    9.     Now Context Bounded with Webdynpro and Interactive form
    10.     Interactive form screen will be open into the studio
    11.     Place the Dropdown UI element  to the Interactive form and bind the attribute to the dropdown
    12.     Select the Dropdown UI Element, go to the object property, Click the Specify Item values. The pop window displayed, here give the $ value to the Item Text, Item value. The Data Connection dropdown and Default Binding , it has value when the attribute bounded to the dropdown UI .
    13.     Save and Test the Application
    For Value Help,
    1.     Do the Same Procedure for up to 10 steps,
    2.     Place the Text field UI and Value Help UI Element
    3.     Select the Value Help, go the Script Editor give the name of the text field attribute name in var fieldName = "*INSERT_NAME_HERE*";
    4.     Save and Test the Application
    By
    Parthi

Maybe you are looking for

  • How do I remove a blank line in a pdf with  adobe pro XI?

    How do I remove a blank line in a pdf with adobe pro XI? Can I combine text blocks into one paragraph that are now given line by line? Is there a way to add a paragraph to an existing pdf and have the remaining text flow to the next pages?

  • I can't download the new U2 album, says purchased, but is not there

    the new free download for U2's latest album is not working for me - it shows as purchased, but when following your instructions, it does not appear in my purchased music in itunes or any of my devices, please help.

  • Oracle Report

    Hello all, I have just been given the task to find a suitable reporting tool for our application. Currently our web based application has been developed using Javascript, pl/sql packages etc with OAS and Oracle 8 database. The database will be upgrad

  • Internationalization of Date Datatype

    Hi, If i have DB Charecter set ser at UTF-8 or AL32UTF-8, and have a date field as date, or datetime will it accomadate all sort of calender dates. For egample, if a chainese or a gorgian uses, will his dates be saved & dispayed properly?? Regards,

  • Software conflict causes shutdown

    Goodmorning community, Ive got a new MacBook Pro, and im loading my additional software on it. When I loaded Trend Micro, Smart Surfing for Mac it started shuting down and restarting, I was able after a few trys to get past the password entry to the