Restricitng a concurrent program to a particular user

Hi All,
We have a requirement that only one particular user should be able to run a concurrent program.
Can anyone help me in implementiing the same.
Regards,
Shruti

Hi;
I suggest also see:
Concurrent Report Access Level [ID 736547.1]
PS:Please dont forget to change thread status to answered if it possible when u belive your thread has been answered, it pretend to lose time of other forums user while they are searching open question which is not answered,thanks for understanding
Regard
Helios

Similar Messages

  • Restrict number of concurrent programs running by one user.

    Hello,
    How can I restrict whole number of concurrent programs running by one user?

    Hi
    I am not sure if I understand the question correctly, but if you are asking what I think you are asking, then you can restrict the number of simultaneous concurrent jobs that a user is allowed to run with this profile option;
    "Concurrent:Active Request Limit"
    I recommend that you set this at the User level and not the Site level since this parameter has caused problems for me in the past (certain types of transactions submit a batch of concurrent jobs, and if all the jobs are not able to start at the same time then the concurrent jobs go into a pending state and never complete. I have not worked out why this happens, so I just stopped restricting the number of concurrent jobs that a user could run).
    Frank

  • How to Email Output of Concurrent Program to set of Users

    Hi Everyone,
    I need to create a Custom concurrent program(Nothing but a PLSQL Program) to email the output of a concurrent program run to a set of users with request id as parameter.
    Please help me...!
    With Regards
    VeeJay

    Do not know Apps - and still have no idea what is implied with a "concurrent" program. Wish that systems/applications will use technology words correctly and appropriately...
    Also, you have not stated what the output is. Is is a text file? A CLOB? A ref cursor? A PL/SQL array? A 32KB varchar2? Something else?
    This output needs to be used to construct the e-mail.
    In order to mail anything you (the e-mail client) need:
    a) TCP client connectivity
    b) to construct a Mime (e-mail) body
    c) deliver that Mime body via TCP using the SMTP (Simple Mail Transfer Protocol)
    In Oracle 10.2.x that is as simple as making a single PL/SQL, courtesy of the UTL_MAIL package.
    In Oracle 9i and 10.1.x, that requires manually constructing a Mime body and then delivering it using the UTL_SMTP package.
    In Oracle 8i, that means using UTL_TCP if UTL_SMTP is not available.
    You need to consult the applicable documentation for that Oracle version. The document being "Supplied PL/SQL Packages and Types Reference" with Oracle 8i and 9i, and simply "PL/SQL Packages and Types Reference" with 10G and later.
    Documentation portal URL is http://tahiti.oracle.com

  • Custom Concurrent Program works under one user, not the other

    Hi,
    We created a custom concurrent program in our 12.1 Windows EBS environment. This is a "host" concurrent program which executes a cmd file on the host.
    Using user A with responsibility X this program runs OK. Using user B with the same responsibilty X it does nothing. Request finishes completed, but it does nothing.
    With user B, if I remove the .exe from the %XX_TOP%\bin directory it ends in error. When I remove the .cmd from %XX_TOP%\bin it ends completed succesfully.
    User A and B have the same user preferences and the same profile option values at the user level.
    Can someone tell me what more to check to solve this problem?
    Thanks, Marco

    No the concurrent program is not user-dependent. It starts with copying a file from one directory to another and then starting a sqlloader process. But even if I only put an echo in the cmd file, it is not started when executing with user B. The concurrent request logfile is empty (besides the usual lines about program name,start/stop timestamps, printing info,etc. in it).
    I run the concurrent program under the same responsibility for both users.

  • Concurrent programs ran in particular range of time.

    Hi All,
    Can any one let me know how to get the concurrent programs ran in specified time irrespective of the status.
    For ex. programs ran this morning 7am - 8am.
    Thanks
    RK

    Hi,
    How to get all the requests ran during that time?
    For example, the request may start at 6.59 and completed at specific time(ST)(7-8).
    or
    the request may start at 7.59
    or
    the request may start before the specific time and may get complete after ST which ran throught the ST.
    We've several scenarios how to get all those?

  • Single concurrent program for multiple operating units

    HI
    I am working on XML/BI publisher to generate AR invoice reports.
    We have single rdf report using which rtf templates are generated.
    There are 10 operating units (10 ORG_ID's) and 10 rtf templates, one for each operating unit. There are 4 different responsibilities for each ORG_ID
    Eg: ORG_ID's = 11, 12, 13, 14..........etc
    Eg: Responsibility = xx, yy, zz...........etc
    I want to register a single concurrent program. When a user submits a request from "XX" responsibility, then the template associated with that org_id should be generated. Whichever responsibility the user is accessing from, that particular template must be shown as output.
    How can i register one concurrent program for multiple operating units.
    Thanks!
    Edited by: 994628 on Mar 18, 2013 4:39 PM
    Edited by: 994628 on Mar 18, 2013 4:42 PM

    >
    There are 10 operating units (10 ORG_ID's) and 10 rtf templates, one for each operating unit. There are 4 different responsibilities for each ORG_ID
    Eg: ORG_ID's = 11, 12, 13, 14..........etc
    Eg: Responsibility = xx, yy, zz...........etc
    I want to register a single concurrent program. When a user submits a request from "XX" responsibility, then the template associated with that org_id should be generated. Whichever responsibility the user is accessing from, that particular template must be shown as output.
    >
    interesting case for 10 OE set 10 template
    what is purpose? for each OE different requirements for layout?
    BTW
    if each Responsibility associated with one org_id then
    - you can get current org_id when you run concurrent program
    - create main template (will be #11) with condition like
    <?choose:?>
    <?when: ORG_ID=11?>
    <?import:xdo://FND.XX11_SUB.en.00/?>
    <?call:TEMPLATE11?>
    <?end when?>
    <?when: ORG_ID=12?>
    <?import:xdo://FND.XX12_SUB.en.00/?>
    <?call:TEMPLATE12?>
    <?end when?>
    <?otherwise:?>
    <?import:xdo://FND.XX21_SUB.en.00/?>
    <?call:TEMPLATE21?>
    <?end otherwise?>
    <?end choose?>so based on org_id will be import of needed subtemplate
    - re-register your "10 rtf templates" as subtemplates
    another way is substitution of template for concurrent then it running
    in before_report trigger set needed template
    l_conc_request_id := fnd_global.conc_request_id;
        if ORG_ID = 11 then
          UPDATE fnd_conc_pp_actions t
             SET t.argument2 = 'XX11'
           where t.concurrent_request_id = l_conc_request_id
             and t.action_type = 6;
      if ORG_ID = 21 then
          UPDATE fnd_conc_pp_actions t
             SET t.argument2 = 'XX21'
           where t.concurrent_request_id = l_conc_request_id
             and t.action_type = 6;

  • Error in Receiving Transaction Processor concurrent program

    Hi all,i am trying to insert data into rcv_headers_interface and rcv_transactions_interface.So,for this data to get populated in rcv_shipment_headers and rcv_shipment_lines i am running Receiving Transaction Processor concurrent program in purchasing super user.But,this concurrent program gives below error
    +---------------------------------------------------------------------------+
    Purchasing: Version : 12.0.0
    Copyright (c) 1979, 1999, Oracle Corporation. All rights reserved.
    RVCTP module: Receiving Transaction Processor
    +---------------------------------------------------------------------------+
    Current system time is 14-OCT-2011 06:11:05
    +---------------------------------------------------------------------------+
    Concurrent program RVCTP returned error
    Cause:        RVCTP encountered an internal error.  Parameters: RVCTP,BATCH,,81,
    Action:        Note both this error number and the actions you are trying to perform. Contact your system administr
    RVTBM-007: Subroutine rvtbm_batch_mngr() returned error
    Cause:        Subroutine rvtbm_batch_mngr() returned an internal error. 
    Action:        Note this error number and the actions you are trying to perform. Contact your system admini
    RVTBM-040: ORA-06510: PL/SQL: unhandled user-defined exception
    ORA-06512: at "APP
    Cause:        A SQL error has occurred in RVTBM.  The SQL error is &LSQL_ERR.
    Action:        Take note of both this error number and the actions you were t
    Concurrent Manager encountered an error while attempting to start your immediate concurrent program RVCTP. Routine &ROUTINE received a return code of failure.
    Contact your support representative.
    +---------------------------------------------------------------------------+
    Current system time is 14-OCT-2011 06:11:10
    +---------------------------------------------------------------------------+
    +---------------------------------------------------------------------------+
    Executing request completion options...
    Output file size:
    0
    Output is not being printed because:
    The print option has been disabled for this report.
    Finished executing request completion options.
    {code}
    Can someone kindly explain me what's really going why coz i am new to this Applications.
    Thanks in advance!!                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    There are several notes on metalink for "RVTBM-007: Subroutine rvtbm_batch_mngr() returned error".
    Take a look at those.
    Also if you are using dual uoms, make sure that setup and conversion is setup correctly.
    Hope this helps,
    Sandeep Gandhi

  • Plsql query to find out the concurrent programs attaching a plsql package

    I want to find all the concurrent programs attaching a particular package. Please provide me with the appropriate query to get that.

    Hello,
    1- First thing: we are talking about a SQL query (and not a PL/SQL query).
    2- I would like to add an additional filter to the query of shazi as the query should show only PL/SQL packages
    SELECT
    fcp.CONCURRENT_PROGRAM_ID
    ,fcp.concurrent_program_name
    , fcpt.user_concurrent_program_name
    , DECODE(fe.execution_method_code
    , 'I', 'PL/SQL'
    ,'P', 'Reports'
    ,'C', 'SQL Loader'
    ,'Q', 'SQL Plus'
    ,'K', 'Java'
    ,'H', 'OS executable'
    ,'B' , 'Req. Set Stage'
    ) EXECUTION_METHOD
    ,UPPER(EXECUTION_FILE_NAME) PACKAGE_BODY
    from
    fnd_concurrent_programs_tl fcpt
    , fnd_executables fe
    ,fnd_concurrent_programs fcp
    where 1=1
    --and fcpt.concurrent_program_id = fcr.concurrent_program_id
    and fe.executable_id = fcp.executable_id
    and fcpt.concurrent_program_id = fcp.concurrent_program_id
    and fe.execution_method_code = 'I' /* here's the additional filter */
    --and fcpt.user_concurrent_program_name = :P_USER_CONC_PROGRAM_NAME
    --fcp.concurrent_program_name = :P_CONC_PROGRAM_NAME /* using this filter would use an index */
    Lalaina

  • Create a new responsibility to run a concurrent program

    Hi, I have a very basic question. I have written a concurrent program in Java, I want to create a new responsibility and assign roles/function to it so that user can access and run my Java concurrent program.
    I am new to EBS so I don't have an idea how to achieve this. Please let me know if there is a guide that provides me with steps to create a Responsibilities, roles/functions and then access my Java concurrent program from it.
    Also generally we provide patches for changes that we do in EBS environment. So once I create roles and responsibilities then how to create a patch for my changes so that they can be applied on other EBS environments.
    My Environment details are as follows:
    EBS - 12.1.3
    DB - Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production
    OS - Linux <host_name> 2.6.9-89.0.0.0.1.ELhugemem #1 SMP Tue May 19 04:38:38 EDT 2009 i686 i686 i386 GNU/Linux
    Thanks!

    Oracle guides are available here. Check System Administrator guide for details on responsibility, concurrent program etc.
    http://docs.oracle.com/cd/E18727_01/nav/technology.htm
    Additionally below links might be useful.
    http://docs.oracle.com/cd/E18727_01/doc.121/e12843/T156458T156461.htm
    http://www.in-oracle.com/Oracle-Apps/11i/create-responsabilities-apps.php
    http://www.exforsys.com/tutorials/oracle-apps/oracle-apps-sys-admin-users-and-responsibilities.html
    http://my.safaribooksonline.com/book/databases/oracle/9781849684842/making-a-concurrent-program-available-to-a-user/id286752990
    http://oracle.anilpassi.com/java-concurrent-programs-in-oracle.html
    http://erpschools.com/articles/concurrent-program-registration-and-add-it-to-request-group
    Thanks
    Shree

  • Concurrent program required on a single node with RAC connfiguration

    Hai all,
    RAC with 11.5.10.2 on Linux . 2 DB server with 2 app server with concurrent managers
    running on only one node..
    We have requirement to run a concurrent program and its child process to run on only one
    node of the RAC DB. Since this is not possible in this version and possible with 12.1 as per the note
    Method Of Always Running A Specific Concurrent Program On One Particular Node [ID 1070621.1] .
    We created a concurrent manager and under Specialization rules, we added all the program that
    we required. now in the concurrent manager -define form - under the primary and secondary node
    - do I have to set the node as one of the database server (or) one of the apps server.
    RAC Configuration Setup For Running MRP Planning, APS Planning, and Data Collection Processes [ID 279156.1]
    Please advise.

    We created a concurrent manager and under Specialization rules, we added all the program that
    we required. now in the concurrent manager -define form - under the primary and secondary node
    - do I have to set the node as one of the database server (or) one of the apps server.
    RAC Configuration Setup For Running MRP Planning, APS Planning, and Data Collection Processes [ID 279156.1]
    Please advise.You only need to set the name of the node where the CM is running (under "Primary Node").
    If you have PCP implemented, then you can type the name of each node where CM is running (CM node1 and CM node2).
    Thanks,
    Hussein

  • How to view concurrent program LOG from custom FORMs

    Hi,
    How to view concurrent program LOG from custom FORMs?
    Thanks
    ESL

    Hi Thanks for your response....
    lets assume there are 2 buttons, first button to submit concurrent program and second button to view concurrent program output/log.
    Actually im able to submit concurrent program from oracle custom form(6i) in ebusiness(11.5.0.2) i.e first button (WHEN-BUTTON_PRESSED buitin).
    Rather user navigating to VIEW-> REQUEST, i would like to give option to user to view concurrent program output/log when user clicks on second button (WHEN-BUTTON_PRESSED buitin)
    How can i achive this?
    Thanks,
    ESL

  • Can I retain my concurrent program schedule During R12 Upgrade ?

    Hi,
    We are approaching Oracle R12 Upgrade go live. We have large number of concurrent programs scheduled by various users. We are planning to put these programs on hold before upgrade. When we upgrade, do upgrade driver removes all schedules from concurrent program schedules? Is it wise to cancel all scheduled programs and reschedule them after upgrade?
    Please help!
    Best Regards,
    Dhaval Khamar

    When we upgrade, do upgrade driver removes all schedules from concurrent program schedules? No.
    Is it wise to cancel all scheduled programs and reschedule them after upgrade?No, just put them on hold before the upgrade then resume those jobs after the upgrade.
    Thanks,
    Hussein

  • On Demand Alert vs Concurrent Program

    Hi,
    I am new to the e-Business Suite of tools and was wondering what the difference is between an Alert that you would define as "on demand" to run whenever the need arises, versus creating a concurrent program that you could create a request for whenever you need to run it? In general, when would an "on demand" alert be used versus a concurrent program? I'm asking because I have some SQL that I need executed every now and then (like once every 2-3 months) to spot check some numbers. I don't know if I should set this up as an On Demand alert or as a concurrent program. Would it be over-kill to create a concurrent program for this? Seems like more steps are necessary for concurrent programs.
    Any help is greatly appreciated.

    Hi,
    Oracle Alert facilitates the flow of information within your organization by letting you create entities called alerts to monitor your business information and to notify you of the information you want.
    Concurrent programs are executable file which you choose to run (or schedule) at certain time/date, but it does not notify you as Oracle Alert does.
    You can find more details about Oracle Alert and Concurrent Programs in "Oracle Alert User's Guide" and "Oracle Applications System Administrator's Guide Documentation Set".
    Applications Releases 11i and 12
    http://www.oracle.com/technology/documentation/applications.html
    Thanks,
    Hussein

  • Manuals users should not be able to submit a concurrent program at a specific time frame:

    Hi
    Please let me know is it possible to restrict some users to submit a Concurrent program during a selected time frame .
    Eg we have an issue in which Process Lockboxes concurrent Program is submitted by the batch user and is also by the Users manually from Front end .What I want is that during a particular time frame everyday say from 12:00 AM to 6 PM I want to restrict manual users to submit this program ,whereas the Program can be submitted by the Batch user any time  .
    Please let me if its possible to achieve this and how .
    Thanks
    Rishabh

    Please don't post duplicates -- restrict user to submit concurrent Program
    Continue the discussion in your original post.
    Thanks,
    Hussein

  • Concurrent program to be submitted y only one user at a time

    Hi
    I have an issue with one of my reports. The report is using temporary tables, those will under go insertion and deletion while the report is running. So, to make sure that two or more concurrent requests submitted for same report, will not conflict, I want to make my concurrent request to be submitted by only one user at a time.
    How can I do that?
    Any help is appreciated.
    Thanks
    BalaKrishna

    The "run alone" box should not be checked. This indicates that this program can only run when no others are running. Pl see MOS Doc 1078462.6 (Custom SQL Concurrent Program Returns NO MANAGER Error). This option should typically not be used.
    To be able to achieve what you need, set the incompatibility (as you have done) and then bounce the concurrent managers for the setting to take effect. Pl see these MOS Docs
    436186.1 - Cannot Make Concurrent Programs Incompatible With Itself
    142944.1 - How to Make a Concurrent Program Incompatible with Itself
    HTH
    Srini

Maybe you are looking for

  • In my photobook some of the pages have "Lor" appear in the margin of the page.  I can't seem to delete it.  Any idea what it is?

    I am creating a photo book in iPhoto.  In the page view, book view, and slideshow, it shows the letters "Lor" in the right margin on some of the pages.  I haven't been able to delete it and don't know why those letters are showing up there.  Any idea

  • Can't drag and drop attachments in mail. Major issue!

    I have to restart the computer to drag and drop attachments to an email. If I want to do another drag and drop to another email I have to restart again to make it work. It is a real pain. Do any of you guys know if their is a file I can trash to make

  • Consumption values in Forecasting View

    Hi gurus, We are configuring automatic reorder point planning and we have a problem with forecasting based in consumption values. System has only consumption values for periods 4-08, 5-08 and 6-08. Concretely, a material has next consumption values:

  • Problem in using WSDL2Java tool in axis

    Hi all, When we make our Webservices in Apache Axis at Server,the first step is to generate the WSDL file by using Java2WSDL tool and passing the interface and ip address of server as argument.For example, org.apache.axis.wsdl.Java2WSDL -o AddService

  • Bex general settings modification in characteristic

    Hi all, I simply changed the text type (from short to medium text)in the Bex general settings of one characteristic. This change is well displayed in all queries based on ODS but does not appear in all queries based on cube! I also... - regenerate th