Toplink Delete Integrity Constraint.

I have been beating my head against my key board for a few days on this.
Note: Names of packages/class names/DB info altered because I am paranoid.
Excerpts from my toplink log....
Deleted Objects:
Key: [588504]     Identity Hash Code: 25872956     Object: ChildClass@18aca3c#588504
Key: [629458]     Identity Hash Code: 1812473     Object: ChildClass@1ba7f9#629458
Key: [321343]     Identity Hash Code: 11471177     Object: ParentClass@af0949#321343
Key: [588850]     Identity Hash Code: 28648193     Object: ChildClass@1b52301#588850
Key: [321712]     Identity Hash Code: 303169     Object: ParentClass@4a041#321712
DeleteObjectQuery(ParentClass@af0949#321343)
DeleteObjectQuery(ParentClass@4a041#321712)
DeleteObjectQuery(ChildClass@18aca3c#588504)
DeleteObjectQuery(ChildClass@1ba7f9#629458)
DeleteObjectQuery(ChildClass@1b52301#588850)
Somehow generates these delete statements..
DELETE FROM T_PARENT_CLASS WHERE (ID = 321712)
DELETE FROM T_CHILD_CLASS WHERE (ID = 588504)
DELETE FROM T_CHILD_CLASS WHERE (ID = 629458)
DELETE FROM T_CHILD_CLASS WHERE (ID = 588850)
End Batch Statements
Obviously this error is generated.
Exception [TOPLINK-4002] (Oracle TopLink - 10g Release 3 (10.1.3.1.0) (Build 061214)): oracle.toplink.exceptions.DatabaseException
Internal Exception: java.sql.BatchUpdateException: error occurred during batching: ORA-02292: integrity constraint (FK_CHILD_PARENT) violated - child record found
Error Code: 17081
     at oracle.toplink.exceptions.DatabaseException.sqlException(DatabaseException.java:282)
...ect
I think this has something to do with Toplink trying to order my deletes in a way they think they should be and ignoring the way I asked Toplink to delete the objects...
Any help with this would be greatly appreciated.

The ChildClass class is not privately owned. Obviously the FK Constraints are set up.
The problem may be because that the ParentClass can share the same ChildClass. ChildClassesA does not contain the same objects in ChildClassesB.
unitOfWork.deleteAllObjects(parentClasses);
unitOfWork.deleteAllObjects(childClassesA);
unitOfWork.deleteAllObjects(childClassesB);
I have tried the line below from the 10.1.3 user guide with no success. getDescriptor() is deprecated so I am not sure why it is in the user guide. Is there a better way to do this? I would think that you would not have to do this at all if you have FK constraints set up and you specify that you want to delete all the parents BEFORE you even start deleting the child classes.
session.getDescriptor(ParentClass.class).addConstraintDependencies(ChildClass.class);

Similar Messages

  • Cannot Delete Content Areas without getting Integrity Constraint Issues

    When I try to delete an unused Content Area by issuing the command:
    Delete from wwsbr_sites$ where id = <value>;
    I get the following error:
    ORA-02292 - integrity constraint violated child record found.
    How can I delete these entries and cascade through the what looks like maybe some 100 other child tables?

    We have done that...Deleted a Content Area through the Navigator...But the Content area still exists, there is nothing in there, but it is still there, it is like a ghost. And when you query the wwsbr_sites$ table
    where ID for that Content Area is still there.

  • Integrity constraint child record found

    TopLink Version: Oracle TopLink - 11g Release 1 (11.1.1.0.0) (Build 070323)
    I may be going crazy here, but I keep getting an integrity constraint when I try to delete an object that has 1:M relationship (Resource 1:M Attribute):
    Internal Exception: java.sql.SQLException: ORA-02292: integrity constraint (WEBCENTER.WP_RELATIONSHIP_RES_FK) violated - child record found
    The child object attribute is set to "Private Owned", and there is an FK from the child table to the parent table in the database (this is where the integrity constraint violation is coming from).
    I query for the Resource, register it in the unit of work, call UOW.deleteObject(resource), and then call UOW.commitAndResume(). TopLink is making a sql call to delete the Resource, but it does not first delete the privately owned Attributes which results in the FK violation.
    It should delete the child records first, right?
    In addtion to having the attribute set to "Private Owned", I also have set:
    Batch Reading
    Use Indirection
    Transparent
    Not sure if that makes a difference.

    Use a trigger. Example:
    CREATE OR REPLACE TRIGGER update_parent_chilren
    BEFORE UPDATE OF pkey_column ON parent_table
    FOR EACH ROW
    BEGIN
    UPDATE child_table
    SET fkey_column = :NEW.pkey_column
    WHERE fkey_column = :OLD.pkey_column;
    END update_parent_children;
    null

  • Database Integrity Constraints

    Hi All
    Is there any DI API component or any other solution to handle the Database Integrity Constraints (Relationships): between parent table and child table.  when I delete a record from parent table referenced by some records on a child table, I want to denied this action
    can I get a solution ?
    best regards
    Med

    Hi Juha
    I develop an Add On, for this case, I must create my ouwn user tables:
    I have a User MasterData Table_1 (MD_Table1),
    and a User MasterData Table_2 (MD_Table_2)which referenced to the first one,
    (MD_Table_2.LinkedTable = "MD_Table_1")
    On these Tables, I have create UDOs
    UDO.CanDelete = SAPbobsCOM.BoYesNoEnum.tYES
    UDO.ObjectType = SAPbobsCOM.BoUDOObjType.boud_MasterData
    UDO.TableName="MD_Table_1"
    UDO.Add()
    UDO.CanDelete = SAPbobsCOM.BoYesNoEnum.tYES
    UDO.ObjectType = SAPbobsCOM.BoUDOObjType.boud_MasterData
    UDO.TableName="MD_Table_2"
    UDO.Add()
    The problem is:
    When I delete a record (rec_1) from the first Table (MD_Table_1)which is referenced to a record (rec_2) of the second (MD_Table_2), the action is accomplished successfully. in spite of rec_1 is referenced to rec_2 .
    regards

  • Automated Solution for Integrity Constraints?

    Here is the situation. I have a parent table with child rows in LIVE. A workspace is then created, and another child is added to one of the parent rows in live. Another workspace is then created, and the parent row for the first workspaces child is deleted. The user tries to merge the second workspace to LIVE, which fails with a ORA-20237 error (expected).
    How do I in an automated fashion, determine what row(s) in what workspace(s) are causing the error workspace merge? This is on 10gR2.
    Integrity constraint violations do not show up in the CONF views, so that doesn’t help. I need to be able to eliminate the conflicts in an automated fashion, providing notice to the owners of the workspaces that they need to go revise the parts that were forcefully removed. But to do that, I need to know how to locate the issues causing the problem so I can build a package to do this, hands off.
    Example script:
    SQL> create table test_parent (pk number not null, name varchar2(50),
      2   CONSTRAINT test_parent_ndx PRIMARY KEY (pk));
    Table created.
    SQL> create table test_child (pk number not null,  fk number, name varchar2(
      2    CONSTRAINT test_child_ndx PRIMARY KEY (pk),
      3    CONSTRAINT test_child_FK01
      4   FOREIGN KEY (fk)
      5   REFERENCES test_parent (pk)
      6   on delete cascade);
    Table created.
    SQL> exec dbms_wm.enableversioning('test_parent,test_child');
    PL/SQL procedure successfully completed.
    SQL> insert into test_parent values (1, 'First item');
    1 row created.
    SQL> insert into test_parent values (2, 'Second item');
    1 row created.
    SQL> insert into test_child values (101, 1, 'References first item');
    1 row created.
    SQL> commit;
    Commit complete.
    SQL> select * from test_parent;
            PK NAME
             1 First item
             2 Second item
    SQL> select * from test_child;
            PK         FK NAME
           101          1 References first item
    SQL> exec DBMS_WM.createworkspace('1', TRUE, 'None',  TRUE );
    PL/SQL procedure successfully completed.
    SQL> exec DBMS_WM.gotoworkspace('1');
    PL/SQL procedure successfully completed.
    SQL> insert into test_child values (102, 1, 'References first item');
    1 row created.
    SQL> commit;
    Commit complete.
    SQL> select * from test_parent;
            PK NAME
             1 First item
             2 Second item
    SQL> select * from test_child;
            PK         FK NAME
           101          1 References first item
           102          1 References first item
    SQL> exec DBMS_WM.gotoworkspace('LIVE');
    PL/SQL procedure successfully completed.
    SQL> exec DBMS_WM.createworkspace('2', TRUE, 'None',  TRUE );
    PL/SQL procedure successfully completed.
    SQL> exec DBMS_WM.gotoworkspace('2');
    PL/SQL procedure successfully completed.
    SQL> select * from test_parent;
            PK NAME
             1 First item
             2 Second item
    SQL> select * from test_child;
            PK         FK NAME
           101          1 References first item
    SQL> delete from test_parent where pk = 1;
    1 row deleted.
    SQL> commit;
    Commit complete.
    SQL> select * from test_parent;
            PK NAME
             2 Second item
    SQL> select * from test_child;
    no rows selected
    SQL> exec DBMS_WM.gotoworkspace('LIVE');
    PL/SQL procedure successfully completed.
    SQL> exec DBMS_WM.mergeworkspace('2', FALSE, FALSE, FALSE  );
    BEGIN DBMS_WM.mergeworkspace('2', FALSE, FALSE, FALSE  ); END;
    ERROR at line 1:
    ORA-20237: integrity constraint (CVC.TEST_CHILD_FK01) violated in workspace
    LIVE or one of its descendants - child record found
    ORA-06512: at "WMSYS.LT", line 6009
    ORA-06512: at line 1Bryan

    Hi Amit,
    The merge operation does result in the deletion of the row from both LIVE and the child workspace. However, this would cause the child table in the other (non-merged) workspace to have data without a corresponding parent row. We can not allow this, and so raise a referential integrity constraint violation. It is also not a conflict, as conflicts are always for rows with the same primary key, not for business conflicts or constraint violations. In the example, the inserted row in the child workspace was for a primary key that was unique within all workspaces, and so no conflict violation would be raised.
    The reason it works for a non-CR workspace, is that the parent table row is still visible from the other workspace as it was not automatically deleted.
    You can use the DIFF view(with SetDiffVersions) or the MW view(with SetMultiWorkspaces) to determine which rows were deleted from the parent table that you are merging. This information can then be used to find the other workspace/savepoint that is causing the violation and fix it. This could be done by removing the child row or inserting/updating the parent row prior to the other workspace being merged.
    Ben

  • Integrity constraints error

    Hi:
    i am trying to insert records into two tables from a jsp page,
    table A and table B. the column A1 is foregin key for table B.
    whe i execute the add method it does the isert successfully for
    table A but gives error for table B. this si the error i get:
    "ORA-02291:Integrity constraint violeted: parent key not found"
    should the insert statement in table A be committed before the
    insert on table B is executed? fi so please tell me how to do
    that. and if not please give me some suggestion. thank you.

    The following works for me (11gR2)...
    create or replace type OTester
    is object
        id    integer
    Type created.
    create
    table    Tester_Object
    of    OTester
        primary key (id)
    object identifier is primary key
    Table created.
    create
    table    Tester_Object_2
    of    OTester
        primary key (id)
    object identifier is primary key
    Table created.
    create
    table    Tester_Reference
        tester    ref OTester    scope is Tester_Object
    Table created.
    create
    index    IN_Tester_Reference
    on    Tester_Reference
        tester
    Index created.
    alter
    table    Tester_Reference
    add    (
        foreign key (tester) references Tester_Object on delete cascade
    Table altered.
    insert
    into    Tester_Object
    values    (
        OTester(1)
    1 row created.
    select    o.*
    from    Tester_Object o
            ID
             1
    1 row selected.
    insert
    into    Tester_Reference
    select    ref(o)
    from    Tester_Object o
    1 row created.
    select    r.*
    from    Tester_Reference r
    TESTER                                          
    00004A038A0046876B2B6FC9014CDBAAC357A4FEDBA5D40000
    001426010001000100290000000000090626002A00078401FE
    0000000A02C102000000000000000000000000000000000000
    0000                                            
    1 row selected.
    delete
    from    Tester_Object
    1 row deleted.
    select    o.*
    from    Tester_Object o
    no rows selected.
    select    r.*
    from    Tester_Reference r
    no rows selected.
    insert
    into    Tester_Object_2
    values    (
        OTester(2)
    1 row created.
    select    o.*
    from    Tester_Object_2 o
            ID
             2
    1 row selected.
    insert
    into    Tester_Reference
    select    ref(o)
    from    Tester_Object_2 o
    Error at line 136
    ORA-22819: scope of input value does not correspond to the scope of the target
    Please post code describing your own situation if this is not working for you.
    Gerard

  • Error Message for Integrity Constraint

    Hi,
    I have a table with called TMREF_MEDIATION_DATA_TREATMENT and one called TMREF_UOC_CRITERIA_MAPPING. There is a foreign key constraint and the TMREF_UOC_CRITERIA_MAPPING
    table has the UID column from the other table in it. When I select delete form TMREF_MEDIATION_DATA_TREATMENT I get an error as expected:
    ORA-02292: integrity constraint (MRS_DEV.TMREF_UOC_CRIT_TO_TREAT_FK2) violated - child record found
    Error
    Unable to process row of table TMREF_MEDIATION_DATA_TREATMENT.
    OK
    But is there any way that I can make this error more user friendly? I do not want it to delete if there is a child record - it must just warn the user.
    Thanks.

    You could use this method:
    http://apex.oracle.com/pls/otn/f?p=31517:185
    which is in the page process. However, you could also create a validation, which will fire before the process is run and check the same.
    Entering an invalid number will violate the constraint (the column is a number column) and this will then call the exception INVALID_NUMBER. You may also declare the constraint exception using
    child_record_not_found EXCEPTION;
    PRAGMA EXCEPTION_INIT (child_record_not_found, -02292);
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.opal-consulting.de/training
    http://apex.oracle.com/pls/otn/f?p=31517:1
    -------------------------------------------------------------------

  • ORA-02292: integrity constraint

    WHEN-BUTTON-PRESSED Trigger got the following Exception Error:
    Error:
    ORA-02292: integrity constraint <constraint name> violated - child record found
    Cause:
    You tried to DELETE a record from a parent table (as referenced by a foreign key), but a record in the child table exists.
    Action:
    The options to resolve this Oracle error are:
    ------------------------------ How Could i handel this Error pls ?
    Regards,
    Abdetu..

    Hello,Thanks Francois for reply
    By the way,i am deleting roots in a a tree from the database..
    DECLARE
      pk INSP_EQUIPMENT_TYPE.EQUIPMENT_TYPE_D%TYPE;
    BEGIN
      IF Ftree.Get_Tree_Property('TREE_BLOCK_TEST.TREE13', Ftree.SELECTION_COUNT) >= '1' THEN
        pk := ftree.get_tree_node_property(
            'TREE_BLOCK_TEST.TREE13',
            :system.trigger_node,
            ftree.node_value);
        DELETE FROM INSP_EQUIPMENT_TYPE
        WHERE EQUIPMENT_TYPE_D = pk;
      ELSE
        Message('Please select a tree node for deletion.');
      END IF;
      EXCEPTION
           WHEN OTHERS THEN
            MESSAGE('OTHERS'||SQLCODE ||' ' ||SQLERRM  );
           MESSAGE('OTHERS'||SQLCODE ||' ' ||SQLERRM  );
    END;Regards,
    Abdetu..

  • How to find the table name on which integrity constraint not found

    Hi All
    How to acheive this
    I have a lot of tables with lot of primary key - foreign key
    relationship.
    In plsql
    when any inserts happen in the child table & the corresponding row is not present in the parent table, we get an exception
    ORA-02291: integrity constraint (user1.ppk) violated - parent key not found
    On this exception , in the exception block i want to trap teh name of the parent table on which the primary key for the particular child table was not there
    Is it possible to retrieve the parent table in this way. I am looking for a generic plsql code block which can help to acheive this
    Regards

    scott@ORA92> SET SERVEROUTPUT ON
    scott@ORA92> DECLARE
      2    e_no_parent_key EXCEPTION;
      3    PRAGMA            EXCEPTION_INIT (e_no_parent_key, -2291);
      4    v_fk_cons       VARCHAR2 (61);
      5    v_owner            VARCHAR2 (30);
      6    v_parent_table  VARCHAR2 (61);
      7    v_pk_cons       VARCHAR2 (30);
      8    v_parent_column VARCHAR2 (30);
      9  BEGIN
    10    INSERT INTO emp (empno, deptno) VALUES (99, 60);
    11  EXCEPTION
    12    WHEN e_no_parent_key THEN
    13        -- extract schema.constraint_name from sqlerrm:
    14        v_fk_cons:= SUBSTR (SQLERRM,
    15                      INSTR (SQLERRM, '(') + 1,
    16                      INSTR (SQLERRM, ')') - (INSTR (SQLERRM, '(') + 1));
    17        DBMS_OUTPUT.PUT_LINE ('Foreign key constraint violated: ' || v_fk_cons);
    18        -- extract parent schema.table and parent key:
    19        SELECT owner, table_name, constraint_name
    20        INTO     v_owner, v_parent_table, v_pk_cons
    21        FROM     user_constraints
    22        WHERE     (owner, constraint_name) =
    23            (SELECT r_owner, r_constraint_name
    24             FROM     user_constraints
    25             WHERE     owner || '.' || constraint_name = v_fk_cons);
    26        DBMS_OUTPUT.PUT_LINE ('Parent table: ' || v_owner || '.' || v_parent_table);
    27        DBMS_OUTPUT.PUT_LINE ('Parent key: ' || v_owner || '.' || v_pk_cons);
    28        -- extract parent table columns:
    29        FOR rec IN
    30          (SELECT column_name
    31           FROM   user_cons_columns
    32           WHERE  owner = v_owner
    33           AND    table_name = v_parent_table
    34           AND    constraint_name = v_pk_cons)
    35        LOOP
    36          DBMS_OUTPUT.PUT_LINE
    37            ('Parent table column: ' || rec.column_name);
    38        END LOOP;
    39  END;
    40  /
    Foreign key constraint violated: SCOTT.FK_DEPTNO
    Parent table: SCOTT.DEPT
    Parent key: SCOTT.PK_DEPT
    Parent table column: DEPTNO
    PL/SQL procedure successfully completed.

  • SQL*Loader and integrity constraints

    I am running into trouble with integrity constraints in my SQL*Loader script runs. Should I be going up to unix and removing the constraints from sqlplus, then asking the wizard to reinstall them after the data load? Is this documented somewhere? I can't find it. Sorry for asking such a basic question.
    Thanks,
    Ann Cantelow

    Hi,
    Your approach is correct.
    Create tables first
    Move data via the scripts
    Create contraints, indexes, primary keys
    See the User Guide for the ORacle Migration Workbench http://otn.oracle.com/tech/migration/workbench
    Regards
    John

  • How to create business rule for 'Integrity constraint - child not found'

    Hello, I am using JDeveloper 11.1.2.3.0.
    When an integrity constraint is violated an error message coming from database is displayed in my application. In this case is the error "integrity constraint (TableName) violated - child record found "
    How can I personalize the error shown in this case? I tried with EO business rules but I couldn't find this key, only "Key exists" or "UniqueKey".
    Can anyone help?

    Check Catch Me If You Can article. This should be handled there as one of the errors thrown in the model layer. Check the AdfmErrorHandlerImpl ...
    Timo

  • How to know which table has got referencial integrity constraint

    Dear All,
    How can i know which table has got referencial integrity constraint on which table ?
    Ex : Department id column is a primary key in departments table whereas it is a foreign key in employees table. From where can i find the info regarding the relation between employees and departments table ?
    Waiting for your reply.
    Regards,
    Shyam

    you can use dba_constraints or all_constraints to help.
    http://download.oracle.com/docs/cd/B14117_01/server.101/b10755/statviews_1037.htm
    Example:
    select owner, CONSTRAINT_NAME,CONSTRAINT_TYPE,TABLE_NAME from dba_constraints where R_OWNER=':A' and R_CONSTRAINT_NAME=':B'
    A = owner of primary key
    B = constraint name (primary key name)

  • Differences between trigger and Integrity Constraints

    waht are the differences between trigger and Integrity Constraints

    waht are the differences between trigger and Integrity ConstraintsConstraints are to be preferred:
    "Declarative Ease
    Define integrity constraints using SQL statements. When you define or alter a table, no additional programming is required. The SQL statements are easy to write and eliminate programming errors. Oracle controls their functionality. For these reasons, declarative integrity constraints are preferable to application code and database triggers. The declarative approach is also better than using stored procedures, because the stored procedure solution to data integrity controls data access, but integrity constraints do not eliminate the flexibility of ad hoc data access.
    Centralized Rules
    Integrity constraints are defined for tables (not an application) and are stored in the data dictionary. Any data entered by any application must adhere to the same integrity constraints associated with the table. By moving business rules from application code to centralized integrity constraints, the tables of a database are guaranteed to contain valid data, no matter which database application manipulates the information. Stored procedures cannot provide the same advantage of centralized rules stored with a table. Database triggers can provide this benefit, but the complexity of implementation is far greater than the declarative approach used for integrity constraints."
    More:
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14220/data_int.htm#sthref2976

  • How to delete Integration scenario or XI Objects permanently

    Dear XI experts
    I’d like to delete Integration scenarios or XI Objects that I created from Integration Builder.
    http://static.flickr.com/43/117549573_30c76b7c0b_o.jpg
    They go to the lists under Change List.
    I misunderstood if I click on “Reject Change” it can be deleted permanently.
    But in fact, it goes back to the list under “Scenario” tab.
    So I found Once I created them, I cannot delete them.
    http://static.flickr.com/49/117549572_3a26138b0a_o.jpg
    Probably, I can’t find any information how to delete Integration scenario or XI Objects permanently.
    If you give me any hints, I will appreciate you.
    Thanks,
    David

    Delete object!
    http://static.flickr.com/35/117570416_69ecd78655_o.jpg
    Confirm the object is deleted from the list.
    http://static.flickr.com/47/117570417_542075e7b4_o.jpg
    Activate the change list.
    http://static.flickr.com/47/117570418_9a415336dc_o.jpg
    Select the object to activate ( delete permanently) from change list
    http://static.flickr.com/38/117570419_8f03e54a8b_o.jpg
    Confirm “it’s gone”.
    http://static.flickr.com/47/117570417_542075e7b4_o.jpg
    [my mistake]
    I tried to find the solution from context menu such as “reject change”.
    The meaning of “activate change list” is  …. …..
    <b>Thanks a lot my boss! Vijaya.</b>
    Regards,
    david

  • Apex 4.0 import error - integrity constraint (APEX_040000.WWV_FLOWS_FK)

    I have a new Oracle Express 10G instance with Application Express 4.0 installed on it. I am trying to import an existing application that has been exported using Application Express. I get this error. How do I fix this?
    SQL> connect apex_040000/xxxxxxxxx
    Connected.
    SQL> show user
    USER is "APEX_040000"
    SQL> @C:\apex_misc\f41362_app_export_092010.sql
    APPLICATION 41362 - REQ Tracker
    Set Credentials...
    Check Compatibility...
    API Last Extended:20100513
    Your Current Version:20100513
    This import is compatible with version: 20100513
    COMPATIBLE (You should be able to run this import without issues.)
    Set Application ID...
    begin
    ERROR at line 1:
    ORA-02291: integrity constraint (APEX_040000.WWV_FLOWS_FK) violated - parent
    key not found
    ORA-06512: at "APEX_040000.WWV_FLOW_API", line 621
    ORA-06512: at line 3
    Disconnected from Oracle Database 10g Express Edition Release 10.2.0.1.0 - Produ
    ction

    Hi,
    as you say your Apex instance is new - does the workspace you exported the application from exist on your new apex instance? Probably not. You could try to set the appropriate one using the API like this:
    exec wwv_flow_api.set_security_group_id(p_security_group_id => apex_util.find_security_group_id(p_workspace => 'XYZ'));This still requires that you already have created the workspace.
    Is there a reason why you don't import the application with the workspace import?
    -Udo

Maybe you are looking for

  • IPod could not be restored because the firmware file could not be found

    Initial problem was no audio and skipping through songs at a rate of about 1 song per second. Tried the 5 R's and that didn't help. Installed iTunes 7 and then it wouldn't recognize the nano. Followed Apple's instructions when iPod not recognized, in

  • Data on my HP Officejet Pro 8500 A909a display is unreadable

    I was having a problem after I replaced my black ink cartridge. My HP 8500 A909a wasn't displaying the ink level for the new black cartridge I installed. I tried to perform a partial reset to restore the HP All-in-One to proper operation as stated in

  • End of me rope

    Hi all. Sorry to start my first post with a question. But I've just about had enough of BT and their couldn't care less attitude to a looong ongoing issue with slow infinity speeds. Top date I have had one engineer call. 6 conversations with an overs

  • Activity profile for planning does not seem to work..

    Hi, All I need is to trigger a custom idoc filled in a custom FM and to be sent when the planning button in vt01n or vt02n is clicked and then save button is clicked. I have everything else setup.. Message type is SHPMNT output type is ZEDI have a pr

  • Please help: Populating values in drop down list by onchange - javascript !

    I am working on a task - I need to populate drop down named "year" dynamically (from database) depending upon the select of an element from drop down list "carLine" . I am calling javascript funtion on onchange event of the html select and setting pr