DTW Error ( Pls Urgent )

Hi
In Dtw while uploading the data's in second step i am getting error like " source file muct be provided ".
For business Partners i am doing up load :
For this Some 8 Template is there as follows,
  Bp account receivable
  Bp adress
  Bp bank accounts
  Bp paynebtdates
Bp payment methods
Bp withholdint tax
business partners
contact employees.
Whether it is the mandatory to fill all the templates and to upload, also in templates it is mandatory to fill the all the lines ????
I Tried:
i tried in tab,comma,semmicolon also.
pls help............
Edited by: Philip Eller on Jun 26, 2008 11:07 AM
Edited by: Rui Pereira on Aug 6, 2008 4:28 PM

HI
Any option is there to check wat is the mandatory field to fill in the respective templates.
Today i uploaded some employee master data's and business partners in this some errors r coming which follows :
When i uplaoded some bulk master data's only the card code for (BP's) and First d Last Name for (Employee master data's) is uploading.
When i am trying to upload some more data's along with that then error is coming.Like i am trying to give address and contact person for (BP's) in Contact employee's template and address templates. PROBLEM is comming.
Same thing for (Employee master data's)  if i am uploading the emplopyee roles with that error is happening.
So pls can u tell me wat to do...... .
Thanks and Regards
Giridharan V
Edited by: Rui Pereira on Jul 8, 2008 4:39 PM

Similar Messages

  • URGENT : Error PLS-00404 on wrapping

    Hi,
    I am trying to wrap a PL/SQL procedure included a UPDATE stmt.
    with a cursor for update nowait:
    create or replace PROCEDURE XXXXX IS
      x varchar2(200);
      cursor c is select * from XAD$_MODULE for update nowait;
    BEGIN
      update XAD$_MODULE set modul='XXX' where current of c;
    END;
    /It works fine but I am getting the error :
    PLS-00404: Cursor C must declared with
    UPDATE FOR before used with CURRENT OF ..
    Please help me,
    Regards,
    Friedhold

    I cannot reproduce your error with Oracle 10.2.0.1.0:
    SQL>
    SQL> select * from v$version;
    BANNER                                                                         
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Prod               
    PL/SQL Release 10.2.0.1.0 - Production                                         
    CORE     10.2.0.1.0     Production                                                     
    TNS for 32-bit Windows: Version 10.2.0.1.0 - Production                        
    NLSRTL Version 10.2.0.1.0 - Production                                         
    SQL>
    SQL> drop table xm;
    Table dropped.
    SQL> create table xm (x int, m varchar2(200));
    Table created.
    SQL> insert into xm values (1, '0');
    1 row created.
    SQL> commit;
    Commit complete.
    SQL>
    SQL> create or replace procedure ucc IS
      2    x varchar2(200);
      3    cursor c is select * from xm for update nowait;
      4    rwm xm%rowtype;
      5  BEGIN
      6    open c;
      7    fetch c into rwm;
      8    update xm set m='XXX' where current of c;
      9    close c;
    10    commit;
    11  END;
    12  /
    Procedure created.
    SQL> show errors
    No errors.
    SQL>
    SQL> exec ucc;
    PL/SQL procedure successfully completed.
    SQL>
    SQL> select * from xm;
             X                                                                     
    M                                                                              
             1                                                                     
    XXX                                                                            
    SQL>
    SQL> exitWhich is your Oracle version ?
    Can set up a small SQL script to reproduce your problem ?

  • DTW Error A/R Credit Memos

    Hello guys!
    I got a problem while trying to upload A/R Credit Memos through Data Transfer Workbench. It shows an error message inthe DTW Error Log: "Cannot add invoice with zero total and deferred tax http://ORIN.DocTotalApplication-Defined or Object-Defined erroroCreditNotes".
    I am using the Document, Document_Lines and Batches files to upload and there is no record with zero in the lines nor the total
    I tried unselecting the deferred tax checkbox for all Business Partners and still doesnt work.
    Got any ideas what can it be or how can I solve the Problem?? I´d appreciate your help tremendously!!!

    Hi,
    Try to omit DocTotal on the header file. That is a calculated field. What is your B1 version and PL?
    Thanks,
    Gordon

  • DTW Error on A/R Credit Memos

    Hello guys!
    I got a problem while trying to upload A/R Credit Memos through Data Transfer Workbench. It shows an error message inthe DTW Error Log: "Cannot add invoice with zero total and deferred tax ORIN.DocTotalApplication-Defined  or Object-Defined erroroCreditNotes".
    I am using the Document, Document_Lines and Batches files to upload and there is no record with zero in the lines nor the total
    I tried unselecting the deferred tax checkbox for all Business Partners and still doesnt work.
    Got any ideas what can it be or how can I solve the Problem?? I´d appreciate your help tremendously!!!

    Thanks Rahul, the document_lines have the tax code and total alright, I believe probably it has to do with some tax configuration or something, but still I dont know which one may and if this is the real cause. What do you think??
    Gordon,
    thanks for letting me know, I will post it as a question.

  • Pls urgent reply will be appreciated

    A form i enclosed in a jscrollpane doesnt print the full form.
    It only prints the part visible on the screen.
    I,ve done all the 2d tricks like clipping, setting my imageable area all as i can...
    pls urgent reply to this will be appreciated;
    i attach my effort below..
    public int print(Graphics g, PageFormat pf, int pageIndex) {
    Graphics2D g2 = (Graphics2D) g;
    Dimension d = getSize(); //get size of document
    double panelWidth = d.width; //width in pixels
    double panelHeight = d.height; //height in pixels
    double pageHeight = pf.getImageableHeight(); //height of printer page
    double pageWidth = pf.getImageableWidth(); //width of printer page
    double scale = pageWidth / panelWidth;
    //double scale2 = pageHeight / panelHeight;
    int totalNumPages = (int) Math.ceil(scale * panelHeight / pageHeight);
    if ( pageIndex >= totalNumPages ) {
    return NO_SUCH_PAGE;
    } else {
    g2.translate(pf.getImageableX(), pf.getImageableY());
    // shift Graphic to line up with beginning of next page to print
    g2.translate(0f, -pageIndex * pageHeight);
    // scale the page so the width fits...
    g2.scale(scale, scale);
    /*Rectangle rect = new Rectangle();
    rect.x = getX();
    rect.y = getY();
    rect.width = getWidth();
    rect.height = getHeight();
    g2.setClip(rect);*/
    paint(g2); //repaint the page for printing
    //this.paintComponents(g2);
    return PAGE_EXISTS;
    }

    Oh, my, it was so urgent that you didn't have time to go through the tips on [_Getting started with Sun Forums _|http://wikis.sun.com/display/SunForums/Tips], which would have shown you how to use the forum's code tags.
    db

  • My BB9810 refuse to load OS7.1 software on my phone after the download has completed. My phone has freezed/stucked since morning. Pls urgent help/assistant needed as I can not access/use my phone for over 24hrs now.

    My BB9810 refuse to load OS7.1 software on my phone after the download has completed. My phone has freezed/stucked since morning. Pls  urgent help/assistant needed as I can not access/use my phone for over 24hrs now.

    Hi there,
    Use the method described in the link below to get back up and running:
    http://supportforums.blackberry.com/t5/Device-software-for-BlackBerry/How-To-Reload-Your-Operating-S...
    I hope this info helps!
    If you want to thank someone for their comment, do so by clicking the Thumbs Up icon.
    If your issue is resolved, don't forget to click the Solution button on the resolution!

  • DTW error 10000100 Document total value must be zero or greater than zero

    I am trying to import AR service invoices and I am getting an error.
    I am using the Document and Document line files and I have tried several different ways but still get the same error.
    On the main document file I have
    DocNum,DocType,DocDate,DocDueDate,CardCode,NumAtCard,TaxDate,Doctotal
    123              S (tried the ddocuemnt_Service)  20111130    20111130     1111      TEST        20111130       1.00
    Document lines
    ParentKey,LineNum,ItemDescription,TaxCode,FormatCode,Location,LineTotal
    123                (blank)      decription          EX            418000       1            1.00
    Now I have tried removing the total columns on 1 file, then alternating it...leaving it on both.
    What am I missing here?
    Thanks

    Hi,
    You may check this first: DTW Error when Importing A/R Quotation - document total value must be zero
    Thanks,
    Gordon

  • [Error] PLS-00049 (6: 19): PLS-00049: bad bind variable 'NEW.T1NAM'

    1. create table t1
    (t1ID int,
    t1nam varchar2(33)
    2. create or replace view t1t2t3
    t1id, t1name, t2id, t2nam, t2cty, t2st, aid, aname, bid, bname, t3id, t3nam
    as
    select * from t1, t2, t1 a, t1 b, t3
    where t1.t1ID = t2.id(+)
    and T2.CTY = a.t1ID(+)
    and t2.sty = b.t1ID(+)
    and t1.t1ID = t3.t3id(+)
    3. CREATE OR REPLACE TRIGGER t1t2t3
    INSTEAD OF INSERT or update
    ON t1t2t3
    BEGIN
    insert into t1
    values(:new.t1ID, :new.t1nam);
    END t1t2t3;
    Get error:
    [Error] PLS-00049 (6: 19): PLS-00049: bad bind variable 'NEW.T1NAM'
    Pls advise. I am using Toad.
    Thanks.

    tnam1 not belongs to t1t2t3.
    :new should be used to te columns of the table on which you are writing the trigger.
    Here i think t1t2t3 has t1name field you have to use :new.t1name instead of :new.t1nam(which belongs to table t1)

  • Getting error PLS-00307: too many declarations while instantiating object.

    Hi,
    I'm using oracle 10.2.0.4.0
    I've created an object obj_bsk as follows:
    create or replace type obj_bsk as object
    (batch_set_key varchar2(64),
    constructor function obj_bsk
    return self as result,
    constructor function obj_bsk(p_batch_set_key in varchar2)
    return self as result,
    member procedure display_batch_set_key
    and object body as
    create or replace type body obj_bsk as
    constructor function obj_bsk
    return self as result is
    begin
    self.batch_set_key := sys_guid();
    return;
    end;
    constructor function obj_bsk (p_batch_set_key varchar2)
    return self as result is
    begin
    self.batch_set_key := p_batch_set_key;
    return;
    end;
    member procedure display_batch_set_key is
    begin
    dbms_output.put_line('batch_set_key is:' || self.batch_set_key);
    end;
    end;
    Then I've created a package test_obj as follows:
    specification:
    create or replace package test_obj is
    -- Author : TSHARMA
    -- Created : 31/01/2012 10:32:37
    -- Purpose : to test objects
    my_bsk obj_bsk;
    g_batch_set_key varchar2(64);
    procedure show_obj_val;
    end test_obj;
    body:
    create or replace package body test_obj is
    procedure show_obj_val is
    begin
    my_bsk.display_batch_set_key();
    end;
    begin
    -- Initialization
    if (g_batch_set_key is not null) then
    my_bsk := obj_bsk(g_batch_set_key);
    else
    my_bsk := obj_bsk();
    end if;
    end test_obj;
    When I'm compiling the package I'm getting following error:
    Compilation errors for PACKAGE BODY TSHARMA.TEST_OBJ
    Error: PLS-00307: too many declarations of 'OBJ_BSK' match this call
    Line: 12
    Text: my_bsk := obj_bsk(g_batch_set_key);
    Error: PL/SQL: Statement ignored
    Line: 12
    Text: my_bsk := obj_bsk(g_batch_set_key);
    Can anyone please explain why oracle is viewing it as too many call for constructor when both constructors are different.
    and how to resolve the issue.
    Thanks
    Tarun

    I've solved the problem. Though it is strange.
    The error occurred because I'm using p_batch_set_key as parameter constructor.
    i.e. constructor function obj_bsk(p_batch_set_key in varchar2)
    return self as result,
    once I changed it to the same name as variable name in object it compiled fine.
    i.e constructor function obj_bsk(batch_set_key in varchar2)
    return self as result,
    It is very strange. Can anyone plesae explain why the parameter name should be same as variable name in object.
    Thanks
    Tarun

  • Use SDO_NN in procedure: ERROR: PLS-00707: unsupported construct or internal error [2603]

    Hi,
    I have a problem with use SDO_NN function in a procedure. In case that I use SDO_NN in a SELECT command, it works. In case that I create an anonymous PL/SQL block, it works. But when I create a procedure, it doesn't work and there is an error: ERROR: PLS-00707: unsupported construct or internal error [2603].
    Here is the PL/SQL block, that works:
    BEGIN
    INSERT INTO K3_BlizkeDFB(SO1, SO2, VZDALENOST)
    SELECT  distinct
       ISO.kod AS SO1, SO.kod AS SO2, MDSYS.SDO_NN_DISTANCE(1) AS VZDAL
       FROM StavebniObjektDFB SO, StavebniObjektDFB_INDEX ISO 
       WHERE SDO_NN(ISO.geom,  SO.geom,
          'sdo_num_res=4', 1) = 'TRUE'
          AND ISO.kod<>SO.kod
          AND MDSYS.SDO_NN_DISTANCE(1)<=2;
    END;
    Here is an attempt to create a procedure that doesn't work:
    CREATE OR REPLACE PROCEDURE K1_BlizkeDFB AS
    BEGIN
    INSERT INTO K3_BlizkeDFB(SO1, SO2, VZDALENOST)
    SELECT  distinct
       ISO.kod AS SO1, SO.kod AS SO2, MDSYS.SDO_NN_DISTANCE(1) AS VZDAL
       FROM StavebniObjektDFB SO, StavebniObjektDFB_INDEX ISO 
       WHERE SDO_NN(ISO.geom,  SO.geom,
          'sdo_num_res=4', 1) = 'TRUE'
          AND ISO.kod<>SO.kod
          AND MDSYS.SDO_NN_DISTANCE(1)<=2;
    END;
    Can someone explain, what's wrong?
    Thanks
    Jindra

    Hi Jindra,
    Googling your error message says that this is sqldeveloper issue.  You can verify this by compiling your procedure with sqlplus.  Sounds like you need to update your software.
    Cheers,
    Paul

  • Abap runtime error pls clarify

    hi experts,
    when i am opening pa30 screen i am getting always abap runtime error pls tell me how to rectify it.

    Hi,
    The transaction PA30 contains the Object oriented programming. Please check your SAPGui have latest patch updated.
    For identifying the error reason. you need to paste initial page of your short dump here.
    aRs

  • Import budget by using DTW, error message "cannot find this object in B1 application defined, object defined error 65171

    Dear Sirs, I try to import budget header and budget line by using DTW, however error message found, "Cannot find this object in B1 application defined, object defined error 65171. Regards, Saw Hua

    Hi Javier,
    Please check below links.
    DTW Error 65171
    DTW error 65171
    DTW, Unkonwn error 1005!65171
    DTW error 65171 - Cannot find this object
    DTW error65171
    SAP B1 Data Transfer WorkBench : Data too large... | SCN
    Hope this help
    Regards::::
    Atul Chakraborty

  • Error PLS 00363  expression "string" cannot be used as an assignment target in sentence SELF.ATTRIBUTE1:=PARAMETER;

    Hi everybody. I wrote de following  type
    create or replace TYPE ALMACEN AS OBJECT
      id_almacen number(10),
      descripcion varchar2(40),
      existencias number(6),
      precio number(4),
      member function movimiento (p_num number)  return boolean
    create or replace TYPE BODY ALMACEN AS
      member function movimiento (p_num number)  return boolean AS
      v_inf boolean;
      n number(6);
      BEGIN
        if self.existencias+p_num>=0 then
        self.existencias:=existencias+p_num;
        return TRUE;
        else return FALSE;
        end if;
      END movimiento;
    END;
    I have Oracle 11g release I.
    In previous releases it worked, but now SQLDeveloper marks
    self.existencias:=existencias+p_num;
    Error PLS 00363  expression "string" cannot be used as an assignment target in sentence
    Please, What's wrong?
    Thanking in advance

    Hi,
    Not quite a PL/SQL XML question but anyway...
    Since the member function modifies the object instance, the implicit argument "self" must be declared explicitly as "IN OUT" :
    member function movimiento (self in out nocopy almacen, p_num number)  return boolean

  • Error PLS-00355 occurs when open cursor in procedure

    Hello everybody,
    I have a problen that really drives me mad:
    Whenever I try to compile the following procedure, the Error "PLS-00355: use of pl/sql table not allowed in this context" occurs but I can't see what is wrong. I hope the wisdome of the community will help to solve the problem.
    Here is the code:
    CREATE or REPLACE PROCEDURE data_year(study_year IN NUMBER) AS
    sep CONSTANT CHAR := ';';
    CURSOR cursor_year(year_of_interest NUMBER) IS
    select
    BBS_CONDITIONS.COUNTRYNUM as country,
    BBS_CONDITIONS.STATENUM as state,
    BBS_CONDITIONS.ROUTE as route,
    BBS_ROUTES.LATITUDE as lat,
    BBS_ROUTES.LONGITUDE as lon,
    BBS_SUMMARY.AOU as aou,
    BBS_SPECIES.ENGLISH_COMMON_NAME as name,
    BBS_SPECIES.MIGRATION_TYPE as migtype,
    BBS_SUMMARY.SPECIESTOTAL as count,
    BBS_CONDITIONS.MONTH as smonth,
    BBS_CONDITIONS.STARTTIME as starttime,
    BBS_CONDITIONS.ENDTIME as endtime,
    BBS_CONDITIONS.RPID as rpid,
    BBS_CONDITIONS.ASSISTANT as assistant
    from BBS_SPECIES,
    BBS_ROUTES,
    BBS_SUMMARY,
    BBS_CONDITIONS
    where BBS_ROUTES.ROUTE = BBS_CONDITIONS.ROUTE
    and BBS_ROUTES.STATENUM = BBS_CONDITIONS.STATENUM
    and BBS_ROUTES.COUNTRYNUM = BBS_CONDITIONS.COUNTRYNUM
    and BBS_SPECIES.AOU = BBS_SUMMARY.AOU
    and BBS_CONDITIONS.YEAR = BBS_SUMMARY.YEAR
    and BBS_CONDITIONS.ROUTE = BBS_SUMMARY.ROUTE
    and BBS_CONDITIONS.STATENUM = BBS_SUMMARY.STATENUM
    and BBS_CONDITIONS.COUNTRYNUM = BBS_SUMMARY.COUNTRYNUM
    and BBS_SPECIES.CLASS_ID = 0
    and BBS_CONDITIONS.YEAR = year_of_interest
    order by country, state, route, migtype, aou;
    rec_year cursor_year%ROWTYPE;
    i NUMBER := 1;
    TYPE table_year_type IS TABLE OF cursor_year%ROWTYPE;
    table_year table_year_type;
    BEGIN -- Begin of procedure data_year
    table_year := table_year();
    OPEN cursor_year(study_year);
    LOOP
    FETCH cursor_year into rec_year;
    EXIT WHEN cursor_year%NOTFOUND;
    table_year.EXTEND(1);
    table_year(i) := rec_year;
    i := i+1;
    END LOOP;
    CLOSE cursor_year;
    DBMS_OUTPUT.PUT_LINE('country' || sep || 'state' || sep || 'route' || sep || 'lat' || sep || 'lon'
    || sep || 'aou' || sep || 'name' || sep || 'migtype' || sep || 'count' || sep || 'month' || sep
    || 'starttime' || sep || 'endtime' || sep || 'rpid' || sep || 'assistant');
    FOR i in table_year.FIRST..table_year.LAST LOOP
    DBMS_OUTPUT.PUT_LINE(TO_CHAR(table_year(i).country) || sep || TO_CHAR(table_year(i).state) ||
    sep || TO_CHAR(table_year(i).route) || sep || TO_CHAR(table_year(i).lat) || sep ||
    TO_CHAR(table_year(i).lon) || sep || TO_CHAR(table_year(i).aou) || sep ||
    table_year(i).name || sep || TO_CHAR(table_year(i).migtype) || sep ||
    TO_CHAR(table_year(i).count) || sep || TO_CHAR(table_year(i).smonth) || sep ||
    TO_CHAR(table_year(i).starttime) || sep || TO_CHAR(table_year(i).endtime) || sep ||
    TO_CHAR(table_year(i).rpid) || sep || TO_CHAR(table_year(i).assistant));
    END LOOP;
    END; -- End of procedure data_year
    Thanks ahead, TC

    Does it give a line number? I'm wondering if it might be
    table_year := table_year();
    that's causing the problem. Try removing it and see.
    Even better, change your code to
       TYPE table_year_type IS TABLE OF cursor_year%ROWTYPE INDEX BY BINARY_INTEGER;
       table_year     table_year_type;
    BEGIN        
        OPEN cursor_year (study_year);
        FETCH cursor_year BULK COLLECT INTO table_year;
        CLOSE cursor_year;
    ...Edited by: Dave Hemming on Nov 21, 2008 9:51 AM

  • WKSYS. Packages error PLS-00753

    After full import:
    impdp DIRECTORY=DATAPUMP_IMPORT DUMPFILE=orcl.dmp FULL=y LOGFILE=import.log
    wksys. has many package bodies that import with error PLS-00753 malformed or currupted wrapped unit..
    how do I fix this.. what is WKSYS is it part of apex?

    Dear Merlin128,
    There may be invalid objects on the database. What you may do is you can run the utlrp.sql script under the $ORACLE_HOME/rdbms/admin folder and see if you had any invalid objects that has been validated with the script.
    Oracle Error :: PLS-00753
    malformed or corrupted wrapped unit
    Cause
    The format of the wrapped unit being compiled is not understood by the compiler. This may be because the unit was edited or modified after it was wrapped.
    Action
    Rewrap the unit.IF the problem persists, rewarp the unit that has been affected.
    http://www.dba-oracle.com/t_wrap_utility.htm
    Hope That Helps.
    Ogan

Maybe you are looking for