Reasons NOT to Perform Deletes First?

I ran into a problem where I was creating objects with a unique key in the same UnitOfWork where I had previously deleted an object with the same values for the unique key (the constrained columns are not in the mapped primary key). I solved the problem by calling setShouldPerformDeletesFirst(true) on my UnitOfWork. Since I hate special cases, I'm wondering whether we should perhaps just set this by default when we create a UnitOfWork. The code that creates the UnitOfWork doesn't know what will be performed in it, and the code that wants to performDeletesFirst doesn't know what else might be done in the same UnitOfWork, so it would be nice to have a consistent policy. Are there any drawbacks or potential conflicts with setting this value by default?

PerformDeletesFirst is definately not to be used all of the time. It is designed only for the case that you described. In fact, I recommend that you avoid creating objects with the same pk as one that ever existed in the uow. If you have to do it, then you will need to use perform deletes first, but only for this case.
If you always use performDeletesFirst, you could run into issues in cases where a delete requires an update first.
Consider:
A a = (A)uow.readObect(A.class);
B b = a.getB();
uow.deleteObject(b);
a.setB(null);
This will attempt to delete before the update is fired potentially causing a constraint error...

Similar Messages

  • It Gives me no reason this message often the first to enter my pass:" When you can not buy Equilibrium - Leonardo da Vinci's Balance Puzzle " and 27other elements. Please try again later". How can I remove this annoyng message? Maybe it's a Virus?

    It Gives me no reason this message often the first to enter my pass:" When you can not buy Equilibrium - Leonardo da Vinci's Balance Puzzle " and 27other elements. Please try again later". How can I remove this annoyng message? Maybe it's a Virus?

    The old rule of thumb was to keep 10-12 GB free. Any lower than that and you will start to have trouble. I was very close to that for a long time and never had any complaints. Now, Lion "encourages" 20% free space (on my newer 250 GB drive) so I try to keep it with more than 50 GB free.
    Do you still have the original memory in that machine too? The metal plate you have to remove in the battery compartment also provides access to the RAM. Your machine will take 2 GB of RAM, possibly 3. You definitely want to max that out too.
    Regardless, you definitely need a new hard drive. When Apple switched to PC components, they had to take a quality hit. These 2.5" notebook hard drives are not very reliable. I'm surprised your hard drive hasn't died by now. I usually get a new hard drive with every major OS upgrade. A $ 50 investment every couple of years is no big deal.
    Unfortunately, you (and I) suffer from being an early adopter in 2006. Those 32-bit machines only accept 2 GB RAM (maybe 3) and are only 32-bit so they can't be upgraded to Lion. Because of this limitation, you won't see as dramatic an improvement as you would with a 2007 machine. If you run more than a couple of applications, your hard drive is always going to have to be doing some VM work. My 2006 machine has even lost its bluetooth. I gave it to my brother. My very similar 2007 Macbook is still running great.
    So, you must get a new hard drive because your old one is likely on death's door. If you don't have at least 2 GB - get it. If you can't afford a new machine, you might want to consider an SSD. That might help mitigate your RAM limitations. You can spend from $ 100 to $ 350 and get a dramatic speed improvement.

  • Hi everybody, adobe muse does not start at the first attempt after installation. know the reason and possible solution? (on iMac 27 retina - latest edition)

    Hi everybody, adobe muse does not start at the first attempt after installation. know the reason and possible solution? (on iMac 27 retina - latest edition)

    Hi
    Are you still experiencing the issue or is it fixed now?

  • For some reason, when my Macbook Pro starts up, all of the MS Office applications open.  This was not happening when I first purchased the laptop, and I never added these apps to the startup menu.  How do I remove these apps from startup?

    For some reason, when my Macbook Pro starts up now, all of the MS Office applications open.  This was not happening when I first purchased the laptop, and I never added these apps to the startup menu.  How do I remove these apps from startup?

    By default Mac apps do not close when you close the window you were working in. Unlike in Windows when you click the top right X icon in any program is closes the window and the program shuts down. On Mac OS X clicking the X in the top left hand corner only closes that windows and leave the program running in the background. If they are left open and you reboot they will restart with the system and load a window for them.

  • Delete operation is not working to delete selected row from ADF table

    Hi All,
    We are working on jdev 11.1.1.5.3. We have one ADF table as shown below. My requirement is to delete a selected row from table, but it is deleting the first row only.
    <af:table value="#{bindings.EventCalendarVO.collectionModel}" var="row"
    rows="#{bindings.EventCalendarVO.rangeSize}"
    emptyText="#{bindings.EventCalendarVO.viewable ? applcoreBundle.TABLE_EMPTY_TEXT_NO_ROWS_YET : applcoreBundle.TABLE_EMPTY_TEXT_ACCESS_DENIED}"
    fetchSize="#{bindings.EventCalendarVO.rangeSize}"
    rowBandingInterval="0"
    selectedRowKeys="#{bindings.EventCalendarVO.collectionModel.selectedRow}"
    selectionListener="#{bindings.EventCalendarVO.collectionModel.makeCurrent}"
    rowSelection="single" id="t2" partialTriggers="::ctb1 ::ctb3"
    >
    To perform delete operation i have one delete button.
    <af:commandToolbarButton
    text="Delete"
    disabled="#{!bindings.Delete.enabled}"
    id="ctb3" accessKey="d"
    actionListener="#{AddNewEventBean. *deleteCurrentRow* }"/>
    As normal delete operation is not working i am using programatic approach from bean method. This approach works with jdev 11.1.1.5.0 but fails on ver 11.1.1.5.3
    public void deleteCurrentRow (ActionEvent actionEvent) *{*               DCBindingContainer bindings =
    (DCBindingContainer)BindingContext.getCurrent().getCurrentBindingsEntry();
    DCIteratorBinding dcItteratorBindings =
    bindings.findIteratorBinding("EventCalendarVOIterator");
    // Get an object representing the table and what may be selected within it
    ViewObject eventCalVO = dcItteratorBindings.getViewObject();
    // Remove selected row
    eventCalVO.removeCurrentRow();
    it is removing first row from table still. Main problem is not giving the selected row as current row. Any one point out where is the mistake?
    We have tried the below code as well in deleteCurrentRow() method
    RowKeySet rowKeySet = (RowKeySet)this.getT1().getSelectedRowKeys();
    CollectionModel cm = (CollectionModel)this.getT1().ggetValue();
    for (Object facesTreeRowKey : rowKeySet) {
    cm.setRowKey(facesTreeRowKey);
    JUCtrlHierNodeBinding rowData = (JUCtrlHierNodeBinding)cm.getRowData();
    rowData.getRow().remove();
    The same behavior still.
    Thanks in advance.
    Rechin
    Edited by: 900997 on Mar 7, 2012 3:56 AM
    Edited by: 900997 on Mar 7, 2012 4:01 AM
    Edited by: 900997 on Mar 7, 2012 4:03 AM

    JDev 11.1.1.5.3 sounds like you are using oracle apps as this not a normal jdev version.
    as it works in 11.1.1.5.0 you probably hit a bug which you should file with support.oracle.com...
    Somehow you get the first row instead of the current row (i guess). You should debug your code and make sure you get the current selected row in your bean code and not the first row.
    This might be a problem with the bean scope too. Do you have the button (or table) inside a region? Wich scope does the bean have?
    Anyway you can try to remove the iterator row you get
    public void deleteCurrentRow (ActionEvent actionEvent) { DCBindingContainer bindings =
    (DCBindingContainer)BindingContext.getCurrent().getCurrentBindingsEntry();
    DCIteratorBinding dcItteratorBindings =
    bindings.findIteratorBinding("EventCalendarVOIterator");
    dcItteratorBindings.removeCurrentRow();Timo

  • RDS Gateway 2012, RemoteApp Displays "A Revocation check could not be performed for the Certificate" via RDWEB

    I have searched through the forums and there are a number of posts that are similar but all the checks they list seem to not apply to this one.
    My current setup is as follows
    All Servers are 2012 R2
    1 x DC server
    1 x RDS Gateway server with RDS Web installed
    1 x Session Host Server
    Certificate supplied by godaddy with 5 names. (included is the name of the RDS Gateway/Web server in the certificate, the internal name of the session host server is not included as the internal names are differnet to the external)
    My tests are as follows
    Navigating to the RDSWEB page from a machine inside the same network (windows 7 sp1) but not on the same domain is fine no errors and logging in and launching any published application is fine with no errors.
    However logging in on another machine that is external from the network (windows 7 sp1) is ok up to the point of launching any of the published apps I get the error about ""A Revocation check could not be performed for the Certificate". this
    prompts twice but does allow you to continue and login and use the app till the next time. If I view the certificate from the warning message all appears to be ok with all certs in the chain.
    I have imported the root and intermediate certs to each of the gateway/rdsweb server and session host server into the computer cert store just to be on the safe side. This has not helped, I have also run the following command from both windows 7 machines
    with no errors on either
    certutil -f –urlfetch -verify c:\export.cer
    I cant seem to see where this is failing and I am beginning to think there is something wrong with godaddy cert itself somehow.
    If I skip rdsweb and just use MSTSC with the gateway server settings then I can login to any machine on the network with no errors so this is only related to launching published apps on the 2012 R2 RDWEB or session host servers.
    Any help appreciated

    Hi,
    1. Please make sure the client PCs have mstsc.exe (6.3.9600) installed.
    2. If you are seeing a name mismatch error, you can set the published name via this cmdlet:
    Change published FQDN for Server 2012 or 2012 R2 RDS Deployment
    http://gallery.technet.microsoft.com/Change-published-FQDN-for-2a029b80
    To be clear, the above cmdlet changes the name that shows up next to Remote computer on the prompt you see when launching a RemoteApp.  You should have a DNS A record on your internal network pointing to the private ip address of your RDCB server. 
    Additionally, in RD Gateway Manager, Properties of your RD RAP, Network Resource tab, you should select Allow users to connect to any network resource or if you choose to use RD Gateway Managed group you will need to add all of the appropriate names to the
    group.
    For example, when launching a RemoteApp you would see something like Remote computer: rdcb.domain.com and Gateway server: gateway.domain.com .  Both of these names need to be on your GoDaddy certificate.
    Please verify the above and reply back so that we may assist you further if needed.  It is possible you have an issue with the revocation check but I would like you to make sure that the above is in place first.
    Thanks.
    -TP
    Thanks for the response.
    To be clear I am only seeing a name mismatch and revocation error if I assign a self signed cert to the session host as advised earlier in the thread by "Dharmesh Solanki", if I remove this and assign the 3rd party certificate I then
    just get the revocation error , I have already ran the powershell to change the FQDN's but this has not resolved the issue although the RDP connection details now match the external url for RDWEB when looking at one of the remoteapp files. The workspace
    ID still shows an internal name though inside this same file. 
    RD Gateway is already set to connect any resource, when connecting using remote app both names (RDCB/RDGateway) show as being correct and are contained within the same UCC certificate. I also already have a DNS entry for the Connection broker pointing to
    the internal ip.
    Do you know if the I need the internal name of the session host servers contained within the same UCC certificate seeing as they are different fqdn's than what I am using for external access ? I resigned the UCC certificate and included the internal name
    of the session host server to see if this would help but for some reason I am still seeing the revocation error. I will check on a windows 8 client pc this evening to see if this gets any further as the majority of the testing has been done on windows 7 sp1
    client pc's
    Thanks

  • Sales Office is not possible to delete in a service contract

    Hi
    I have set up a Service Desk solution for VAR's which worked fine for the first tests.
    I then created a new contract for a new customer.
    In CRMD_ORDER was the first contract set up with the following values under the tab Organisation:
    Organizational Unit      DK SALES     DK Sales
        Sales Organization   DK SALES     DK Sales
        Distribution Channel 01           Distribution channel 01
        Sales Office
        Sales Group
    Organizational Unit      AV DK        Application Management DK
        Service Organization Gavdi Support Gavdi Support organisation
    I then created a new contract which I could not get to default and then I noticed that the Sales Office field was automatically filled, so the data looks like this:
    Organizational Unit      DK SALES     DK Sales
        Sales Organization   DK SALES     DK Sales
        Distribution Channel 01           Distribution channel 01
        Sales Office         DK SALES     DK Sales
        Sales Group
    Organizational Unit      AV DK        Application Management DK
        Service Organization GavdiSupport Gavdi Support organisation
    The problem in short is that I am now not able to delete the value in Sales Office again.
    In other words, when I delete the text does the line look like this:
        Sales Office  ___________   DK Sales
    And when I save or press enter etc. is the field refieled with the value.
    I am then no longer able to find my product with the F4 help or manualy in the "Item details" tab in CRMD_ORDER.
    So I guess that I need to do some changes on my product to be able to find it or remove this value.
    The product is created with Sales organisation = DK Sales and Distriputions channel = Distribution channel 01.
    This is preventing my contract determination to happen.
    Any help is very vecome as I am expected to go live with this monday next week..!
    Best regards,
    Bo Schlichting
    Edited by: Bo Schlichting on Apr 20, 2010 10:54 AM
    Edited by: Bo Schlichting on Apr 20, 2010 11:15 AM

    Hi,
    We've had the same problem for couple of years now. It's quite unbelievable that there's no solution for this. You can search for "Migrate pending" in this document:
    http://docs.oracle.com/cd/E17236_01/epm.1112/readme/epma_1112100_readme.html
    It's a known issue, but at least best to my knowledge, there's no answer for it. It's embarrassing that if an application duplication goes wrong (for some reason, for us it sometimes just stops at 0%), you cannot delete it. Then you explain your customers, that ok, please renew all your SmartView connections to the new application that you've managed to create.

  • 'Notes' that wont delete

    I'm falling foul of the jittery Notes addition to Mail. For some reason, I can't delete a Note that's stored in 'Notes - On My Mac'. I can't move it, I can't do anything with it. I've looked in Home>Library>Mail>Mailboxes>Notes and there's nothing there. Does anyone know how I can get rid of it or where the file might be kept so I can trash the thing? Also, which is probably why this has happened as something else might be going on, I couldn't switch back from storing messages On My Mac to storing them In My Inbox despite the settings in preferences clearly saying that messages will be stored 'in the previously viewed mailbox' and the correct box is ticked in mailbox behaviours. What on earth is going on?
    Many thanks in advance for your thoughts...

    Apple Technical Support resolved this issue for me by dumping the file <com.apple.mail.plist> from the Preferences Folder in Library and setting up Mail from scratch again. WARNING: Be sure to drag your mail folders which contain your emails to the desktop first or you will loose your emails! You can then bring these folders back in after Mail is back up and running. Also, make a note of all your mail prefs like pop3 or smtp servers, usernames and passwords BEFORE you do this as you'll need all that info to set Mail up again too just like you did when you first got your computer.

  • My iphone 5 will not let me delete emails and open up certain apps like Keep safe and kicks me out of different apps

    My iPhone 5 will not let me delete emails. I trash them and they look like they are deleted and then they will load back in. I cannot open my Keep Safe app after the last update. It said I needed more storage so I upgraded and it still will not load. It opens for a second and then goes to home page.  FB is hit or miss if it will open and when it does it is really slow.  Any suggestions?

    Oh my gosh I had the EXACT same problem, and for ages I couldn't figure out how to fix it until today. Here's what I did:
    First I went onto my computer, opened itunes, and un-installed tumblr, vine and kik. These were the apps I was having problems with (it said I had them on my phone but, like you, they didn't show).
    Then I went to the itunes store, searched for each one, and it said I could update them so I did (just FYI: for tumblr a window popped up saying "please click ok to confirm you are 17 years or older", so I did that also)
    When I went back to my phone and tried installing them again (still on my computer), it worked!
    I hope this helps, because it was incredibly frustrating. Good luck!

  • Ive just upgraded my late 2009 macbook, and things are not working properly. First of all, when I started the computer first time after installing Mountain Lion, some message advised me that some files were impossible to install.

    Ive just upgraded my late 2009 macbook, and things are not working properly. First of all, when I started the computer first time after installing Mountain Lion, some message advised me that some files were impossible to install. Once I wrote my password, and for now on, everytime I start the session, another window advise me that "Java SE 6" is missing, due that, the computer can't run some "CS5Service Manager". If I try to install it, the download ends with an error. If finally, you skip the istallation, you arrive to the dock, but the menu bar at the top of the screen doesn't show up.
    In addition, my trackpad doesn't works either. I can move the arrow but i can't click anywhere, probably because the option of clicking by touching is disabeled and I can't performance a regular click.
    I'll be very glad if someone know what the heck is happening with my computer. Anyway, I'm going to the genius bar next Saturday. Thx!

    We're sorry.
    We can't find the article you're looking for.
    Please return to the Apple Support homepage.
    Sigh.

  • Error help- "the operation could not be performed ...file... doesn't exist"?

    Hi,
    I am experiencing some probmels with ICE and can't find a reason for why.  I was able to edit the pages on the site through ICE about a month ago, but the client just let me know they can't do anything for any page.  I also can't do anything for any pages I was able to previously edit.  Basicall, I get this error message after being able to log in, edit page, and click save draft/ changes I get the following error:
    "The operation could not be performed because the file can't be accessed or doesn't exist..."
    I have looked extensively at these threads: http://forums.adobe.com/thread/444356?tstart=60
    and http://forums.adobe.com/thread/432559?tstart=0
    From that I have tried the following:
    Made sure passive FTP was working properly
    Verified FTP Dreamweaver connection with same FTP account: all is good and i can change and put the pages in question on the server.
    Verified tags in page (I think I have most pages correct.- although I know some are still not div tagged correct, but don't think thee issues are related.)
    verified that the directory settings on the adobe account (which is the root) is only "/"
    Tried editing in both Safari and FF and the client tried in IE and FF (all most recent versions I think)
    No progress has been made.  Actually now my adobe account for managing my sites is not allowing me to manage "settings" for this site either.  The tab is there but doesn't have the word settings on it and therefore I can't click it anymore
    Here is the site: www.extremecommunitymakeover.org.  I know for sure I WAS able to edit the index, get involved, and contact us pages a moth ago and now I get the error.
    Also- another maybe related problem is that I can't actually duplicate or create new pages via ICE.  Everything I try to name the new page gets kicked back and the dialog box says error says the "file extension is invalid".
    So- I seem to have a couple problems possibly all related to each other and your help would be much appreciated.
    Thanks,
    Sean

    Here's the setup on the two machines in particular...
    Machine #1:
    XP Pro
    Was IE7, now latest FF
    No antivirus
    Firewall – Windows Firewall, Downloaded AVG free trial ver., but not installed
    Machine #2:
    XP Pro
    IE7
    Again, No AV… had Kaspersky… but uninstalled it
    Windows Firewall
    Maybe that could be of some assistance... not seeing anything that could possibly block or inhibit the ICE. Each machine is independent of the other, separate networks, different locations, JavaScript enabled, no cookie blockers, etc.
    ....STUMPED!!!   

  • TS3899 Getting the message "your mail could not be moved to trash", and keeps reappearing as not read or deleted.

    Getting the message "your mail could not be moved to trash", and keeps reappearing as not read or deleted.

    Did you have Hotmail set-up with Android prior?  I did, and if you did too, you have the same problem, and this is how to solve it.
    From your desktop computer, the Hotmail (or Outlook) website uses the folder "Deleted" for your deleted messages as default.  On your iPhone, the deleted folder's name by default is "Trash".
    When I had my Hotmail with Android, it created a folder Trash for deleted messages, and it's creation was amongst all my folders.  So when you go back and look at Hotmail from your desktop, you will see a folder Trash, in addition to the default Deleted.  My Trash folder had all the emails I deleted from my Android.
    That said, with the manual folder Trash that was created, when trying to set-up Hotmail now on iPhone, because I already had a folder Trash, it conflicted with the default "Trash" folder it wanted to created, so it didn't create it, being the reason why you can't delete emails, because it doesn't have the defaulted "Trash" folder to go to.
    The solution is to delete the folder "Trash" from your desktop, uninstall Hotmail from your iPhone, and re-install, and it worked, the defaulted "Trash" was then created, alongside the "Sent" and "Junk".

  • PO Release Strategy not changed after deletion of few line items with less

    Subject : PO Release Strategy not changed after deletion of few line items with less Total PO
    Dear Friends
    We have issue with PO Release strategy. We have created the PO. with release strategy  with multiple approvers.  After approval of first approval manager , one of the PO line item got deleted and Total PO value is reduced . The new PO value should have changed the PO release strategy. But it is not changed. Old release strategy only showing in the PO which is wrong. 
    Details of the PO
    PO no 4500000123 with 5 line items Total PO value : 100,000 USD Release strategy : AB
    PO line item 5 deleted. Now total PO value changed to 50,000 USD and the PO release strategy should have been changed to AA but not changed. Still showing PO release strategy AB only.
    Are there any OSS notes available to correct his bug.
    Please let me know if you need more details
    Thanks in Advance
    Thanks
    MVS

    Hi,
    release indicators  change it to 4.It may works. Please explore to all 6 indicators..........
    i.e,
    1-cannot be changed
    2-changable,no new determination of strategy
    3-changable,new release in case of strategy
    4-changable,new release in case of strategy or value change
    5-changable,new release if new strategy/outputted
    6-changable,new release if new strategy or value changed/ outputted......
    And check   Characteristic description and value in Classification  of Release strategies ........
    I hope this will help you. Thanking you.
    Regards,
    Venkat.

  • Not able to delete a delivery after revenue recognition is reversed

    Hello Gurus,
    We have a situation for certain Sales Order types after creation of Sales Order -> Delivery and PGI, we do revenue recognition. But there was some mistake and delivery needed to be deleted and recreated if needed. So after doing revenue recognition reversal we are reversing the PGI. After this when we try to delete the  Delivery ( which would have got deleted if there was no revenue recognition process ) we get the below error.
    Is it a problem with the way Revenue recognition is configured or does the standard behave like this. If the Invoice is also present in the above I am able to cancel the Invoice. If you think its a problem with the way Revenue reccognition is configured please advise.
    Item 000010 cannot be deleted (revenue recognition status)
    Message no. VL896
    Diagnosis
    The delivery or delivery item cannot be deleted.
    System response
    The document cannot be deleted since the delivery contains items that
    reference sales document items that are relevant for revenue
    recognition. When the goods issue was posted, the system created revenue
    lines that had already been recognized. This means that there are
    subsequent documents in revenue recognition for this delivery.
    Procedure
    If you no longer require the delivery or delivery item for deletion, set
    the delivery quantities to zero and repost the goods issue. Make sure
    that the quantity zero is allowed in Customizing for the delivery item
    category. When the goods issue is posted, the overall processing status
    is set to C and the delivery can be archived. Message determination
    should be configured not to send any messages in this case. To make sure
    that the system makes revenue corrections if there are differences
    vbetween billed and recognized values, set a billing-relevant rejection
    reason in the sales document item if more than one partial delivery is
    allowed.
    If you still want to use the delivery, adjust the delivery quantities
    accordingly. Alternatively, deliver the referencing sales document item
    again. Note that the sales document item cannot be delivered again if
    only a partial delivery is allowed.
    What are the changes I can do to Delete the Delivery?
    If I cannot Delete the Delivery, Should I make the Delivery as 0 qty and create a new delivery with changed qty and do further process. Or should I reject the Sales Order and create a new sales order with exact qty and do further process.
    Please advise.
    Regards,
    SNK.
    Delivery has one line item. For the above case scenario, invoice is there for some deliveries and for some deliveries there is no invoice. Eg: SO -> DN -> PGI -> Rev Recog -> Iv or SO -> DN -> PGI -> Rev Recog. Requirement was SO was wrongly created as the qty was wrong or in some cases SO needs to be rejected. I am able to cancel Invoice. Rev recog is reversed. PGI is cancelled by VL09. Not able to delete Delivery and I get the above error. Ideally I thought since Rev recog is reversed, Delivery should have been deleted but not happening and above error comes.
    SO - Sales Order DN - Delivery IV - Invoice
    Edited by: sapconsultnt on Dec 16, 2009 5:06 AM

    Hello,
    Please review the Note 1224871 which introduced this functionality.
    Regards,
    Raghavendra YN

  • EPMA - It is not possible to delete an application in a "Migrate Pending"

    Hi,
    on EPMA, as stated on Oracle Documentation that until 11.1.2.1 version, there's known bugs on EPMA:
    10278796, 10297577: It is not possible to delete an application in a "Migrate Pending" status.
    Now what if I had application in a migrate pending status?
    Does anybody have the solutions on this? I mean, how to deceive this so I would be able to do deletion on that application?
    Thanks.

    Hi,
    We've had the same problem for couple of years now. It's quite unbelievable that there's no solution for this. You can search for "Migrate pending" in this document:
    http://docs.oracle.com/cd/E17236_01/epm.1112/readme/epma_1112100_readme.html
    It's a known issue, but at least best to my knowledge, there's no answer for it. It's embarrassing that if an application duplication goes wrong (for some reason, for us it sometimes just stops at 0%), you cannot delete it. Then you explain your customers, that ok, please renew all your SmartView connections to the new application that you've managed to create.

Maybe you are looking for