Text file needed for Defor01

hi,,
     i need the text file for (Delfor01)Idoc type.
whether its possible to see, if means say me the steps,
Or Say the links to refer..
Advance thaks.

Hi Bala,
It is possible to generate IDoc in XML format file.
You need to maintain file port for XML (t/code WE21) and ensure the partner profile (t/code WE20) output pointed to XML file port.
In this case, when IDoc generated SAP system will take care all conversion format.
This could be applied for inbound process as well (SAP receives XML file from external system/SAP).
Hope this will help.
Regards,
Ferry Lianto
Please reward points if helpful.

Similar Messages

  • Minimum Files needed for bare bones XP Install?`

    Hello
    I'm new here having recently bought my first MBP. Does anyone know the minimum files needed for a custom (lite) XP Pro install using BootCamp?
    All I want to run is DV-Rack plus maybe 1 or 2 other programs but I don't want to waste space on my 200gb HD. I do't even want to install MS Office because I like iWorks better.
    Thanks
    Allen

    My recommendation is nothing short of 12GB. For your purposes, that you indicated in your post, 12GB should be fine. Please also consider any future uses that you may have for Windows XP. I have seen several times, on this forum, where a user sets the partition too low and then wishes to increase the size and it cannot be done unless Boot Camp and Windows is re-installed from scratch.
    If you can afford the disk space then I would even recommend 32GB and that would allow you to have some space left for future programs if any.
    Axel F.

  • Can synced photos on my iPad be sent back to my Mac? I lost pics in my iPhoto file needed for a presentation.

    Can synced photos on my iPad be sent back to my Mac? I lost pics in my iPhoto file needed for a presentation.

    And of course I forgot about the built in way to send them back to the Mac .... Email them. You can email up to 5 photos at at time.
    Launch the photos app, while looking at the photos in thumbnail view - tap the arrow icon in the upper right corner - tap on up to 5 photos at a time - Tap the Share button in the upper left corner - tap email from the resulting window.

  • Is Stack configuration XML file needed for EHP4 installaton on ERP 6.0 SR2

    Hello ALL,
    Is Stack configuration XML file needed for EHP4 installaton on ERP 6.0 SR2,THE GUIDE SAYS IT IS OPTONAL
    is it?
    Rohit

    The central installation note
    Note 1143022 - Installation of SAP Enhancement Package 4 on SAP ERP 6.0
    says, that the Solution Manager Maintenance Optimizer should be used to generate the stack file to avoid any problems.
    Markus

  • Driver files needed for the following Sony dvd/cd rom drive: "dvd-rom ddu 1615". windows xp

    Driver files needed for the following Sony dvd/cd rom drive:  "dvd-rom  ddu 1615". 
    The dvd-rom drive will not read any type of dvd or cd.
    desktop computer:  Dell Dimension E310 , windows xp, service pack 3.
    This Sony dvd rom was installed (by someone else) and replaced the dvd rom that initially came with the Dell E310.  
    Where can I find driver files for this dvd rom?
    Thanks,
    Denise

    Hello Denise,
    Welcome to the Sony Community.
    All of the Sony internal optical drives are plug & play with Windows so no drivers are required for detection in your PC. If you are having issues getting your drive detected then please try the following:
    • Ensure the Sony drive is set as a secondary master by itself. If you have another disc burner or a zip drive on the same IDE cable, please separate them.
    • Ensure you have the latest Service pack for your Windows operating system and any other updates for your system installed.
    service, storage support email
    • Please remove your secondary IDE channel from the Device Manager.
    If the issue is still not resolved, service may be required. You may contact the Sony Storage support team by e-mail at: [email protected] for further information.
    Thank you for your post.

  • What are the files needed for downloading the MSS -BusinessPackage

    Dear Gurus,
    Any body can give me a suggestion for downloading the MSS -BusinessPackage ,and also what are the files needed for the deployment -its in a urgent basis and reward points welcome!
    regards,
    S.Rajeshkumar

    Hi Rajesh,
    You have to download and deploy the following through SDM (for NW04s/EP7),
    1. Business Package for MSS (contains roles,worksets for your Business Package)
    2. PCUI_GP (WebDynpro Component)
    3. SAP_MSS (WebDynpro Coponent - your MSS application files)
    To use ESS and MSS in Conjunction, you also have to deploy Business Package for Common Parts.
    Backend SAP systems should have SAP HR and SAP FIN configured.
    <a href="http://help.sap.com/saphelp_erp2005/helpdata/en/29/d7844205625551e10000000a1550b0/frameset.htm">http://help.sap.com/saphelp_erp2005/helpdata/en/29/d7844205625551e10000000a1550b0/frameset.htm</a>
    Thanks,
    Vamshi

  • Text file update for account creation

    Hi,
    For an application, the requirement to create an account is -
    A text file resides on a database server. We need to open the file, add users account info in that, save and close. After that, come into IDM and assign the resource in user object.
    My questions are -
    Is there any inbuilt adapter in IDM which can be used for this purpose?
    Or do we need to call a java when all the approvals are done - to do this job and then after executing the method in java, come back to IDM and assign the resource in user object?
    How do we handle if there is any error while creating user object?
    Thanks,
    Santoshanand

    Hi,
    Please respond to my questions. If it is possible to call a java method to update the text file and then assign resource in IDM, we will searve the exact purpose of IDM to make the application fully digital provisioned.
    Thanks,
    Santoshanand

  • Making a text file work for an array

    hello i am trying to get this text file to work with this program but i keep getting the same output. Zero will be for exit. In the text file the first line tells you how elements will be in the array. the second line are the numbers in each array position. the program is suppose to search for 1 in the array of elements. here is an example of the text file
    5
    2 3 1 4 5
    3
    1 9 3
    0
        import java.util.*;
       import java.io.*;
        public class Array{
           public static void main(String[] args){
             try{
                Scanner stdin = new Scanner(System.in);
                  Scanner fin = new Scanner(new File("array.txt"));
                int positionsOfArray = fin.nextInt();
                while (positionsOfArray != 0){
                   int[] elements ={fin.nextInt()};
                   for (int i=0; i<elements.length; i++){
                      int searchingOfUnity = elements;
    if (searchingOfUnity == 1){
    System.out.println("the unity is at position " + searchingOfUnity);
    catch(FileNotFoundException e){}

    I think what you mean to do is:
    import java.util.*;
    import java.io.*;
    public class Array{
        public static void main(String[] args){
            try{
                Scanner fin = new Scanner(new File("array.txt"));
                int positionsOfArray = fin.nextInt();
                while (positionsOfArray != 0){
                    for (int i=0; i<positionsOfArray; i++){
                        int searchingOfUnity = fin.nextInt();
                        if (searchingOfUnity == 1){
                            System.out.println("The unity is at position " + i);
                    positionsOfArray = fin.nextInt();
            catch(FileNotFoundException e){}
    }

  • Jar files need for Custom connector API app

    hi all,
    I am doing an application regarding "Custom connector API", for doing the application I need "jdom,rome-0.6" jar files. kindly send these jar files it will be helpful to me. To do such custom connector API application any plugins must be added to  it, if so please let me know???
    thanks in advance,
    Aravind.

    Hi,
    You can find the jdom.jar file from the plugins/com.sap.km.rfwirad_7.1.5/lib/jdom.jar.
    If you add classlocator to your studio you can find the required jar file for your imported classes very easily. To add the classlocator to your studio go to the below blog
    Using JAR Class Finder
    Regards
    Suresh

  • File Need for Oracle 10g AS from Oracle 10g Jdeveloper

    Dear All,
    I have completed my application for running on Oracle 10g AS.
    What files and the structure that I should maintenace/ keep
    without having all file and structure like what we have in oracle
    10g J developer on Mywork folder?
    Help me ..please...
    regards
    erie

    Erie,
    if you are deploying to Oracle Application Server 10g (9.0.4) or higher, then you don't need to deploy the ADF runtime libraries because they are already there.
    If you create a deployment profile for the application you want to deploy - e.g. a WAR file or EAR file deployment - then you can select the files you want to deploy. The default settings typically include all teh necessary files.
    Frank

  • What are the jar files needed for HTMMLB?

    Hi,
    I have imported a HTMLB comp par file into my NWDS.
    it is showing me some errors like com.sapportals.htmlb cannot be resolved...what may be the prob...do i need to import any jar files regarding this.
    Plz help..
    Thanks,
    Viswes

    Hi,
    Please see this helpful link
    New Reference for Portal APIs
    Ramganesan Karuppaiyah

  • How can I point the premiere to a blank folder and bring only the files needed for the project

    When I start premiere it loads all files from all my photo/video libraries (app 150 gb almost 20,000 photo).  I do not want to sort thru all these files for a project.  How can I point premiere Elements to a blank folder and get the appropriate media for a project as I
    need them.

    As Steve points out, there are really three programs in the Premiere and Photoshop Elements "suite," PrE, PSE and then Organizer, which links between the two, and is an Asset cataloging program. Because of the commonality of the GUI (Graphic User Interface), there can be confusion as to exactly which program one is in.
    If you launch just PrE, and not Organizer (can be launched from within either PrE, or PSE), the only Assets/media that you will see is that, which you have Imported into your Project.
    Also, having the Assets for a Project, in a separate folder, or folder structure, is a great way to set up the Project. This article goes into details on one set up method: http://forums.adobe.com/message/4491450#4491450
    Good luck, and hope that helps,
    Hunt

  • [URGENT] BIOS Update .ROM file needed for G580

    hii all
    i have a lenovo G580 (2689) laptop i5-3210 DOS based model
    Current Bios Version - 62CN39WW
    i want to update my BIOS version as am unable to file it on the drivers/download section for my model.
    if any one using the same Model of the laptop and using a updated version of BIOS then kindly extract/backup the BIOS using Universal BIOS Backup Utility http://forums.mydigitallife.info/threads/9856-Universal-BIOS-Backup-Toolkit
    and kindly upload it in some hosting and provide me the .ROM files created by the BIOS Backup Toolkit
    i need a later version for my present BIOS possibly 62CN41WW or any thing later than 62CN39WW
    any help would be highly appricated....waiting eagerly for somebody's help

    Hello
    Tecra A3 is pretty new unit and it will be interesting to know why you want to make BIOS update. Is there any problem with it?
    Which BIOS update doesnt run, windows or traditional one? If you have no serious problem, dont do it at all.
    The issue with your multidrive is a little bit confused for me. Which software you should install?

  • Netra X4270 .flash file needed for ilom recovery using preboot

    According documentation to recover corrupted ilom the preboot> can be used to load Ilom image file directly via tftp.
    Problem is that updating the SP firmware using the preboot menu requires a .flash file instead of the .pkg file used to update the SP from the ILOM.
    And I cannot find it anywhere on oracle.com or anywhere else.

    Dear User,
    you controlfile and the Systemtablespace (datafile) have different items concerning the SCN. It means, that the status quo of
    Systemtablespace is not the same as the controlfile
    Therefore the system needs a Media Recovery.
    The system tells you, that it needs the specified archivelog File
    (C:\oraclexe\app\oracle\flash_recovery_area\ARCHIVELOG\u_a.ARC) for Media Recovery
    (maybe a few Files more - the system will tell you later).
    Make sure that this File exists and recover like orant575 wrote.
    If you have define the destination of archivelog Files in your init.ora/spfile you can
    use return or auto
    The system will apply the File.
    If the system needs more Files for Recovery it will tell you.
    If you use auto, the system will apply automatically all files it needs (if there exists otherwise you get ORA-).
    If you use return, you have to approve with return (if there exists otherwise you get ORA-)
    or
    use the way orant575 wrote
    When all needed operations applied the item (SCN) of controlfile and the Datafile will be the same, the system will answer
    Media Recovery complete or something like that.
    If the database is not in archivelog, you have to recover a consistent earlier reincarnation of the database.
    best of luck
    Regards

  • Registry Key or File needed for login status

    Good afternoon,
    I'm looking for a registry key or file or even some string inside a file that would determine whether or not I'm logged into Novell(Not workstation only or disconnected), the reason is for a home grown app we have that needs to copy data off a UNC share but if they are not on the network I want it to fail instantly instead of timing out waiting for the network share to respond.
    Thanks in advance,
    Tim

    I found a variable that I believe will work. WINDOWS_LOGIN Thanks anyway. If anybody has other things to look at please post as I'm not 100% on this yet.

Maybe you are looking for

  • Weblogic domain upgrade - 8.1.4 to 10.3 - class not found exception

    HI All, Trying to upgrade one domain from 8.1.4 to 10.3. Please find below the command that i have used and the stacktrace. from WL_HOME/server/bin location volcat01-PA: ./setWLSEnv.sh CLASSPATH=/beafiler/weblogic10g/bea/patch_wlw1030/profiles/defaul

  • Sequence of dependencies in product spec

    Hi, Does the sequence of dependencies that I enter in the product spec dependencies tab matters ? Ex: FromComponent ToComponent A B B C FromComponent ToComponent B C A B Does the upper two configurations are same ? Thanks, Harman

  • Can't hear my keyboard's instruments

    I'm not sure when I lost the ability to hear the built-in instruments from my Yahama keyboard in LE 8 but the problem either happened after upgrading to Leopard or upgrading to LE 8. I'm getting a midi signal from the keyboard into logic (it's regist

  • Year Specific Batch Numbers in SAP

    Hi All Can we have year specific batch numbers in SAP. I would like to define internal batch numbers year wise. Every year this numbers have to be reset. Pls help in finding a solution.

  • Adobe Updater freezes on Update 13.0.1

    I am currently in the process of trying to update my Adobe Illustrator CS3. The Adobe Updater application says it is "Installing Update: Adobe Illustrator CS3 13.0.1 Update" but the bar stops moving at somewhere around 90%. No matter how long I wait