Transporting XML forms to another system.

Hi , I need to transport my XML project only one time to another sytem. What do i do ?? I do not want to setup and use ICE stuffs.... any ideas out there. is there some post processing stuff?
thanks.

Hi,
You can do one thing.
You can create a KM Navigation iview and set the property 'path to document' as /ice
and assign this iview to page to workse to role. Assign this role to users/groups.
This way you can export the KM content.
For import/package upload.
Check that Cotent management ->package upload iview in pcd content and duplicate that iview and assign that also to the same role.
This way you can do the KM transport.
Hope that helps.
Raghu

Similar Messages

  • Transport xml forms

    Hi all,
    i developed some xml forms projects and i would like to transport from Dev enviroment to QA
    any sugestions about process and best practices
    Regards
    Ruben

    Hi Ingvild Nygaard
    I have the same requirement, i.e I have to move xml forms from dev to quality, so I have followed the same as you said.
    But I can't see a New form added under Folder> New>Forms menu
    I have made the settings under Folder Setiing at System Configuration>Content Managemnt>Folder-based Publishing-->Folder Settings
    Please advise me how to resolve it.
    Thanks,
    Chinna.

  • How to upload an XML file into another system

    Hi friends,
    I have a requirement where I need to upload an  XML file into one system
    which has been downloaded  using  another  system.
    I have tried using the method ' cl_gui_frontend_services=>gui_upload'
    to upload the file but it is going for dump.
    I have used the  method ' w_xml->import_from_file' also,
    but it is also going for dump ,because  both methods are using the same FM
    ' GUI_UPLOAD'.
    Can any one suggest on this.
    Regards,
    Bhargavi.D

    "Here is the  Explaination for uploading the XML   Format file to sap   " through ABAP Program ....
    1. Basically you simply have to convert the XML file into the proper IDoc format. There are many ways to achieve this. One solution would be to convert it externally to SAP, e.g. via VB Script or with an XSLT transformation. Or you use the built in SAP functions for importing an IDoc from an XML stream.
    2. Uploading a file is either done via GUI_UPLOAD or via the usual way of reading a file from the application server (Open dataset. Read dataset) But what do you mean by "send to external system"? Do you want to convert an IDoc into XML? Then you simply define an XML port with WE21 to send the IDoc out.
    Here is an example of code that loads an XML from file and posts it as an IDoc. Please keep in mind that the XML has to be in its canonical format as described in the interface repository: ifr.sap.com (choose the template of the desired IDoc from there as an example).
    data: data_tab type table of char1024.
    data: XML_STREAM type string.
    CALL FUNCTION 'GUI_UPLOAD'
      EXPORTING
        FILENAME                      = 'D:test.xml'
    *   FILETYPE                      = 'ASC'
    *   HAS_FIELD_SEPARATOR           = ' '
    *   HEADER_LENGTH                 = 0
    *   READ_BY_LINE                  = 'X'
    *   DAT_MODE                      = ' '
    *   CODEPAGE                      = ' '
    *   IGNORE_CERR                   = ABAP_TRUE
    *   REPLACEMENT                   = '#'
    *   CHECK_BOM                     = ' '
    * IMPORTING
    *   FILELENGTH                    =
    *   HEADER                        =
      TABLES
        DATA_TAB                      = DATA_TAB
    EXCEPTIONS
       FILE_OPEN_ERROR               = 1
       FILE_READ_ERROR               = 2
       NO_BATCH                      = 3
       GUI_REFUSE_FILETRANSFER       = 4
       INVALID_TYPE                  = 5
       NO_AUTHORITY                  = 6
       UNKNOWN_ERROR                 = 7
       BAD_DATA_FORMAT               = 8
       HEADER_NOT_ALLOWED            = 9
       SEPARATOR_NOT_ALLOWED         = 10
       HEADER_TOO_LONG               = 11
       UNKNOWN_DP_ERROR              = 12
       ACCESS_DENIED                 = 13
       DP_OUT_OF_MEMORY              = 14
       DISK_FULL                     = 15
       DP_TIMEOUT                    = 16
       OTHERS                        = 17
    IF SY-SUBRC <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CALL FUNCTION 'CONVERT_TABLE_TO_STRING'
      EXPORTING
        I_TABLINE_LENGTH       = '1024'
      IMPORTING
        E_STRING               = XML_STREAM
      TABLES
        IT_TABLE               = DATA_TAB[].
    write: / xml_stream color col_total.
    data: CONTENT_LENGTH type string.
    data: CONTENT_TYPE type string.
    data: REMOTE_ADDR type string.
    CALL FUNCTION 'IDOC_INBOUND_XML_VIA_HTTP'
      EXPORTING
        XML_STREAM                      = XML_STREAM
        CONTENT_LENGTH                  = content_type
        CONTENT_TYPE                    = content_type
        REMOTE_ADDR                     = remote_addr
    EXCEPTIONS
       NO_IDOCS_SAVED                  = 1
       TAG_ERROR                       = 2
       NO_DATA_RECEIVED                = 3
       NO_IDOCS_RECEIVED               = 4
       SEGMENT_ERROR                   = 5
       IDOC_WAS_SEND_SECOND_TIME       = 6
       OTHERS                          = 7
    IF SY-SUBRC <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    write: / sy-subrc color COL_NEGATIVE.
    ENDIF.
    reward  points if it is usefull.......
    Girish

  • Transport All Roles to Another System

    Hi Experts,
    I have one requirement. I want to create same roles in Development System that I have made in QA System.
    So is there any technic, I dont have to make it again in Development system and copy from QA system?

    Hi,
    Transport is not possible from QAS to DEV system.
    So in this case you can use upload download roles.
    Go to PFCG. Create one composite role and add all the roles that you want to transfer.
    Then select that composite role in PFCG screen. Go to Role --> Download. It will ask to save the role file. Save it on your machine.
    Now login into the DEV system, go to pfcg. Go to Role --> Upload and select the file which you have stored earlier.
    It will create all the roles in DEV same as QAS. You have to create profile of all that role.
    You can generate mass profile using SUPC. Go to SUPC and select all the roles which you have transfered and generate their profile.

  • Transport of XML Forms

    Hi,
    We need to transport XML Forms from our sandbox to the Test system. Here is the configuration for our sandbox and test system:
    J2EE Engine 6.40
    Portal 6.0.12.0.0
    KnowledgeManagementCollaboration 6.0.12.1.0
    TREX 6.1
    Can anyone please tell me how this can be done? Thanks for all your valuable time and help.
    Sincerely,
    Sri

    Hi Patricio,
    Thanks a lot for your prompt reply. Now, if I want to move the XML forms from the Test system to my local instance of the portal, which is NW04 SPS 12, is it possible for me to do so? Is moving the XML forms more like a copy and paste operation or is it something different? Thanks again for your valuable time and effort.
    Sincerely,
    Sri
    P.S. I just awarded points

  • Generate or import xml form content into portal

    Hi, we have a content repository type "fsdb" in wich we have created a xml form to publish content.
    Now we need to develope a program or process that read information from a database and generate the xml content in the repository,
    How can we generate the xml form content?
    I have tried coping and existing element of the repository from the file system and changing the data but something more is needed, I think that is necesary to update the database.
    Any suggestion is welcomed.
    Thanks in advanced.
    Regards.

    Hi,
    I differred my theme, cause I also had to use and transport the xml-forms into another portal. For this reason I have to use xml-forms. I've found out how to modify the the content/text of an subscription-mail.
    Is there any way to define different layouts for subscription-mails? (Maybe depending on the folder.)
    Is there any way to send an e-Mail to a specified address (including the content) when saving the xml-form?
    Greets
    Janko

  • XML Forms registration

    Hi
    Since I'm having problems getting my XFBuilder working I want to create the XML Form on another portal and the migrate it. I've copied the folder of the XML form (path: ...global\config\cm\etc\xmlforms\"myform") However I don't get the opportunity to create a new news of the given form even though I made sure the form is not excluded via the configuration. Is there something I need to do? Do I need to register the XML form or something?
    Best regards
    Ole

    Ah, still not resolution to this problem... hmmmm
    On the other problem with the XML forms have you checked your Internet Explorer settings (Tools>Internet Options>Advanced)
    check the settings as follows:
    <b>HTTP 1.1 Settings</b>
    Use HTTP 1.1 = Checked
    Used HTTP 1.1 Through proxy connection = Checked
    <b>Java (SUN)</b>
    Use Java vXXXX for <applet> =  Checked
    <b>Microsoft VM</b>
    Java Console enabled = Checked
    Java logging enabled = Un-Checked (Don't think it matters)
    JIT compiler for virtual machine enabled = Checked
    Try these settings and see if you have the same problem..
    Regards
    Daniel

  • 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

  • XML form Transport

    HI SDN
    I have create the xml template and by using this template i have created xml files in KM Content.
    Now I have Question, How do we transport this created news XML files into QA system and PRODUCTION SYSTEM
    please help me to transport the template as well as xml files
    thanks in advance
    ramana

    Hi Ramana,
    You must copy directly these forms from:
    <i><drive>\usr\sap\<SID>\SYS\global\config\cm\etc\xmlforms</i>
    to your prod. system.
    After copying these directories, when you enter in prod. portal, you will see your forms in your etc\xmlforms.
    If you want to move your xml files you can use ICE Protocol.
    Cheers,
    SK.
    <i>P.S: Plz consider rewarding points in SDN.. if helpful!</i>

  • How to change  XML  Structure from one form to another form using OO ABAP.

    Hi Experts,
    In my Scenario, i need to do ABAP Mapping in order to change Incoming structure from one form to another.
    My Input to ABAP Mapping (OO ABAP Program)would be :
         <A>..........</A>
         <B>..........</B>
         <C> .........</C>
         <D>..........</D>
         <E>..........</E>
         <F>..........</F>
    OO ABAP Program need to read this input and change the XML Structure into below form:
         <A>..........</A>
         <B>..........</B>
         <C> .........</C>
          <X>
                <D>..........</D>
                <E>..........</E>
          <F>...............<F>
    Please provide inputs (sample Code) to solve this issue.
    Thanks,
    Kish.
    Edited by: Kishore Reddy Thamma on Jan 22, 2008 2:51 PM
    Edited by: Kishore Reddy Thamma on Jan 22, 2008 2:52 PM

    Hi,
    Please provide sample code or Material for converting XML Structure from one form to another using OO ABAP and
    Steps for ABAP MAPPING.
    Thanks,
    Kish.

  • XML Forms Builder - Create XML in external System

    Hi,
    Is it possible to create a XML file in a system external to Portal (the DataModel is the same) and after uploading it to the Portal and obtain the same behavior (rendering) of a XML created in Portal by the form generated by XML Forms Builder?
    I've tried to do it, but the file is not rendered as expected.(It appears the XML File but not rendered by the XSL generated by XML Forms Builder).
    Regards,
    André

    I found the solution in the following threads:
    [https://www.sdn.sap.com/irj/scn/thread?messageID=2830013#2830013|https://www.sdn.sap.com/irj/scn/thread?messageID=2830013#2830013]
    [https://www.sdn.sap.com/irj/scn/thread?messageID=823596|https://www.sdn.sap.com/irj/scn/thread?messageID=823596]

  • Copy Web Dynpro to another system - no transport

    Hello
    is it possible to copy a web dynpro to another system without using a transport? I know that i can simply copy and past the code of the methods but what about the layout, the context nodes, views, windows, .....
    Thanks in advance
    Fabian

    and you need the Webdynpro Plugin from  here:
    [saplink-plugins|http://code.google.com/p/saplink/wiki/pluginList]

  • XML Form Error: java.lang.RuntimeException: No system found for alias

    Hello,
    We are currently having an issue with our XML forms.  When we try to access our XML forms we receive the following error:
    java.lang.RuntimeException: No system found for alias SAP_R3_QWA
    Is there a place within the forms to set the system alias?

    Hi Jereme,
    Have you installed the DMS Connector for KM?
    I can imagine that this issue is related to an incorrect version of the DMS Connector for KM (regardless of whether you are using the DSMRM or not).
    In that case you can do the following to correct the issue:
    1) Undeploy your current version of 'DMS Connector for KM'
    2) Download the latest version of 'DMS Connector for KM' from Service Marketplace and deploy it to your portal
    3) Restart J2EE engine after deployment                                                                               
    Hope this helps,
    Robert

  • How to transport a package(dev class) to another system?

    dear gurus,
    is it possible to transport a package (development class) from one system to anther system mannully? there is no transport path between the two systems.
    best regards.
    Jun

    Hello Jun
    The "correct" way would be to create a transport request of type Relocation of Complete Package (SE10):
    DE ORDER_MVE
    Short Text
         Select relocation of a complete package
    Definition
         Relocations of complete packages are transports with which you
         simultaneously
         o   move the original location of all objects in a package to the target
             system and
         o   simultaneously assign the package to another transport layer.
    Use
         Changing the transport layer means that you can edit and transport the
         objects consistently in their new original location without delay.
    However, I assume that this is not possible in your system landscape. In this case you can download the transport files using transaction CG3Y (if available => download as BIN not ASC) yourself. A transport request E01K900100 consists of two files (data and log file), e.g.:
    /usr/sap/trans/data/R900100.E01
    /usr/sap/trans/cofiles/K900100.E01
    Please note that the transport directory is likely to be different on your SAP system (check for directory DIR_TRANS in AL11 or ask your basis colleagues).
    Now on your target system you either upload the files into the corresponding transport directories using CG3Z (if available) or ask your basis people to put the files into the directories. Either your basis is importing the request or you can use transaction STMS (Import queue <target system>, menu Extras -> Other Requests -> Add).
    Add the request to the import queue and import it.
    Finally you need to change the original system of the transported object and the transport layer of the package:
    1) SE03 -> Change Object Directory Entries of Objects in Request
    2) SE80 -> Package in Change Modus: maintain transport layer
    Regards
      Uwe

  • Problem when transporting form from DEV system to PRODUCTION system

    Hi Experts,
    We are developing forms in ABAP, for example there is a form developed in dev system and this form has JS coding in some UI elements events like initialize, on change and on exit; also has one script object defined as variable. this script object has some functions defined in order to do some common validations and field specific ones too.
    The form in DEV work fine, all the functions calling, all the validations and the events are working properly as expected. But there is a problem when we moved the changes done in development system into production system. Specifically the script object has the problem: even though the coding is the same in both systems, in production system we had an script error: "Body.CATALOGPARAMS has no properties", as if the Body.CATALOGPARAMS was never instanciated, or it is not defined...
    The code that produces this error is the following:
    var itemCount = 0;
    itemCount = Body.CATALOGPARAMS.DATA.instanceManager.count;
    CATALOGPARAMS is table defined as context table coming from an ABAP FM where is filled and passed into the form.
    In order to fix this problem I changed that part for the following
    var itemCount = 0;
    var catalogTable = null;
    catalogTable = xfa.resolveNode("Body.CATALOGPARAMS.DATA");
    itemCount = catalogTable.instanceManager.count;
    This still works as fine as the other in DEV system. But my question is: will I have the same problem when we transport the changes to production system, you have to know that a transport is not something that you can do every day, so I am taking precautions before the transport. Which of both coding is the best for doing this?
    Any observations, comments, questions in order to clarify some points are welcome, so please do it.
    In advance, thanks a lot.
    Mauricio.-
    Edited by: Mauricio Poblete on May 11, 2010 4:20 PM

    As always, you are the first one to reply... thanks for that!
    before everything, I activated the form, then I added this form to a new transport using se80 transaction: I navigated through the form objects and I added the form to a new transport by second click on the form -> other functions -> write transport entry. is this the correct way to assign a transport package with the entire form (including script objects, layouts, and all you told in the last reply)??
    Can you give me a guide on how-to add the specific parts to the same transport for forms?
    as always, thanks in advance.
    Mauricio.-

Maybe you are looking for

  • My ipod is not recognized by windows xp

    hello every body, i bought my ipod secondhand (20 Go version 2.3), without the installation CD, so when i connected it to windows xp, it's not recognized, i installed the last version of itune and ipod driver on my PC, but the problem persist always,

  • Ps CS6 Action problem: New document created with "Preset: Clipboard" is misnamed

    Ps CS6 v13.0.1 OS X 10.6.8 In an Action, File > New with "Preset:  Clipboard" ignores the specified document name and uses one of the following names when the clipboard definitely does hold valid content: 1. The name that was applied by the previous

  • New motion user here, questions

    Hello all, I am new to apple motion 2 and new to video and motion graphics as a whole. I just brought home a new dual core 2 ghz G5 and a 23 inch apple display about a month ago. I currently work doing still graphics, mostly layout and some illustrat

  • File upload and Download

    I m storing the attatchments in java table as binary data.Is there any restriction on the size of the attachmnents? Also while Downloading the file the name of the file is not visible. Please help me on this issue.

  • PhotoBooth recording missing?!

    Oh all mighty Apple support communtiy, Please help me. I hae a new laptop, MacBookPro running 10.7. I used Photobooth to record an interview (I was on the phone). It is now missing. It is not in the PhotoBooth Library. I may have not ended the record