TL11g & EJB3: One-to-Many problems with removing entity from list

Hi,
I posted this problem on JDev11g forum, but I hope I will get some information here as well.
I have two entities based on tables in HR schema (Departments and Employees). Department has a list of employees. These are the annotations:
@Entity
public class Departments implements Serializable {
    @OneToMany(mappedBy = "departments", cascade = {CascadeType.ALL})
    private List<Employees> employeesList;
@Entity
public class Employees implements Serializable {
    @ManyToOne
    @JoinColumn(name = "DEPARTMENT_ID")
    private Departments departments;
}On a test page, I have a master-detail tables that show all departments and employees in the selected department (drag&drop from data control), a button that removes selected employee from employeeList iterator, and a button that calls em.merge(department).
The problem is that when I remove some employees from employeeList, on merge, the incoming entity, as well as the return result of the 'merge', are OK (the list doesn't contain the removed entities), but nothing is updated in the database, and no error is shown.
Can anyone help me with this? I can send the test case if anyone is interested.
Thanks,
Pedja

The transaction is Container Managed, but I did try with flushing the changes, but without success. Here is the log:
[TopLink Finest]: 2008.08.06 04:31:25.431--ServerSession(27620915)--Thread(Thread[HTTPThreadGroup-1,9,HTTPThreadGroup])--Execute query ReadAllQuery(model.Employees)
[TopLink Finest]: 2008.08.06 04:31:25.431--ServerSession(27620915)--Thread(Thread[HTTPThreadGroup-1,9,HTTPThreadGroup])--reconnecting to external connection pool
[TopLink Fine]: 2008.08.06 04:31:25.431--ServerSession(27620915)--Connection(21332891)--Thread(Thread[HTTPThreadGroup-1,9,HTTPThreadGroup])--SELECT EMPLOYEE_ID, LAST_NAME, COMMISSION_PCT, PHONE_NUMBER, SALARY, HIRE_DATE, FIRST_NAME, EMAIL, JOB_ID, MANAGER_ID, DEPARTMENT_ID FROM EMPLOYEES WHERE (DEPARTMENT_ID = ?)
     bind => [20]
[TopLink Finest]: 2008.08.06 04:31:25.431--ServerSession(27620915)--Thread(Thread[HTTPThreadGroup-1,9,HTTPThreadGroup])--Execute query ReadObjectQuery(model.Employees)
[TopLink Finest]: 2008.08.06 04:31:25.431--ServerSession(27620915)--Thread(Thread[HTTPThreadGroup-1,9,HTTPThreadGroup])--Execute query ReadObjectQuery(model.Departments)
[TopLink Finest]: 2008.08.06 04:31:25.431--UnitOfWork(14721024)--Thread(Thread[HTTPThreadGroup-1,9,HTTPThreadGroup])--Register the existing object model.Employees@3001c6
[TopLink Finest]: 2008.08.06 04:31:25.431--UnitOfWork(14721024)--Thread(Thread[HTTPThreadGroup-1,9,HTTPThreadGroup])--Register the existing object model.Employees@1f7d08a
[TopLink Finest]: 2008.08.06 04:31:25.431--UnitOfWork(14721024)--Thread(Thread[HTTPThreadGroup-1,9,HTTPThreadGroup])--Register the existing object model.Employees@3001c6
[TopLink Finest]: 2008.08.06 04:31:25.431--UnitOfWork(14721024)--Thread(Thread[HTTPThreadGroup-1,9,HTTPThreadGroup])--Register the existing object model.Departments@1b21b91
[TopLink Finer]: 2008.08.06 04:31:36.836--ServerSession(27620915)--Thread(Thread[HTTPThreadGroup-1,9,HTTPThreadGroup])--client acquired
[TopLink Finer]: 2008.08.06 04:31:36.836--UnitOfWork(631279)--Thread(Thread[HTTPThreadGroup-1,9,HTTPThreadGroup])--TX binding to tx mgr, status=STATUS_ACTIVE
[TopLink Finest]: 2008.08.06 04:31:36.836--UnitOfWork(631279)--Thread(Thread[HTTPThreadGroup-1,9,HTTPThreadGroup])--Merge clone with references model.Departments@1c49e79
[TopLink Finest]: 2008.08.06 04:31:36.836--UnitOfWork(631279)--Thread(Thread[HTTPThreadGroup-1,9,HTTPThreadGroup])--Register the existing object model.Employees@3001c6
[TopLink Finest]: 2008.08.06 04:31:36.836--UnitOfWork(631279)--Thread(Thread[HTTPThreadGroup-1,9,HTTPThreadGroup])--Register the existing object model.Employees@aa10a9
[TopLink Finest]: 2008.08.06 04:31:36.836--UnitOfWork(631279)--Thread(Thread[HTTPThreadGroup-1,9,HTTPThreadGroup])--Register the existing object model.Departments@12c0836
[TopLink Finest]: 2008.08.06 04:31:36.836--UnitOfWork(631279)--Thread(Thread[HTTPThreadGroup-1,9,HTTPThreadGroup])--Register the existing object model.Employees@aa10a9
[TopLink Finest]: 2008.08.06 04:31:36.836--UnitOfWork(631279)--Thread(Thread[HTTPThreadGroup-1,9,HTTPThreadGroup])--Register the existing object model.Departments@1b21b91
[TopLink Finest]: 2008.08.06 04:31:36.836--UnitOfWork(631279)--Thread(Thread[HTTPThreadGroup-1,9,HTTPThreadGroup])--Register the existing object model.Employees@3001c6
[TopLink Finest]: 2008.08.06 04:31:36.836--UnitOfWork(631279)--Thread(Thread[HTTPThreadGroup-1,9,HTTPThreadGroup])--Register the existing object model.Employees@1f7d08a
[TopLink Finest]: 2008.08.06 04:31:36.836--UnitOfWork(631279)--Thread(Thread[HTTPThreadGroup-1,9,HTTPThreadGroup])--Register the existing object model.Employees@3001c6
[TopLink Finest]: 2008.08.06 04:31:36.836--UnitOfWork(631279)--Thread(Thread[HTTPThreadGroup-1,9,HTTPThreadGroup])--Register the existing object model.Departments@1b21b91
[TopLink Finer]: 2008.08.06 04:31:38.711--UnitOfWork(631279)--Thread(Thread[HTTPThreadGroup-1,9,HTTPThreadGroup])--TX beforeCompletion callback, status=STATUS_ACTIVE
[TopLink Finer]: 2008.08.06 04:31:38.711--UnitOfWork(631279)--Thread(Thread[HTTPThreadGroup-1,9,HTTPThreadGroup])--begin unit of work commit
[TopLink Finer]: 2008.08.06 04:31:38.711--ClientSession(2685953)--Thread(Thread[HTTPThreadGroup-1,9,HTTPThreadGroup])--TX beginTransaction, status=STATUS_ACTIVE
[TopLink Finest]: 2008.08.06 04:31:38.711--UnitOfWork(631279)--Thread(Thread[HTTPThreadGroup-1,9,HTTPThreadGroup])--Execute query UpdateObjectQuery(model.Departments@776fc0)
[TopLink Finer]: 2008.08.06 04:31:38.711--UnitOfWork(631279)--Thread(Thread[HTTPThreadGroup-1,9,HTTPThreadGroup])--TX afterCompletion callback, status=COMMITTED
[TopLink Finer]: 2008.08.06 04:31:38.805--UnitOfWork(631279)--Thread(Thread[HTTPThreadGroup-1,9,HTTPThreadGroup])--end unit of work commitThanks,
Pedja

Similar Messages

  • EJB3: One-to-Many problems with removing entity from list

    Hi,
    I have two entities based on tables in HR schema (Departments and Employees). Department has a list of employees. These are the annotations:
    @Entity
    public class Departments implements Serializable {
        @OneToMany(mappedBy = "departments", cascade = {CascadeType.ALL})
        private List<Employees> employeesList;
    @Entity
    public class Employees implements Serializable {
        @ManyToOne
        @JoinColumn(name = "DEPARTMENT_ID")
        private Departments departments;
    }On a test page, I have a master-detail tables that show all departments and employees in the selected department (drag&drop from data control), a button that removes selected employee from employeeList iterator, and a button that calls em.merge(department).
    The problem is that when I remove some employees from employeeList, on merge, the incoming entity, as well as the return result of the 'merge', are OK (the list doesn't contain the removed entities), but nothing is updated in the database, and no error is shown.
    Can anyone help me with this? I can send the test case if anyone is interested.
    Thanks,
    Pedja

    Hi,
    I have two entities based on tables in HR schema (Departments and Employees). Department has a list of employees. These are the annotations:
    @Entity
    public class Departments implements Serializable {
        @OneToMany(mappedBy = "departments", cascade = {CascadeType.ALL})
        private List<Employees> employeesList;
    @Entity
    public class Employees implements Serializable {
        @ManyToOne
        @JoinColumn(name = "DEPARTMENT_ID")
        private Departments departments;
    }On a test page, I have a master-detail tables that show all departments and employees in the selected department (drag&drop from data control), a button that removes selected employee from employeeList iterator, and a button that calls em.merge(department).
    The problem is that when I remove some employees from employeeList, on merge, the incoming entity, as well as the return result of the 'merge', are OK (the list doesn't contain the removed entities), but nothing is updated in the database, and no error is shown.
    Can anyone help me with this? I can send the test case if anyone is interested.
    Thanks,
    Pedja

  • Problem with remove task from schedule in PWA

    In our environment problem with remove task from schedule by PWA.
    Problem is only when I want to remove few task in the same time, but the operation one by one is correct.
    In my opinion problem is with calculation schedule after remove tasks, column ID include wrong value it means that Number ID does not generate in the correct order same of numer
    disappear. Click Calculate button on ribbon causes problem with finshed operation and save project.
    Problem occurs only machine with IE 11.0 browser without compability mode, on other machine for example on the same project with IE 8,9,10 everything is correct.
    Problem appeared recently, earlier everything was OK.
    Txn, Dariusz Moczyński

    Hi Darius,
    I'm a bit confused. You are now talking about 2 issues.
    For the first one, you cannot edit anymore tasks in PWA, with any browser versions? Is it happenonog for any users on any projects? Try the following solutions publish the project from Project Pro and see if it helps. Press CTRL F5 to delete IE cache. Ensure
    that your PWA URL is added to the trusted site and/or compatibility sites. Check for the ULS logs or javascript errors.
    For the second issue, please refer to my previous reply, this obviously cannot be considered as a bug since it is happening with a non supported browser version and working properly on supported versions of IE.
    Hope this helps,
    Guillaume Rouyre, MBA, MVP, P-Seller |

  • Strange problem with removing element from node

    Hi,
    I have a problem when I removed elements from a node.
    here is the code:
    String text = "123456";
    IANode nodeA= wdContext.nodeA();
    wdContext.nodeB().invalidate();
    IBNode nodeB = wdContext.nodeB();
    for(int i=0; i<nodeA.size(); i++)
    IAElement e = nodeA.getEt_Emp_RespElementAt(i);
    if (e.getID().compareTo(text)!= 0)
         nodeB.removeElement(e);
    else
    wdComponentAPI.getMessageManager().reportSuccess(e.getID() + " was not removed");
    The node A does have a row with field "ID" equals to 123456.
    When running the application, it does write that "123456" was not removed...but it removes it....In fact my table is now empty.
    How is it possible if it didn't perform the remove operation for ID = 123456 ?
    Thanks in advance.

    David,
    Because you are iterating node in wrong direction: see my reply to your post Re: Loop problem (seems that you assigns me 2 points without reading reply, and mark it as solved just because you stop solving it
    So, in example in this thread, you must iterate node B in reverse direction, get element from B and remove it from B if it has some specific ID.
    Valery Silaev
    EPAM Systems
    http://www.NetWeaverTeam.com

  • Problem with removing items from a linked list

    Hello,
    I have something weird going with my code. Below is the snippet
    if (ParserDataList.isEmpty())
    try {
    Thread.sleep(10)
    catch (InterruptedException e) {
    else
    data = ParserDataList.remove();
    ParserDataList is declared as a LinkedList. Occasionally I receive the error on NoSuchElement on the remove. I put a try/catch around the remove and print out the value of ParserDataList.isEmpty which is always false. I am very confused on why if the linked list isn't empty I can't remove a data item. There are no other threads that remove data. Thank you in advance for any assistance on this problem.

    I am changing it from linked list to blocking queue however I do have a question about what I should use to poll the data? Instead of a remove should I use take which seemed to remove the first element and if there wasn't one wait until there was. I was trying to not have the threads blocked because I do need to stop them when a disconnect is sent from the main thread.

  • Problems with removing music from phone using Itunes?

    Ever since I updated to IOS7 it seems that I have had trouble syncing music on the Iphone 4. I recently got the Iphone 5 and the first time I added music to my phone it worked fine, but now for some reason I can't directly delete music or even organize by artist, time, etc. How can I fix this?

    I'm not sure if this is what you are after but Forum member Buegie has compiled a very extensive procedure for backing up your music which you'll find at this link: Backing up iTunes
    You'll also find instructions here on uninstalling iTunes: Stepwise clean uninstallation of iTunes</a
    I hope these are of some help, take care.

  • Many problems with the 'Export to Text' (.txt) in CR Xi

    Hi,
    I have listed many problems with the 'Export to Text' (.txt) function of CR Xi.
    These problems are related to this export format only (meaning everything works fine in the Viewer or in the 'Export to PDF')...
    - Multi-columns layout do not export as Multi-column (export only a one column);
    - Numeric values with parenthesis for negative values or with a fix currency sign at the leftmost position are not exported correctly;
    - Fields having a Suppress formula which is "WhilePrintingRecords" do not appears when exported;
    - Fields with 'Suppress double value' checked are not always suppressed when exported to Text.
    - 'Keep Group Together' flag is not working.
    - 'Reset Page Number After' simply does not works when exported to text;
    - 'Keep object together' on TextBox/Section is not working.
    - Whenever a group is ending on the last line of a page, the the following page as the same Group header as the previous group with no records until the page is filled, then the PageBreak and PageHeader is missing but the records of the following group appears.
    I would like to know what is the status of the 'Export to Text' function (is it a deprecated function not supported anymore???).
    If still supported, when will these bugs be fixed???
    Thanks

    Hi Rene
    Export to Text is supported till date. Crystal Reports 2008 also supports this with Keep together working however when I tried with format with multiple columns, it didnot show up in the exported text file.
    Regards
    Sourashree

  • Having network profiles is causing so many problems with applications

    Perhaps someone could explain this to me, because i must be doing something wrong.
    We have 10.4.6 client machines, and a 10.4.6 server. They login and their profiles are on the server and accessed via AFP, ok all is well there.
    But ever since Tiger (Panther never had this problem) having network profiles causes so many problems with applications. Here are just some examples:
    1. MS Office 2004 programs will sometimes say all the system fonts are corrupted when they are not. The only way to fix this is to log the user out and delete the Microsoft preferences folder from their network profile from the server. Doing it from the client doesn't work unless you get them to logon in safe boot.
    2. Office 2004 will also randomly not save documents or autorecovery files, claiming that "too many files are open" or that the disk is full, when their profiles have 100s of megabytes left.
    3. Safari will randomly stop working. When you load up Safari it will load up websites all distorted, and then eventually give up and force quit. The only way to fix this is...again deleting the Safari preferences from the server whilst the client is logged off.
    4. Adobe Photoshop files will randomly corrupt, causing "End of file" errors when files are opened.
    Now i've narrowed it down to the basic fact that the clients are using network profiles via AFP. I've experimented them logging onto the server and using local profiles and the programs all work perfectly. My setup is exactly the same as it was on Panther, and panther had none of these problems.
    Surely i am not the only one who is experiencing this?

    Do you have the "Inherit Permissions" option via POSIX access enabled for the home directory share point? If so, disable it, as home directories need standard POSIX permissions.
    I've seen some problems with third-party applications - namely Adobe CS2 - when using network homes mounted via AFP. Others have reported problems with Office 2004. There are other oddities, even observable in the Finder, mostly due to changes that enabled metadata (Spotlight) for AFP. However, never have I seen Apple applications like Safari not work correctly with network homes; thus, there might be another problem here.
    I'd check the filesystems for all volumes on the server using Disk Utility and repair any damage found.
    You may want to consider using Portable Homes for better compatibility with Office 2004 (unfortunately).
    --Gerrit

  • HT6030 I have many problems with my mail since I moved to mavericks. The filter is very sensitive, read mail appears as unread, I can't drag mail to the folders and more. I can't update the mail program as directed on this page, update says my system is u

    I have many problems with my mail since I moved to mavericks. The filter is very sensitive, read mail appears as unread, I can't drag mail to the folders and more. I can't update the mail program as directed on this page, update says my system is updated

    I don't think that a software update from Apple will solve the issues that you are having. You have a rogue installation. After you posted I have just done the following:
    Disk Utility can verify  my partitioned Volume (including my boot disk) AND REPAIR the non-boot disks on the same Volume without a glitch. It repairs the non-boot disks containing data smoothly.
    I have used Mail to send some mails from some Yahoo and Hotmail accounts to my Thunderbird client containing GMail accounts - absolutely normal.
    I have iLife '09 but my iMovie '09 and iPhoto '09 open in a jiffy and I see no issues here. I have 6GB RAM (Maximum) on an early 2008 Macbook Pro with a 750GB hard drive partitioned with 120GB reserved for the Boot Drive.
    I am sorry that I cannot help further but I am sure there must be a way to reinstall the software without having to revert to restoring your ML backup. I have two clones and if you have such I would attempt to do that through that rather than through Time Machine - that is of course if you have a cloned drive.
    Good luck!

  • Many problems with iPhone 3gs.

    I've been having so many problems with my iPhone 3gs in the past few days, These things aren't cheap, and money is tight. For about 2 days, My home button, speaker, microphone, and charge port (On the iPhone) Would not work whatsoever, I have been asking on just about every website with the word Apple in it, trying to diagnose what's wrong with it. I tossed it from the roof of a Sedan, A careless mother left her young child in the carseat on the roof, and as I ran to grab it, It slipped out of my hand. Not too bad of a toss, No cracks on the screen, But I couldn't do a Hard Reset, Or put it in DFU Mode. So after hours and hours of plugging in different cords, plugging those diferrent cords into different computers, and wall chargers, and even buying a new wall charger for 40$! I get a small glitch of battery charge. But now, It will only charge when the iPhone completely dies, and then it will charge to 5% and repeat (If i'm lucky). I basically have a 200$ Paperweight. The iPhone doesn't have a warranty anymore, And i'm not looking to spend hundreds to get it fixed, I never opened it, and it has never been Jailbroken. I can't restore it because when I put it into Recovery Mode, It still wasn't getting recognized by the computer. I just want my iPhone fixed, or at least a replacement, I used this for just about everything, I can't even create a backup file of my data. The iPhone is not only Unrecognized by iTunes, But it's as if the Charging Port in the iPhone isn't even there! There is no damage to the Charge Port itself, But around the case area is a crack from the fall. Please get back to me ASAP! This is a huge inconvenience!

    Well, just so you understand, you are not addressing Apple here. We are users just like yourself that try to answer technical questions from other users. It appears as though the fall has created numerous hardware issues for the phone, that is why you cannot seem to get the phone to restore or get it to be recognized in iTunes. Since the phone is out of warranty, you have two choices. You can take the phone to the local Apple Store and see about an Out of Warranty (OOW) replacement. This is for phones that are out of warranty and do not work. OOW for a 3GS would run $149/USD here in the US. Not sure if that is where you are or not. The second choice is to Google for a 3rd party repair facility and see if they can fix it and what they would charge. The rest is up to you.

  • I'm having to many problems with Lion freezing up and want to go back to Snow Leopard,how can I do this?

    I'm having to many problems with Lion freezing up and want to go back to Snow Leopard,how can I do this?

    How to revert your Mac to Snow Leopard

  • One-to-Many implemented with a join Table

    Hello,
    Is it possible to implement a One-to-Many relationship with a join table, just like
    the Reference Implementation does.
    Regards,
    Jeroen

    "Jeroen Ferdinandus" <[email protected]> wrote in
    news:[email protected]:
    Is it possible to implement a One-to-Many relationship with a join
    table, just like the Reference Implementation does.Not with our CMP, you will have to resort to BMP for that.
    Cedric

  • I have too many problems with UserKeyMD Object

    Hi everybody!!!......
    I've too many problems with UserKeyMD object, this don't work, I have a Application which create the DataBase structure, but when try it for create the user key on "x" field in "ABC" table (x field is present on table, is db_Alpha with 8 chars, subtype is st_None) is raised the problem.
    I try to create this way the key (VB example):
    Dim oUserKeysMD As SAPbobsCOM.UserKeysMD
    Set oUserKeysMD = oCompany.GetBusinessObject(oUserKeys)
    oUserKeysMD.TableName = sTableName
    oUserKeysMD.KeyName = sKeyName
    oUserKeysMD.Unique = BoYesNoEnum.tYES
    oUserKeysMD.Elements.ColumnAlias = sFieldName
    oUserKeysMD.Add '<- here problem is raised
    System.Runtime.InteropServices.Marshal.ReleaseComObject(oUserKeysMD)
    I'm work in Delphi .Net and translate the source code of my function to VB.
    P.D.:this source code at least work 2 times, but does not use it until today, I do not know because no longer it works now but. 
    excuse my ingles is very bad
    thanks
    regards
    Francisco Troncoso
    Chile.
    Message was edited by: Francisco Troncoso

    Hi, I using this names for my tables, fields and keys.
    the table name is:
    AOTI
    the fields names are:
    codigo alpha editsize 8
    decrip alpha editsize 40
    tipo   alpha editsize 1 - valid values W, C - Default Value C
    grupo1 alpha editsize 1 - valid values Y, N - Default Value N
    grupo2 alpha editsize 1 - valid values Y, N - Default Value N
    grupo3 alpha editsize 1 - valid values Y, N - Default Value N
    grupo4 alpha editsize 1 - valid values Y, N - Default Value N
    grupo5 alpha editsize 1 - valid values Y, N - Default Value N
    grupo6 alpha editsize 1 - valid values Y, N - Default Value N
    grupo7 alpha editsize 1 - valid values Y, N - Default Value N
    grupo8 alpha editsize 1 - valid values Y, N - Default Value N
    all fields have subtype none and the key name is :
    AOPK1
    ColumnAlias is codigo, when I try to create the table, fields and key with MetaDataOperatios example I have not problems but I try to create with my application I have the error.
    Regards,
    Franciso.

  • Having many problem with wifi....after installing lion......

    Having many problem with wifi....after installing lion......it connect with wifi but not with Internet and at the same time iPad 2, iPhone 4 works smooth......help......I have MacBook air without thunderbolt and mac mini

    I had the same problem last night. Boot into OSX and reboot the router - fine. Boot into Windows and wrong. Here were my fixes:
    Firstly, I kept all the settings on my router solid. Just leave them as they are. Boot into OSX and check the Network settings and make a note of your IP address and the router's IP address.
    Second, boot into Windows, then open up your wireless connection settings and navigate through to the properties where you can set the IP address.
    Third: Set the IP address to your routers IP address changing the last set of digits to a value between 5 and 255 (I have 8 devices so I set the last two digits to 10.) This will keep the IP static.
    Tab through the Mask settings to default those.
    Then set the default gateway to your router's IP address.
    Check that the Network Adapter's setting has IPv6 disabled (uncheck the box)
    Finally: Set the primary DNS server to 8.8.8.8 then the secondary to 8.8.4.4 and then reboot the router.
    That's what got my connection running.

  • HELP ME! problems with removing photos

    Hi, I'm having problems with deleting photos from my ipod. I've synced photos from a folder I created, and was successful in getting the photos uploaded. Later, I deleted the folder and a folder I didn't create called "Itunes Cache". I've tried syncing new photos from the original "My Photos" and only the old pictures remain. I'm tired of them and the space they take up! Is there a way to delete them without restoring my iPod? Thanks!
    Dell   Windows XP  
    Dell   Windows XP  

    hmmmm right format as in jpeg,bitmap, etc?

Maybe you are looking for

  • 5.1 Surround Export from Audition Gives "Header Error" in Premiere

    Hello - I have a finished surround mix that has been exported to 5 mono stems that I need to use for a DVD.  In Audition CC 2014 I created a new multitrack session and selected the, "Surround Stems for Video Master" template.  I verified that all ste

  • 24" iMac 2.8Ghz problem with wireless reconnection wake up

    Each time i turn on my new iMac or wake it up it refuses to auto reconnect to my Wireless network. Have to manually connect it up by typing name and key in despite this info being in preffered networks list. Only thing that came to mind is not showin

  • How to put a loop for the entered value

    hi all, I have 6 different scenario or cases and in my selection screen i am entering a value say 10. then in my program, it should go to all the 6 cases along with the first 4 cases. so the total turn is 10. if the value is 20, then it should go 3 t

  • Logging option on file adapter based JNDI

    Hello, While setting up a file adapter based JNDI, I notice under outbound connection, we have logging option where we have rotate logs based on size/time. Could someone please help me understand what does this refers to and how we can use that. its

  • DIP profile:"No values found" in the sales inquiry

    Dear all. I create an sales inquiry with one item.In the Sales B tab of item detail,I want to input DIP profile.But when I press f4 in the field of DIP profile,the sap show me a message "No values found".So I enter tcode ODP1 to maintain the DIP prof