Scrolling in xml form

Hi,
we are migrating a jsp based website to portal. There is a web page in which it has a image and a list of "short descriptions of company stories" scrolling on the right hand side. They did it by HTML, JSP and talking to database and storing those stories in database.
so when we move this to SAP Portal, i though best way would be to use XML forms, so that I can create a render list form which has image in the left and the stories on the right side. and when clicked on each story, an XML show form is called. but i dont get two things:
1. how to make the stories (short description) scrolling in the right pane in render list form.
2. how to replace the image with the actual story, when clicked on the scrolling short stories
please help.

Hi,
my problem is simular to Aditys: My Java Version is JRE 1.6.0_15. When I go to Content Managment --> Formbuilder, the XML Forms Builder starts automatically but it is not possible to open Data Schema. After downgrade to Java 1.4 I can not start the Form Builder, that means, after clicking on "Form Builder" in the Portal, a pop-up opens, but the XML Form Builder does not load.
Can you help me?
Jannis

Similar Messages

  • XML form link not opening in scrolling news

    Hi,
    I have created news by using  XML form in that I m passing links which is opening in 'Show' form.then I have used KM Document Iview and passing ivew link of that form in 'Marquee Tag' then create par file of that which works properly(news scroller is working).But when I click on link its not opening.
    Please help asap. Its urgent...
    Regards,
    Shraddha

    Hello Raghavendra_RT,
    Is that page on SharePoint, or is that on the internet?
    If the second is the case I would just use a hyperlink which opens in a new tab via target blank attribute:
    http://www.w3schools.com/tags/att_a_target.asp
    And you can place it in a content editor web part.
    Btw, with SharePoint 2013 you can use the Script Editor Web Part to embed a form from a source like Survey Monkey:
    http://community.bamboosolutions.com/blogs/sharepoint-2013/archive/2013/05/20/how-to-use-script-editor-web-part-in-sharepoint-2013.aspx
    - Dennis | Netherlands | Blog |
    Twitter

  • XML FORM SCROLLING

    Dear Experts,
    We have already designed a XML form but how i can scroll down these forms can anyone tell me abt not through HTML.
    Regards
    Rajat

    Hi Rajat,
    maybe I missed the point, but scrolling is done automatically by the browser. There's no need to define it in the XMLForms builder or in the XML itself.
    Regards, Roland

  • XML - Forms error

    Hello all.
    I am trying to create a news, but Any form that use to create it gives me back the following error:
    404   Not Found
    A servlet with class [prt] is not found!
    Details: java.lang.ClassNotFoundException: prt
    Found in negative cache
    Loader Info -
    ClassLoader name: [sap.com/com.sap.engine.docs.examples]
    Parent loader name: [Frame ClassLoader]
    References:
       common:service:http;service:servlet_jsp
       service:ejb
       common:service:iiop;service:naming;service:p4;service:ts
       service:jmsconnector
       library:jsse
       library:servlet
       common:library:IAIKSecurity;library:activation;library:mail;library:tcsecssl
       library:ejb20
       library:j2eeca
       library:jms
       library:opensql
       common:library:com.sap.security.api.sda;library:com.sap.security.core.sda;library:security.class;library:webservices_lib;service:com.sap.security.core.ume.service;service:connector;service:dbpool;service:keystore;service:security;service:userstore
       interface:resourcecontext_api
       interface:webservices
       interface:ejbserialization
       service:deploy
       library:sapxmltoolkit
    Resources:
       F:\usr\sap\J2E\JC00\j2ee\cluster\server0\apps\sap.com\com.sap.engine.docs.examples\servlet_jsp\_default\work
    Loading model: {parent,references,local}
    I have installed EP 60 SP9
    Somebody can help me.
    Tanks in advance.

    Hi,
    Which jdk version do you have installed on your client?
    In order to start the applet you have to have the right jdk installed.
    In order to check this please
    Open up your browser (if using explorer)
    Select Tools > Internet Options > Advanced
    Scroll down..
    Under Java (Sun) which java version do you have installed?
    Also check this post
    XML Forms Builder cannot open
    PS: Please consider rewarding points for helpful answers on SDN. Thanks in advance!
    Good Luck )
    /Rasmus

  • XML forms: Appending new news with previous ones

    Hi all
    I have created XML form for displaying news. I have created views for creating and viewing the news.
    What I need is that whenever the user creates a news , it should append the previous ones rather than generating a new xml form for it so that the reader can access it in one place.
    Can anybody help in this?
    Thanks and Regards

    Hi,
    try if the ListView fits your needs. Normally you would generate a detailled view for a single news and an abstract view for the list. But you are free to reuse the detailled view for the lists. That way, complete news items will appear in one big List (look for NewsExplorer) and can be scrolled there.
    You should alos check whether using listviews and explorer solves your problem without redundant displays. I prefer the Title/Abstract list and the details-popup.
    hope that helps
    Jan

  • How to make fixed position of column names on JSP/xml form

    Hi,
    I use Oracle 9i, ver. 2. I create a browse form (JSP) where I can see the data from one large table through Microsoft Internet Explorer (version 6).
    When I scroll the browse form I would like that names of
    columns to be fixed on the form.
    I trued with following tag but without success:
    <h1 style="background-color:yellow;position:fixed;"> Column_names_1, Column_names2</h1>
    I would appreciate any help on it.
    Aleksandar

    Hi there
    Hmm interesting.  You can try this below which seems to work by listeneing for the headerShift event and the mouse doen event.  Basically it records the original layout of the coloumns and then if the user try to put a column at position 0 then it resets them.  The others can moce around fine.  The ideal would be to prevent the default behaiviour of the headershift event but this is not cancelable.
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute"  >
        <mx:Script>
            <![CDATA[
                import mx.events.IndexChangedEvent;
                import mx.controls.dataGridClasses.DataGridColumn;
                import mx.rpc.events.HeaderEvent;
                private var originalColumns:Array;
                private function headerShiftHandler(event:IndexChangedEvent):void {
                    // If new pos of the dragged column is going to be 0, then reset to original layout.
                    if (event.newIndex == 0) {
                        dg.columns = originalColumns;       
                // Capture the original column layout.
                private function captureColumns():void {
                    originalColumns = dg.columns;
            ]]>
        </mx:Script>
        <mx:DataGrid id="dg" x="51" y="125" width="414" height="207" headerShift="headerShiftHandler(event)" mouseDown="captureColumns()">
            <mx:columns>
                <mx:DataGridColumn headerText="Column 1" dataField="col1" resizable="false" draggable="false" />
                <mx:DataGridColumn headerText="Column 2" dataField="col2"/>
                <mx:DataGridColumn headerText="Column 3" dataField="col3"/>
            </mx:columns>
        </mx:DataGrid>
    </mx:Application>
    Hope this helps
    Andrew

  • XML forms and querying Active Directory?

    Hi All
    I am new to xml forms development and I am looking to have a connection to AD, so that when an form it being created you are able to select the active directory groups it relates to.
    Unfortunately I have NO IDEA how this is done? Any ideas?

    Michael,
    Oracle Forms does support Single Sign-On (SSO). Take a look at Oracle Containers for J2EE Security Guide: OC4J Java Single Sing-On. Also take a look at the Oracle Forms 10g Sample Code and scroll to the SSO demo under the Forms Services Demo section. There are also, numerous other documents available via Google. ;-)
    Craig B-)
    If someone's response is helpful or correct, please mark it accordingly.

  • XML form in not getting displayed in the option while assigning

    Hello Experts,
    I have created a XML form and now assigning it to a folder. While assigning Folder>new>forms> .. here I can see other forms but not the new one which I have recently created. Please let me know I can assign the newly created form to the folder.
    Regards,
    Abhi

    Hi,
    Please check for the Form Based Publishing for your KM folder
    System Administration-->System Configuration >Knowledge Management->Form Based Pulishing>Forms Availability>Folder Settings check for the Forms to include and Exclude for your folder path. In this you can include or Exclude forms which you form by adding the XML form ID.
    Regards,
    Nivas209.
    Edited by: Nivas209 on Jan 12, 2012 8:12 AM

  • How to generate a report from data entered by users in XML forms

    hi,
      i have a requirement to generate report from xml forms which are created using XML forms Builder and stored in Km folders. management want to see in a single report all the activities of all the users in the xml form in such a way that one row in the report presents data blongs to each user.  i have no idea regarding this.
    can any one help me in detail.
    Thanking you in adavance
    sajeer

    Hi Sajeer,
    You have given quite few information what data should be collected / showed in detail. Anyhow, it sounds as if you want to provide data which isn't provided within the standard portal so far (see http://help.sap.com/saphelp_nw2004s/helpdata/en/07/dad131443b314988eeece94506f861/frameset.htm for a list of existing reports).
    For your needs you probably have to develop a repository service which reacts on content / property changes and then you would have to log these changes somewhere, for example in a DB. On the other side, you then could implement a report iView which accesses this data and displays it as whished.
    Hope it helps
    Detlev
    PS: Please consider rewarding points for helpful answers on SDN. Thanks in advance!

  • Unable to edit the content of an XML form

    Hello Experts,
    I am facing a weird issue after updating my XML form.
    Earlier scenario :
    We were displaying only the Title of the news along with the content.
    New scenario :
    We had to display image also along with the title and content of the news.
    Changes i did :
    I have updated my XML form with adding an Image UI in the XML form.
    Issue :
    After adding the image UI and generating the project in the content part it is giving a message as in the image below.
    Due to this message as "Loading content please wait" i am not able to save the content of the news due to which i am getting dump on the screen.
    Please help.
    Its an urgent issue.
    Thanks in advance.
    Regards,
    Gazala

    Hi gazala,
    Hope you are doing good.
    Is the portal 7.3? can you let us know the version? Trigger 5-6 thread dumps with 30 secs interval each for your server when you reproduce the issue.
    More info:
    http://wiki.sdn.sap.com/wiki/x/VYZ3Cw
    SAP Note No. 1020246-Thread Dump Viewer for SAP Java Engine
    SAP Note No. 710154-How to create a thread dump for the J2EE Engine
    This will help check this further
    Hope this helps.
    Kind Regards,
    Hemanth
    SAP AGS

  • Flash files as images in XML Forms

    Hi Crew,
    Anyone had to use flash files in XML forms Based Publishing?
    Have created a simple XML Project asking the user to select two images, and these are then displayed in an iView.
    gifs & jpegs display no problemo.   swf (flash files) do not.
    Any ideas?
    Paul

    Hi Paul,
    I need to display a .swf file in a XML form. I read the solution that you have posted about modifying the XSL file, but i have no clue how to go ahead with this.
    Could you kindly provide any document, link or the solution as to how to modify the XSL file ?
    Any kind of help would be truly appreciated.

  • XML Forms Builder - problem with checkbox

    Hi,
    I have created many checkboxes in XML Forms Builder and if I want to create a new document based on this "Form" I have still checked one of checkboxes. I would like to have all empty  checkboxes becasue user should check the appropriate checkboxes.
    Do you know how to resolve this problem?
    Thaks for help!
    Regards,
    Andrzej Tabara

    Hi,
    is it always the same checkbox that is already filled in? Is this ckeckbox based on a metadata-definition?
    If yes: You could maybe have a look at the metadata-definition. Is there maybe a default-value defined?
    Kind reagrds
    Karin

  • How can i convert the HTML information in XML form to a PDF?

    Hi does any body know how can i convert the content of an HTML field in a XML Form in a regular text to include in a PDF in a Java program?

    Hi ,
    On the tool bar you have an option "Browser" which is next to "HTML Editor" .
    You know that for using these elements wo have to map them with Data Schema.
    Step by step
    1. In data Model Under Data Schema Add a child and name it Read_More.
    2. In the left hand corner ,click on tab Type and from the drop down select "rid"
    3.Click on the "Browser" from the toolbar (as told earlier) and drag and drop it on the form.
    4. Drag the Data schema which u have made(Read_more) and drop it on the browser on form. On right hand side u will se the mapping done.
    5.Click on the "Browser" which is there in the form and on the right hand side of the form u will see the property window.
    6.In property window change the value of action property to "Item Entry point"
    7. Repeat step 3 and 4 in Render and show form but using "label" nad not browser.
    Do not forget to add Save button in Edit Form.
    This will solve your problem.
    PS:Rewards Point Please.
    Regards,
    Naveen Gupta

  • How to display system property in XML forms

    Hi
    We are using XML forms template for publishing news in KM. In the show form we got author field (a label in the form) which is mapped to system property createdby (PropertyReference = /Properties/default:createdby).But while displaying the form author is not getting populated. When I try to edit the form in XML forms builder in data model tab under properties node no property is visible. Nothing is shown up in properties even after reload option is selected from context menu of properties node.
    I cheked by manually editing PropertyReference to some other property (e.g. modifiedby) but nothing is showing up.
    Can you please suggest how the createdby system property can be shown in the xml form?
    Thanks & Regards
    Sudip

    Hi Sudeep,
    Please try to open the formbuilder in another machine and try to see the properties xml form design view.
    You can even directly can create a lable in show form and add the property name along with the nama space name.
    For default properties namspace is default.Create a lable UI element in show form and select the datasource property and add the property value in that.
    With we can show file related system generated properties in show form.
    Regards,
    Rudradev Devulapelli

  • How can you update the content of a textfield in a dynamic xml form from MSAccess and VBA

    I am trying to use the code below to update a field in a dynamic xml form created by Livecycle.
    I can read the field content but cannot change it.
    What am I missing?
    Thanks
    R
    Sub test()
    Dim oPDF As AcroPDDoc
    Dim FileDestName As String
    Dim jso As Object
    Dim ofld As Object
        FileSrcName = "C:\Documents and Settings\My Documents\ADOBE Forms\NoVB.pdf"
        Set oPDF = CreateObject("AcroExch.PDDoc")
        Set jso = oPDF.GetJSObject
        Set ofld = jso.getfield("form1.TopForm.Header.Subform1.Contact")
        Debug.Print ofld.Value
         ofld.Value = "HHH"
        Debug.Print ofld.Value
    oPDF.Save PSsavefull, FileSrcName
    oPDF.Close
    Set jso = Nothing
    Set oPDF = Nothing
    End Sub

    You need to research the difference between an AcroForm and an XFA form.  You're trying to access a "Field" object, which is an AcroForm object.  An XFA form does not have fields, it has nodes.  The JavaScript you are using is specific to AcroForms and you are working with an XFA form.

Maybe you are looking for

  • 2nd monitor color management: Ps v Lr

    Please help me understand the following problem ... but first, my hardware:  Macbook Air (mid-2011) with OS X 10.8, with a NEC wide gamut P221W monitor connected as a secondary display.  The NEC display is calibrated with Spectraview and an X-rite ey

  • FULL SQL TEXT를 찾는 방법

    FULL SQL TEXT를 찾는 방법 PURPOSE 전통적으로 특정 process가 실행하고 있는 SQL을 살펴보기 위해 V$SQL / V$SQL_TEXT 등의 view가 사용됩니다. 다만, varchar2 datatype이므로 full SQL을 볼 수 없다는 제한이 있습니다. 10g 부터는 SQL_FULLTEXT 라는 CLOB 형태의 컬럼을 통해 1000 byte 가 넘는 SQL text도 열람할 수 있게 되었습니다. CONTENTS 1. t

  • When is it likely I'll get my 5S ordered on Sept 20?

    I ordered my 64g iphone 5S online from apple on September 20.  Any rumors as to when I might see it? Don

  • Downpayment & Deposit object in DIAPI

    I could not find Downpayment and Deposit object in DIAPI, anyone can help??? Thanks in advanced.

  • LMS4.01 - special device distribution to mangement function

    Hello, currently we are planing a LMS4.01 installation for ~4000 devices. We want to have all devices in RME, CM and IPM, but not in DFM and HUM (I know there are new names now but for simplification let me use the old names). In DFM and HUM we need