Excel to DataXML conversion using Conversion Agent

Hi!
Would anybody know where I can find a tutorial or  a sample on converting excel files into a structured data XML? Thanks!
Regards,
Rommel A. Mendoza
Technology Consultant I
Hewlett-Packard AP, Ltd.

Hi,
Plese go through the below links for the details,
Read Excel instead of XML through FileAdapter
/people/sap.user72/blog/2005/07/04/read-excel-instead-of-xml-through-fileadapter
SAP Network Blog: XI: Generating Excel files without the Java nor the Conversion agent not possible?
/people/michal.krawczyk2/blog/2005/12/10/xi-generating-excel-files-without-the-java-nor-the-conversion-agent-not-possible
Thanks
Swarup

Similar Messages

  • Problem in 2 level Unit conversion using ref IO

    Hi All,
    I am doing UoM conversion using conversion types - dynamic conversion using reference info object.
    Now in the UoM DSO, which stores the conversion factors, I have relation between 2 units say PC (pieces, dimensionless) and KG (kilogram, dimension = MASS) for some material.
    For e.g I have  1 Pc of material A = 2 KG.
    So if the existing qty key figure has unit PC in IC and the reporting unit given by me is KG, successful conversion takes place using the UoM DSO.
    E.g. 4 PC of Mat A is displayed as 8 KGs.
    Also if existing unit in IC is KG, and RU is 'g' conversion is taking place usion tghe system CUoM table T006.
    E.g. 2 KG is displayed as 2000 g.
    I selected the third option when creating Conv Type, i.e. first look in ref IO then T006. Hence the above results.
    But if the existing qty key figure has unit PC and if the reporting unit given is 'g' or some other MASS unit, conversion is not taking place. Ideally it should first look into the DSO table to convert 'PC' to 'KG', then look the T006 table to convert 'KG' to 'g', but this is not happening.
    E.g. 4 PC of mat A isn't shown as 8000 g. It is still shoeing as 4 PC.

    Hi Shai,
    It sometimes show without all the screens, I guess u should refresh.
    Anyway,
    Try running the query thorugh RSRT with Debug, with a breakpoint on currency/quantity conversion. I would suggest to restrict the test query to show only one record that should be converted so the debugging would be easier.
    Anyway, Have fun.

  • Building PDF file using Conversion Agent

    Hello Experts,
    Is it possible to build a PDF from XML using Conversion Agent?
    Best Regards,
    Artsiom Anichenka

    Hi,
    This might help you
    /people/paul.medaille/blog/2005/11/17/more-on-the-sap-conversion-agent-by-itemfield
    /people/alexander.bundschuh/blog/2006/03/14/integrate-sap-conversion-agent-by-itemfield-with-sap-xi
    /people/paul.medaille/blog/2005/11/18/conversion-agent-a-free-lunch
    /people/william.li/blog/2006/03/17/how-to-get-started-using-conversion-agent-from-itemfield
    https://websmp102.sap-ag.de/~sapdownload/011000358700001090982006E/ConvAgentDocSP16.zip
    https://websmp102.sap-ag.de/~sapdownload/011000358700004921152005E/ConversionAgent.pdf
    Regards
    Agasthuri Doss

  • Excel to PDF conversion using OSB

    We have a requirement to convert excel files to be converted to PDFs.
    Wondering how to do this in OSB.
    I can read the file from the source using the file transport.What must be next?
    Any ideas please.

    Thanks for the links.
    I have the stand alone Java routine which does this conversion using APIs.
    The challenge is what do I pass to the Java callout as input - The API methods accepts a file location as input or the java primitive byte[].
    I pass $body/ctx:binary-content but seems the API method errors out.

  • .xml file into .txt file using Conversion Agent

    Hi All,
    I am working on a sceanrio in which the input to the XI is <b>abc.xml</b> file and the output is <b>sdf.txt</b> using <b>Conversion Agent</b>. The XML data should change in txt format.
    Please tell me the steps involved on XI side as i have configured the Conversion agent and deployed in XI server.
    Thanks
    Regards,
    Vikas

    Hi..
    Go through this Blog..
    /people/william.li/blog/2006/03/17/how-to-get-started-using-conversion-agent-from-itemfield
    The module name must be
    localejbs/sap.com/com.sap.nw.cm.xi/CMTransformBean.
    The parameter name must be TransformationName
    Might Help you...
    Regards,
    Colin.

  • Where we use Conversions? like Fixed Value and Value mapping? and use of th

    where we use Conversions? like Fixed Value and Value mapping?
    and what is the use of that....

    Hi
    Have a Look at this
    /people/community.user/blog/2007/01/08/valuemapping-using-the-graphical-mapping-tool
    Value mapping is used to map different representations of an object to each other.
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/9202d890-0201-0010-1588-adb5e89a6638
    You can do value mapping both in IR and ID
    IR: Message Mapping
    http://help.sap.com/saphelp_nw04/helpdata/en/43/c4cdfc334824478090739c04c4a249/content.htm
    /people/sreekanth.babu2/blog/2005/01/05/design-time-value-mappings-in-xslt
    ID: Tools --> Value Mapping
    http://help.sap.com/saphelp_nw04/helpdata/en/13/ba20dd7beb14438bc7b04b5b6ca300/content.htm
    Value mapping replication: For uploading data from tables, excel sheet etc. into XI
    http://help.sap.com/saphelp_nw04/helpdata/en/2a/9d2891cc976549a9ad9f81e9b8db25/content.htm
    Value mapping
    /people/siva.maranani/blog/2005/08/23/lookup146s-in-xi-made-simpler
    /people/sravya.talanki2/blog/2005/12/21/use-this-crazy-piece-for-any-rfc-mapping-lookups
    /people/sap.user72/blog/2005/12/06/optimizing-lookups-in-xi
    /people/alessandro.guarneri/blog/2006/03/27/sap-xi-lookup-api-the-killer
    Thanks

  • Implicit and explicit Type conversion using Type object in heap

    Hi,
    I am surprised how Implicit and explicit Type conversion works using Type object in heap. for example when implicit type conversion occur what pointer it returns to object and similarly with explicit type conversion.

    Hello,
    >> I am surprised how Implicit and explicit Type conversion works using Type object in heap.
    For Implicit conversions: Typical examples are conversions from smaller to larger integral types, and conversions from derived classes to base classes. For the first one, the reference would be different which means it would return a different pointer to
    a new object. For the reference type, it actually points to the same memory location, you could use the object.ReferenceEquals() to check it.
    For Explicit conversions (casts):Typical examples include numeric conversion to a type that has less precision or a smaller range, and conversion of a base-class instance to a derived class. For first one, it would perform the same with implicit conversions.
    While for the conversion of conversion of a base-class instance to a derived class, actually, there's no built-in way to do this conversion.
    Regards.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Payment_method_lookup_code in supplier conversion using api

    The conversion is from 11i to R12. I am working on supplier conversion using API. The AP_VENDOR_PUB_PKG create_vendor or create_vendor_site does not have Payment_method_lookup_code to update into apps. How can i update the Payment_method_lookup_code for a supplier?
    Any help will be appreciated.
    Bhargavi

    You could use AP_VENDOR_PUB_PKG.create_vendor_Site and pass the vendor_site_rec fields along with the following addition.
    p_vendor_site_rec.ext_payee_rec.default_pmt_method := 'EFT';
    This would create the Default Payment Method in IBY_EXTERNAL_PAYEES_ALL.
    Hope this helps.
    -Geetha K

  • How can I convert .pdf file to .doc using the free adobe reader app? when I try to convert the .pdf file it asks me to sign in. when I click on "sign in", I am taken to a service subscription page. So, no free conversions using free adobe reader app?

    how can I convert .pdf file to .doc using the free adobe reader app? when I try to convert the .pdf file it asks me to sign in. when I click on "sign in", I am taken to a service subscription page. So, no free conversions using free adobe reader app?

    As has been mentioned Adobe Reader cannot export PDF page content. Nor can it create PDF or manipulate PDF page content.
    What you can do is use one of Adobe's online subscription services. Two provide for PDF  to Word export.
    There's ExportPDF and PDF Pack.
    Be well...

  • Business Partner Conversion using LSMW IDOC

    Hi Experts,
           I need a serious suggestion.
    I am planning to do my Business Partner master data conversions using LSMW method IDOC CRMXIF_PARTNER_SAVE_M03. Is this is right choice or best practice?
    During Coversions how do we do error handling or reporting. For example i have uploaded 10k BP's. if there 1k errors how do you report. I think it is tough to check each and every idoc status and message.
    Thanks guys.

    Hi Experts,
           I need a serious suggestion.
    I am planning to do my Business Partner master data conversions using LSMW method IDOC CRMXIF_PARTNER_SAVE_M03. Is this is right choice or best practice?
    During Coversions how do we do error handling or reporting. For example i have uploaded 10k BP's. if there 1k errors how do you report. I think it is tough to check each and every idoc status and message.
    Thanks guys.

  • Where we use Conversions like Fixed Value and Value mapping?

    where we use Conversions? like Fixed Value and Value mapping?

    Mostly say when u have a scenario like converting a value in the source to a another in
    target. Say in source it might me KM but in target u might need Kilometers and u hav multiple entries like this.
    Ref:
    http://help.sap.com/saphelp_nw04/helpdata/en/13/ba20dd7beb14438bc7b04b5b6ca300/frameset.htm
    https://www.sdn.sap.com/irj/sdn/xi-elearning

  • How to delimit leading zero in vendor number in OO ABAP ALV without using conversion routine

    Hi,
    How to delimit leading zero in OO ABAP ALV without using conversion routine, because I have many fields like vendor, customer, material number etc..
    How to address this leading zero.
    I appreciate your quick response.
    Regards,
    Nalini S.

    Hi Nalini,
    Delimiting leading zeros in fields has to be done via conversion routines, as suggested by Vadamalai you need to pass on the conversion routine name in you field catalog variable.
    Now as to which object oriented approach are you using to have your table contents display in ALV as it matters  -
    Using FACTORY method of CL_SALV_TABLE class, or
    Using SET_TABLE_FOR_FIRST_DISPLAY method of CL_GUI_ALV_GRID class.
    Using FACTORY method of CL_SALV_TABLE will do your own work, no need to apply any conversion routines or set long/medium/short text for columns as we do in field catalogs!
    Cheers,
    Varun

  • Use Conversion Routine in Infopackage

    Hello friends,
    I would like to know whats the purpose and function of 'Use Conversion Routine' in the Infopackage  under 'Data Selection' tab. I wasnt able to get any data as long as that box was checked.As soon as I unchecked the box, i was able to get data.Please explain in detail.
    Points will be assigned.
    Thanks.

    Hi,
    The function of "Use Conversion Routine" is to convert the data that user enter in the field (is called external format) into internal format (database format).
    example Alpha Conversion (general used): in the field ABC (assume this char is 8 characters long) you enter value '1234' and you check that box, this will look up into your data source with value ABC = '00001234' and match then data will be extracted, but if <u>in your data source</u> the value of field ABC is '1234'  the data won't be extracted.
    in your case, please check in your data source at field you selected whether the data format match or not with value that you have entered(with condition checked or unchecked).
    I hope it helps
    Cheers
    IR

  • Non-Rac to Rac conversion using rconfig

    hi all,
    how to check whether Non-Rac to Rac conversion using rconfig has been completed sucessfully?
    thanks.
    Edited by: varun4dba on Nov 10, 2010 1:02 PM

    select parallel
    from V$instance;
    -- run it on your any RAC instance. if YES then you have converted to RAC
    http://oracleinstance.blogspot.com/2009/12/convert-single-instance-to-rac-instance.html
    Check the above link also.
    Regards
    Asif Kabir

  • Use Conversion Routine

    Hi,
    I use SAP netweaver2004s, when I create an infopackage the Use conversion routines is in grey and I can select it.
    Do you have any idea why?
    Thanks,
    Eric

    Hi,
    My problem is that I don't have the choice to check it or not, this option is in grey.
    Thanks,
    Eric

Maybe you are looking for

  • Can I and how do I install an app on my pc so I can use the app on my pic/iPhone/iPad?  Thank you

    Can I and how do i put an app on my pC . I want to use pc/iPad/iPhon for the same app

  • Mail receiver adapter: attachment adds 3 empy lines

    Hi, i use the mail receiver adapter with "mail package" for setting dynamic attachment names. The attachment always gets 3 "cr/lf" lines at the end? Why and how can i stop that? System: xi3.0sp15build0 Message was edited by:         Bernhard Josef Ne

  • Apple TV 2 - HDMI CEC Signal?

    Does anybody know whether Apple TV 2 sends a HDMI CEC Signal? I have a Neet 3-port auto HDMI switcher so that several HDMI sources can be used on one TV HDMI port. It switches to a device when you turn a device on. It uses the HDMI CEC signal. It is

  • [SOLVED] usb archlinux boot goes black hanging

    Hi I have a thinkpad Edge e330 3354. Currently i have grub2 with ubuntu and win8 dual booting. I want to replace ubuntu with arch. I found out i had UEFI so i followed the instructions to install UEFI version of usb installer. However whenever i boot

  • Numbers range overlap

    Range overlapping the problem I'd like to solve : given a table ranges (range_id#,external_key, from, to) I need to detect overlapping grouping by external key, ie: range_id external_key from to ------------------------+---- 1 A 1 5      2 A 8 10