Contract getting locked forever after save

Hi Gurus ,
This problem is happening only in our production system with some contracts only when we save a contract through VA42.
contract is getting locked forever. when we see lock entries from SM12, it shows us entries for that contracts in blue. VBLOG table also have some entries for this lock entry. How could i identify that where the problem has occured. from blue entries we can say that it has been locked by some call to function module in update task. is there any way to find out which function module is causing the problem.
thanks
Rajpal Sehrawat

Hi Max,
thanks for the reply.
the lock entries in SM12 are in blue which means main program has submitted some function modules in update task and those tasks have not finished. that is why i am able to see entries in VBLOG. why these entries are not getting deleted. and VBLOG table is not showing any error also.
user comes out of the contract imidiately after save. even he kills his session also.

Similar Messages

  • AD account getting locked out after password change in Jabber

    When user changes his network credentials and does not update them in Jabber. Jabber will still try to connect to phone services and voicemail with the old credentials which is leading to their account getting locked in AD after three attempts.
    We are using Jabber 9.6.1, so a fairly new version.
    Can some suggest if there is a workaround?

    Hi,
    We are seeing a similar issue after the user has changed their AD password the account repeatedly gets locked out when they try to log into Jabber. 
    We are also using Cisco IM&P and our CUCM is LDAP synced
    I am interested to know why you are asking if LDAP authentication is configured?
    Regards,
    Andries

  • Loop through matrix before document saved (or get doc number after save)

    Hi All,
    I would like to loop through the matrix of a document (e.g. an invoice) before it is posted to the database (when the add button is clicked), but I would like to know at that point whether the invoice will definitely be posted.  When you look at ActionSuccess, the items in the matrix are already cleared.
    Alternatively I would like to get the number of the invoice that was added so I can loop through the invoice lines records in SQL.
    I have looked at quite a number of posts on tjis forum, but none of them has a definite answer to either of the options - or none I could find at least
    Your help is appreciated and thanks in advance,
    Adele

    Hi Adele,
    Here some thoughts form Frank and me:
    As you mention, it makes basically no sense to process anything in such a document when a user can still cancel the saving (what about approvals???!!!!!).
    To do the checks "after save" there are two options:
    An easier one which is not 100% reliable from a "data perspective" - and one which is 100% reliable, but is a bit more "dangerous" because you will need to rely on an event to come BeforeAction = True AND BeforeAction = False (remember the "BubbleEvent" etc.)
    Option 1.
    (Not 100% (99.5%?) reliable is like suggested in some posts, but sometimes basic things are missed:
    Use SQL in the ItemEvent handler:
    If pVal.ItemUID = "1" And
    pVal.EventType = SAPbouiCOM.BoEventTypes.et_ITEM_PRESSED And
    pVal.ActionSuccess = True Then
    "SELECT DocEntry FROM OINV WHERE UserSign = <internal number of user> AND UpdateDate = '<today>' AND DocTotal = <the value in UI> AND ...<maybe additional criteria as another person can reuse the user code - or a "DI API Add-On" may add a document in parallel>... ORDER BY DocEntry desc"
    Theoretically it could happen that through a second connection / application instance a document could be posted at the same time. That's why this way is not 100% reliable...
    Re time between "Add" and the SQL to retrieve the data being short (on what e.g. Florian relies on):
    Please take in mind that you cannopt really count on the time being that short (milliseconds) when thinking about speed of the client PC, network traffic, users working at the same time with a company database, overall database response when working with a bigger database etc. etc.!!!
    Option 2.
    In the ItemEvent handler when BeforeAction = True start a global transaction that will block the table. After the ActionSuccess (BeforeAction = False) make a select to the table to get the desired data, and finally end the Transaction by commiting the data.
    HTH,
    Felipe & Frank

  • Word file opened using WEBUTIL getting locked

    Hi, I am opening a word file using webutil's client_host and it is getting locked even after I close it. There is no winword.exe running in the machine(Task Manager). If I try to open the file, it says 'the file is being used by another user, do you want to make a copy of it ?'. Is any setting in the word itself or is it the default behaviour of client_host. Any ideas ?
    -Pardha

    Pardha,
    this already is filed as a bug and we are going to look at it.
    Frank

  • Reader X (10.01) locks up on Save As... (with workaround)

    I wouldn't normally be posting this because frankly there are enough users of Reader out there who can post bug reports. However, I found a really strange workaround that I wanted to make sure was "out there" in case someone else in the community might benefit.
    The situation is: Acobat Reader X locks up after Save As...
    In my particular situation these were pretty large single-page PDFs, probably saved directly out of Photoshop or Illustrator. I had added all sorts of annotations using the Note Tool. After Save As... the Save dialog box didn't go away, even after half an hour.
    However, just as I was about to give up and use Task Manager to force quit, I opened up Photoshop CS5. Instantly Reader unfroze and the file was saved and everyone was happy.
    The next time the same situation occurred, I didn't even bother waiting. I just relaunched PS5 and it freed up Reader again.
    So if you have CS5 installed and you run into Reader locking up, why not try launching one of the CS5 apps? Worked for me.
    T

    The only place that we use secured PDFs is through a website called readinga-z.com.  Which you need a paid account to access their PDFs.  I cannot provide you with a hotlink directly to their files.  I sent you a private message about this as well.   I have multiple employees having the same issue.
    I have contacted readinga-z.com's support and they have not had any other reported issues similiar to what we are having. They directed me to contact adobe which is why I am now here.

  • SYSTEM user's accounts get locks automatically

    Oracle SYSTEM user's account gets lock automatically after every 4-5 days. I user to run following query which unlocks the account:
    SQL:\>ALTER USER system ACCOUNT UNLOCK;
    How I can stop this happening? I am not able to alter profile for unlimited attempts also.
    Is there any workout, please help me....

    In my opinion, you should immediately find out who constantly tries to guess the password of system instead of making it possible for him to try that indefinitely without locking the account. That is like switching off the annoying alert sirene if someone constantly tries to break in.
    You should
    SQL> connect sys/oracle@prima as sysdba
    Connected.
    SQL> alter system set audit_trail=true scope=spfile;
    System altered.
    SQL> startup force
    ORACLE instance started.
    Total System Global Area  313860096 bytes
    Fixed Size                  1299624 bytes
    Variable Size             285215576 bytes
    Database Buffers           20971520 bytes
    Redo Buffers                6373376 bytes
    Database mounted.
    Database opened.
    SQL> audit session whenever not successful;
    Audit succeeded.
    SQL> select count(*) from dba_audit_trail;
      COUNT(*)
             0
    SQL> connect system/wrongpw@prima
    ERROR:
    ORA-01017: invalid username/password; logon denied
    Warning: You are no longer connected to ORACLE.
    SQL> connect sys/oracle@prima as sysdba
    Connected.
    SQL> select count(*) from dba_audit_trail;
      COUNT(*)
             1

  • HT201304 i cant remember my password i put on for my restriction setting. how many times cani try before i get locked out, and what domi do ifi can't remember it?

    i cannot remeber my password i put on when i restricted my account ..( caution for 10 yr old daughter) but now i can't remember it. i' m on my 9th try ... will  get locked out after a certain amount of attempts... any suggestions .  i dont want to have to start over ( i think i read that somewhere how many tries do i get?

    Not sure if there is a limit for the number of attempts for it, but if you can't remember the restrictions code then was it on the iPad when you last backed up ? If not then you can restore to that backup and it should be removed. If it was on the iPad when you last backed up then the only way to remove it is to reset the iPad back to factory defaults and you can then re-sync your content back to the iPad - you won't be able to restore to the backup as that will keep the code in place.

  • Auto config is getting failed and apps user is getting locked while running autoconfig on dbTier

    Hi Team,
    1) I have cold cloning.after cloning  i tried to run autoconfig on the db side.i am getting the following error
    2) unlocked the apps user and after unlocking executing the adautoconfig apps user is getting locked simuntaneously after executing the adautocfg.sh
    JDBC URL: jdbc:oracle:thin:@cimk.na.tcl.com:1528:PIMDev
        Exception occurred: java.sql.SQLException: ORA-28000: the account is locked
        Trying to connect using SID as ServiceName
    getConnectionUsingServiceName() -->
        JDBC URL: jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=cimk.na.tcl.com)(PORT=1528))(CONNECT_DATA=(SERVICE_NAME=PIMDev)))
        Exception occurred: java.sql.SQLException: ORA-28000: the account is locked
        Trying to connect using SID as ServiceName.DomainName
    getConnectionUsingServiceName() -->
        JDBC URL: jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=cimk.na.tcl.com)(PORT=1528))(CONNECT_DATA=(SERVICE_NAME=PIMDEV.na.tcl.com)))
        Exception occurred: java.sql.SQLException: Listener refused the connection with the following error:
    ORA-12514, TNS:listener does not currently know of service requested in connect descriptor
        Connection could not be obtained; returning null
    -------------------ADX Database Utility Finished---------------
            Verifying connection to the Database   : Could not be stablished
            No Restore Profile file created.
    Restore Profile utility ran successfully
    ===========================================================================
    adcvmlog.xml renamed to /u01/pimdev/11.2.0/appsutil/log/PIMDev_tcl/06141934/adcvmlog.xml.06141934
    [AutoConfig Error Report]
    The following report lists errors AutoConfig encountered during each
    phase of its execution.  Errors are grouped by directory and phase.
    The report format is:
          <filename>  <phase>  <return code where appropriate>
    [AutoConfig Error Report]
    The following report lists errors AutoConfig encountered during each
    phase of its execution.  Errors are grouped by directory and phase.
    The report format is:
          <filename>  <phase>  <return code where appropriate>
      [PROFILE PHASE]
      AutoConfig could not successfully execute the following scripts:
        Directory: /u01/pimdev/11.2.0/appsutil/install/PIMDev_tcl
          afdbprf.sh              INSTE8_PRF         1
      [APPLY PHASE]
      AutoConfig could not successfully execute the following scripts:
        Directory: /u01/pimdev/11.2.0/appsutil/install/PIMDev_tcl
          adcrobj.sh              INSTE8_APPLY       1
    AutoConfig is exiting with status 2
    AutoConfig execution completed on Fri Jun 14 19:34:18 2013
    Time taken for AutoConfig execution to complete : 0 mins  13 secs
    Please help me out                                           

    Hi Hussein
    SQL> select username,account_status from dba_users where username='APPS';
    USERNAME                       ACCOUNT_STATUS
    APPS                           LOCKED
    SQL> select username,account_status from dba_users where username='APPLSYS';
    USERNAME                       ACCOUNT_STATUS
    APPLSYS                        OPEN
    SQL> alter user apps account unlock;
    User altered.
    SQL> select username,account_status from dba_users where username='APPS';
    USERNAME                       ACCOUNT_STATUS
    APPS                           OPEN
    SQL> select username,account_status from dba_users where username='APPLSYS';
    USERNAME                       ACCOUNT_STATUS
    APPLSYS                        OPEN
    SQL>
    After running the adautoconfig facing the same issue and apps user is getting locked
    SQL> select username,account_status from dba_users where username='APPS';
    USERNAME                       ACCOUNT_STATUS
    APPS                           LOCKED

  • Sytem account gets locked constantly

    Hello:
    I see that the System account gets locked automatically after a period of time. I login as SYS, unlock it and it is available for about 5 minutes before it gets locked again.
    Can somebody tell me how I can prevent this from happening?
    Thanks.
    Venkat

    I think it is not a bad idea to lock the system account.
    However, to figure out, watch out the profile and limits of system.
    Maybe OEM is trying to login with default password of system/manager and after 10 attemps, the account is lock (pure guess)
    select username, profile, RESOURCE_NAME, limit
    from dba_profiles natural join dba_users
    where username='SYSTEM'
    and resource_type = 'PASSWORD'
    order by 1,3;
    USERNAME PROFILE RESOURCE_NAME            LIMIT
    SYSTEM   DEFAULT FAILED_LOGIN_ATTEMPTS    UNLIMITED
    SYSTEM   DEFAULT PASSWORD_GRACE_TIME      UNLIMITED
    SYSTEM   DEFAULT PASSWORD_LIFE_TIME       UNLIMITED
    SYSTEM   DEFAULT PASSWORD_LOCK_TIME       UNLIMITED
    SYSTEM   DEFAULT PASSWORD_REUSE_MAX       UNLIMITED
    SYSTEM   DEFAULT PASSWORD_REUSE_TIME      UNLIMITED
    SYSTEM   DEFAULT PASSWORD_VERIFY_FUNCTION NULLRegards
    Laurent Schneider
    OCM DBA

  • I have Iphone 4 and its lock from at&t, but my contract is getting over in short time. And no longer i want to use this service. So after contract gets over its my right to get factory unlock my iphone 4. so help me

    I have Iphone 4 and its lock from at&t, but my contract is getting over in short time. And no longer i want to use this service. So after contract gets over its my right to get factory unlock my iphone 4.

    jatpri1730 wrote:
    I have Iphone 4 and its lock from at&t, but my contract is getting over in short time. And no longer i want to use this service. So after contract gets over its my right to get factory unlock my iphone 4.
    Unfortunately, AT&T does not provide unlocking.
    Stedman

  • How to get the only the changed or newly added entries in AFTER SAVE.

    I have created table maintenance generated for a table,I want to get the newly added or changed entries while saving thats why im using AFTER SAVE event for the same,can anyone please tell me how to get the only the changed or newly added entries in AFTER SAVE.

    Hi,
    Welcome you post on the forum.
    I have moved your thread here because it is in English and should not in the language specific forum. What is your system version?
    Thanks,
    Gordon

  • Keyboard is getting locked after the first keypres...

    Guys, i have a serious trouble with my N900. Whenever i unlock my phone and start typing (it can be anywhere, new messages, contact selection or any typing on any websites) , after the first keypress, the keayboard is getting locked. And also i get the volume increase notification and the volumes goes up and up automatically.. After this, this process (vlume increase) happens in regular interval. And the wiered thing is whenever i make a call, the volume goes down and muted.. If it is not website or if any imnage is open, the page/image is getting zoomed to the maximum level.. 
    What could bethe problem? Any software update needed or any hardware problem..? I didnt install any applicaion recently..
    Pls help guys..
    Rob..

    Your welcome
    It that white star if it worked ;D
    Cheers mate
    "You may loose faith on us.. But never in your selves! From here, the fight will be your own.."
    _____________[Protect Transformers]_____________

  • The buttons in main the vi get locked after opening a vi reference in a subpanel and using buttons within the subpanel.

    I am trying to open a reference to a vi in the subpanel of the main vi. However after the vi opens in the subpanel and after pressing a few buttons in the subpanel the buttons in the main vi get locked, i.e. I can't even close the main vi or control anything else. Is there any way how I can avoid this happening?

    > The buttons in main the vi get locked after opening a vi reference in
    > a subpanel and using buttons within the subpanel.
    >
    > I am trying to open a reference to a vi in the subpanel of the main
    > vi. However after the vi opens in the subpanel and after pressing a
    > few buttons in the subpanel the buttons in the main vi get locked,
    > i.e. I can't even close the main vi or control anything else. Is there
    > any way how I can avoid this happening?
    This is most likely happening because in either the top or sub panel,
    there is an event structure that is queuing events, and is set to lock
    the panel until the events are handled, and because of the logic in the
    diagram, the events aren't being pulled from the queue.
    So, you have a deadlock. You are waiting
    on the panel. The panel is
    waiting on the diagram. And the diagram is waiting on something else.
    So, if there are indeed event structures involved, determine where in
    the diagram things are delaying. Also, if you do not need the panel to
    lock until the event is handled, you can change the setting in the
    events dialog on the structure. But the events will still be queued
    until the diagram starts executing.
    Greg McKaskle

  • Where does an abap program get stored after save?

    Where does an abap program get stored after save? ...plzz tell
    Edited by: Alvaro Tejada Galindo on Feb 18, 2008 11:28 AM

    this program download the code to presentation server
    Analyse this code.
    CHECK IT IN DEBUGGING
    REPORT zdownload_source MESSAGE-ID zabap.
    TABLES: trdir.
    SELECT-OPTIONS: repo FOR trdir-name.
    PARAMETERS: path(60) TYPE c DEFAULT 'C:\programs\'.
    DATA: BEGIN OF tabsource OCCURS 10,
          source(72) TYPE c,
          END OF tabsource.
    DATA: BEGIN OF tabtext OCCURS 50,
          tab LIKE textpool      ,
          END OF tabtext.
    DATA: BEGIN OF tabrdir OCCURS 100,
          rdir LIKE trdir,
          END OF tabrdir.
    DATA: filename LIKE rlgrap-filename,
          mode TYPE c VALUE ' ',
          rdirrows TYPE i,
          sourcerows TYPE i,
          rc TYPE i,
          length TYPE i.
    FIELD-SYMBOLS: <p>.
    DATA: ok TYPE i VALUE 0,
          fail TYPE i VALUE 1.
    AT SELECTION-SCREEN.
      DATA: i TYPE i.
      DESCRIBE TABLE repo LINES i.
      IF i <= 0.
        SET CURSOR FIELD repo.
        MESSAGE i001 WITH 'se message class'.
      ENDIF.
    START-OF-SELECTION.
      CONDENSE path NO-GAPS.
      length = strlen( path ).
      SUBTRACT 1 FROM length.
      ASSIGN path+length(1) TO <p>.
      IF <p> <> '\'.
        ADD 1 TO length.
        ASSIGN path+length TO <p>.
        <p> = '\'.
      ENDIF.
      SELECT * FROM trdir
              INTO TABLE tabrdir
              WHERE name IN repo.
      DESCRIBE TABLE tabrdir LINES rdirrows.
      CHECK rdirrows > 0.
      LOOP AT tabrdir.
        MOVE tabrdir TO trdir.
        PERFORM download_sourse USING rc.
        CHECK rc = ok.
    *    PERFORM download_textpool USING rc.
      ENDLOOP.
      write :/ sy-dbcnt , ' number of programs downloaded'.
    *&      Form  download_sourse
    *       text
    *      -->P_RC  text
    FORM download_sourse USING  rc.
      rc = fail.
      CLEAR: tabsource, filename.
      REFRESH: tabsource.
      READ REPORT trdir-name INTO tabsource.
      DESCRIBE TABLE tabsource LINES sourcerows.
      CHECK sourcerows > 0.
      CALL FUNCTION 'STRING_CONCATENATE_3'
        EXPORTING
          string1         = PATH
          string2         = TRDIR-NAME
          string3         = '.ABA'
       IMPORTING
         string          = FILENAME
       EXCEPTIONS
         too_small       = 1
    *   OTHERS          = 2
      IF sy-subrc <> 0.
    WRITE: 'AAAA'.
      ENDIF.
      CONDENSE filename NO-GAPS.
      PERFORM download TABLES tabsource USING filename rc.
    ENDFORM.                    " download_sourse
    *&      Form  download_textpool
    *       text
    *      -->P_RC  text
    FORM download_textpool USING    p_rc.
      rc = fail.
      CLEAR: tabtext, filename.
      REFRESH: tabtext.
      READ TEXTPOOL trdir-name INTO tabtext LANGUAGE sy-langu.
      DESCRIBE TABLE tabtext LINES sourcerows.
      CHECK sourcerows > 0.
      CALL FUNCTION 'STRING_CONCATENATE_3'
        EXPORTING
          string1         = path
          string2         = trdir-name
          string3         = '.TXT'
       IMPORTING
         string          = filename
       EXCEPTIONS
         too_small       = 1
    *   OTHERS          = 2
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      PERFORM download TABLES tabtext USING filename rc.
    ENDFORM.                    " download_textpool
    *&      Form  download
    *       text
    *      -->P_TABTEXT  text
    *      -->P_FILENAME  text
    *      -->P_RC  text
    FORM download TABLES   tabtext
                          USING filename
                           rc.
      rc = fail.
      CALL FUNCTION 'WS_DOWNLOAD'
       EXPORTING
    *     BIN_FILESIZE                  = ' '
    *     CODEPAGE                      = ' '
         FILENAME                      = filename
         FILETYPE                      = 'ASC'
         MODE                          = 'MODE'
    *     WK1_N_FORMAT                  = ' '
    *     WK1_N_SIZE                    = ' '
    *     WK1_T_FORMAT                  = ' '
    *     WK1_T_SIZE                    = ' '
    *     COL_SELECT                    = ' '
    *     COL_SELECTMASK                = ' '
    *     NO_AUTH_CHECK                 = ' '
    *   IMPORTING
    *     FILELENGTH                    =
        TABLES
          data_tab                      = TABTEXT
    *     FIELDNAMES                    =
    *   EXCEPTIONS
    *     FILE_OPEN_ERROR               = 1
    *     FILE_WRITE_ERROR              = 2
    *     INVALID_FILESIZE              = 3
    *     INVALID_TYPE                  = 4
    *     NO_BATCH                      = 5
    *     UNKNOWN_ERROR                 = 6
    *     INVALID_TABLE_WIDTH           = 7
    *     GUI_REFUSE_FILETRANSFER       = 8
    *     CUSTOMER_ERROR                = 9
    *     OTHERS                        = 10
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      IF sy-subrc <> 0.
        WRITE: / sy-subrc, ' message declare '.
      ENDIF.
      rc = sy-subrc.
    ENDFORM.                    " download
    regards.
    santhosh reddy
    <REMOVED BY MODERATOR>
    Edited by: Santhosh Reddy on Feb 13, 2008 6:48 PM
    Edited by: Alvaro Tejada Galindo on Feb 18, 2008 12:00 PM

  • I am halfway through my 4s contract and wanted to buy a 5, but only see the 64 gig available to me for 649 but that requires a 2 year contract. Where can I buy w ou getting locked into a contract and for how much?

    I am halfway through my 4s contract and wanted to buy a 5, but only see the 64 gig available to me for 649 but that requires a 2 year contract. Where can I buy w ou getting locked into a contract and for how much?

    Your contract is with your service provider - it has nothing at all to do with Apple.
    You can buy a contract free and/or unlocked iPhone from Apple and use it with whatever carrier you wish.  Your contract terms with your current service provider remain in effect for your iPhone 4s though, so if you cancel with them (or port your number out, which accomplishes the same thing) you will owe them early termination fees and so forth.
    Even if you pay full retail but want to use the phone with your current service provider, you are still obligated to complete the terms of your existing contract.

Maybe you are looking for

  • Trying to get multiple cell values within a geometry

    I am provided with 3 tables: 1 - The GeoRaster 2 - The geoRasterData table 3 - A VAT table who's PK is the cell value from the above tables Currently the user can select a point in our application and by using the getCellValue we get the cell value w

  • File adapter causes FTP process stop result 0 byte file.

    Has anyone ever heard that FTP adapter can cause FTP process to stop and end up with 0 byte file transferred? We use the normal ftp script to ftp file from external file server place file in XI inbound folder so that file adapter can pick them up fro

  • System Status I0126 for Plant Maintenance orders

    We want toallow users to Cancel Orders. I have found the status code but it is not available for our PM orders. How can we activate the status and how will it affect purchase requsitions against the order?

  • Table EBEW , field SOBKZ - Special Stock Indicator

    Hello, Can somebody tell me the value & text range for this field as there I cant find text anywhere. What is the purpose of this field? Thanks

  • Working with PDF, how to make it landscape?

    I'm using CF8 and I just want to create a very simple PDF report. Here is what I did: <cfdocument format="PDF" orientation = "landscape" saveasname="ReportName"                                  pagetype="custom" pageheight="8.5" pagewidth="15.5" marg