Row Lock On Form9i,but not occur on Form6i

I've develope form on oracle 6i to Processing data/recall the data,was processed,back. I try process data(insert data to table A,update the process date to table B and commit on form) and recall it back (delete data from A,update process date to table B and commit),it work fine.But when i compile to 9i,and try the same action (process and recall),I encounter the row locking.
Can anyone help me?
DBA_DML_LOCKS:
SESSION_ID     OWNER     NAME     MODE_HELD     MODE_REQUESTED     LAST_CONVERT     BLOCKING_OTHERS
276     TEST     A     Row-X (SX)     None     5330     Not Blocking
276     TEST     B     Row-X (SX)     None     5330     Not Blocking
v$locked_object :
XIDUSN     XIDSLOT     XIDSQN     OBJECT_ID     SESSION_ID     ORACLE_USERNAME     OS_USER_NAME     PROCESS     LOCKED_MODE
5     37     81166     43461     276     TEST     SYSTEM     5132:2292     3
5     37     81166     43291     276     TEST     SYSTEM     5132:2292     3

Hi Jon,
>>Is there a way through group policy (or anything else) to delete all icons on the desktop, except what you specifically program it to do via user-based GPobjects?  
Based on the description, we can choose to use mandatory user profile to do this. With mandatory user profiles, a user can modify his or her desktop, but the changes are not saved when the user logs off. The next time the user logs on, the mandatory user
profile created by the administrator is downloaded.
Regarding mandatory user profile, the following articles can be referred to for more information.
Mandatory User Profiles
https://msdn.microsoft.com/en-us/library/windows/desktop/bb776895(v=vs.85).aspx
Creating a Mandatory User Profile
https://technet.microsoft.com/en-us/library/gg241183(v=ws.10).aspx
Create a mandatory user profile
https://technet.microsoft.com/en-in/library/cc786301(v=ws.10).aspx
Best regards,
Frank Shen
Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

Similar Messages

  • User showing locked in SU01 but not in BP-Internet User and vice versa

    Hello,
    Why is it when when a user is locked in their CRM SU01 it won't show that that same user is locked on their BP-Internet User Tab and vice versa. We are eexperiencing issues where our web users are getting locked out. Are support team only has access to the web users BP-Internet User tab. When the suport team goes to unlock the user the lock check box is not checked in the BP. But when you go to the SU01 the account is showing as locked and vice versa, we're seeing the BP lock box checked but on the SU01 it says the account isn't locked. Isn't the BP-Internet User tab reading off of the SU01 account?
    Thank You very much,
    Alex

    Hi,
    From your question, I infer that the BP and CRM are using multiple User Management Engines (UMEs). If you have a centralized UME, you should not experience this issue. Please post back with complete details.
    Rgds,
    Raghu

  • Error -50103 occuring in one program, but not occuring in another similar program

    Hello,
    I'm a new user of LabView and I'm trying to figure out how a part of this programming process works.  Anyway, the block diagram of the working program consists of the first two pictures (C:\Users\Labview\Pictures\errorsetupnew1.jpg  -and-  C:\Users\Labview\Pictures\errorsetupnew2.jpg).  The parts in question are the DAQAssistant9 and DAQAssistant12 in the lower half of the diagram.  When I run the program, everything goes fine.
    So now I'm trying to run two other programs that both share the same properties as these two DAQAssistants, but they are in two separate programs.  When I run one program, it works, but when I run the other program, Error -50103 occurs at DAQmx Control Task.vi:10.  Pressing continue yields Error -50103 occuring at DAQmx Read (Analog 1D Wfm NChan NSamp).vi:3. 
    So my first attempt at solving it was to consolidate it into one program and run it all together, however the same error shows up.  I isolated the two While loops which seem to be causing the problem into a test program (third picture) and the error occurs there as well. 
    My question is what is different from the program in the first two pictures that is allowing the program to run correctly and the test program (which can be extended to the program that I need to work).
    I'm new, so please let me know how many beginner mistakes I might be making here!
    Thanks
    Attachments:
    errorsetupnew1.jpg ‏137 KB
    errorsetupnew2.jpg ‏113 KB
    errortest.jpg ‏82 KB

    I'm not currently at the computer with the files in question, but what if I attached those instead when I got the chance?  The problem is that I don't believe I am using the same DAQ resource in two different tasks.  The command line runs correctly in one, but can not run in the other even though the part giving the error is just a copy of the other program.
    I'm trying to run through the previous posts about this particular error but the LabView lingo is something I'm still getting used to.  Thank you for bearing with me and helping.

  • Sort the rows of a datagridview but not the last two

    Hi,
    with this code, the last row isn't sorted:
    Protected Overrides Sub OnSortCompare(ByVal e As System.Windows.Forms.DataGridViewSortCompareEventArgs)
    MyBase.OnSortCompare(e)
    If e.RowIndex1 = Me.RowCount - 1 Then e.Handled = True
    If e.RowIndex2 = Me.RowCount - 1 Then e.Handled = True
    End Sub
    How can I expand this code to do not sort the second last row too?
    This doesn't work:
    Protected Overrides Sub OnSortCompare(ByVal e As System.Windows.Forms.DataGridViewSortCompareEventArgs)
    MyBase.OnSortCompare(e)
    If e.RowIndex1 = Me.RowCount - 1 Then e.Handled = True
    If e.RowIndex2 = Me.RowCount - 1 Then e.Handled = True
    If e.RowIndex1 = Me.RowCount - 2 Then e.Handled = True
    If e.RowIndex2 = Me.RowCount - 2 Then e.Handled = True
    End Sub

    Hi DerStauner,
    I have no idea about what do you mean “But I would like to fix the last two row”.
     My code seems sort correct all of the data in the datagridview. Would you like to share a sample about this?
    Please pay attention that the sort method of ID is according to the string, so”10” will be before than “2”. If you want to compare the ID as integer, you need to change to your code to compare with integer instead of string.
    Here is a sample (change the OnSortCompare method with following code):
    Protected Overrides Sub OnSortCompare(ByVal e As System.Windows.Forms.DataGridViewSortCompareEventArgs)
    MyBase.OnSortCompare(e)
    'If e.RowIndex1 = Me.RowCount - 1 Then e.Handled = True
    Dim a As Integer = CInt(e.CellValue1.ToString())
    Dim b As Integer = CInt(e.CellValue2.ToString())
    e.SortResult = a.CompareTo(b)
    e.Handled = True
    If e.RowIndex2 = Me.RowCount - 1 Then e.Handled = True
    End Sub
    Hope this helps.
    Mark Liu-lxf [MSFT]
    MSDN Community Support | Feedback to us

  • Portrait lock is on but not turned on?

    My 4S seems to be having an issue with the portrait lock.
    The lock is not turned on but the scren will not turn.Any Ideas?

    I don't fully understand what the System Reset does but I've found that it cures many ills.  It's easy, quick and harmless:
    Hold down the on/off switch and the Home  button simultaneously  until you see the Apple logo.  Ignore the "Slide to power off" text if  it appears.
    A System Reset does not remove any apps, music, movies, etc. nor does it cause any settings to revert back to default.
    Also, you might wish to download the iPad-2 User Guide.  Pay special  attention to page 162.  Note that this Guide also applies to the iPad-1  with IOS 4.3 except for those functions that are not supported by the   hardware.
    http://support.apple.com/manuals/#ipad
    Finally,  the User Guide can be downloaded at no charge via iBooks and a less   comprehensive version of the Guide is included as a Safari bookmark.

  • Table row updated by rowid but not with rownum.

    May i know why a table is not getting update when a row specified by rownum
    and getting updated when row specified by rowid.
    SQL> update emp1 set name='ddd' where rownum = 2;
    SQL> /
    0 rows updated.
    SQL> update emp1 set name='ddd' where rowid='AAJD/dAAPAAASoEAAB';
    1 row updated.
    Thanks
    Mary

    Why would it? ROWNUM and ROWID are completely different.
    ROWID relates to the physical location of a row on disk.
    ROWNUM is a pseudocolumn incremented as rows are RETURNED to the client. Specifying "WHERE ROWNUM = 2" is useless because as each row is examined for suitability, its ROWNUM will be set to 1. This is not equal to 2, so the row is rejected. The next row is then examined, with its ROWNUM of 1, and rejected again. Etc...

  • HT204053 i pad is disabled cause i Forgot the pass w of the screen lock or some but not apple id ?

    MY MINI I PAD IS DISABLED CAUSE SOME1 MADE SCREEN LOOK AND NO BODY KNEW ABOUT < HOW CAN PROCEED PLS HELP> TY

    You will need to connect the iPad to the computer that you normally sync to and you should then be able to reset the iPad and restore/re-sync your content to it (http://support.apple.com/kb/HT1212) - you may need to put the iPad into recovery mode in order to be able to reset it : http://support.apple.com/kb/ht1808
    If you do it via a different computer then :
    If you restore on a different computer that was never synced with the device, you will be able to unlock the device for use and remove the passcode, but your data will not be present.

  • Help: Tab content "locked" in IE but not in Firefox

    I'm in the process of rebuilding a product page to be fully
    integrated with Spry.
    I have a tab labeled "buy" that contains a form. I can't
    click on the buttons in IE. In firefox it works fine.
    link:
    http://www.hotpuppy.com/product_zoom.asp?productnumber=HP-507
    I tried moving the form to the outside of the tab structure.
    This didn't work. It seems like a CSS problem. I've searched for a
    position relative tag. I've also searched for any width:auto.
    I've also progressively stripped more content out of the form
    in order to pare it down.
    I'd appreciate any suggestions if someone has an idea on what
    the issue is.
    Thanks

    I had the same problem for days what a waste of time trying
    to figure out code... the code was fine. I was running flash player
    7.0 Upgrade your flash plugin to 9.0 and it should work fine in
    Firefox and IE. It did for me.

  • G500 indicator light works for caps lock, but not for num lock

    I have G500 laptop running windows 8.1 64 bit.  I have noticed that there is no indicator light for when num lock is on.  The light on the front of the computer under the touchpad comes on when caps lock is active, but not for num lock.  Is there any indicator for num lock on this computer?

    Hi Kimikat730,
    Welcome to Lenovo Community!
    I’m sorry to inform you that there is no other indicator in G500 Laptop for Num-Lock key.
    Do post us back for further queries.
    Best Regards
    Shiva Kumar
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

  • Public Folders Permissions Tab Missing on one pc but not another

    this has to be pc related but i just can't find any info anywhere. when i log into a pc and startup outlook and go to public folders, i cannot see the permissions tab on the folders at all. but if i go to another pc, same OS and office version, i CAN see
    and edit the permissions on public folders! has anyone else run across this problem?
    Exchange Server 2007
    Desktops Win7
    Outlook 2013

    Hi,
    Since the issue only happens to specific client, the issue should be related to client side. I suggest we can do the following method to narrow down the issue:
    1. Start Outlook in safe mode(Start > Run >type “Outlook /safe”> Enter) to check whether the issue persists.
    2. Perform a clean boot for Windows to have a try.
    If the issue doesn’t happen in safe mode, the issue may be caused by any third-party add-ins. We can disable third-party add-ins one by one to find out the root cause.
    If the issue persists in Outlook safe mode but not occurs after performing a clean boot, please disable the related third-party program in Windows to resolve the issue. For more information about clean boot, please refer to:
    http://support.microsoft.com/kb/929135/en-us
    Regards,
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]
    Winnie Liang
    TechNet Community Support

  • Using Windows 7, Gmail does not respond to "compose," but remains locked in loading. Never occurred previously and does not occur in IE.

    Unable to compose new letter in Gmail using Firefox. This never occurred previously and does not occur using internet explorer with Gmail.

    I disabled themes... set the default theme....and all was well again !! try it ..may help...

  • Updateable Report/Pagination - rows found but not displayed

    Bear with me if there is a post that covers this, as the SEARCH facility seems to be hanging when I search on Pagination.
    I have a SQL Query (PL/SQL Function Body Returning SQL Query) which creates an Updatable Report.
    If I run the Query and the selection criteria results in more than one page in the "search results" and then I go to page 2 or page 3, etc and then peform another search that only results in 1 page of "search results", the actual search results will not display, but the pagination will show the number of rows that should be displaying.
    For example, I search on Coroner "John Black", which returns 55 rows. The first 50 are displayed. The next 5 are on page 2. If I then searchon Coroner "Jim Bean", 22 rows are returned (all on page 1). If I then search on "John Black" again, and this time, go to page 2 (to see the final 5 rows in the result set) and then search on "Jim Bean", I won't get any data in the report for Jim Bean, but a message showing that there are 22 rows of data. However, I cannot get that data to show (even if I select NEXT or PREVIOUS for the pages.
    Then if I go back and select on "John Black", get the same problem. I basically have to sign out completely in order to get this reset.
    Note that the problem occurs if you are on a page greater than that of the result set on the next query. For example, if I am on page 3 of 5 pages and perform another selection that has 3 pages, it is fine. But if the result set only has 2 pages, the form becomes confused.
    If the "Layout and Pagination" has a "Pagination Scheme" set to "Row Ranges X to Y of Z (no pagination)" I get an error like "Minimum row requested: 2401, rows found but not displayed: 46".
    If I use "Row ranges 1-15 16-30 (with set pagination)" I get "1-46" as a hyperlink, which if I click on, will show me the report.
    If I use "Row ranges 1-15 16-30 in select list (with pagination) I have a problem.
    If I use "Row Ranges X to Y (no pagination) I have problems.
    If I use "Row Ranges X to Y of Z (no pagination) I have problems.
    If I use "Row Ranges X to Y of Z (with pagination) I have problems.
    Basically, the one one that seems to work is those that have a hyperlink. Uing NEXT, PREVIOUS or a select list does not seem to work.
    Do you know what is causing this problem?

    I have the same issue, but cannot resolve it following above suggestions. I have a report page with search criteria and a "Go" button to submit the search. The branch back to the same page has "reset pagination for this page" checked, but still if run a query that returns just one row after having paged forwards, I get no rows displayed and a pagination link "1-1" that when clicked brings up the selected row.
    I tried adding a "Reset Pagination" process to run on submit (unconditionally), and it made no difference.
    I am using HTMLDB 2.0.

  • Multi row update not occuring

    I have created a tabular form using the wizard. This form will show three columns (and in addition a checkbox). I would like this form to be updateable in only certain instances. Because of that, I select the columns twice. I make one of them updateable, and the other read-only. Then I have a conditional display for the columns, so that the updateable columns are shown if a status variable in my page is 'EDIT' and the read-only columns are shown otherwise.
    The problem is that the multi row update does not occur. If I show one of the read-only columns when in the edit mode, the update is done. Also it is executed if I show one of the editable fields when the page is not in edit mode. But when I show only the editable fields in edit mode, and only the read-only fields when in read-only mode, the process is not run.
    What can I do about this? Why doesn't the multi row update occur?

    An alternative is to control the updates by controlling the buttons. Only show the submit/update button if the status on the page is "EDIT".

  • HT5858 In the control center I can change the mute or the rotation but not both.  How do I fix this.  In settings I can not uncheck both the mute and rotation lock.

    In the control center I can change the mute or the rotation but not both.  In the settings area therefore I can't uncheck the mute and rotation settings at the same time.

    Check your settings. The iPads have a small switch on the right edge. It can be used as a rotation lock to keep the screen from automatically reorienting itself as you move around, but you need to have the tablet’s settings configured properly. That same switch, right above the volume buttons, can also be set to function instead as a mute button to silence certain types of audio.
    If the switch is set to work as a mute button, you can change its purpose to “screen-rotation lock” by tapping the Settings icon on the home screen. On the Settings screen, tap General on the left side, and on the right side of the screen flick down to “Use Side Switch to.” Tap to select Lock Rotation or Mute to set the button’s function. Even if you set the side switch for your preferred use, you can still mute the Mini or lock the screen. Just double-click the Home button, and when the panel of apps appears along the bottom edge of the screen, flick the row from left to right with your finger. Tap the icon on the far left side of the row to either lock the iPad’s screen or mute the iPad’s alerts, notifications and sound effects. Music, podcasts and video are not muted unless you turn the volume all the way down.
     Cheers, Tom

  • IPhone will not ring if locked even when Do Not Disturb is not on. Even when the sound toggle on the side is not red.  This problem occurs regardless of whether it I have Do not Disturb on (manually, or scheduled) or COMPLETELY OFF.

    iPhone will not ring if locked when when Do Not Disturb is not on and the phone is not on silent (button on side is not red).  This problem occurs regardless of whether it I have Do not Disturb on (manually, or scheduled) or COMPLETELY OFF.   I've tried wiping the phone and reinstalling from a saved copy but of course the problem comes back because the problem is inherent in the save.   There are two options under "Silence" at the bottom of the Do Not Disturb preferences.  "Always" or "Only when iPhone is locked".   Those are the only two options and I want neither.  No amount of deselecting will work.  It forces you to pick one.  
    Does anyone have a solution given that I've better explained the problem? 

    The settings at the bottom of the Do Not Disturb page do not matter if you have the switch for Manual turned to off, or the Scheduled turned to off.
    When the phone is unlocked, if you try to raise the volume of the ringer, what do you see on the screen? Does it say ringer, do you see the word headphones anywhere?

Maybe you are looking for

  • ITunes wont open up from internet explorer or firefox... Cant verify email

    I recently made a iTunes store account and received the verification email, but when i click the link, it says opening iTunes please wait or something... So i wait and nothing happends. I tried to log in but it tells me to verify email again. Help pl

  • What is wrong with PBO (table control)

    Hi, Another beginner's question. Unable to fill table control. Following in my Program report  test_tab_con. controls flights type tableview using screen 100. data:  ok_code type sy-ucomm,        save_ok type sy-ucomm. data: fill type i,       begin

  • Remove Firm indicator for Purchase Requisitions

    Hi MM Gurus, May I please know how to remove the firmed indicator (MDPS-FIX01) from a Manually changed MRP created PR. I tried to unflag the fixed indicator in the PR but it does not do the trick. Are you able to please give me any ideas on this? Tha

  • Need to update list page using a pop up dialog page (Please its URGENT)

    Hi, I have master page with list of employees. Using a pop up dialog I'am trying to insert a new record but the record is not appearing in the list. Possible solutions tried but no hope: 1. Using managed bean I tried with refreshing (re-execute) the

  • Image Capture - Download Images

    I am having a hard time finding info on scripting Image Capture. Basically I want to have my script create a new folder, and then have Image Capture download all the images from the attached camera to that folder. I have no problem creating the folde