CVC Locked by User message during DP macro run in process chain

Hi Gurus,
During the process chain for macro run the following are the observations:
(a) DP Background Macro is part of a long process chain containing many other steps.
(b) Out of 10000 CVC's executed only 2000 CVC's give error in the job log " The selected data is locked by user XXXX"
(c) The process chain is delivered successful ie green, it ignores the wrong 2000 CVCs which are locked.
(d) The same job when triggered in background as standalone runs successful and does not show any error in the job log as well. All fine.
(e) The CVC's are mutually exclusive, so do not conflict with any parallel job.
Would appreciate if someone has come across such a situation and can suggest actions.
Regards,
PK

Hi Folks,
During the process chain for macro run the following are the observations:
(a) DP Background Macro is part of a long process chain containing many other steps.
(b) Out of 10000 CVC's executed only 2000 CVC's give error in the job log " The selected data is locked by user BATCHAPO"
(c) The process chain is delivered successful ie green, it ignores the errors 2000 CVCs which are locked.
(d) The same job when triggered in background as standalone runs successful and does not show any error in the job log as well. All fine.
(e) The CVC's are mutually exclusive, so do not conflict with any parallel job.
Would appreciate if someone has come across such a situation and can suggest actions.
Regards,
PK

Similar Messages

  • App Locker: admin user (non-admin token) unexpected run behavior

    As an administrative user with a filtered token (not choosing Run As Admin), when I double-click an .exe residing in a location that no App Locker rule would allow a non-admin token to run - I expect to see the application blocked by App Locker, but it runs
    instead.
    Background:
    No App Locker rule exists that would allow the .exe file's location (on my administrative user's desktop) or any of the other .exe's I'm able to run from my user's profile directory. I checked several of these with ProcExp and they all show
    BUILTIN\Administrators = DENY on the security tab.
    The only App Locker rule that would allow me to run this is the default rule for BUILTIN\Administrators.
    I have verified with ProcExp that the current Explorer.exe is running with a filtered token (BUILTIN\Administrators is denied).
    My administrative user is a member of a group, Workstation Local Admins, which is a member of BUILTIN\Administrators. I am not expecting this to match the Default rule for BUILTIN\Administrators.
    UAC group policy is configured as follows and I have verified this policy is applied to this system and registry keys have been set to match by group policy processing: ENABLED -> [Admin Approval Mode, Only elevate UIAccess applications...secure locations,
    Run all administrators in Admin Approval Mode, Switch to secure desktop when prompting..., Virtualize file and registry write failures...]; DISABLED -> [Allow UIAccess applications to prompt...without using the secure desktop, Detect application installs...,
    Only elevate executables...signed and validated]; PROMPT FOR CONSENT -> [Behavior of the elevation prompt for administrators..., Behavior of elevation prompt for standard users]
    AppIDSvc is running and seems healthy
    all rules categories are set to enforce
    So what is going on here? App Locker event log happily reports that all these "were allowed to run" - but how are the rules evaluating to allow them to run?
    born to learn!

    > Admin), when I double-click an .exe residing in a location that no App
    > Locker rule would allow a non-admin token to run - I expect to see the
    > application blocked by App Locker, but it runs instead.
    This guy experienced the same issue:
    http://superuser.com/questions/744350/applocker-and-uac-on-windows-8-1
    Seems to be a design change in W8, although I couldn't find any
    information about it...
    Martin
    Mal ein
    GUTES Buch über GPOs lesen?
    NO THEY ARE NOT EVIL, if you know what you are doing:
    Good or bad GPOs?
    And if IT bothers me - coke bottle design refreshment :))

  • How to create message at the end of the process chain

    Hi friends,
    I have created process chains. It's working fine. But I wanted to create message to give alert if process failure.
    My requirement is if any process failure due to any reason message has to receive to the responsible person. I'm not sure how to do this.
    Can anybody suggest how to do this if possible step by step.
    Thanks & Regards
    Siri

    Hi,
    Genarally, you can create a message, by right click and create message then give email ids in Maintain Recipent list (Recipt type = via internet) and then give message that you want to send in Edit Document.
    Check whether the email address is maintained in SU01 in address tab.
    Configure SMTP server is set up properly ( SCOT). Ask basis team to do it.
    There is also other option to send the mail through program, for this you need to trigger any event or you can insert this program at teh end of the process chain.
    *& Report ZTEST_FM_MAIL
    REPORT ztest_fm_mail.
    DATA : is_doc_chng TYPE sodocchgi1,
    it_objtxt TYPE STANDARD TABLE OF solisti1,
    is_objtxt TYPE solisti1,
    it_objpack TYPE STANDARD TABLE OF sopcklsti1,
    is_objpack TYPE sopcklsti1,
    it_objbin TYPE STANDARD TABLE OF solisti1,
    is_objbin TYPE solisti1,
    it_reclist TYPE STANDARD TABLE OF somlreci1,
    is_reclist TYPE somlreci1,
    w_lines_tx TYPE i.
    Create Message Body
    Title and Description
    *is_doc_chng-obj_name = 'MAIL'.
    is_doc_chng-obj_descr = 'Auto genareted Mail'.
    main text
    is_objtxt-line = 'This is an automatically generated mail. Please do not reply to it.'(028).
    APPEND is_objtxt TO it_objtxt.
    is_objtxt-line = space.
    APPEND is_objtxt TO it_objtxt.
    write packing list (main)
    DESCRIBE TABLE it_objtxt LINES w_lines_tx.
    READ TABLE it_objtxt INTO is_objtxt INDEX w_lines_tx.
    is_doc_chng-doc_size = ( w_lines_tx - 1 ) * 255 + STRLEN( is_objtxt ).
    CLEAR is_objpack-transf_bin.
    is_objpack-head_start = 1.
    is_objpack-head_num = 0.
    is_objpack-body_start = 1.
    is_objpack-body_num = w_lines_tx.
    is_objpack-doc_type = 'RAW'.
    APPEND is_objpack TO it_objpack.
    is_reclist-receiver = 'your email id'.
    is_reclist-rec_type = 'U'.
    APPEND is_reclist TO it_reclist.
    CLEAR is_reclist.
    *This is for SAP system mail box
    *is_reclist-receiver = 'your system login ID'.
    *is_reclist-rec_type = 'B'.
    *APPEND is_reclist TO it_reclist.
    *CLEAR is_reclist.
    CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
    EXPORTING
    document_data = is_doc_chng
    put_in_outbox = 'X'
    commit_work = 'X'
    TABLES
    packing_list = it_objpack
    contents_txt = it_objtxt
    receivers = it_reclist
    EXCEPTIONS
    too_many_receivers = 1
    document_not_sent = 2
    document_type_not_exist = 3
    operation_no_authorization = 4
    parameter_error = 5
    x_error = 6
    enqueue_error = 7
    OTHERS = 8.
    IF sy-subrc 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    Thanks
    Reddy
    Edited by: Surendra Reddy on Nov 18, 2008 5:36 AM

  • KI235 Error Message During F110 Payment Run.

    Dear Gurus,
    When we run transaction automatic payments F110, we get the message that our gain / loss in exchange rate account requires assignment to CO object. Error message "KI235".
    I did search on google and all forums, but am unable to find an answer.
    We are using New GL, and it's a requirement to split the foreign exchange to different cost centers. Because of this, we are not able to fix it to one cost center, but to let the system determine the cost center via OKB9 from the Profit center used.
    OKB9 has been set up properly with respective Profit Centers mapped to Cost Centers. However, during payment run, whenever there are multiple profit centers involved, system aren't able to derive cost center. We have no issue when document has only on Profit Center.
    Can anyone help me in this issue?
    Thanks.
    Regards

    Foreign exchange gain loss account is a P&L account which will ask for a cost center/object if this acount is created as a cost element n your system. There are two options.
    1. Don't create Forex gain/loss account account as a cost element. If you do this this account will never ask for a cost object.
    2. If this account is already created as a cost element then you need to default the cost center for this GL Account in OKB9.
    I hope this should work.

  • Need user message  when trying to run report when report session is already open.

    HI !!
    I have GUI application bulid in C++ and we call reports from
    there.
    My user ran a report and minimized the sceen display of the
    report. He then clicked Task/Reports and selected a differnet
    report from the selection list. After he clicked OK nothing
    happened. He believes a message box should appear at this point
    to notify the user that a report session is already opened and
    must be closed before generation of another report can be
    started. This has happened to him several times where he
    minimized a report that he ran and then worked on something else
    for a while and forgot that he had a report open. He then went
    back and tried to run another report and nothing would happen.
    Can we fix this isuue, I mean is there any way to run a differnt
    report if report session is already open.
    Please advise.
    Kind Regards
    SP

    HI,
    Is this qury is running fine in SQL?? Have you checked this query in Sql server(Management studio) whether working or not??.
    I feel there is some mismatch with relations in query.. Cross check your query once in SQL itself. once it is running well, we will take a look.
    Regards,
    Salah.

  • Supress message during Batch sequence run

    Hello, I have a Batch sequence that runs on a batch of files. Intermittently, it stops and displays messages like "Some difficult images where encountered...". Once I click on OK the processing continues. How can I suppress these messages? I could like my batch process to run without any human intervention. Thank you.

    Hello,
    I tried to use
    App = CreateObject("AcroExch.App")
    App.Hide()
    to suppress the new version warning message(as I am using acobat 6 to open acrobat 8 file), and it works fine. But when I test on the corrupted pdf file, then it will hang forever, as AvDoc.Open will wait for user to press "ok" to pass the return code back to continue run the statement 2.
    AvDoc = App.GetActiveDoc
    If AvDoc.Open(PDFPath, "") Then
    statement 1
    else
    statement 2
    end if
    I am not sure if you problem "Some difficult images where encountered..." fall into the same catagory or not. I am still looking for a solution for the corrupted file...
    MK

  • Error message during tax report running

    Dear Expert
    when i am running report S_alr_87012357: advance return for tax on sales /purchases
    at that time message is coming (In table A003, the entry JMOP V5 IN is missing) message no ff100
    what could be the reason for this error how to solve this problem please clarify .
    regards
    nitin shukla

    Hi,
    It seems like condition record is missing. You can try transaction FV11 to create a condition record for condition type JMOP.
    When you create condition record then insert country IN and Tax code V5
    Regards,
    Chintan Joshi.

  • How to get the name of user who last changed the settings of process chain

    Hi All,
    I have a process chain which runs daily. At one atep it would load data till PSA then there was a separate process to update data from PSA. But recently someone changed the settings and data is loaded in PSA and data target in parallel. But the process update data from PSA is also there still and as a result giving error as data already reached infocube. I wish to know who changed the settings. I searched and found about tcode SGL1 but not getting any fruitful result. Can anyone pls suggest anything.
    Thanks in advance,
    Sananda

    Hi There,
    In your case, nobody has changed the settings in process chains. However, it appears that someone has changed the Processing mode in the Info package. Since now the infopackage has already run after the change was made, I don't think there is any way to find who has changed the setting in the infopackage.
    However, the solution would be to just switch back the processing mode from "PSA and Data Targets in Parallel" to "Only PSA".
    Regards,
    Hemant Khemani

  • Personnel number 51099402 locked by user-CAT4

    HI,
    I am getting the message in cat4 is
    Personnel number 51099402 locked by user
    Message no. LR093
    I am unable to solve the problem.
    Please help me.
    Rgds,
    RSV

    Dear Carlos & Pete,
    Thanks for your help.
    I contacted HR & Basis  team.
    Thanks once again.
    RSV

  • How to display a popup message in query (through process chain)

    Hi Gurus,
    I need your help.
    I have an input query that triggers an event (through a button) and runs a process chain.
    I would like to show a popup message to inform the user when the process chain is over.
    Using function modules I've been able to show popup messages in the workbench, but I want to display this message directly in Bex Analyzer 7.0.
    Thanks
    Gabbo

    Hi,
    I'm also looking for a solution to display a custom message in the Bex Analyser at logon.
    Using function module in the logon user-exit works but only when loggin to the workbench.
    I don't want to use SM02 (which works in both cases) because I need to display a variable message depending on the user.
    If someone has an idea, I'll really appreciate.
    Best regards and happy New Year to all of you.

  • Regarding R/3 down time during the INIT Run

    Hi All,
    Please let me know the methods to reduce to R/3 Down time during the INIT Run.
    What happends if the tables( Setup / Update) are not locked in R/3 during the INIT Run.
    Your help would be appreciated.
    Thanks,
    Vijay

    Hi,
    To conclude..
    In Direct delta:
    note that no documents can be posted during delta initialization procedure from the start of the recompilation run in R/3 (setup tables filling job) until all records have been successfully updated in BW: every document posted in the meantime is irrecoverably lost.
    In Queued delta:
    The document postings (relevant for the involved application) can be opened again as soon as the execution of the recompilation run (or runs, if several and running in parallel) ends, that is when setup tables are filled, and a delta init request is posted in BW, because the system is able to collect new document data during the delta init uploading too (with a deeply felt recommendation: remember to avoid update collective run before all delta init requests have been successfully updated in your BW!).
    don’t forget that, regardless of the update method selected, it’s ALWAYS necessary to stop any document postings (for the relevant application) during setup tables recompilation run !
    Hope its clear.
    reward if helpful.
    shylaja.

  • Process Chain error while loading CVC's into planning book

    Hi I am trying to run the process chain and till half chain it was good and at one place after VMI Generate CVC's there is a box showing in RED and it is Load Infocube and when i checked it in batch processing it says end with errors and I could'nt find exactly what to do to run the entire process chain. Please anybody can tell me how can i resolve this issue.
    Thanks
    Hari

    Hi Senthil,
    For Some of the SKUs it is giving the Error , some abrupt values are stored in Live Cache for these SKUs(CVC), thats why it giving the Error.
    The only solution is ..i have to delete the CVCs and create new one...
    But i will loose the data as we cant take the Backup of Old CVC data  --> Giving COM Error
    The reason of Abrupt  Values in Live Cache  Could Be -->.>
    Macro/Alerts
    How can we fix these types of Error , as regularly i am getting these Error??
    Is there any Note/Patch to overcome this issue?
    Will be GR8 if i will get the solution..
    Regards,
    Rajesh Patil

  • Error "Lock not set for: Generate index" while running process chain

    SAP BI 7.0
    SP 17
    I am attempting to run a new process chain and the generate index steps are failing with the below errors:
    "Lock NOT set forGenerate index"
    "RSSM PROCESS INDEX terminated, because InfoCube/DSO object could not be locked."
    The process chain just pauses. I let it finish once and it took 2 hours and then it gave the failure messages. I have looked in sm12 and can see the lock records when the process chain is running - unfortunately I can't make much of what's there - everything looks good to me. I also tried creating the indexes manually inside the cube and then re-ran, but still get the same error. Before running the process chain, I can get the indexes to check to green, but then after running the process chain they go back to red. I have attempted many things (including looking at other forum posts), but I still have the error. Please help. Thanks
    Edited by: Brett Hutchinson on Feb 10, 2009 7:50 PM

    Hello,
    So Create index is getting failed in you PS right?
    1)check  if any other loads are running to the same CUBE(May be from other PC's also)
    Goto Manage of the cube and check, some times it may happen if any Loads are running into cube I mean Load/DTP & roll up may be running.. if so wait till the others Loads(Jobs) get complete then Repeat the failed index
    2) If the Create index is running for long time, then  got RSDDV--> Select the CUBE then click on BIA index(Maintenance wizard), you can see a message if indexes are running , this will happen  only when some one would have tried to generate the indexes manually and it may got failed due to some reason , since u are running it manually u couldn't identify whether it got failed or not unless you got to RSDDV and check. So delete the index here and then rebuild them through PC
    Hope it helps!

  • How to incorporate time in the Process chain messages

    Hi,
    I would like to create message after success or failure of process chain with time of failure in the subject.How to put system variable in the message subject?.
    Your help will be appreciated.
    thanks in advance.
    Manju

    raj,
    thanks for your quick reply but i would like to incorporate the finish time in the mail subject.
    for example mail subject is as follows.
    "GL process chain has been finished at xx:xx time".
    Here time (xx:xx) should automatically read and fill as per the finish time of the process chain.
    hope now it is clear.any idea how it can be done?.
    manju

  • "Caller 09 contains an error message "in Process chain

    Hi
    Most of my process chains have failed today.All are showing the same error i.e
    Error message from the source system
    Diagnosis
    An error occurred in the source system.
    System Response
    Caller 09 contains an error message.
    Further analysis:
    The error occurred in Extractor .
    Refer to the error message.
    Procedure
    How you remove the error depends on the error message.
    Note
    If the source system is a Client Workstation, then it is possible that the file that you wanted to load was being edited at the time of the data request. Make sure that the file is in the specified directory, that it is not being processed at the moment, and restart the request.
    If I am repeating the process it is showing the same error again
    Please help

    Hi,
    Even I got the same problem. All you need to do is:
    1) Go to Infopackage
    2) Update Tab:
        Choose: Initialize Delta process
            under that choose: Initialization with Data Transfer
    3) Save
    4) Go to Schedule Tab:
    5) Start the Load
    6) Refresh the page: /nRSA1
    7) Once it is done, then again go to the Update tab of the Infopackage
    8) Select Delta Update
    9) Save
    And now run the Process Chain.
    You should be able to run it smoothly.
    Thanks & Regards
    Hemendra Sharma

Maybe you are looking for

  • My mack pro is shut down..when i click on shutdown is not working

    my mack pro is shut down..when i click on shutdown is not working

  • Flash CS5 Pro/Flash Builder 4 Workflow

    I'm new to using Flash Builder as an AS3 editor for Flash Pro projects.  I've followed multiple tutorials on the workflow between the two but keep hitting a snag. For example: If I create a new FLA file, edit the document class and select Flash Build

  • Images out of wack...

    Hey there. I'ver just posted my website of my recent trip - done entirely with iWeb. The problem is that a lot of the images are not in their correct spots... Any suggestions? To place the images on the site - I just dragged & dropped them from the m

  • Reproducable Kernel Panic

    Hi all, I have a Macbook pro with OS X version 10.5.2 (9C31) with all the latest patches. I've come across a scenario where I can reproduce a kernel panic every time. I have both Transmission version 1.0.6, and the Cisco VPN client version 4.9.01 (00

  • Cg_ref_codes

    Hi all I try rewrite my app from forms6i to adf and i dont knew what is the best way to support my cg_ref_codes table? On one page i have many field where i use value from "DOMAIN" (cg_ref_codes) sometime i want red/write field (select-on-choice) som