Update a system form with XML: empty screen when this is a target document.

Hi,
It is possible to update a system form with an xml file.
In the UI_Application.LoadBatchActions(xmlDoc). In the xmldocuemnt I update a system form by adding controls on it. This all works fine, except one (big) problem.
Assume that I Alter the 'Good Receipt PO'.
This document can be the target document of a Purchase order document. When you open a PO and click the icon on the toolbar for going to the target document, you see the target document filled in, in OK (view) mode.
When you alter the 'Goods Receipt PO' form with XML you get an empty goods receipt form, in Add mode.
Is this a known problem, how can I solve it?
Thanks in advance
Eddy

Hi Florian,
The XML looks like:
<?xml version="1.0" encoding="UTF-16"?>
<Application>
   <forms>
      <action type="update">
         <form AutoManaged="1" BorderStyle="0" FormType="143" ObjectType="20" SupportedModes="15" appformnumber="143" client_height="424" client_width="570" color="0" default_button="1" height="458" left="207" mode="3" pane="1" title="Goederenontvangst (bestelling)" top="23" type="0" uid="F_233" visible="1" width="578">
            <items>
               <action type="add">
                  <item AffectsFormMode="1" backcolor="-1" description="" disp_desc="0" enabled="1" font_size="0" forecolor="-1" from_pane="0" height="19" left="434" linkto="" right_just="0" supp_zeros="0" tab_order="830" text_style="0" to_pane="0" top="398" type="4" uid="100001" visible="1" width="85">
                     <AutoManagedAttribute>
                        <Attribute description="editable" id="2" modeAdd="1"/>
                     </AutoManagedAttribute>
                     <specific caption="Container"/>
                  </item>
               </action>
               <action type="update">
                  <item AffectsFormMode="1" backcolor="-1" description="" disp_desc="0" enabled="1" font_size="0" forecolor="-1" from_pane="0" height="19" left="315" linkto="2" right_just="0" supp_zeros="0" tab_order="1160" text_style="0" to_pane="0" top="398" type="4" uid="68" visible="1" width="114">
                     <AutoManagedAttribute>
                        <Attribute description="editable" id="2" modeAdd="1"/>
                     </AutoManagedAttribute>
                     <specific caption="Voorfactuur"/>
                  </item>
               </action>
            </items>
         </form>
      </action>
   </forms>
</Application>
Thank you very much for trying this.
Eddy

Similar Messages

  • Update a system form using XML

    Hi all,
    I'm trying to update a system form by adding a tab (folder). The form is Customer Equipment Card (nb 60150), in the service menu.
    I just want to add a folder called Counter.
    When I load the XML file below, I get the following error :
    System.Runtime.InteropServices.COMException (0xFFFFFFFE): Function not supported on current SBO Version - upgrade is required
    If I want to add a button, it's working, but not a folder.
    Something's false in this XML file (I add the good uid before I load it) ?
    Thanks for your help
    Sébastien

    > - Drop the datasource section
    > The error is gone, but I don't see the folder in
    > in the form
    You could try and check wether it's there but invisible (access it in your code and wait for an exception).
    > - Linkto Objet
    > If you look at the XML code of the form, you can
    > can see that all the folder are links to this item.
    > Moreover, when I add the form using VB (it's working
    > that way), the XML result will show linkto = "54"
    I believe. I analyzed another system form and my own forms: None of the tabs are linked to anything. Is this documented? What does it mean?
    > - the data source is SYS_71 for all the folder of the
    > form. I don't understand what you mean when you want
    > me to set the val_on to this datasource
    I looked at the XML source of another system form and the tabs had val_on="SYS_whatever". With my own forms I set val_off="N" and val_on="Y". I remember having had some problems there, but I can't put my finger on it now.
    > - item group
    > I'm using SBO 6.5, I can't find help on that, maybe
    > it's only on 2004.
    No, it's 6.5. It's not in the documentation but you will find it somewhere inside the guts of this forum. As I said, I once had trouble adding tabs cleanly to a custom form using XML.
    Of course, all this is just blindly stabbing into the dark. What else can we do?

  • Merge LiveCycle Form with XML using JAVA

    Hello.
    I am trying to find out how to merge non-interactive form with XML (using JAVA) so the users can see the final output form with the data filled in.
    What are my choices..?
    So far, I have created the interactive forms as template using LiveCycle 8 and wrote ASP.NET code to extract data and store it in SQL database when the user fill out and submit the form.
    It works great but another agency wants to access the form as well.
    They told us that they will create the XML themselves from the database, so they just need to combine the form with XML to display it (non-interactive form).
    They want to use JAVA but I am not sure how to do that...
    Any suggestion?

    Assuming that you start with XML in an org.w3c.dom.Document that stores the XML data. Before you can merge it into a form, you have to convert it to a com.adobe.idp.Document object. TO convert a org.w3c.dom.Document to a com.adobe.idp.Document object -- use the following Java code:
    private Document convertDataSource(org.w3c.dom.Document myDOM)
    byte[] mybytes = null;
    try
    //Create a Java Transformer object
    TransformerFactory transFact = TransformerFactory.newInstance();
    Transformer transForm = transFact.newTransformer();
    //Create a Java ByteArrayOutputStream object
    ByteArrayOutputStream myOutStream = new ByteArrayOutputStream();
    //Create a Java Source object
    javax.xml.transform.dom.DOMSource myInput = new DOMSource(myDOM);
    //Create a Java Result object
    javax.xml.transform.stream.StreamResult myOutput = new StreamResult(myOutStream);
    //Populate the Java ByteArrayOutputStream object
    transForm.transform(myInput,myOutput);
    // Get the size of the ByteArrayOutputStream buffer
    int myByteSize = myOutStream.size();
    //Allocate myByteSize to the byte array
    mybytes = new byte[myByteSize];
    //Copy the content to the byte array
    mybytes = myOutStream.toByteArray();
    catch (Exception e) {
    System.out.println("The following exception occurred: "+e.getMessage());
    //Create a com.adobe.idp.Document object and copy the
    //contents of the byte array
    Document myDocument = new Document(mybytes);
    return myDocument;
    THen you can merge myDocument into the Form using renderPDFFOrm:
    FormsResult formOut = formsClient.renderPDFForm(
    formName, //formQuery
    myDocument, //inDataDoc
    pdfFormRenderSpec, //PDFFormRenderSpec
    uriValues, //urlSpec
    fileAttachments //attachments
    Hope this helps!

  • I have a new hp tower running windows 8.1 and have been trying to install the adobe reader.  The installer downloads (1meg) and I choose to run it but it just sits with an empty screen.  I've checked task manager and it takes up memory but does nothing.

    I have a new hp tower running windows 8.1 and have been trying to install the adobe reader.  The installer downloads (1meg) and I choose to run it but it just sits with an empty screen.  I've checked task manager and it takes up memory but does nothing.  After letting it run for 3-4 minutes I kill the task.  What can I do to get the reader installed on this machine?  I've tried using chrome, firefox and explorer and get the same results with each.

    Try the offline installer from http://get.adobe.com/reader/enterprise/

  • How to show system form with a new button

    Hi experts,
         I created a new button on the sales order system form, I need that the new button calls other system form, How can I show a system form with my new button?
    Thaks.
    César Lemus.

    Hi César,
    On the Item Pressed Event of the button, Write the code to show the other system form. The sample for this is as follows.
    Case SAPbouiCOM.BoEventTypes.et_ITEM_PRESSED
                          If pVal.ItemUID = "URButtonID"
                                    SBO_Appln.ActivateMenuItem("Menu ID of ur system form.")
                          EndIF
    Hope this is helpful. If yes reward points.
    Regards,
    Vasu Natari.

  • I have a 4s with the latest 6.0.1 update and windows 7 with iTunes 11. When I connect the phone, windows can see but iTunes doesn't. Have tried re-installs and re-starts. Anybody else have this problem

    I have a 4s with the latest 6.0.1 update and windows 7 with iTunes 11. When I connect the phone, windows can see but iTunes doesn't. Have tried re-installs and re-starts. Anybody else have this problem?

    Did you go through all the options?
    Also this:
    Also, third-party security software may conflict with iOS devices connecting to iTunes. Follow this article to troubleshoot issues that may be caused by your security software. After resolving any issues you may have with your security software, you may need to try the steps in this article again.

  • Post update to iOS 8, i get black screen when I reject or miss a call...how to get rid of this...?

    post update to iOS 8, i get black screen when I reject or miss a call...how to get rid of this...?

    Do a sync and backup first.

  • My ipod comes up with a green screen when i turn it on. I did once eject it safely like a flash drive instead of through itunes. What exactly is wrong with it and can it be fixed?

    My ipod comes up with a green screen when i turn it on. I did once eject it safely like a flash drive instead of through itunes. What exactly is wrong with it and can it be fixed?

    What exactly is wrong with it and can it be fixed?
    If you have AppleCare and/or iPod Nano is still under warranty, give them a call.  If not, take the computer to your local Apple Store or AASP.  The staff will tell you what is wrong w/it and let you know if it can be fixed after it is examined.

  • Opening a System-Form with selected Data

    Hi,
    i´m looking for a way to open a System-Form, e.g. Orders with
    selected Data.
    In the moment i do the following:
         application.ActivateMenuItem("2050");  // orders
         SAPbouiCOM.Form belegForm = application.Forms.ActiveForm;
         belegForm.Mode = SAPbouiCOM.BoFormMode.fm_FIND_MODE;
         SAPbouiCOM.EditText edDocNum = (SAPbouiCOM.EditText)belegForm.Items.Item("8").Specific;
         edDocNum.Value = "4711";
         belegForm.Items.Item("1").Click(SAPbouiCOM.BoCellClickType.ct_Regular);
    This works, but the screen is blinking, because first the form ist opened and shown with
    empty values and then filled.
    Is there a way to activate the form and do the search-Operation and afterwards show it ?
    I think ist must be possible, because when clicking on the link-Button near CardCode, the Contacts-Form
    is opened in this way.
    regards Matthias

    Hi Ibai,
    i have tested both: freeze and form.visible = false in
    the form_load-Event. It doesn´t work here.
    Also neither the call
       application.ActivateMenuItem("1281");  // find
    nor the call
       oForm.Mode = SAPbouiCOM.BoFormMode.fm_FIND_MODE;
    work in the form_load-Event.
    After the form-Load-Event the et_FORM_ACTIVATE-Event is called.
    Here the functions work, but here the screen is already visible.
    regards Matthias

  • UI: Save system form as xml

    Hi,
    I tried to export a system form like the delivery note form to a XML document, but it doesn't work.
    For the forms I created with the Screen Painter it works without problems. I can run an import or export and I always receive an XML document.
    For the system forms I didn't get a XML file at all.
    Are there any code examples or help files that could help me with this export?
    I already searched the forum for this topic but I can't find one that answers my question.
    Perhaps someone can help me solving this problem.
    Regards,
    Dennis

    > Are there any code examples or help files that could
    > help me with this export?
    Use the GetAsXML method to get every form you want as XML. This example copies the Sales Order form as XML to the clipboard.
    If pVal.EventType = et_FORM_LOAD And pVal.FormType = 139 Then
    .... Clipboard.SetText SBO_Application.Forms(pVal.FormUID).GetAsXML
        End If

  • Problem filling in a form with xml file

    I have two forms that are used to inform people in town via the web of items needed in a food bank. The first form is filled out by the caretaker and has a "print" and "submit" button at the bottom. The second form is identical to the first but does not have a submit button since it is published on the web and readers can print it out to take with them shopping. Last month I was able to fill the second form with  data from the first that was exported as a xml file and inported into the second. For some unknown reason other that my program was updated this no longer works. Is there a way for this to still function?

    There is no built-in date picker available for forms created in Acrobat. There are some third-party solutions involving JavaScript (either a large collection of fields or a custom dialog) though. Also, text fields with date formatting will use a wheel type date picker on Android/iOS devices with Adobe Reader.

  • PDF form with XML data connection comes up blank at run time

    Hello All,
    I am a newbie to ADOBE Livecycle 9, but am very proficient in C#.  I would like to request for your guidance on the following issue.
    We have a desktop application in C#, WPF, Sqlserver. The requirement is to launch a Livecycle form from the application for the user to read/edit/save data
    I have done this much so far -
    Downloaded trial version of Livecycle 9
    Developed a interactive PDf form
    Created an XML based data connection. Generated fields on the form using the fields from this connection.
    Set the .XML file as preview source for the form
    the controls on the form are boumd to the xml data source
    In design mode, the form works fine, it displays my data correctly
    I have created a WPF form with a button. On click of this button, I call the Process.Start(pdf-file-path). My pdf is launched properly
    I have added a combo box to my WPF form. I select a parameter from this, then call a stored procedure which returns me a datatable depending on parameter passed
    Using the returned datatable, I have used the datatable.writexml and datatable.writexmlschema to create my XML and XSD files. as mentioned above, this xsd is used to create the data connection for the PDF and the XML for the preview source
    This is what I want to do -
    Launch the PDF from my WPF form, pre-populated with the newly created XML data from my WPF form.
    So basically, as the user changes the selection criteria from the combo box, the XML file data will change and the PDF file will be launched each time with new data.
    The XSD format will always be constant
    Problem -
    My XML and XSD get created properly, my PDF launches, but it is empty
    If I change my selection criteria and run the WPF application, and then open the PDF in design mode, it asks me whether it should refresh the XML source. This means that the PDF form is connecting correctly to the XML source
    So why then, does the form come up empty at run time?
    What link am I missing?
    I have found some sites that help using Web applications, but nothing for desktop applications. It would be fantastic if you could point me to some help for developing Livecycle forms with C# / SQLServer
    Your help in this case will be highly appreciated.
    Thanks and Regards

    Oops, something happended with the above post. I will try again... I have tried your suggestion but I still get the same garbled XML (with data repeated and some values "cut in half".<br /><br />Here is what I get after decode-service and extract-to-XML-service. This is just the first barcode, the others are similar, sorry for the poor formatting, but I get a CDATA tage infront of the "istensen" value.<br />                                                              <br />CDATA:istensen</fld_ForMellemEfterNavn<br />><fld_VejNRpostByEnLinie<br />>Superroad 99, 1330 Supertown</fld_VejNRpostByEnLinie<br />><fld_PrivatTelefonnummer<br />>20724283</fld_PrivatTelefonnummer<br />></sub_Person<br />></sub_PktA<br />><fld_BlanketNr<br />>kb0371ff</fld_BlanketNr<br />><fld_BarcodeCount<br />/></form1<br />>/sub_Adresse<br />><sub_Person<br />><fld_ForMellemEfterNavn>Kim Christensen</fld_ForMellemEfterNavn<br />><fld_VejNRpostByEnLinie<br />> Superroad 99, 1330 Supertown </fld_VejNRpostByEnLinie<br />><fld_PrivatTelefonnummer<br />>20724283</fld_PrivatTelefonnummer<br />></sub_Person<br />></sub_PktA<br />><fld_BlanketNr<br />>kb0371ff</fld_BlanketNr<br />><fld_BarcodeCount<br />/></form1<br /><br />Obviously this is not a legal xml-string, so I can do nothing about it.<br /><br />I have tried using a custom .NET component (ClearImage) for reading the same form (with the barcode) I get the correct data out from the barcodes. So I guess something is wrong with the decode-service in Barcoded Forms ES when I use compressed XML. But I can conclude since the ClearImage component can read the barcodes that they are compressed correctly.<br /><br />Can you help me with getting further with this problem?<br /><br />Sincerely<br />Kim

  • Populate PDF form with XML data

    Although a seemingly simple task, this question has occupied way too much of my time the last week and I am asking the following out of sheer desperation and frustration.
    I have a pdf form created with Designer 7.0. I have a separate XML data file to populate the form with. I can test using the preview in Designer and everything looks great. Now, all I want to do is deploy this pdf to a standard web server (IIS, Windows) such that any visitor to the site (using Reader) is able to open it/view it/print it, with the data there. That's it.
    This was easily accomplished using Acrobat 6 by creating an ASP page that output an FDF file which referenced the PDF. Not so with the latest version.
    I have downloaded three separate several hundred page documents that do not explain how to accomplish this task simply. So to summarize:
    1. Does this task *require* a separate piece of software (Document Server) that was not required before?
    2. If Document Server is not required, what are the steps to publish the pdf file and reference the data file?
    Please help, extraordinarily frustrated :-(.

    Ravinder, were you actually able to get your PDF Document (Form) to load with data?  I have not been able to get my .NET page to populate my PDF document - the PDF loads in my Browser but has no data.  If you can post sample code that you were able to get to work, it would be appreciated, or if you notice something wrong with my code below, please let me know.<br /><br />Also, when my PDF document loads in my browser, I am prompted to "Open or Save" my .xdp file and if I click "Open", my PDF Form loads, but the fields are not populated.  How do I stop this prompt from loading?  I don't want the user(s) to be able to see this.<br /><br />My .NET page and XML file are listed below:<br />------------------------- .NET -----------------------------------<br />Imports System.Text<br />Imports System.IO<br /><br />Public Class WebForm1<br />    Inherits System.Web.UI.Page<br /><br />#Region " Web Form Designer Generated Code "<br /><br />    'This call is required by the Web Form Designer.<br />    <System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()<br /><br />    End Sub<br /><br />    'NOTE: The following placeholder declaration is required by the Web Form Designer.<br />    'Do not delete or move it.<br />    Private designerPlaceholderDeclaration As System.Object<br /><br />    Private Sub Page_Init(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Init<br />        'CODEGEN: This method call is required by the Web Form Designer<br />        'Do not modify it using the code editor.<br />        InitializeComponent()<br />    End Sub<br /><br />#End Region<br /><br />    Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load<br />        'Put user code to initialize the page here<br /><br />        Dim responseString As New StringBuilder<br />        Dim sr As StreamReader<br />        Dim xmldata As String<br /><br />        Response.ContentType = "application/vnd.adobe.xdp+xml"<br />        responseString.Append("<?xml version='1.0' encoding='UTF-8'?>")<br />        responseString.Append("<?xfa generator='AdobeDesigner_V7.0' APIVersion='2.2.4333.0'?>")<br />        responseString.Append("<xdp:xdp xmlns:xdp='http://ns.adobe.com/xdp/'>")<br />        responseString.Append("<xfa:datasets xmlns:xfa='http://www.xfa.org/schema/xfa-data/1.0/'>")<br />        responseString.Append("<xfa:data xfa:dataNode='dataGroup'>")<br />        sr = File.OpenText("c:\\inetpub\\wwwroot\\PDFFiller\\TestForm_data.xml")<br />        xmldata = sr.ReadToEnd()<br />        sr.Close()<br />        responseString.Append(xmldata)<br /><br />        'responseString.Append("<form1>")<br />        'responseString.Append("<txtFirstName>Homer</txtFirstName>")<br />        'responseString.Append("<txtLastName>Simpson</txtLastName>")<br />        'responseString.Append("</form1>")<br /><br />        responseString.Append("</xfa:data>")<br />        responseString.Append("</xfa:datasets>")<br />        responseString.Append("<pdf href='http://localhost/PDFFiller/TestForm.pdf' xmlns='http://ns.adobe.com/xdp/pdf/' />")<br />        responseString.Append("<xfdf xmlns='http://ns.adobe.com/xfdf/' xml:space='preserve'>")<br />        responseString.Append("<annots/>")<br />        responseString.Append("</xfdf>")<br />        responseString.Append("</xdp:xdp>")<br /><br />        Response.Write(responseString)<br />        Response.Flush()<br />        Response.End()<br /><br />    End Sub<br /><br />End Class<br /><br />----------------------End .NET -----------------------------------<br /><br />--------- XML (TestForm_data.xml) --------------------------------<br /><form1><txtFirstName>Homer</txtFirstName><txtLastName>Simpson</txtLastName></form1><br />----------------------End XML -----------------------------------

  • How to save XDP/Form with XML as a standalone PDF - Running out of time

    Help...I'm in a time crunch.  I have a perfectly working form that takes XML and merges into a wonderful PDF on my machine (1000+ pages).  The problem is I need to distribute the finished PDF with the XML...not to two independent files.
    I have tried every "Save As" and "Export" available and it only saves the PDF template without the data.
    I have tried to "Print" to a PDF writer / pseudo-printer but it chokes and dies after a few hundred pages.
    What am I missing?  How can I take this form and XML and make a final product PDF that I can distribute?
    In case it helps...the form was made in LiveCycle and the XML is generated from PHP.

    Thanks for your ideas.  I'm not using the reader...I'm using Acrobat Pro 9.x.
    This isn't really a LiveCycle question because that has to do with the form design.  This is post-design and during the data merge...something only an end-user would see or have access to.
    The form works great...the data is great.  They are merged on the screen and looks perfect.  However, I can't get the combined output saved anywhere.

  • Build a form with xml

    I recently was "volunteered" to build a new website for a local non-profit organization. I am fairly descent at building static sites(but brand new to dynamic), and I have run into an issue with a form area on the site. They have 3 training signup pages that are quite lengthy, and need updated regularly. The folks there are not exactly computer-savy so I am worried about them going into Dreamweaver and messing stuff up. I am trying to find a way to give them an easy way to update the form as necessary and save them the expense of hiring someone to update the list as needed. I have been doing some research on xml and spry to see if this would apply to forms. Can xml populate a form, with all needed checkboxes, and other info needed? The current site is build in html, with php form-to-mail attributes.
    Ideally I would want the form to auto-delete training dates that have already passed, add an easy admin function to add new content via xml, and retain the form to mail function. Here is the address of the page as it is right now: http://www.clickhappytesting.com/wcrTraining.html . Currently there are only like 20 or so items on the form, but there are usually like 100 per form.
    I am using DWcs4 so any help, or direction to where I could find help, or even an extension that would work would be GREATLY appreciated.
    Thank You,
    Shawn Lloyd

    Originally posted by: mirdous.seznam.cz
    Hi
    I do have same problem with EMF form based editor and source page. My
    Form page is working from EMF w/o problems but I do not know how to put
    xml editor to create source page to be in sync w/ model.
    Can you guys help me w/ this. Do you have any code anywhere or doc to
    follow so I'm able to get into it. Tnx
    Miro
    > Daniel Rohe wrote:
    > I'm currently experimenting with the EMF integration of the WST
    > (org.eclipse.wst.common.emf). So far I've got managed to load a self-defined
    > model through an implementation of the TranslatorResource and
    > TranslatorResourceFactory, these classes are also used by the JST components
    > in the plugin org.eclipse.jst.core. After finishing the model I want to do
    > the same step and create an editor with some form based pages and a single
    > source page. So I'm also interested in hearing something about synchronizing
    > EMF models and SSE editor.
    >
    > Regards
    > Daniel
    >
    > "Yang Liu" <[email protected]> schrieb im Newsbeitrag
    > news:65b2a87819b4d1f5b2d0ba8349e996db$[email protected]..
    >
    >>A question on EMF and SSE.
    >>
    >>I am trying to build a multipage web.xml editor. With both customized
    >>editor page (form based) and a source code page.
    >>
    >>For the source code page, I want to use the SSE xml editor. For the
    >>customized editor page, I want to use the EMF model for web.xml (there
    >>seemed to have all the EMF model artifacts there already in jst).
    >>
    >>The question I have is how to combine them together? Is there any existing
    >>implementation for this kind of usage or is there any plan? How to make
    >>the pages (and views) synchronized?
    >>
    >>Thanks and regards,
    >>yang
    >>
    >
    >
    >

Maybe you are looking for

  • Issue in Positive Time Mgmt

    Dear SAP - HR Experts . In My Client side , they want to shift for Positive Time Mgmt (want to capture actual times). They Usually run payroll on 25th day of every month . if they implement Positive Time in Company then they will have Time Evaluation

  • I just got an iPad and I want to create a photo book help

    I just got an iPad and my husband and I both have iPhones and my aunt has a Mac computer and she created some awesome photo books and I want to make some books can u please tell me how to get this iPhoto! Is it an app or what?

  • LMS 3.2 Invalid license error.

    Hi there I recently installed LMS3.2 in the setup process it asked me for the *.lic file which I provided. I then installed diffrent updates and patches for LMS. LMS is working int the common services tab. but anything else gives me a error: The lice

  • How to install Oracle Essbase

    Hello! I would like to install Oracle Essbase and then using OBIEE to designing Dashboards I can download from: http://www.oracle.com/technology/software/products/bi/performance-management/111130/hyperion_essbase_111130.html and I have downloaded thr

  • Include/Report not found "/1BCDWB/IQ000000000027DAT"

    Hello! I have tranported an ABAP-program from DEV to the QAS-system and have difficulty, even If I check the program in QAS-system. The error/warning I get is: Include/Report not found "/1BCDWB/IQ000000000027DAT" The question: how can i transport the