There are times where siebel BC will be locked in the local database and you are not able to work on it,the reason for this is you have done a get of that object when the object is checkedout by some other user.
So now your requirement is to unlock the object,for this open your dbisqlc connecting to local database and run the below query
Ex:I am unlocking 'Account' BC in my local DB
QUERY: UPDATE SIEBEL.S_BUSCOMP SET OBJ_LOCKED_FLG='N' WHERE NAME = 'Account'
QUERY: COMMIT
Note: Don't forget to commit changes after you run the sql quey
Hope this helps someone
So now your requirement is to unlock the object,for this open your dbisqlc connecting to local database and run the below query
Ex:I am unlocking 'Account' BC in my local DB
QUERY: UPDATE SIEBEL.S_BUSCOMP SET OBJ_LOCKED_FLG='N' WHERE NAME = 'Account'
QUERY: COMMIT
Note: Don't forget to commit changes after you run the sql quey
Hope this helps someone