JDev3.1, BC4J, handleCommit(): never closes the transaction in stateful mode

Hello.
I'm writing a JSP client which reads data from a ViewObject and edits records of the same ViewObject, through the EditCurrentRecord data web bean.
If I set my application as "IsStateLessRuntime=true" in the .properties file, every time the handleCommit() function is called (inside the EditCurrentRecord class), there is an immediate commit on the database.
But if I set my application as "isStateLessRuntime=false" (that is, statful), the handleCommit() function posts records "in memory", but I can't figure how to write data on my Oracle database. I think I have to "close the transaction" or something else, but I don't know what.
It should be better if I could run my application in Stateful mode, since I have to work with commits and possible rollbacks, after checking my data.
Thank you to Jdeveloper Team who helps us!

I answer myself, I found a solution. I post it in case this could be helpful to someone.
When I want to commit changes to database, I have to call:
getApplicationFromContext().getTransaction().commit();
I wrote this as a function in my class "myEditCurrentRecord" which extends EditCurrentRecord data web bean.
The final code is:
public void commit()
getApplicationFromContext().getTransaction().commit();
This works... maybe is there another solution?

Similar Messages

  • 2.3.8 Container::getAllDocuments() appears to close the transaction

    When I execute the following I get a error saying that the transaction has already been committed or aborted.
    void MyFunc(XmlTransaction& txn,XmlResults result)
       while(retry){
          try{
             result = myContainer->getAllDocuments(txn,DB_READ_COMMITTED);
             return;
          catch(){...catch handler...}
    void SomeOtherFunc(...)
       //init....
       XmlTransaction txn = xmlManager->createTransaction();
       XmlResults res;
       MyFunc(txn,res);
       txn.commit(); // crashes here!!!
       // Do something with the results
    }

    What's going on inside your catch handler in MyFunc()? If you are catching deadlocks and retrying, that'd be the problem. Are you seeing this fail every time, and even when there are no retries?
    Regards,
    George

  • Rolling back the transaction from stateful session bean

    Hi,
    How can I mark the transaction to be rolled back in a stateful session bean implementation?.
    Should I call setRollbackOnly method or throw a RemoteException or throw an EJBException, etc.?
    the configuration is :
    OC4J 9.0.4
    Stateful session bean
    Related method has transaction attribute - "Required"
    thanks & regards.
    ps : I couldn't find a related topic even if this has been discussed before (too many topics). if so, excuses.
    Erdem.

    Tried using Bean managed transactions but with the same result. Given below is the sample code.
    UserTransaction uts = null;
    try {
    uts = (UserTransaction)(ctx.getUserTransaction());
    uts.begin();
    Connection con = null;
    con = getCountConnection();
    PreparedStatement ps = con.prepareStatement(sqlselectUserId);
    ps.executeUpdate();
    PreparedStatement ps1 = con.prepareStatement(sqlselectUserDetails);
    ps1.executeUpdate();
    uts.commit();
    catch(SQLException e) {
         uts.rollback();

  • Is it possible to display the transaction in display mode in portal?

    Hi All,
    I have created one transaction iview in portal say for eg: SE38. 
    i want to display this transaction in portal only in display mode so that users cannot edit/modify.
    I checked with giving "Read" permission in portl to that iview.  even though the user is able to change.
    is this possible for the particular transaction to display only in display mode not as editable mode in portal?
    Thanks,
    vijaya.

    Hi Vijaya,
    Ask your basis team to create two user on R/3 system
    1st with edit permission to that Tcode eg - SE38
    2nd with only view permission to that tcode eg - SE38
    Now will doing, user mapping in user administrator in portal
    set 1st userid /password to whom u have to give edit permission  for that Tcode and set 2nd userid /password to portal user whom u want to just have read access for that tcode...
    Hope this solves ur problem...
    Please reward Points if helpfull.
    Thanks
    Gunja

  • Close a transaction through ABAP program without user log off.

    Hi,
    I have to write an ABAP program that will check if a particular transaction (for example tcode VA01) is running than it must close the transaction.
    Please give me your inputs or sample code if possible.
    Thanks for your suggestions.
    --Sanjay

    Sanjay,
      Check with this how much it is going to help you out..
    PARAMETERS: p_user LIKE sy-uname.
    DATA: gt_user_info TYPE TABLE OF /sdf/user_context,
          wa_uinfo LIKE /sdf/user_context.
    START-OF-SELECTION.
      CALL FUNCTION '/SDF/MON_USER_MEMORY'
        TABLES
          modes = gt_user_info.
      CHECK NOT gt_user_info IS INITIAL.
      LOOP AT gt_user_info INTO wa_uinfo WHERE uname EQ p_user.
        IF wa_uinfo-tcode = 'VA01'.
          CALL FUNCTION 'TRANSACTION_ABORT'
            EXPORTING
              transaction_id = transaction_id
            EXCEPTIONS
              OTHERS         = 1.
         EXIT.
        ENDIF.
      ENDLOOP.
    Regards,
    CK

  • How can we close the TCP connection in Extend Clients (C#)

    I tried to use a C# client to connect to server side Coherence Nodes. The problem is that, Coherence creates two new TCP connections every time I create a new cache, and it never closes the connection. In the end, Coherence keeps opening hundreds connection for me, and I faced the Out Of Memory Exception.
    I used Coherence Extend for the connection, and use Thread.CurrentPrincipal. I did the same thing in Java, and it works. I don't know why it doesn't work for C#.
    For now, is there any way provided by Coherence to close the open TCP connection?

    The issue was the AZURE_STORAGE_CONNECTION_STRING was set improperly. I was originally using the value from the 'sig' querystring value, instead of the entire signature querystring.
    SET AZURE_STORAGE_CONNECTION_STRING=BlobEndpoint=https://viperprodstorage1.blob.core.windows.net/;SharedAccessSignature=<signature>
    Should have been...
    SET AZURE_STORAGE_CONNECTION_STRING=BlobEndpoint=https://viperprodstorage1.blob.core.windows.net/;SharedAccessSignature=sr=c&si=foobar-prod-policy&sig=<signature>
    After that was set, I was able to upload.
    I don't know if this mattered much, but I also changed the format of the call to...
    azure storage blob upload -f "file.gz" --container "foobar-prod" -b "file.gz" --verbose

  • Is it ever "not safe" to close the lid with running programs?

    I'm new to Apple (and loving it) but have a basic question about closing the lid.  Is it safe to close the lid (entering sleep mode) when I am running a bunch of programs.  Or should I shut down programs before closing the lid?

    It depends on the nature of the applications. I certainly would not sleep a computer in the process of installing a program or performing an update. Sleeping a computer in the middle of a download or file transfer tends toward unintended negative consequences. This would also apply when in the middle of a backup.
    The general rule I suppose is don't interrupt the performance of apps which are adding or changing files. Some do better than others at resuming the process after waking.

  • Commit never reaches the DB (BC4J)

    When I perform changes on view object row (BC4J) or add a new row, the changes never reaches the database. The locks in the database are never released and the database remains unchanged after commit. The application works just fine in local mode, but after deploying the application modules to the application server the problem occurs. The same thing happens on update, new and delete.
    Row rowA = m_voDetail.createRow();
    rowA.setAttribute("Id",new Long(lId));
    rowNewProfileRow.setAttribute("Name",strName);
    //Commit the transaction
    Transaction traTrans = am.getTransaction();
    traTrans.commit();
    Versions:
    JDeveloper 3.2
    Oracle 9iAS (1.0.2)
    Oracle 8i (8.1.7)
    null

    Tanks for the reply. I have used the tester on one of my Application modules. First of all: commit gives exactly the same result from the tester. If I add a new record in one of the views, and then press "Save changes", then the record is available in the tester, but it is still not committed to the database (verified using SQL*Plus). After a while the following error occurrs:
    oracle.jbo.common.JboUnexpectedException: Unknown remote exception: XA_ERROR code = -3
    java.lang.reflect.Method java.lang.Class.getMethod0(java.lang.String, java.lang.Class[], int)
    java.lang.reflect.Method java.lang.Class.getDeclaredMethod(java.lang.String, java.lang.Class[])
    java.lang.Object javax.swing.text.JTextComponent$1.run()
    java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction)
    boolean javax.swing.text.JTextComponent.isProcessInputMethodEventOverridden()
    void javax.swing.text.JTextComponent.<init>()
    void javax.swing.JTextArea.<init>(javax.swing.text.Document, java.lang.String, int, int)
    void javax.swing.JTextArea.<init>(int, int)
    void oracle.jbo.jbotester.ErrorHandler.<init>(java.awt.Frame, java.lang.String, boolean)
    void oracle.jbo.jbotester.ErrorHandler.displayError(java.awt.Frame, java.lang.Throwable)
    void oracle.jbo.jbotester.BaseTree.handleView(oracle.jbo.jbotester.ObjTreeNode)
    void oracle.jbo.jbotester.BaseTree.processTreeMouseClicked(java.awt.event.MouseEvent)
    void oracle.jbo.jbotester.BaseTree.access$5000371(oracle.jbo.jbotester.BaseTree, java.awt.event.MouseEvent)
    void oracle.jbo.jbotester.BaseTree$TreeMouseListener.mouseClicked(java.awt.event.MouseEvent)
    void java.awt.AWTEventMulticaster.mouseClicked(java.awt.event.MouseEvent)
    void java.awt.Component.processMouseEvent(java.awt.event.MouseEvent)
    void java.awt.Component.processEvent(java.awt.AWTEvent)
    void java.awt.Container.processEvent(java.awt.AWTEvent)
    void java.awt.Component.dispatchEventImpl(java.awt.AWTEvent)
    void java.awt.Container.dispatchEventImpl(java.awt.AWTEvent)
    void java.awt.Component.dispatchEvent(java.awt.AWTEvent)
    void java.awt.LightweightDispatcher.retargetMouseEvent(java.awt.Component, int, java.awt.event.MouseEvent)
    boolean java.awt.LightweightDispatcher.processMouseEvent(java.awt.event.MouseEvent)
    boolean java.awt.LightweightDispatcher.dispatchEvent(java.awt.AWTEvent)
    void java.awt.Container.dispatchEventImpl(java.awt.AWTEvent)
    void java.awt.Window.dispatchEventImpl(java.awt.AWTEvent)
    void java.awt.Component.dispatchEvent(java.awt.AWTEvent)
    void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)
    boolean java.awt.EventDispatchThread.pumpOneEvent()
    void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)
    void java.awt.EventDispatchThread.run()
    ## Detail 0 ##
    java.rmi.RemoteException: XA_ERROR code = -3
    java.lang.reflect.Method java.lang.Class.getMethod0(java.lang.String, java.lang.Class[], int)
    java.lang.reflect.Method java.lang.Class.getDeclaredMethod(java.lang.String, java.lang.Class[])
    java.lang.Object javax.swing.text.JTextComponent$1.run()
    java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction)
    boolean javax.swing.text.JTextComponent.isProcessInputMethodEventOverridden()
    void javax.swing.text.JTextComponent.<init>()
    void javax.swing.JTextArea.<init>(javax.swing.text.Document, java.lang.String, int, int)
    void javax.swing.JTextArea.<init>(int, int)
    void oracle.jbo.jbotester.ErrorHandler.<init>(java.awt.Frame, java.lang.String, boolean)
    void oracle.jbo.jbotester.ErrorHandler.displayError(java.awt.Frame, java.lang.Throwable)
    void oracle.jbo.jbotester.BaseTree.handleView(oracle.jbo.jbotester.ObjTreeNode)
    void oracle.jbo.jbotester.BaseTree.processTreeMouseClicked(java.awt.event.MouseEvent)
    void oracle.jbo.jbotester.BaseTree.access$5000371(oracle.jbo.jbotester.BaseTree, java.awt.event.MouseEvent)
    void oracle.jbo.jbotester.BaseTree$TreeMouseListener.mo useClicked(java.awt.event.MouseEvent)
    void java.awt.AWTEventMulticaster.mouseClicked(java.awt.event.MouseEvent)
    void java.awt.Component.processMouseEvent(java.awt.event.MouseEvent)
    void java.awt.Component.processEvent(java.awt.AWTEvent)
    void java.awt.Container.processEvent(java.awt.AWTEvent)
    void java.awt.Component.dispatchEventImpl(java.awt.AWTEvent)
    void java.awt.Container.dispatchEventImpl(java.awt.AWTEvent)
    void java.awt.Component.dispatchEvent(java.awt.AWTEvent)
    void java.awt.LightweightDispatcher.retargetMouseEvent(java.awt.Component, int, java.awt.event.MouseEvent)
    boolean java.awt.LightweightDispatcher.processMouseEvent(java.awt.event.MouseEvent)
    boolean java.awt.LightweightDispatcher.dispatchEvent(java.awt.AWTEvent)
    void java.awt.Container.dispatchEventImpl(java.awt.AWTEvent)
    void java.awt.Window.dispatchEventImpl(java.awt.AWTEvent)
    void java.awt.Component.dispatchEvent(java.awt.AWTEvent)
    void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)
    boolean java.awt.EventDispatchThread.pumpOneEvent()
    void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)
    void java.awt.EventDispatchThread.run()
    null

  • Ever since the systyem upgraded me to 3.6.6. I can not even run one eight hour day without firefoc either crashing or locking up which requires me use C/A/Deleate to close the program. I used to be able to run 8 to 12 windows at a time and NEVER lock up

    Ever since the systyem upgraded me to 3.6.6. I can not even run one eight hour day without firefoc either crashing or locking up which requires me use C/A/Deleate to close the program. I used to be able to run 8 to 12 windows at a time and NEVER lock up or crash with the older version. Is this problem being looked into and or being corrected. I use Firefox with Google and my system is XP Pro 32 bit. THIS IS REALLY making me MAD. My email is [email protected] and would appreciate a response to this ASAP. I have tried a couple of items from your help section and nothing works.

    <u>'''Anonymous'''</u>
    Please post a separate question. Thank you. https://support.mozilla.com/tiki-ask_a_question.php?locale=en-US&forumId=1
    <u>'''chris'''</u>
    <u>'''''Crashing'''''</u>
    See:
    http://support.mozilla.com/en-US/kb/Firefox+crashes
    http://kb.mozillazine.org/Firefox_crashes
    http://support.mozilla.com/en-US/kb/Firefox+crashes+when+loading+certain+pages
    http://support.mozilla.com/en-US/kb/Firefox+crashes+when+you+open+it
    http://support.mozilla.com/en-US/kb/Firefox+will+not+start
    http://kb.mozillazine.org/Browser_will_not_start_up
    ''<u>'''Hanging'''</u>''
    See: http://support.mozilla.com/en-US/kb/Firefox+hangs
    <u>'''''Hanging at exit'''''</u>
    <u>'''Kill Application'''</u>
    In Task Manager, does firefox.exe show in the <u>'''Processes'''</u> tab?
    See: [http://kb.mozillazine.org/Kill_application Kill Application]
    '''<u>Causes and solutions for Firefox hanging at exit:</u>'''
    [[Firefox hangs]]
    [http://kb.mozillazine.org/Firefox_hangs#Hang_at_exit Firefox hangs at exit]
    [[Firefox is already running but is not responding]]
    ''<u>'''Safe Mode'''</u>''
    You may need to use '''[[Safe Mode]]''' (click on "Safe Mode" and read) to localize the problem. Firefox Safe Mode is a diagnostic mode that disables Extensions and some other features of Firefox. If you are using a theme, switch to the DEFAULT theme: Tools > Add-ons > Themes <u>'''before'''</u> starting Safe Mode. When entering Safe Mode, do not check any items on the entry window, just click "Continue in Safe Mode". Test to see if the problem you are experiencing is corrected.
    See:
    '''[[Troubleshooting extensions and themes]]'''
    '''[[Troubleshooting plugins]]'''
    '''[[Basic Troubleshooting]]'''
    If the problem does not occur in Safe-mode then disable all of your Extensions and Plug-ins and then try to find which is causing it by enabling <u>'''one at a time'''</u> until the problem reappears. <u>'''You MUST close and restart Firefox after EACH change'''</u> via File > Restart Firefox (on Mac: Firefox > Quit). You can use "Disable all add-ons" on the Safe mode start window.
    <u>'''chris'''</u>
    <u>'''''Other Issues'''''</u>: ~~red:You have installed plug-ins with known security issues. You should update them immediately.~~
    <u>'''Update Java'''</u>: your ver. 1.6.0.~~red:17~~; current ver. 1.6.0.20 (<u>important security update 04-15-2010</u>)
    (Firefox 3.6 and above requires Java 1.6.0.10 or higher; see: http://support.mozilla.com/en-US/kb/Java-related+issues#Java_does_not_work_in_Firefox_3_6 )
    ''(Windows users: Do the manual update; very easy.)''
    ~~red:Check your version here~~: http://www.mozilla.com/en-US/plugincheck/
    See: '''[http://support.mozilla.com/en-US/kb/Using+the+Java+plugin+with+Firefox#Updates Updating Java]'''
    Do the update with Firefox closed.
    <u>'''NOTE:'''</u> Java version 1.6.0.21 has been released. It is mainly an update for developers of Java applications and most users do not need to be concerned about downloading version 1.6.0.21. <u>'''''At this time'''''</u>, the update option in existing installations of Java 1.6.0.20 are not updating to version 1.6.0.21; <u>'''''at this time'''''</u>, it must be manually downloaded and installed. According to the Java release notes:
    ''"'''Bug Fixes'''''
    ''Java SE 6 Update 21 does not contain any additional fixes for security vulnerabilities to its previous release, Java SE 6 Update 20. Users who have Java SE 6 Update 20 have the latest security fixes and do not need to upgrade to this release to be current on security fixes."'' Source: http://java.sun.com/javase/6/webnotes/6u21.html
    <u>'''Install/Update Adobe Flash Player for Firefox (aka Shockwave Flash)'''</u>: your ver. 10.0 r~~red:45~~; current ver. 10.1 r53 ('''important security update 2010-06-10'''; see: http://www.adobe.com/support/security/bulletins/apsb10-14.html)
    ~~red:Check your version here~~: http://www.mozilla.com/en-US/plugincheck/
    See: '''[http://support.mozilla.com/en-US/kb/Managing+the+Flash+plugin#Updating_Flash Updating Flash]'''
    -'''<u>use Firefox to download</u>''' and <u>'''SAVE to your hard drive'''</u> (save to Desktop for easy access)
    -exit Firefox (File > Exit)
    -''<u>In Windows,</u>'' check to see that Firefox is completely closed (''Ctrl+Alt+Del, choose Task Manager, click Processes tab, if "firefox.exe" is on the list, right-click "firefox.exe" and choose End process, close the Task Manager window'')
    -''<u>In Windows,</u>'' double-click on the Adobe Flash installer you just downloaded to install/update Adobe Flash
    -when the Flash installation is complete, start Firefox, and test the Flash installation here: http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_15507&sliceId=1
    *<u>'''NOTE: On Vista and Windows 7'''</u> you may need to run the plugin installer as Administrator by starting the installer via the right-click context menu if you do not get an UAC prompt to ask for permission to continue (i.e nothing seems to happen). See this: http://vistasupport.mvps.org/run_as_administrator.htm
    *'''<u>NOTE for IE:</u>''' Firefox and most other browsers use a Plugin. IE uses an ActiveX version of Flash. To install/update the IE ActiveX Adobe Flash Player, same instructions as above, except use IE to download the ActiveX Flash installer. See: [[ActiveX]]
    *Also see: http://kb.mozillazine.org/Flash ~~red:'''''AND'''''~~ [[How do I edit options to add Adobe to the list of allowed sites]]
    <u>'''Update Shockwave for Director (aka Shockwave Player)'''</u>: your ver. ~~red:10.1 (very old)~~; current ver. 11.5.7.609 (<u>important security update released 2010-05-11</u>; see http://www.adobe.com/support/security/bulletins/apsb10-12.html)
    NOTE: this is not the same as Shockwave Flash; this installs the Shockwave Player.
    ~~red:Check your version here~~: http://www.mozilla.com/en-US/plugincheck/
    SAVE the installer to your hard drive (Desktop is a good place so you can find it). When the download is complete, exit Firefox (File > Exit), locate and double-click in the installer you just downloaded, let the install complete.
    See: '''[http://support.mozilla.com/en-US/kb/Using+the+Shockwave+plugin+with+Firefox#_Installing_Shockwave Installing Shockwave]'''
    <u>'''You '''</u>~~red:<u>'''MAY'''</u>~~<u>''' need to Update Adobe Reader for Firefox (aka Adobe PDF Plug-In For Firefox)'''</u>: your ver. N/A; current ver. 9.3.3 (important security update release 06-29-2010; see: http://www.adobe.com/support/security/bulletins/apsb10-15.html)
    ~~red:Check your version here~~: http://www.mozilla.com/en-US/plugincheck/
    See: http://support.mozilla.com/en-US/kb/Using+the+Adobe+Reader+plugin+with+Firefox#Installing_and_updating_Adobe_Reader
    ''<u>You may be able to update from the Adobe Reader installed on your system</u>'' instead of going to the Adobe site and downloading. Open the Adobe Reader installed on your system (''in Windows, Start > Program Files, find and click Adobe Reader to open''), click Help, click Check for Updates.
    ''<u>If you go to the Adobe site to download the current Adobe Reader:</u>''
    -'''<u>use Firefox to download</u>''' and <u>'''SAVE to your hard drive'''</u> (save to Desktop for easy access)
    ~~red:-See the images at the bottom left of this post to see the steps to take on the Adobe site~~
    -exit Firefox (File > Exit)
    -In Windows: check to see that Firefox is completely closed (''Ctrl+Alt+Del, choose Task Manager, click Processes tab, if "firefox.exe" is on the list, right-click "firefox.exe" and choose End process, close the Task Manager window'')
    -In Windows: double-click on the Adobe Reader installer you just downloaded to install/update Adobe Reader
    *<u>'''NOTE: On Vista and Windows 7'''</u> you may need to run the plugin installer as Administrator by starting the installer via the right-click context menu if you do not get an UAC prompt to ask for permission to continue (i.e nothing seems to happen). See this: http://vistasupport.mvps.org/run_as_administrator.htm
    *'''<u>NOTE for IE:</u>''' Firefox and most other browsers use a Plugin. IE uses an ActiveX version. To install/update the IE ActiveX version, same instructions as above, except use IE to download the ActiveX installer. See: [[ActiveX]]
    *Also see: http://kb.mozillazine.org/Adobe_Reader ~~red:'''''AND'''''~~ [[How do I edit options to add Adobe to the list of allowed sites]]

  • TS1424 I'm getting a message that indicates "Itunes has stopped working.  A problem caused the program to stop working. Windows will close the program and will notify you if a solution is available.  But I never get a response.  Can somebody help?

    When opening Itunes, after placing my ID and password, I'm getting a message that indicates "Itunes has stopped working.  A problem caused the program to stop working. Windows will close the program and will notify you if a solution is available.  But I never get a response.  Can somebody help?

    Same exact thing with me.  And no help from apple.  Just dropped nearly $600 and cannot get a decent working setup.
    Apple's only suggestion was to uninstall iTunes and Quicktime, and re-install... of course (the I.T. Crowd tactic).
    The crash happens only on iTunes store access.

  • Why does browser never close and unresponsive all the time horrible experience

    it never closes repeatedly crashes takes for ever to load when I try to close it is unresponsive wont open attachments horrible browser never responds what a joke no phone to contact live person takes forever if it decides to even open

    There are two places to check:
    1. In the Summary pane for your iPad make sure that this box is not checked;
    2. In the iTunes app you may wish to go to Preferences/Devices and check this box;

  • Close the IE page on click of a button in the transaction

    Hi All,
    I have a button on the transaction and once I click the button it should log off from the SAP WEB AS and close the Internet Explorer page.
    Can anyone guide me through the process?
    Thanks in advance,
    Sudhi

    from your earlier Passing data through URL i understand that you use integrated ITS, so my answer is going to be based on that.
    in your program add the following :
    include AVWRTCXM .
    and write the following code for button click.
    field-set '~OkCode' 1 '/NEX' .
    its-browser_redirect 'XXX'.
    now go to SICF
    navigate to your service under sap/bc/gui/sap/its/
    double click on the service
    choose error pages tab
    then choose logoff page tab
    make sure "explicit response time" radio button is selected.
    Click on the create icon next to "Body" in the resulting window enter the following text
    Thanks for using ITS
    <a href="#" anclick="windaw.clase();">
    click here to close this window
    </a>
    in this line (anclick="windaw.clase();) change the alphabet 'a' to 'o' .
    Save the service.
    and test the same.
    Regards
    Raja
    Message was edited by:
            Durairaj Athavan Raja

  • Transaction to close the inspection lot in mass.

    Hello,
    Due to settings in the material's QM view , inspection lot with origin 89 were created for all the process orders , we don't use these inspection lot for recording any results , now we are not able to close the process order because the inspection lot related to the order are not closed yet.
    Can you please let me know transaction to close all the inspection lots collectively so that i can proceed to close the orders.
    regards
    jeet

    Are you sure the lots are inspection origin 89 and that those are preventing the closing of the orders?  89's should be manual inspection lots and should not have been caused by any settings in the material master but would have had to be caused by someone creating them.  There is no reference to an order number in an 89 lot so I'm not sure how they could be blocking an order.  Now..  If you created these as the result of a custom development that might be different.  But they still shouldn't be able to block the closing of an order, unless of course you have some other development or user exit being used to check on the lot.
    That said, unless you record results in the 89 lots you can't mass process them close.  You have to do them one by one.
    I would also suggest you look for inspection lots with an 03 origin as these CAN influence the orders.  But again, they usually don't prevent you from marking the order technically complete.  If you mark the orders technically complete, you can then use QA40 to close the 03 lots where the orders are TECO status.
    FF

  • The first tab I have never closes and when I open a second one and close that the whole browser will close. Is this a bug?

    Since downloading the 4.0 beta, in both versions (4.0 and 3.6) I can't close the first tab that is opened when I start the browser. I click the red close button and nothing happens but if I open another tab and close that then it will close and the whole browser will close. I have uninstalled the beta version and the 3.6 version and reinstalled the 3.6 version but it hasn't made a difference.

    JUst experienced the exact  same problem after changing password.Getting same message. Hope someone has an answer for this.

  • How can i close the window when i logoff transaction iviews?

    Hi
    I want to close the Portal session window, when i logoff R/3.
    Is there any properties need to set in iview?
    pl suggest me
    thx
    pradeep

    Hi Pradeep,
    What do you mean by closing the Portal session window? Can you describe your events in a more detailed manner.. is this the portal window or is R/3 opened in a new window?
    cheers,

Maybe you are looking for

  • Installation Server and Windows 7 - Admin Rights Issue

    Here is a good one.  Completely reproducible error when granting Local Admin Rights by the LSH Service. For those with SAPGui Installation Server (SAPGui 7.20 Patch 6 or above) ... try this on a Windows 7 SP1 front end when you are NOT logged on with

  • Report Column as link or normal text based on SQL result

    Hi all, I would like to achieve the following: I have a report based on a PL/SQL function returning SQL query. The first column contains an ID (i.e. a number) If this number is contained in a nother table.field this column in this row shall be a link

  • Cross Client Logical File Name

    Hi Gurus, I have got 3 cross-client LFN's transported into PROD. Couple of couple ago, I had them imported into PROD. When I go to FILE, I do not see the new LFN's at all. There's no refresh button to refresh the screen. I have been like watching it

  • FaceTime connects and Apple Mail goes bezerk making noise

    Each time I have my MacBook Pro up and running, with my Apple Mail app running and I connect via FaceTime to someone, the mail program starts making tons of nosie as if it's sending and receiving mail over and over and over and over again...  Anyone

  • IPhone (Deletion of Podcasts) WHEN!?

    My phone is full of podcasts. I wish to delete them to make room for some music. When will ITunes allow me to selectively do this?