Where to upload UPGANA.XML?

Hello,
when I finish a SAP upgrade I start the web browser to see the SAP  System Upgrade Evaluation page.
SAP wants that I upload the results (I believe the UPGANA.XML file). However, I have never
seen a SAP system with a direct internet connection, so I wonder how this should work?
Is it possible to manually upload the UPGANA.XML file to SAP?
Regards,
Mark

Hello Max,
technically I have no problem with the upgrade. I just wondered
how on earth SAP will get the UPGANA.XML file. When I check
the html page:
/usr/sap/SID/upg/abap/htdoc/eval/EvalForm.html
Then I see that SAP tries to email the file UPGANA.XML:
<form action="mailto:upgrade @ sap.com?Subject=Upgrade evaluation"
      method="post" enctype="multipart/form-data">
Now if sendmail is not configured on the SAP host, can I simply
send the file UPGANA.XML as attachment to upgrade @ sap.com
or do they require a special encoding? Just wondering whether
someone knows the answer.
Regards,
Mark

Similar Messages

  • Where to get to xml to alter photo gallery?

    In the new format for BC I can't seem to find where to upload a XML file to help me tweek the photo gallery.
    I was going to buy this tutorial in the hopes it will help me fix the sizing issue of the Photo Gallery. When a picture is really large it fills the whole page when the picture is in slideshow mode. I can't figure out how to change this, however, I've seen the XML referenced a few times. Any help on where to do so in the new  layout?"
    Or thoughts on this tutorial helping?
    http://kiyuco.com/tutorials/build-a-custom-gallery-using-the-photo-gallery-module

    The first thing to change is the module paramaters...
    {module_photogallery,ID,rowLength,targetFrame,resultsPerPage,Width,Height,UseStandardMethod,thumbnailAlgorithm}
    ID - System generated ID (Do not change this number.)
    rowLength - Set the number of photos displayed per row
    targetFrame - Set the destination frame where the photos will open (such as _blank)
    resultsPerPage - Set the number of photos displayed per page
    Width/Height - Set the width and height of the thumbnail images. The default value is 80 pixels wide by 80 pixels high.
    UseStandardMethod - Use the standard Thumbnail Generation. Set to False for better thumbnail quality (with increased file size).
    thumbnailAlgorithm - To avoid squashed images and control image proportion size. Use the following paramaters: proportional,fill,fill_proportional.
    To get the xml feed you go to the gallery in the admin it will be there.

  • Upload any XML file to internal table

    Hi,
    I'm writing a FM to upload any XML file (Which means I don't know the structure) to a internal table.
    I tried to use FM 'GUI_UPLOAD' and CALL TRANSFORMATION ('ID'). But the problem is that, the RESULT tab of CALL TRANSFORMATION ('ID') needs to define the structure of the table for the corresponding XML file, otherwise it will not work. For example, I want to get the result table like this:
      CALL TRANSFORMATION ('ID')
      SOURCE XML xmlupl
      RESULT tab = <tab>.
    Then it will give me a run time error 'CX_XSLT_FORMAT_ERROR' because I didn't give a specific structure for <tab>.
    Any solution for my situation?
    Thanks.

    Where is your XLST file for the call transformation ID
    From ABAP to XML you can do it as dynamic, but XML to ABAP you need a XLST to convert.
    otherwise please look at this

  • Error when Uploading _fmb.xml files

    Hi...
    I'm a newbie in Apex. I'm trying to create a migration project (ie migrating Oracle Forms 6i/10g to xml via Apex). I've converted the *.fmb files to _fmb.xml using frmf2xml.bat utility. My problem is when I tried to upload the _fmb.xml, this error appears:
    +1 error has occurred+
    +•Select the Forms File you want to upload. For Forms Modules, upload the XML file which is generated by the Forms2XML conversion tool, containing the information of your Forms Module. (Go to error)+
    the error message is - javascript:apex.jQuery('#P3_FORMS_XML_FILE').focus();void(0)
    the url returns: http://localhost:8080/apex/wwv_flow.accept
    I've also tried to upload any type of file but it still returns the same error message. Please, anyone can help me...
    Thanks.

    when i tried the online workspace as in http://apex.oracle.com/pls/apex/, i successfully created the migration project. But still failed to do it locally. Obviosly my locally setup Apex is having problem uploading the _fmb.xml files. Where have i gone wrong? Could anyone please help me?                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • 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

  • CANNOT Upload bootstrap.xml

    Hi :
    MY DB is oracle 9 with nls_lang PORTUGUESE_PORTUGAL.WE8MSWIN1252
    WIRELESS Schema was created but there's no data in it.
    When trying to upload bootstrap e got error:
    C:\oracle\iSuites\panama\sample>upload bootstrap.xml
    Using Java VM version
    java version "1.2.2"
    Classic VM (build JDK-1.2.2_007, native threads, symcjit)
    Uploading 0002 PGRPs.
    Uploading 0001 PUSRs.
    oracle.panama.core.rdbms.TransactionException: java.sql.SQLException: ORA-00600:
    codigo de erro interno, argumentos: [ttcgcshnd-1], [0], [], [], [], [], [], []
    at oracle.panama.core.rdbms.GenericFinder.find(GenericFinder.java, Compiled Code)
    at oracle.panama.core.rdbms.GenericFinder.lookup(GenericFinder.java:176)
    at oracle.panama.core.rdbms.GenericSqlImpl.lookup(GenericSqlImpl.java:634)
    at Oracle.panama.core.PersistentServiceImpl.lookupPanamaGroup(Persistent ServiceImpl.java:317)
    at oracle.panama.core.ServiceGen.setXmlAttr (ServiceGen.java:213)
    at oracle.panama.core.FolderGen.setXmlAttr(FolderGen.java:105)
    at oracle.panama.core.PersistentServiceImpl.createFolderXml(PersistentServiceImpl.java:503)
    at oracle.panama.core.PersistentServiceImpl.createPersistentObject(PersistentServiceImpl.java:827)
    at oracle.panama.core.PersistentServiceImpl.upsertPersistentObject(PersistentServiceImpl.java:873)
    at oracle.panama.core.util.LoadXml.createObject(LoadXml.java:328)
    at oracle.panama.core.util.LoadXml.lookupReferenceObject(LoadXml.java:232)
    at oracle.panama.core.util.LoadXml.checkReferences(LoadXml.java:357)
    at oracle.panama.core.util.LoadXml.createObject(LoadXml.java:327)
    at oracle.panama.core.util.LoadXml.createObjects(LoadXml.java, Compiled Code)
    at oracle.panama.core.util.LoadXml.upload(LoadXml.java:435)
    at oracle.panama.core.util.LoadXml.upload(LoadXml.java, Compiled Code)
    at oracle.panama.core.util.LoadXml.main(LoadXml.java:792)
    java.lang.RuntimeException: oracle.panama.core.rdbms.TransactionException: java.
    sql.SQLException: ORA-00600: codigo de erro interno, argumentos: [ttcgcshnd-1],
    [0], [], [], [], [], [], []
    at oracle.panama.core.util.LoadXml.upload(LoadXml.java, Compiled Code)
    at oracle.panama.core.util.LoadXml.main(LoadXml.java:792)
    C:\oracle\iSuites\panama\sample>
    Any sugestion ?
    Ricardo Oliveira

    Dump file C:\oracle\admin\neo\udump\neoS000.TRC
    Wed Mar 13 22:25:25 2002
    ORACLE V9.0.1.1.1 - Production vsnsta=0
    vsnsql=10 vsnxtr=3
    Windows 2000 Version 5.0 , CPU type 586
    Oracle9i Enterprise Edition Release 9.0.1.1.1 - Production
    With the Partitioning option
    JServer Release 9.0.1.1.1 - Production
    Windows 2000 Version 5.0 , CPU type 586
    Instance name: neo
    Redo thread mounted by this instance: 1
    IT SEEMS A BUG with oracle 9i ... i've read something about it.... is it ?
    my database version is 9.0.1.1.1
    Oracle process number: 8
    Windows thread id: 1804, image: ORACLE.EXE
    *** SESSION ID:(7.3) 2002-03-13 22:25:25.000
    *** 2002-03-13 22:25:25.000
    ksedmp: internal or fatal error
    ORA-00600: csdigo de erro interno, argumentos: [ttcgcshnd-1], [0], [], [], [], [], [], []
    Current SQL statement for this session:
    SELECT VALUE FROM NLS_INSTANCE_PARAMETERS WHERE PARAMETER ='NLS_DATE_FORMAT'
    SQL> select * from NLS_INSTANCE_PARAMETERS;
    PARAMETER VALUE
    NLS_LANGUAGE AMERICAN
    NLS_TERRITORY AMERICA
    NLS_SORT
    NLS_DATE_LANGUAGE
    NLS_DATE_FORMAT
    NLS_CURRENCY
    NLS_NUMERIC_CHARACTERS
    NLS_ISO_CURRENCY
    NLS_CALENDAR
    NLS_TIME_FORMAT
    NLS_TIMESTAMP_FORMAT
    NLS_TIME_TZ_FORMAT
    NLS_TIMESTAMP_TZ_FORMAT
    NLS_DUAL_CURRENCY
    NLS_COMP
    NLS_LENGTH_SEMANTICS BYTE
    NLS_NCHAR_CONV_EXCP FALSE

  • Upload an xml file as a clob

    Can you give me an example of uploading an xml file from c:\test.xml to and oracledb where the field type is clob?

    I think the following error from sqlplus indicates there was an issue loading the xml file
    SQL> execute LOAD_XML(p_dir => 'XML_DIR', p_filename => 'test.xml');
    BEGIN LOAD_XML(p_dir => 'XML_DIR', p_filename => 'test.xml'); END;
    ERROR at line 1:
    ORA-31011: XML parsing failed
    ORA-19202: Error occurred in XML processing
    LPX-00210: expected '<' instead of '?'
    Error at line 1
    ORA-06512: at "SYS.XMLTYPE", line 254
    ORA-06512: at line 1
    ORA-06512: at "SYS.LOAD_XML", line 12
    ORA-06512: at line 1

  • Upload an XML created in JDE to a website which uses HTTP POST, through BSS

    Hi
    My requirement is : in JD Edwards Enterpriseone XML file will be generated and kept in a folder. I need to upload that XML file to a website which uses HTTP POST? Is it possible to do this using BSSV? How? Please provide inputs immediately.
    Thanks
    TK

    Yes, you could use BSSV for that. As I understand your post, you have an XML file, you just need to POST it. You would write a C BSFN that calls a BSSV, then in the Java code for that BSSV you would use Java capabilities to read the contents of the XML file and POST it. Look at B953002 - it calls the C API jdeCallBusinessService which makes the call out to the BSSV. The Service Consumer samples are a lot more complex than you need - you really just need to build up an XML string that matches the input value object of your BSSV and then call the C API.
    If you also need to create the XML file, then you could also do that quite easily in the BSSV java code.
    Of course all of this could also be implemented in a C BSFN or with Real Time Events and then some middleware to create and POST the XML file ... customers tend to choose the technology where they have the most familiarity and skill.
    --Steve                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Uploading an XML into SAP R/3

    Hello,
    I need one samll help regarding the function call. I want to upload an XML file to an R/3 database. My actual task is I have one file with xml format, having few records of purchage order, I dont know which function call I have to use to upload into my internal table, can you any body please help me in this regard?.
    thanks in advance.
    Cheers
    Majjigapu

    Hello,
    you can use
    cl_gui_frontend_services=>gui_upload
    to upload
    your xml file from the operating system to
    an internal table in ABAP.
    Next, you convert the internal table
    into an xstring.
    The iXML Toolkit ( XML parser for ABAP ) can transform
    the internal table into a DOM ( programmatic API for
    manipulating XML documents ).
    Alternatively,
    the statement
    CALL TRANSFORMATION ID
    SOURCE XML itab
    RESULT  l_struc.
    will transform your XML document
    into a local ABAP structure l_struc.
    Regards,
    Marc

  • How to create a custom home screen icon for your website and where to upload it

    I created a joomla 3 site used Icon Slate to size icon but know where to upload the icons. Right now when a user goes to "Add to Home Screen" It just uses a copy of the page they are on.

    I created a joomla 3 site used Icon Slate to size icon but know where to upload the icons. Right now when a user goes to "Add to Home Screen" It just uses a copy of the page they are on.

  • Gettting error while trying to upload an xml in oracle report builder11g

    REP-0069: An internal error occured. JDBCPDS-62008 : java.lang.NullPointerException
    This is the error m getting while trying to upload an xml with the option Open an existing report in Oracle Forms and Reports 11g
    An xml to be uploaded is as follows :
    <?xml version="1.0" encoding="UTF-8" standalone="no"?>
    <report DTDVersion="9.0.2.0.10" name="Simple">
    <data>
    <userParameter datatype="character" display="no" name="P_JDBCPDS" pluginClass="oracle.reports.plugin.datasource.jdbcpds.JDBCDataSourceFactory"/>
    <dataSource name="SSRS_DB">
    <plugin factoryClass="oracle.reports.plugin.datasource.jdbcpds.JDBCDataSourceFactory" signOnParameter="P_JDBCPDS"><![CDATA[<?xml version="1.0" encoding="UTF-8" standalone="no"?> <jdbcpds DTDVersion="1.0"> <JDBCQuery>Select * from TableName</JDBCQuery> <QueryDefinition>0</QueryDefinition> <driverType>jdbc-odbc</driverType> <connectionClass>oracle.reports.plugin.datasource.jdbcpds.JDBCConnectionHandling</connectionClass> <SignOnParameter>P_JDBCPDS</SignOnParameter> <jdbcElements> <element cloumnScale="0" cloumnSize="50" name="Product name" type="12" typeName="varchar"/> <element cloumnScale="0" cloumnSize="50" name="Region" type="12" typeName="varchar"/> </jdbcElements> </jdbcpds> ]]></plugin>
    <group name="SSRS_DB">
    <dataItem datatype="character" javaDatatype="varChar" name="Product name">
    <dataDescriptor expression="Product name" order="1"/>
    </dataItem>
    <dataItem datatype="character" javaDatatype="varChar" name="Region">
    <dataDescriptor expression="Region" order="2"/>
    </dataItem>
    </group>
    </dataSource>
    </data>
    <layout>
    <section name="header">
    <margin>
    <text name="PH0textboxH0">
    <geometryInfo height="0.30210" width="3.61460" x="2.12500" y="1.43750"/>
    <textSegment>
    <string><![CDATA[This Is Header Section]]></string>
    </textSegment>
    </text>
    </margin>
    </section>
    <section name="main">
    <body>
    <graph name="chart1">
    <graphDefinition><![CDATA[<?xml version="1.0" encoding="UTF-8" standalone="no"?> <rw:graph dataValues="DataValues" groups="Product name" id="chart1" src="No_DataSet"> <Graph customLayout="" seriesEffect="SE_AUTO_GRADIENT" version="11.1.1.0"> <Y1Axis majorTickStepAutomatic="true"/> <Y2Axis majorTickStepAutomatic="true"/> </Graph> </rw:graph> ]]></graphDefinition>
    </graph>
    </body>
    </section>
    </layout>
    <reportPrivate defaultReportType="tabular" templateName="rwbeige" versionFlags2="0"/>
    </report>
    Edited by: 904790 on May 21, 2012 4:00 AM

    Hi
    Try to increase just by 1.. and see what causing the problem
    If any page number - remove and do it again.
    However try below
    ERR REP-1219: 'R_1' has no size -- length or width is zero.

  • Upload an XML file into the Internal table

    Hi Guys,
    I want to know, how to upload an xml file into the Internal table through ABAP programming

    you just wanted to load the xml file into internal table (as a table of binary strings)or load the xml data mapped to itab row columns
    for the first one you can simply use gui_upload
    and for the second one you need to load the xml file using gui_upload and use XLST program to transform into an itab
    Regards
    Raja

  • Uploading an XML file from SAP into third party URL

    Hi,
    I need to Upload an XML file from sap into Third party URL. Can any body tell me the possible ways in SAP to achieve this task. Also explain me the proceedure.
    Thanks in advance.
    -Namdev

    Sorry. If they only said HTTP/HTTPS and didn't say explicitly web service, it means they don't want it.
    One thing I'm not sure is, do you have an URL at the third-party system that you need to contact, or should you provide one at your SAP system that they will contact?
    If it is the first one, to send an HTTP request to a given URL using ABAP, you'll find an example here: [SAP Library: Example Program: Executing an HTTP Request|http://help.sap.com/saphelp_nw70/helpdata/en/1f/93163f9959a808e10000000a114084/frameset.htm]
    Sandra

  • Where to upload images on-line for storyboarding?

    Where to upload images on-line for storyboarding? Or what does it take to produce a storyboard from a Adobe Story Plus Script?
    Any suggestions are welcome ; )

    Hi Richard,
    See if this help article works for you: Adobe Story Help | Storyboards. You can create additional feature requests here: http://adobe.ly/feature_request
    Thanks,
    Kevin

  • How to upload a XML file to Servlet

    Hi,
    I am new to Java, I have to upload an XML file to java/j2ee server. The web server running on the server is "Tomcat 4.1". My new requirement is I have to upload an "Input.XML" file, can you please tell me how to upload an XML file. If any samples appriciated very soon.
    Thanks & Regards,

    Hi!
    On the client side, the client's browser must support form-based upload. Most modern browsers do, but there's no guarantee. For example,
    <FORM ENCTYPE='multipart/form-data'
    method='POST' action='/myservlet'>
    <INPUT TYPE='file' NAME='mptest'>
    <INPUT TYPE='submit' VALUE='upload'>
    </FORM>
    The input type &quot;file&quot; brings up a button for a file select box on the browser together with a text field that takes the file name once selected. The servlet can use the GET method parameters to decide what to do with the upload while the POST body of the request contains the file data to parse.
    When the user clicks the "Upload" button, the client browser locates the local file and sends it using HTTP POST, encoded using the MIME-type multipart/form-data. When it reaches your servlet, your servlet must process the POST data in order to extract the encoded file. You can learn all about this format in RFC 1867.
    Unfortunately, there is no method in the Servlet API to do this. Fortunately, there are a number of libraries available that do. Some of these assume that you will be writing the file to disk; others return the data as an InputStream.
    You can see more things about Servlet on this website [http://pedrofao.blogspot.com|http://pedrofao.blogspot.com].

Maybe you are looking for

  • Best audio format to embed for export to pdf?

    Hello, I was wondering what format for audio file would be best to embed for exporting to pdf. I want to embed the audio file in a button, for playback on mouseover in the exported pdf. Previously, when I had CS3, I actually had to convert my mp3s to

  • Info records vs contracts

    Hi All, We are in the process of defining master data required for procurement.. For direct materials we always have contrcats .. so if we use only contracts without creating any info records what would be the implications?? As contract and info reco

  • Leasing problem with Apple Financial

    I know this isn't the right forum to post this, but I didn't see any "general" discussion forum. We have a leasing problem and the representative we've been working with is no longer returning my calls. I was hoping that someone here knew the contact

  • Pasting $39 to same cell on every page in workbook

    Is there a way I can do this with a few clicks? When I "select all" the sheets on the left, then I click on cell C25 on sheet 1 to paste $39, the sheets become de-selected and that data that I paste in that cell C25 sheet 1 doesn't paste to all the s

  • I have received a pop window '' Microsoft window " - PaperPort has stopped working. A problem caused the program to stop working correctly.

    Eveytime when completed scanned the documents, have received this windown popping since yesterday Microsoft windows A problem caused the program to stop working correctly Windows will close the program and notify you if a solution is available Close