XML rendered form j2me

can we generate a form dynamically, with respect to an XML file in the server???

forgot to add. cldc does not come with built it
parser. So you will have to create your own, or
simply use a 3rd party one.ya ok, thanx... but i hope these 3rd party ones r different from JSR API's... in the sense that it doesnt OEM's to support it or anything.
and what abt efficiency?
thanx a ton
=======
Kiran

Similar Messages

  • Viewing XML in forms 10g

    How to view XML in forms 10g?
    I have a message in XML/HL7 format and display information a end user.
    Thanks you all.
    Dario

    RTM first!
    If it's PL/SQL written in the form, that executes on the application server, that has a PL/SQL engine.
    If it's a call to a procedure stored in the database, that executes in the database.
    If it's SQL, then that can execute nowhere else except in the database.
    Do not imagine that the applet does any other thing except rendering what you see on screen and handling the clicks and keystroke to the application server (which does the further processing, handling to the database the SQL that has to be executed).
    Briefly, that's the basics.
    HTH
    Edited by: BEDE on Nov 16, 2010 11:15 AM

  • Dynamic rendering forms in abap

    Hi all,
    i am almost new in designing forms by adobe lifecycle designer.
    I am designing the forms in SAP transaction SFP
    and call my forms from the abap platform via function module.
    Now i have the problem, that the adobe document server does not allow to render dynamic forms. So any use of javascript fails...
    The rendered form shows in the xml the following lines:
    <acrobat>
          <acrobat7>
             <dynamicRender>forbidden</dynamicRender>
          </acrobat7>
          <common>
    Has anyone a clue, how to make the ADS render a dynamic form?
    Thanx for your support.
    Kind regards
    Andreas

    Dieter,
    thanks for your hint. The sfpdocparams-fillable parameter did it!
    Problem is solved.
    Regards Andreas

  • Images in xml show form

    Hey folks,
    could somebody help me please?
    I will put an Navigation built with images in my XML show form.
    I bulid this in an other HTML-Editor and would like to copy it into the XML show form but the images arn´t shown.
    In which directory I have to copy this images and how is the path for it?
    Can somebody help me?
    Thanks a lot greetings
    AL

    Hi,
    I have the xsl File from the XML Formsbuilder. With this file the show form is built!
    In the XSL I will put in HTML Code. This is not a problem.
    But I will put in a picture!
    Example:
    a href="#kontakt" name="menue">img border="0" src="1.gif" width="200" height="25" alt="Kontakt/Kurzinfo"></img</a
    But I don´t know the correct path for the image source!
    I copied the image into the project folder etc/xmlforms/project-folder
    But as I created a new form, the pictures are not showed.
    This is my problem. In which folder I have to copy the images and how is the path?
    Greetings
    AL
    Edited by: Arthur Leichner on May 6, 2008 10:50 AM

  • View XML in forms 10g

    How to view XML in forms 10g?
    I have a message in XML/HL7 format and display information a end user.
    Thanks you all.
    Dario

    There are many options to do this. From creating additional "locking" table to keep track of what users are doing, to simply use forms built-in Lock_Record in when-new-record-instance.
    One option is to use dbms_application_info in when-new_record-instance and set action to the customer_id.
    DECLARE
      CURSOR c_action IS
      select username
      from v$session
      where action = :customers.customer_id;
      v_user varchar2(50);
    BEGIN
    OPEN c_action;
    FETCH c_action INTO v_user;
    CLOSE c_action;
    IF v_user is NOT NULL THEN
         message ('User '||v_user||' is working with customer '||:customers.customer_id);
         set_block_property  ('customers',UPDATE_ALLOWED,PROPERTY_FALSE);
    ELSE
         set_block_property  ('customers',UPDATE_ALLOWED,PROPERTY_TRUE);
         dbms_application_info.set_action (:customers.customer_id);
    END IF;
    END;You may add check for record status, or use set_item_property instead of block property etc.

  • Error in creating xml builder form

    Hi,
    I am proceeding with the further steps to create the project under xml builder form I have provided the project id and Project then i tried to save the project now it is showing one error in status bar under Project check tab "The edit form does not contain a save button or link" .Because of this reason when I am trying to save the project the Data model is not showing anything like data schema and Namespace.When I checked the Client Log it is showing AM - (WARN)(Client) com.sapportals.wcm.app.xfbuilder :could not load User settings: Cannot find resource C:\Documents and Settings\my ID\.xfbuilder\usersettings.properties.
    Can you help me Pls

    Hi,
    I think its a warning only.. so u have to add save button for ur xml  form, its not a problem.
    Regards,
    Senthil K.

  • Creation of a portal page using XML web form

    Hi Experts,
    I want to know how to make a portal page using XML web forms... Please tell me the steps involved in doing the aforesaid.
    Thanks in advance...

    Hi
    You compose page using WPC(Web page Composer), this is a bussiness package, which you need to deploy it on portal server then will get a WPC role which you can assign the user and then user can start composing the using follwoing PDF
    To compose it chect this pdf
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/2041eb17-6001-2b10-b08d-b95ce55fa9b7?overridelayout=true
    Thanks

  • Adobe Reader for Android to work with dynamic XML PDF forms?

    Any possibility that Reader for Android will ever work with dynamic XML PDF forms created by Abobe Acrobat Pro?

    GoodReader ($4.99), ezPDF Reader ($2.99) and PDF Expert ($9.99) are well rated and support many more features.
    Here a link for your reference: http://indesignsecrets.com/for-interactive-pdf-not-all-readers-are-equal.php

  • XML rendering in IE and Netscape

    Hi all,
    I have a simple servlet that streams xml data to the browser. When I view the page in IE it is formatted in the DHTML tree structure but with Netscape 7 it is messed up. However when I open an xml document directly in Netscape, it works! My JSP page has an IFrame that streams the XML data. Can someone let me know why XML rendering does not work in Netscape but in IE? Do I need to set some browser specific parameter in my servlet?
    Many thanks
    clementv

    Hi,
    Iam setting the content type as 'text/xml'.
              byte[] bytedata = null;
              resp.setContentType(CONTENT_TYPE);
                   if (mBean != null && mBean.getParsedXMLContent() != null ) {
                        bytedata = mBean.getParsedXMLContent().getBytes();
                        //Create Servlet Output Stream
                        sos = resp.getOutputStream();
                        sos.write(bytedata);
                   }

  • Validating XML parser for J2ME?

    Hello,
    does anybody know a validating XML parser for J2ME?
    Thanks
    Volker

    I mean the XML parser.
    I want to know if there are XML parsers which can validate a XML document against a DTD or Schema
    Thanks
    Volker

  • Oracle 8i - XML rendering

    The XML twp and iFS overview refer to XML parsing and rendering
    in relation to iFS. If we are interested in XML rendering only,
    do we require iFS ?
    TIA
    Ronny
    null

    If you need XML Rendering only, you will need to wait for our XSL
    Processor which is currently in development. No announced time
    for beta as yet.
    Ronny Weisz (guest) wrote:
    : The XML twp and iFS overview refer to XML parsing and rendering
    : in relation to iFS. If we are interested in XML rendering only,
    : do we require iFS ?
    : TIA
    : Ronny
    Oracle XML Team
    http://technet.oracle.com
    Oracle Technology Network
    null

  • Can we use XML from Forms 6i?

    Can we use XML from Forms 6i?

    Did you mean: can you parse an XML document within Forms 6i? With the new Java importer support, you should be able to use the Oracle XML parser for Java to do this.

  • Converting Livecycle Dynamic XML pdf forms to Word?

    How do I convert a dynamic XML pdf form created from Livecycle designer ES to Microsoft word? I have Acrobat X and when I click on File -> Save As - > and choose 'Save as type' as "Microsoft Word Document (*.doc)", I am getting this message: "Save as failed to process this document. No file was created."
    Is this because its a dynamic XML form with many javascripts in the form design? if not, what could be the cause of this that is making the file not savable to word format? All of these forms are created from Livecycle designer and I have tried using Acrobat X to convert them to word but it doesnt work.

    Hi,
    don't expect an exact result.
    The conversion always is an interpretation of the given layout and may be not perfect in all details.
    There is not script you can add to a button to automate this workflow, especially not  for Reader, as it doesn't have any export functions.
    I tested Adobe ExportPDF services, which are available in Reader XI, but those only export the shell PDF of a XFA form, so it's not usable for those PDF's (image below).

  • Language option in xml builder form

    Hi,
          xml builder form I am using is showing all Information in "finnish Language" can anybody tell me how to change it to "English".

    Iman,
    If you want, it is also possible to force the language of your portal, for all users, indepentandtly of the regional settings of your client PC.
    So, you will not have to ask users to manually change their Portal Settings.
    If this is what you want, process as follow :
    1) Open \usr\sap\<system_id>\j2ee\j2ee_<instance_number>\cluster\server\services\servlet_jsp\work\jspTemp\irj\root\WEB-INF\portal\system\properties
    2) Open the two files:
    prtCentral.properties.bak & prtDefault.properties
    3) add/edit the following lines:
    request.mandatorylanguage=en
    request.mandatorycountry=us (or gb, depending the date layout you want)
    4) restart your portal
    Hope this help
    Vincent

  • XML to Forms conversion gives error for menus

    We are trying the ORACLE <---> XML conversion Utility.
    We want to convert a MMB to XML and store it in our repository. When we want to modify it we get the XML from the repository, convert it back to a MMB and edit it. This saves space in the repository DB.
    Problem when we convert or MMB --> XML using like this frmf2xml.bat OVERWRITE=YES TRANS_MENU.mmb
    the XML file is created.
    Now when we try to convert the XML back to a MMB using this code frmxml2f OVERWRITE=YES PRINTTREE=YES USERID=userid/pwd@db TRANS_MENU_mmb.xml we get this error:
    Oracle Forms 10.1.2 XML to Forms Tool
    Copyright(c) 2001, 2005, Oracle. All rights reserved.
    file:/F:/Channa/XML_Forms_Conversion/I/TRANS_MENU_mmb.xml<Line 164, Column 73>: XML-24523: (Error) Invalid value ' INTERNATIONAL_OUT_GOING_CALL_D_MENU ' for attribute: 'Name'
    file:/F:/Channa/XML_Forms_Conversion/I/TRANS_MENU_mmb.xml<Line 773, Column 73>: XML-24523: (Error) Invalid value 'BILLING_PROCESS_MASTER_FILE_UP_MENU' for attribute: 'Name'
    file:/F:/Channa/XML_Forms_Conversion/I/TRANS_MENU_mmb.xml<Line 823, Column 69>: XML-24523: (Error) Invalid value 'BANK_PAYMENT_AUDIT_REPORTS_MENU' for attribute: 'Name'
    file:/F:/Channa/XML_Forms_Conversion/I/TRANS_MENU_mmb.xml<Line 864, Column 73>: XML-24523: (Error) Invalid value 'INFO_CONNECT_ACCOUNTING_INTERF_MENU' for attribute: 'Name'
    file:/F:/Channa/XML_Forms_Conversion/I/TRANS_MENU_mmb.xml<Line 887, Column 73>: XML-24523: (Error) Invalid value 'DEALER_SOLD_SUBSCRIPTION_TRANS_MENU' for attribute: 'Name'
    file:/F:/Channa/XML_Forms_Conversion/I/TRANS_MENU_mmb.xml<Line 917, Column 73>: XML-24523: (Error) Invalid value 'CHANNA_LEVEL_42444444444444444_MENU' for attribute: 'Name'
    Invalid XML - file TRANS_MENU_mmb.xml does not validate against Forms XML Schema:
    Invalid value 'INTERNATIONAL_OUT_GOING_CALL_D_MENU' for attribute: 'Name'
    I found the problem. For submenus the XML adds a _MENU to the end of the name attribute and when the name of the menu is over 26 chars 26+5 = 31 becomes more than 30 characters.  So when the XML is converted to the MMB we get an error because forms objects cannot have names of lengths > 30.
    I think this could be a bug. We cannot modify the menu just for this since it is not practical.
    Is this a known bug? Any workaround?
    Edited by: Channa on Mar 5, 2010 2:11 AM
    Edited by: Channa on Mar 5, 2010 2:12 AM
    Edited by: Channa on Mar 5, 2010 2:13 AM
    Edited by: Channa on Mar 5, 2010 2:13 AM
    Edited by: Channa on Mar 18, 2010 9:22 PM
    Edited by: Channa on Mar 18, 2010 9:25 PM

    Hi Amol,
    You XML structure contains deep levels. As far as i understand about the StrictXML2PlainBean module, this is not capable of handling deep structures.
    This module is just an alternative to use FCC type functionality for other receiver adapters.
    Please take a look at these links:
    https://help.sap.com/saphelp_nwpi711/helpdata/EN/44/748d595dab6fb5e10000000a155369/content.htm
    StrictXml2PlainBean - to have an XML - EDI conversion?
    In case you want to achieve nested level content conversion, you may try this:
    /people/karthiknarayan.kesavan2/blog/2007/08/22/file-content-conversion-for-multi-hierarchical-structure
    I hope this helps.
    Regards, Gaurav.

Maybe you are looking for

  • Error message when using WS_DELIEVRY_UPDATE

    I have a custom program to automate the Goods issue. The FM iam used in the custom program is WS_DELIEVRY_UPDATE. The program is scheduled as a background job. For certain deliveries  its is showing the error message. For eg Delivery 70755489 the err

  • Frozen when view on external video monitor HELP

    Hi everyone, I have just finished my biggest project in 3 months. Thankx for all your helps & I love the MULTICAM feature very much. Now i'm on the second project. This project was shot on DigiBeta PAL. To make it short: does anyone has a frozen pict

  • Need help with installing Able Player in Dreamweaver

    Hi all, Brand new at this, so please forgive me.... I follow all instructions on https://github.com/ableplayer/ableplayer/blob/master/README.md and all .js and .css files are showing up. Yet, the player is not loading. Help much appreciated. TIA, Tro

  • PA40 posting problems

    Hi All, Please can anybody help me to create new personal number with below values.                PA0000-PERNR     PA0000-BEGDA     PA0000-ENDDA                      PA0000-MASSG     PA0001-PLANS     PA0001-BUKRS     PA0001-WERKS     PA0001-BTRTL   

  • Custom Configuration File path

    Hello, I'm developing a webapp that has a custom configuration file I use for many purposes. I have a class to parse this file and then I can have all the values in memory available for the whole application. This class is a singleton. My question is