Import of existing Contract in Sourcing 7.0

Hi All,
I am trying to upload existing contract document in the Sourcing 7.0. I have utilized the workbook provided by SAP in the reference guide for contract import.
There are 3 section in the workbook. They are:- contracts, agreements, contract_lineitems.
I am trying to upload contracts one first. I have filled the column values which are required. At the time of import below error is coming for Contact column:-
Sun Aug 21 10:05:29 GMT+05:30 2011          Importing a CSV file.
Sun Aug 21 10:05:29 GMT+05:30 2011          ..Inserting CSV data from file rtimport_34760.csv
Sun Aug 21 10:06:07 GMT+05:30 2011          ......Record 1. Warning: Warning: the item UNIQUE_DOC_NAME:VENCON-0000023 referenced in column CONTACT could not be found
Sun Aug 21 10:06:08 GMT+05:30 2011          ....Import failed for object number 1. This field is required and must have a valid value. [CONTACT].
Sun Aug 21 10:06:08 GMT+05:30 2011          ..Complete. 0 ok. 1 failed.
Sun Aug 21 10:06:08 GMT+05:30 2011          ..Importing a CSV file. 0 ok. 1 failed. File rtimport_34760.csv
Sun Aug 21 10:06:08 GMT+05:30 2011          Error during action failed to import data, 1 error(s).
Please find below description present in the standard excel for column Contact:-
CONTACT     Reference     TRUE     References the EXTERNAL_ID field of a Contact
I have given Contact column values as External ID (VENCON-0000013 for Supplier ID-11001). I have queried All Contacts query defination and masterdata.Contact classu2019s FCI_MAS_CONTACT schema to get the external ID for supplier ID-11001.
Please share your view.
Thanks!!!
Deepak

Hi Mudit,
Thanks a lot for reply.
I have done the same but getting below error:-
Mon Aug 22 14:46:22 GMT+05:30 2011          Importing a CSV file.
Mon Aug 22 14:46:22 GMT+05:30 2011          ..Inserting CSV data from file rtimport_29769.csv
Mon Aug 22 14:46:48 GMT+05:30 2011          ......Record 1. Warning: Warning: the item sc0001 referenced in column CONTACT could not be found
Mon Aug 22 14:46:48 GMT+05:30 2011          ....Import failed for object number 1. This field is required and must have a valid value. [CONTACT].
Mon Aug 22 14:46:48 GMT+05:30 2011          ..Complete. 0 ok. 1 failed.
Mon Aug 22 14:46:48 GMT+05:30 2011          ..Importing a CSV file. 0 ok. 1 failed. File rtimport_29769.csv
Mon Aug 22 14:46:48 GMT+05:30 2011          Error during action failed to import data, 1 error(s).
If I am understood correct, you have asked to use User ID of Supplier contact which i have taken from theSupplier Contact-> Account management ->Used ID field under directory inofrmation.
I have dounloaded Masteragreement template and tried load the workbook with the data, same error is coming.
Thanks,
Deepak!!!
Edited by: Deepak Arora on Aug 22, 2011 11:28 AM

Similar Messages

  • Importing pre-existing source tree... how?

    I am working with a group on some projects making heavy use of struts, ant, jUnit, xdoclet, and some other stuff. They have avoided tying their project to any one IDE.
    I want to use JDeveloper, which I'm fairly new to, but when I try to import pre-existing source jdev rearranges everything in the project navigation window to suit its preferred source tree structure.
    This doesn't work at all with this project.
    Is there any way I can get jDeveloper to respect/display the pre-existing source tree structure? It looks a little something like this...
    /web
    /src
    /config
    /test
    /build
    /........etc....
    We already have very complex ant scripts to handle everything, and it's hard to logically hunt down some of the files needed in a given situation without the tree.

    I got my 'Applet' working but now can't get an 'Application' to execute in netBeans...
    APPLET FIX:
    - Execute steps 1 & 2 as sabre posted in first respone to my original post.
    - Right click the source file and click Properties
    - Under Execution change... Executer External Execution to Applet Execution
    - Now right click the source file and click Execute.
    - netBeans will create the HTML file for you and it will popup and execute the applet.
    APPLICATION PROBLEM:
    - Error I get & source below
    - What is it that netBeans wants or doesn't like about this java application ??
    Thanks for the continuing help - I'm still missing something simple, I know. - Will
    netBeans ERROR MESSAGE:
    javac: invalid flag: C:\Documents and Settings\Will\MyJava\Project_1_Src\Project_1_Pkg\HelloWorldApp.Java
    Usage: javac <options> <source files>
    where possible options include:
    -g Generate all debugging info
    -g:none Generate no debugging info
    -g:{lines,vars,source} Generate only some debugging info
    -nowarn Generate no warnings
    -verbose Output messages about what the compiler is doing
    -deprecation Output source locations where deprecated APIs are used
    -classpath <path> Specify where to find user class files
    -sourcepath <path> Specify where to find input source files
    -bootclasspath <path> Override location of bootstrap class files
    -extdirs <dirs> Override location of installed extensions
    -d <directory> Specify where to place generated class files
    -encoding <encoding> Specify character encoding used by source files
    -source <release> Provide source compatibility with specified release
    -target <release> Generate class files for specific VM version
    -help Print a synopsis of standard options
    Errors compiling HelloWorldApp.
    SOURCE CODE:
    // Here is the Application Source...
    /*** From the Java Help Tutorial
    public class HelloWorldApp {
    public static void main(String[] args) {
    // Display "Hello World!"
    System.out.println("Hello World!");
    // End Application source

  • Need Help in editing an existing Contract

    Hi,
    I am trying to edit an existing contract in R/3. I am using the FM 'BAPICUSTOMERCONTRACT_CHANGE' but not able to achieve the desired result.
    Actually, there is a contract existing with number say 1234, having 4 Items with Item numbers say 100,101,102,103. Now i am trying to update the item details of 100.
    Initial values present for item 100 :- Material - H51-YY001, Quantity = 2
    Now i am trying to update the Material to H49-XX014 and quantity to 5
    d_VBELN = '50000172'.
    contract_header_inx-updateflag = 'U'.
    CLEAR contract_items_in.
    contract_items_in-itm_number = '100'.
    contract_items_in-material = 'H51-YY019'.
    contract_items_in-target_qty = '2'.
    APPEND contract_items_in.
    contract_items_inx-updateflag = 'U'.
    contract_items_inx-itm_number = '100'.
    contract_items_inx-material = 'X'.
    contract_items_inx-target_qty = 'X'.
    APPEND contract_items_inx.
    CALL FUNCTION 'BAPI_CUSTOMERCONTRACT_CHANGE'
    EXPORTING
    SALESDOCUMENT = D_VBELN
    contract_header_in = contract_header_in
    contract_header_inx = contract_header_inx
    TABLES
    return = return
    contract_item_in = contract_items_in
    contract_item_inx = contract_items_inx.
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.
    Can some one tell me how to achieve this.
    All helpful answers will b rewarded.
    Regards,
    Udaya

    Hi,
    Are you getting any error message? if yes then paste the message you are getting.
    Check the contents of RETURN internal table of BAPI_CUSTOMERCONTRACT_CHANGE by putting the break-point weather it showing error message or sueecess message.
    And are you giving the following for Bapi commit.
        CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
          EXPORTING
            wait   = 'X'
          IMPORTING
            return = return2.                        
    Reward points if helpful answer.
    Ashvender

  • Cannot import other existing imovie projects

    I believe iMovie 5 is suppose to be able to import other existing iMovie projects. When I attempt this through the import function on another iMovie 5 project (in this case a single clip smaller than 600mb) it say "Error:Quicktime cannot parse clip" it says a little more than this actually but this is the part that seems to have any relevance.
    It does this with bigger or smaller clips. I am running Quicktime 7 and have all the updates in place
    .Anyone have any ideas.
    G4dualproc   Mac OS X (10.3.9)  

    If I read you correctly, you tried to import another iMovie HD project directly into a second project. You selected a project icon to import, correct?
    iMovie HD can't do that, although the programmers forgot to tell iMovie HD. When we try, we get a "cannot parse" error. (The import dialog shouldn't allow us to select an iMovie HD project to import. It's a bug.)
    There are other ways to do the same thing:
    1) Do a Save As to copy Project A to a new Project B. That duplicates the entire project.
    2) If you have an existing project you want to import clips to, you can Copy and Paste the clips from Project A to Project B. With Project A running, select all the clips, Copy, open Project B, Paste. Repeat for the audio clips.
    Note that when Copying and Pasting try to copy all the clips you want together. If you don't, then any clips you copy and paste separately which share the same source file will cause iMovie HD to deliver TWO copies of the source file to Project B. That can hugely increase the size of Project B.
    That occurs because Copy/Paste preserves the non-destructive editing of the clips. The Pasted clips behave just like the clips in Project A. A split clip can be restored to its original length, for example.
    Karl

  • Contract Importer - Uploading Multiple Contract Documents for the same MA

    Is it possible to upload multiple contract documents against the same master agreement when using the contract importer tool.
    If so, what is the format for specifying the various filenames that represent these documents.
    Thanks,
    Tanmaya

    Hi,
    Yes this is feasible.
    What we had done is uplaoded the MA first and then loaded a separate csv for Attachments. This can then be placed on the desired location and picked up via the attachment importer mapping file. Just FYI, this can be configured in the System properties to import the file into E-Sourcing.
    Hope this is helpful,
    Vikram

  • How do I import an existing finalised imovie into a new project either in part or full. The movie I want to import is filed under "movies" but greyed out when I go through the procedure in imovie 11

    How do I import an existing finalised movie clip into  a new developing project ? I go through the imovie 11 procedure for importing and the list of clips (finalised and un-finalised) appears, but always "greyed out" which makes it impossible to create anything. I have tried placing it on the desk top and dragging but this doesn't work either.

    AppleMan  Thanks very much for the information, however I could't make it work. I followed your instructions to the letter, in fact I tried every which-way. I created a dedicated file into which I copied and pasted the project from "package contents"  but it was still greyed out when I went to retrieve it. I also found that the file size was reduced to only a few Kb.  Any further step-by-step instructions would be appreciated as I am obviously doing something wrong.  Babowa  It appears that in imovie everything has to be "finalised" before it can be used or shared elsewhere in the same way as a disk has to be to be played elsewhere. Funnily enough an MOV file I converted to Mp4 was not greyed out and I was able to import it.... an exercise I am not keen on because of resolution loss during conversion

  • Error while importing an existing project into workspace

    hi,
    I am trying to import an existing project into workspace but getting an error 'vfamilychange' doest not have a .project file .But while checking into the folder structure of project vfamilychange' shows the .project file is already there.
    Please do suggest.

    Hi,
    To correctly use the project in a new NWDS. Please use the following method (for Windows XP only):
    1.) Navigate to the projects folder. This will be in the "DC" or "Local Development" folders in your "Documents and Settings" folder.
    2.) Inside the project folder you will find an "_comp" folder.
    3.) Zip this entire folder with WinZIP or WinRAR.
    4.) Finally goto the new PC / Location of export. Unzip this archive into a new Folder.
    5.) Open NWDS. Goto File->Import->Existing Project into Workspace.
    6.) Select your folder (where you extracted the archive).
    Hope that helps.
    Thanks.
    p256960

  • Is it possible to import an existing Struts web app WAR file into Workshop?

    I browse the documents and tried using the workshop with no avail trying to import
    an existing Struts WAR file. If someone know of a way doing this, I would really
    appreciate a pointer or so. If this is not possible, please let me know so I will
    not end up pulling out all my hair....
    TIA

    Export the OMF from an audio app like ProTools or Logic as a stereo pair AIFF, then use that with your video. Chop it up if you need to checkerboard.
    Of course this will only work if the audio is very simple - overlapping audio will mess you up. If you can figure out the audio app part, you can split up your OMF into separate tracks.
    But then if you can't get it into an audio app, you're a bit hosed.

  • Automated PO - Existing Contract

    Dear All,
    We are planning to go for Automatic PO creation, if there is an Outline Agreement through ME59 background processing.
    BUt the issue is All existing Contract in system, doesnt has release strategy, and we are parallely going for PO/Contract release strategy live together.
    So if we go live, then when we run ME59, those contract which doesnt have release strategy is not picked? how to handle this situation
    Anyone have faced the same situation, please advice!
    Regards
    RS
    Edited by: RS on May 26, 2010 7:21 AM

    Dear Jurgen,
    Thanks for your reply!
    Now we are going to implement the Release strategy process for PO & Contract. Also we are going to implement Automatic PO creation - both will go-live on same date.
    Untill date - there are lot of contracts lies in the system - which is not subjected to release (becausae release strategy not implemented).
    If we go live with the above project and i dont know whether system will pick the contract which is not subjected to release for creation of Automatic Purchase orders.
    Do OLD contracts are considered even though they are not released - once after golive of this release strategy (PO & Contract) & Auto creation PO project?
    Regards
    RS

  • An intelligent way to import already existing directory structure to Aperture

    Hello,
    is there an intelligent way to import already existing big directory structure of photographs (over 2TB) archive into Aperture?
    I have my catalogue on a disk created in a way:
    date - short shot description (i.e. “2011-02-14 Name Surname (portrait)”)
              Originals
              Converted
              PSD
              Final
    I would like, when importing “date - short description”, it to become an Aperture Project with the same name and subfolders Originals, Converted, PSD and Final to become Aperture Albums or Folders in that Project.
    The only way I found is to create a Project and Albums in that project manually and then import all the pictures from the corresponding folders, one-by-one,  to Aperture’s Albums. I use references only to preserve the current archive structure on a disk as well.
    thank you for your time.

    You can try and experiment with the various options in File->Import Folders as Projects, specifically the option Import Folders as  to see if you get what you are looking for but I doubt  you will get exactly what you are looking for.
    One way to achieve your goal would be to import the projects and then once that is done create the other entities (either folders or Albums) once and then paste them into each project.
    The only way to truly automate this would be to write an Applescript and unless this is an ongoing requirement by the time you developed the script you could have just created the structure and pasted into the projects.

  • My computer crashed and I am trying to import an existing book

    my hard drive crashed and i have everything saved, but now i want to import an existing book that i have done into a new install of lightoom.

    I  have an ibm  think pad with windows 7. my hare  drive crashed and i have replaced it and re-loaded all the software and have ir running beautifully.  I  have re-installed  all the pix that were in the program and would like to put a book that i had done back in without having to re-do it.  I should  be able to take one of the lightroom config files and do that, my prolbem is that i don't know which one and how.  Thanks for any help
    Sandy Fuller

  • Time series does not exist, Error in Source System

    Hi friends,
    I am loading the data from APO system and i am getting the below error after scheduling the info Packs.. can you analyze and let me know your suggestions
    Error Message : Time series does not exist,
                             Error in Source System
    I have pasted the ststus message below
    Diagnosis
    An error occurred in the source system.
    System Response
    Caller 09 contains an error message.
    Further analysis:
    The error occurred in Extractor .
    Refer to the error message.
    Procedure
    How you remove the error depends on the error message.
    Note
    If the source system is a Client Workstation, then it is possible that the file that you wanted to load was being edited at the time of the data request. Make sure that the file is in the specified directory, that it is not being processed at the moment, and restart the request.
    Thanks,
    YJ

    Hi,
    You better search for the notes with the message ""Time series does not exist". You will get nearly 18 notes. Go through each note and see the relevence to your problem and do the needful as it is mentioned in the note .
    Few notes are:
    528028,542946,367951,391403,362386.
    With rgds,
    Anil Kumar Sharma .P

  • Problem on PC: During import, I can locate the sources folder however the photo do not display. Was working fine.

    Problem on PC: During import, I can locate the sources folder however the photo do not display. Was working fine. All file types, Lightroom is no longer recognising the images to import, The panel that usually displays them remains empty.  Try using backup versions, removing software that could conflict , still no joy, has anyone had this problem?

    Did you follow this procedure?
    Our iTunes guru Terence Devlin advises the following:
    1. Quit iTunes
    2. Drag the iTunes folder from your internal hd - located in ~/Music folder - to your external hd. DO NOT delete the original one from your internal hd... yet!
    3. When the transfer is complete, press and hold the Option(alt) key and fire up iTunes.
    4. A "Choose iTunes Library" window will come up. Click on the "Choose Library" button.
    5. Navigate to where the iTunes folder is located in the external hd.
    6. Within the iTunes folder, select the iTunes Library file and click Choose...
    That's it. iTunes will now display all your playlists, songs, movies, podcasts etc. At this point, should you wish, you can delete the iTunes folder from the internal hd to free up space.
    More info:
    http://support.apple.com/kb/HT1751
    Or if you prefer a more complicated explanation:
    http://www.ilounge.com/index.php/articles/comments/moving-your-itunes-library-to -a-new-hard-drive

  • I am looking for assistence how to import an existing website in Dreamweaver CS4

    I need help to import an existing website in Dreamweaver CS4

    Only have one Dreamweaver CS4 installed, trying to get my DW CS4 disk I
    bought installed on computer (done)  I only need to figure out  how to link
    my website to the DW CS4 on my second computer.
    L. Francesca Ferrari, L.Ac., DTCM, DMQ (China)
    Ferrari Center of Chinese Medicine
    222 Forest Avenue
    Pacific Grove, CA 93950
    831.818.3993
    www.francescaferrari.com
    L. Francesca Ferrari, L.Ac., DMQ (China)
    Department Chair Medical Qigong Science
    Five Branches University
    This message, together with any attachments, is intended only for the use of
    the individual or entity to which it is addressed and may contain
    information that is confidential and prohibited from disclosure. If you are
    not the intended recipient, you are hereby notified that any dissemination,
    or copying of this message, or any attachment, is strictly prohibited. If
    you have received this message in error, please notify the original sender
    immediately by telephone or by return e-mail and delete this message, along
    with any attachments, from your computer.
    From: "Nancy O." <[email protected]>
    Reply-To: <[email protected]>
    Date: Sat, 04 Sep 2010 18:34:03 -0600
    To: Francesca Ferrari <[email protected]>
    Subject: i am looking for assistence how to import an existing
    website in Dreamweaver CS4
    >> I do not know where the site files are. They are on my initial Mac laptop
    >> computer, and I use Hostway as my server.
    Do you mean you lost your local copy of your site files from on an old
    computer?
    Log-in to your Remote Server and GET the site files using DW or your favorite
    FTP application (Cute, Filezilla, WS_ftp, etc....)
    >> But I was distinctly told my the call yesterday with Adobe that I must have
    >> CS5 to get my website, www.francescaferrari.com with Dreamweaver on my
    >> second computer.
    Which version of DW did you have before?
    How many installations of DW did you have? You can have up to 2 at a time.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb
    >

  • How to import the existing project in the CVS to the weblogic workshop??

    Hi,
    I have a project in the CVS and I want to work with that project in the weblogic8.1 workshop.
    Can anyone help me in importing the existing CVS project/application into the weblogic workshop so that I can check-in, check-out and debug the application.
    Thanks in advance
    Raj B.

    Hi,
        If you want to rename Development Component (DC) project, here is the procedure..
    How to rename local Development Component Projects in Netweaver Developer Studio
    Regards,
    Uday.

Maybe you are looking for