Renaming Xml form

HI Gurus,
I want to rename the standard xml form templates provided by SAP .
lIKE sap_demo_news to xyz_demo_news.
The issue that I am facing is that I want a folder in my km to show availability of only my renamed form
for example when a user goes to /documents/namit and click on folder and create an xml form
he should see only xyz_demo_news. this as a template
i got to sytemadmin->sytem config->km-> CM-> form availabilty and set the form availability
of documents/namit  to xyz_demo_news.
But unfortunately when I goto content admin -> Km content and /documents/namit  folder
I dont get any template for creating xml forms wherein I should have been getting xyz_demo_news..
do i need to make setting somwhere else after renaming

HI
ur question ?
I want to rename the standard xml form templates provided by SAP .
lIKE sap_demo_news to xyz_demo_news.
In xml forms builder use save as button to save a copy of sap_demo to xyz_demo_news and generate it.
Note : just renaming the form in the repository will not work. The form has to be generated in XML Forms bulder.
i got to sytemadmin->sytem config->km-> CM-> form availabilty and set the form availability
of documents/namit to xyz_demo_news
the path is correct .
set the global setting  --- Enforce availability of all forms ( remove the tick from the radio button)
then what i had done is that i had created a new form in the folder setting and in the field i included the form what i had generated.
This way u can display only the form u wish to display.
Regards,
Vijay.
Edited by: vijayakumar kanniah mohan on May 14, 2008 1:28 PM

Similar Messages

  • XML Forms Buidler: Rename Show and RenderListItem in Preview

    Hi everybody,
    how can I rename or translate the links in the preview page of XML Forms Builder. When a user clicks on "preview" in the edit form, a new windows is shown with two links:
    - Show
    - RenderListItem
    I want to change the text for those links.
    Any ideas?
    Regards,
    Andreas
    Edited by: Andreas Wachendorfer on Nov 26, 2009 10:05 AM

    Hi Raghu,
    I have users with different languages set. All items are displayed in the users' language depending on the translation files of the xml forms project.
    But when I click on preview in the edit form, a new window opens with two links "Show" and "RenderListItem". They are in english (the text is the ID of the form) for all users. I want to change those two link texts. If those texts can be made translatable thats fine, but chaging them to a fixed value would be enough.
    Any ideas? Thanks for your help.!
    Andreas

  • Urgent - XML Form Builder - lnode

    Hi,
    Strange behaviour, i created a new XML Form Project and have defined a schema with some nodes (day, month, year, lead, body, link under root node), for data schema.
    I build the Edit form and run it, everything works fine until push save button, when i do this, i get an error message saying that "..star-tag link different from end-tag root...".
    I made some changes until i find that by simple removing the node link from data schema, everythings works fine, if put it again, gives the same error message.
    Is there any limitation of using a node link, under root node of data schema? Any one tried?
    EP6 SP11.
    Thanks and Regards,
    John

    Hi Darin,
    Changing the node name link to another think, was my first thought, but there are 2 issues:
    - What's the reason why a node named link doesn't work?(Looks like a "bug")
    - I have upgraded the portal from SR1 SP09 to SP11, and in SP09 i have already created some items with XML Form with this structure, and because of the upgrade, i have already to change all the XML Forms, because listShow and listEdit doesn't work anymore, and now, for some strange reason i can't see my old news, because doesn't accept de node named link and i can't rename the node named link, because this means that i have to re-save all old news items.
    Other think is, all XML Forms, incluind the standards ones, HTML editor are not working, clicking on any option available(Bold, Italic, ...), gives a message saying "[Object required]".
    If you get another thought on this, please tell me.
    Thanks and Regards,
    John

  • Xml form HTML Editor control change.

    Hi,
    Is it possible to change External weblink control property of HTML Editor used in xml form builder.?
    As of now this control gives 2 options to provide external weblink (1.Open in active window ,2.open in new window).I want to add open in same window as top.
    Can anyone give some useful information ?
    Thanks and Regards,
    Jack.
    Note: Points will be awarded for useful answers.

    Hi jack men,
    If you are still interested in a solution to your problem...
    We just hit upon the same problem. I found out that XMLForms reference htmledit4.js in their <XMLForm-Name>Edit.xsl, so you have to adapt that one.
    I saved htmledit4.js and renamed it to htmledit5.js so that I can change the HTMLEditor settings only for my XMLForm (and not for e.g. SAPNewsForm).
    I changed the entry in my XML-Form Editor settings XSL to reference the new JavaScript file:
    [code]<xsl:value-of select="$xmlformsroot"/>/htmledit/htmledit5.js</xsl:if>[/code]
    Then I copied the method body of htmledit3.js (the standard htmleditor JavaScript file) to htmledit5.js and adapted it to just show the two tragets of <i>self</i> and <i>top</i>.
    The method to display link properties is: <b>htmlb_hed_makeWebLinkDialog</b>
    Find this method in both files. Then find in htmledit3.js the beginning of the target window selection-box:
    [code]sSizerHtml += "<SELECT id=htmlb_hed_link_launch_mode class=\"urDdlWhlSml\">";[/code]
    the following lines of code determine the selectable values.
    You will notice that htmledit4.js misses a few entries. Just copy all or the ones you need.
    For your convenience I show my code here:
    [code]  sSizerHtml += "<td>";
      sSizerHtml += "<span style=\"font-size:1em;\">";
      sSizerHtml += "<SELECT id=htmlb_hed_link_launch_mode class=\"urDdlWhlSml\">";
    //-- target=_blank
      sSizerHtml += "<OPTION value=\"_blank\" ";
      if(modOpenMode==1) sSizerHtml += "selected";
      sSizerHtml += ">";
      sSizerHtml += txtMap["TXT_HTMLB_HED_BLANK"]; 
      sSizerHtml += "</OPTION>";
    //-- target=_parent --
      sSizerHtml += "<OPTION value=\"_parent\" ";
      if(modOpenMode==2) sSizerHtml += "selected";
      sSizerHtml += ">";
      sSizerHtml += txtMap["TXT_HTMLB_HED_PARENT"]; 
      sSizerHtml += "</OPTION>";
    //-- target=_search--
      sSizerHtml += "<OPTION value=\"_search\" ";
      if(modOpenMode==3) sSizerHtml += "selected";
      sSizerHtml += ">";
      sSizerHtml += txtMap["TXT_HTMLB_HED_SEARCH"]; 
      sSizerHtml += "</OPTION>"; 
    //--target=_self
      sSizerHtml += "<OPTION value=\"_self\" ";
      if(modOpenMode==4) sSizerHtml += "selected";
      sSizerHtml += ">";
      sSizerHtml += txtMap["TXT_HTMLB_HED_SELF"]; 
      sSizerHtml += "</OPTION>";
    //-- target=_top
      sSizerHtml += "<OPTION value=\"_top\" ";
      if(modOpenMode==5) sSizerHtml += "selected";
      sSizerHtml += ">";
      sSizerHtml += txtMap["TXT_HTMLB_HED_TOP"]; 
      sSizerHtml += "</OPTION></SELECT></span>";
      sSizerHtml += "</td>";
      sSizerHtml += "</tr>";[/code]
    I didn't check yet if a new generation of the XMLForms Project in the XMLFormsBuilder overwrites the changes in the XMLFormsEdit.xsl, however I guess so. A better way would be to adjust the JavaScript reference in some other configuration file that I haven't found yet, until then just adapt the XSL everytime...
    If Carsten Buechert contacted you regarding the exchange of the whole control, I would be interested myself as well.
    Cheers
    Kilian

  • How to covert  from .srf  form to xml form

    hi.....  plz anybody help me  to find this soloution... i am  not familiar with this enviorment
    how to covert  from .srf  form to xml form,
    it's very needed
    plz help me.................

    Hi Raj,
    You can do that way, but at times what happens is, if u try changing the extension while saving it saves as "<b>Form.xml.srf</b>" wherein, still its recognized as a srf file.  So, you save it as an srf first, and then, change (rename) the extension from .srf to .xml
    Satish.

  • XML Form Development

    Hi Experts,
    Can anybody send me the meterial for XML Form Development. I saw in help portal, but ! unable to catch it property.
    Thanks in advance
    Suresh

    This is how to rename your data schema elements :
    http://i40.servimg.com/u/f40/11/10/14/50/rename10.png
    For your error "Control is not connected to schema or a metadata property" you have to select the object you added to your forms, and a the bottom right you can see its property.
    At the near bottom of its property, you have "Schema reference", this field must contains a correct value, such as /DataSchema/Data_schema_names/corresponding_nodes_name (ex : Author).
    Sorry for double posting, I did double post my answers so that Moderators can delete easyly one of the double topics.
    Fabien.

  • Renaming Data Forms

    How big of a deal is it to rename Data Forms?
    Is it just that we rename the forms and we are done with it or is there any other thing with essbase or shared services that we need to keep in mind before or after doing this?
    We might want to rename our data forms.
    Please let me know.

    Renaming a data form is not a big deal at all. The data form is tied to an object id (actually ALL objects in Planning are tied to their very own unique object id) and it's the object id that matters, not the name as the name is just what's displayed to human beings.
    All security, form definitions, etc., etc., etc. are set against that form's object id.. You are just changing the OBJECT_NAME field value associated with the form's OBJECT_ID in the HSP_OBJECT table.
    Regards,
    Cameron Lackpour
    Edited by: CL on Nov 3, 2011 1:22 PM
    Oooh, one thing -- if you have parentheses in your form names -- get rid of them. There's a known issue with LCM and form names with parens in them. What is maddening is that you can export them but not import them into the target. I once spent an afternoon manually modifying xml files (contents because I had composite forms) and a manifest file and the actual file names to get rid of those parens. Soooo frustrating.

  • 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

  • Need HDCP-recognizing Bootcamp Windows driver for MacBook Pro's screen

    I need a Bootcamp Windows driver for my MacBook Pro 15/Retina (MBR) that recognizes that the MBR's built-in screen in HDCP-compliant.  The current Bootcamp drivers for Windows do recognized HDCP on an external HDMI-connected display, but do not recog

  • Custom tab order Acrobat Pro 8.0

    I just switched from Acrobat Pro 7.0 to 8.0 and I'm already lost. I have forms that have a hundred form fields on each page, and I need to set them to tab in a specific order. When I used Pro 7.0 it was a simple matter to skip any form field which di

  • How to create an alias to a subtype?

    Hi, How can I create an alias to a subtype? I.e. How can I asscciate a name with a subtype? Associate DOM_ADDRES with the type CHAR(50) or associate DOM_TELNO with the type NUMBER(10,0) so I can use it in the creation of a table like CREATE TABLE T1

  • Mouse behaving uncontrollable in Photoshop

    I had a weird problem pop up suddenly in Photoshop only. When I try to use a tool such as clone or brush- the curser jumps around uncontrollably? Earlier, I changed the aspect ratio of a file to square, and I also cannot seem to reset it. Are these t

  • Satellite P745-S4217 - internal speakers don't mute when headphone or speaker plugged in

    This didn't used to be the case.  Is there something I need to do to make the internal speakers mute when I am using headphone or external speakers? Thanks Tim Solved! Go to Solution.