Oracle Concurrent job view

Hi,
I have one user who can see concurrent jobs. How can I disable this feature to that user? He wants to see only his request.
Oracle Applications: 12.0.6 and DB=r11gr2
Thanks

user587327 wrote:
Hi,
I have one user who can see concurrent jobs. How can I disable this feature to that user? He wants to see only his request.
Oracle Applications: 12.0.6 and DB=r11gr2
ThanksPlease see these docs.
R12 View Concurrent Requests FAQ [ID 1261985.1]
Concurrent Report Access Level [ID 736547.1]
How To Configure Access To Request Output Of The Same Responsibility in R12 [ID 804296.1]
In EBS R12 How Setup UMX / RBAC To View A User's Request Under Any Responsibility [ID 960405.1]
How To See Log And Output Files Of Requests Ran By Other Users Using Same Resp In R12 [ID 563946.1]
Cannot View Log/Out Files After Upgrade To R12 [ID 469911.1]
R12 RBAC Unable to View Output of Requests Submitted by other Users [ID 862812.1]
Thanks,
Hussein

Similar Messages

  • Oracle db JOBS concurrency

    Dumb questions on oracle database jobs scheduling:
    Assume we are scheduling database jobs with all default values( except what to run,when to run)
    job_queue_processes=1000
    1) If a job is scheduled to run every 5 minutes. Currently if the job is taking 2 minutes to run based on data, now later after few months
    if the job takes 7 minutes to run. Will there be duplicate jobs running at any given time ?
    2) Can the same job be running more than once at the same instance ?
    Thanks

    If you are using DBMS_JOB then, assuming that what you mean when you say that the job is scheduled to run every 5 minutes is that you specified an INTERVAL of sysdate + interval '5' minute when you created the job, that interval is evaluated to determine the next runtime only after the current run completes. If the job actually runs for 2 minutes, that would mean that the job actually runs every 7 minutes not every 5 minutes. If the job then starts taking 7 minutes, the job will actually run every 12 minutes.
    Justin

  • Use of Oracle Concurrent Requests to drive Essbase load and calc

    Hi all, we currently have a process which kicks off a check to see if users are online (maxl) , logoff users if necessary (maxl), run essbase calculation with maxl, run eis job if necessary, evaluate if there was any error and report the error back. We want to move this so that it is automated using Oracle Concurrent Manager via Oracle Concurrent Requests. Does anyone know if this is possible and if so typically the best approach ?

    Oracle concurrent requests looks like it will run host scripts e.g. shell scripts/... so this shouldn't be a problem to integrate your batch processes with it. If you are scheduling them from a server other than your Essbase server you will need to install the Essbase client on that machine and ensure you use the startmaxl.ksh or update paths as appropriate.
    I haven't ran into people using this before however it's not always the Oracle DBA's who manage Essbase.
    Regards,
    John A. Booth
    http://www.metavero.com

  • Oracle concurrent program paramters r12

    Hello,
    i want to create custom report in oracle apps the requirement is :
    Requirement (1)
    Excel report to be automated from Oracle ERP system by a concurrent job on a 1st of each calendar month with date parameters of 15th to 31st of previous calendar month
    Excel report to be automated from Oracle ERP system by a concurrent job on a 15th of each calendar month with date parameters of 1st to 14th of current calendar month
    CP Parameter(1) Date : 15th of previous calendar month
    CP Parameter(2) Date : 30th of previous calendar month
    Requirement (2) Monthly report extracted will only show changes from the previous month
    Can you please tell me how to create above parameter in oracle apps concurrent manager ??
    Also we need to display Monthly report extracted will only show changes from the previous month ??
    Pls help me ...
    Thanks,
    Ali
    Edited by: 981529 on Jan 13, 2013 8:10 AM
    Edited by: 981529 on Jan 15, 2013 2:18 AM

    Hi,
    Your question is related to Oracle EBS.
    Please post in the respective Category
    http://forums.oracle.com/forums/category.jspa?categoryID=3
    Thanks.

  • Running an Oracle Database Job as Administrator

    I have created an Oracle Database Job that executes a batch script. This batch script is supposed to creates some text files. However the batch file doesn't create the text files unless you run it as an administrator. How do I set the Oracle job so that it executes the batch script as an administrator?

    Try the usual DBA/ALL/USER prefixes for dictionary views:
    SQL> desc dba_scheduler_credentials;
    Name                                      Null?    Type
    OWNER                                     NOT NULL VARCHAR2(30)
    CREDENTIAL_NAME                           NOT NULL VARCHAR2(30)
    USERNAME                                  NOT NULL VARCHAR2(64)
    DATABASE_ROLE                                      VARCHAR2(7)
    WINDOWS_DOMAIN                                     VARCHAR2(30)
    COMMENTS                                           VARCHAR2(240)
    SQL> desc all_scheduler_credentials;
    Name                                      Null?    Type
    OWNER                                     NOT NULL VARCHAR2(30)
    CREDENTIAL_NAME                           NOT NULL VARCHAR2(30)
    USERNAME                                  NOT NULL VARCHAR2(64)
    DATABASE_ROLE                                      VARCHAR2(7)
    WINDOWS_DOMAIN                                     VARCHAR2(30)
    COMMENTS                                           VARCHAR2(240)
    SQL> desc user_scheduler_credentials;
    Name                                      Null?    Type
    CREDENTIAL_NAME                           NOT NULL VARCHAR2(30)
    USERNAME                                  NOT NULL VARCHAR2(64)
    DATABASE_ROLE                                      VARCHAR2(7)
    WINDOWS_DOMAIN                                     VARCHAR2(30)
    COMMENTS                                           VARCHAR2(240)
    SQL>

  • How do I submit an Oracle concurrent request from inside a page within Apex

    Hi all,
    Have an app that basically loads an interface table.I want to call a concurrent job from the page within my apex app that will submit the concurrent job in Oracle when I press the submit button. The only parameter is group id and typically end user enters 101010.
    I am unsure of the syntax.....
    the dba gave me this as an example but I believe its incomplete and not sure how to complete it or call it. I tried just creating a process to execute after submit but it errors out as in_user_id, in_resp_id and in_appl_id must be declared. Logic tells me I have to provide those somehow but I dont see how it fits into the submit request function.....
    BEGIN
    fnd_global.apps_initialize (in_user_id, in_resp_id, in_appl_id);
    x_request_id := fnd_request.submit_request ('XXBG'
    ,'XXBGBURSTPAY'
    ,NULL
    ,NULL
    ,FALSE
    ,in_outfile
    ,'XXBG_TOP'
    ,'xxbg_pydepadv_ctl.xml'
    COMMIT;
    Edited by: DSULLIVAN on Apr 13, 2010 10:33 AM

    This is really not an APEX issue, but a fundamental EBS one.
    You need to find out which respsonsibility and request group your concurrent program is in, and the user who is submitting the request. You can look in FND_USER for the USER_ID, FND_APPLICATION for teh RESP_APPL_ID and FND_RESPONSIBILITY for the RESP_ID. This call sets up the global security context, so if you are calling it from outside of an authenticated EBS session, it doesn't know who you are.
    Then you just call those - you can store them as application variables or jsut hardcode them.
    So here is a sample call:
    begin
      fnd_global.apps_initialize(1, 50000, 275);
    end;So just hardcode it for now - later you can get fancier.

  • Concurrent job executable question

    Hi,
    I need to modify a report run under the concurrent job called Planning Detail Report. Normally, when the executable is an Oracle report I can find it on the server, but this report executable method is setup at "Spawned" and I am not sure how to find the code behind this report. Can someone please tell me where to find this?
    Regards,
    Steve

    Spwaned program are found in the bin directory.
    Since planning detail report is under MRP, you will find it under $MRP_TOP/bin
    Oracle gives only executable for spawned programs; you do not get the source code. And it is almost impossible to modify these programs.
    However, you can make some attempt to gleam at the logic. In the past, I have run strings command on spawned executable to sneak some peeks into Oracle's logic. I was lucky enough to find what I needed but that is not guaranteed.
    Hope this helps,
    Sandeep Gandhi
    Independent Techno-functional consultant

  • Script to find concurrent job that ran long within a time range

    Oracle Apps:12.1.1
    DB:11.1.0.7
    OS:Linux RedHat 86x64
    All,
    Could anyone please share the Script to find concurrent job that ran long in a particular day say between 3pm - 4pm in an hour's time range specifically.
    Thanks for your time!
    Regards,

    try
    SELECT request_id,     
           to_char(actual_start_date, 'dd-MON-yy hh24:mi:ss') begin_dt,
           to_char(actual_completion_date, 'dd-MON-yy hh24:mi:ss') end_dt,
           substr(to_number(((actual_completion_date - actual_start_date) * 24) * 60),
                  1,
                  5) time_in_min,
           program      
      FROM fnd_conc_req_summary_v a
    WHERE (
           actual_start_date >  to_date('30-11-2011 08:00', 'dd-mm-yyyy hh24:mi')
              and
           actual_start_date <  to_date('30-11-2011 08:00', 'dd-mm-yyyy hh24:mi'))
           )

  • Scheduled concurrent jobs disappear

    Gurus,
    Periodically, we'll have a scheduled concurrent process which will be running every 5 or 10 minutes which will cease to reschedule itself. Anyone have this experience, as well? No outage occured or other manual intervention which would have caused this to happen.
    The last job always completes normally; no error.
    We are using Oracle Apps 11i, Database 11g.
    Thanks,
    Scott
    Edited by: sreese on Mar 21, 2013 9:14 AM

    Yes, this is a custom concurrent job. Scheduled every five minutes with no end date.
    Thanks,
    Scott
    Resubmit Interval Resubmit Interval Unit Code Resubmitted Resub Count Resubmitted Resubmitted End Date
    5.00000 MINUTES N 450408 N <null>
    Edited by: sreese on Mar 21, 2013 9:27 AM

  • Oracle text indexed view is possible

    Oracle text indexed view is possible???

    ok,
    My table name is T_DOC :
    ID----------------> NUMBER(30)
    DESCRIPTION-------> VARCHAR2(2000 BYTE)
    DOC---------------> BLOB
    FILENAME----------> VARCHAR2(2000 BYTE)
    MIMETYPE----------> VARCHAR2(2000 BYTE)
    LAST_UPDATE_DATE--> DATE
    T_DOC
    | Id | DESCRIPTION | DOC | FILENAME | MIMETYPE | LAST_UPDATE_DATE |
    | 1 | THE DOG | *(!BLOB) | THE_CAT.PDF | application/pdf | 20/05/2010 15:06:15 |
    | 2 | THE BIRD | **(!BLOB) | THE_BIRD.PDF | application/pdf | 20/05/2010 15:06:15 |
    | 3 | THE HUMAN AND CAT | ***(!BLOB) | THE_HUMAN.PDF | application/pdf | 20/05/2010 15:06:15 |
    * is a document .pdf with content: "the dog and cat"
    ** is a document .pdf with content: "the bird in house"
    *** is a document .pdf with content: "the human from USA"
    Index the columns DESCRIPTION, DOC (document content), FILENAME
    begin
    ctx_ddl.create_preference('idxDoc_lx', 'BASIC_LEXER');
    ctx_ddl.set_attribute (' idxDoc_lx ', 'MIXED_CASE', 'NO');
    end;
    begin
    ctx_ddl.create_preference('idxDoc_ds', 'MULTI_COLUMN_DATASTORE');
    ctx_ddl.set_attribute ('idxDoc_ds', 'COLUMNS', 'DOC, FILENAME, DESCRIPTION');
    end;
    CREATE INDEX IDX_DOC
    ON T_DOC (FILENAME)
    INDEXTYPE IS CTXSYS.CONTEXT
    PARAMETERS ('lexer idxDoc_lx
    datastore idxDoc_ds
    filter CTXSYS.AUTO_FILTER
    sync (on commit)');Search Query:
    select ID
    from T_DOC
    where CONTAINS (DOCUMENTO, 'CAT', 1) > 0 RESULT ID = 1
    WHY NOT ALSO Returned ID 3 ??????

  • Urgent:How to get the Sqltext for Oracle Sumbitted Jobs in 10g

    Dear All,
    Could you help me out in sorting the below problem.
    I use to get the current running sql's with following below query in 9i.
    SELECT A.SID,B.HASH_VALUE, OSUSER, USERNAME, SQL_TEXT
    FROM V$SESSION A, V$SQLTEXT B
    WHERE B.HASH_VALUE = A.SQL_HASH_VALUE
    AND USERNAME LIKE upper('%SCHEMA%')
    ORDER BY B.HASH_VALUE, B.PIECE;
    This is will work in 10g also for user-triggered sqls,stored procedures etc.
    But when oracle submits job i'm not able find which qurery is running.
    Seems For oracle jobs in 10g for V$session contain column SQL_HASH_VALUE as Zero and hence i'm not able find the any sql's running.
    Could you please any of you help me out how to get the Sqltext for Orcle submited Jobs in 10g.
    Please revert asap as this is very urgent for me.
    Thanks in Advance
    Anil.

    Have you tried to query WF_ITEMS? -- http://etrm.oracle.com/pls/et1211d9/etrm_pnav.show_object?c_name=WF_ITEMS&c_owner=APPLSYS&c_type=TABLE
    bde_wf_item.sql - Runtime Data of a Single Workflow Item [ID 187071.1]
    Thanks,
    Hussein

  • INVALID Oracle Database Catalog Views 10.1.0.5.0

    I am trying to resolve an INVALID state on the Oracle Database Catalog Views component of an Oracle 10.1.0.5.0 database.
    I was trying to resolve an issue with Data Pump by running: catalog.sql, catproc.sql and catexp.sql as SYS to add the EXFSYS schema.
    Doing this made the Oracle Database Catalog Views go INVALID.
    I have 61 invalid objects after running utlrp.sql, 26 of these are owned by SYS.
    Anyone know of a good way to resolve this issue or a metalink note, other link they can guide me to? I would like to avoid having to rebuild the database.
    Thanks!!!

    Anyway .... this is how to resolve this issue:
    Note: Ensure that the SHARED_POOL_SIZE and JAVA_POOL_SIZE parameters are set to at least 150M each, and then restart the instance in MIGRATE mode and execute catpatch as detailed in the following steps:
    Before starting this process, notify users of database that the database will be unavailable for approximately 2 hours. Proceed with proper notification procedures before shutting down the database.
    1.     sqlplus /nolog
    2.     spool $ORACLE_HOME/rdbms/log/catpatch_ddmmyy.log
    3.     connect / as sysdba
    4.     alter system set shared_pool_size = 200M scope=spfile; (if necessary)
    5.     alter system set java_pool_size = 150M scope=spfile; (if necessary)
    6.     shutdown immediate
    7.     startup migrate
    8.     @$ORACLE_HOME/rdbms/admin/catpatch.sql
    9.     spool off
    10.     shutdown immediate
    11.     startup
    12.     (validate): select comp_name,version,status from dba_registry;

  • Shell script called from .sql fie in oracle concurrent manager

    Hi
    I am running a request set through Oracle concurrent manager.
    The manager calls a .sql file. The sql file internally calls a unix shell script.
    v_body VARCHAR2(10000);
    v_body is set as followed in the sql program.
    v_body := 'ATTENTION :' || CHR(10) || CHR(10) ||
    'Your invoice number ' || r_error_rec.invoice_num || ' cannot be paid at present due ' ||
              'to one of the following reasons:' || CHR(10) || CHR(10) ||
              ' - The Purchase Order number quoted on the invoice is invalid ' || CHR(10) ||
              ' - The Purchase Order number has not been quoted at all on the invoice' || CHR(10) ||
              ' - The Purchase Order number is missing on one or more of the lines on the invoice' ||
              CHR(10) || CHR(10) ||
              'To avoid any further payment delays, please advise us of the correct Purchase ' ||
              'Order number(s) by emailing ' || r_error_rec.sender || '. Please note that it is not ' ||
              'necessary to re-submit the invoice.' || CHR(10) || CHR(10) ||
              'If you do not know the Purchase Order number, please contact the employee ' ||
              'who ordered your goods/services for this number. For future reference please note that ' ||
              'it is the responsibility of the vendor to ensure that an approved Purchase Order ' ||
              'number is received before supplying goods/services to . The purchase order is ' ||
              'evidence that the order has been approved by management.' || CHR(10) || CHR(10) ||
              'This invoice will be held as pending until the valid Purchase Order number can be provided.' || CHR(10) || CHR(10) ||
              'Thank you,' || CHR(10) || CHR(10) || ' Accounts Payable' || CHR(10);
    The sql now calls a unix shell script as shown below.
              l_request_id := fnd_request.submit_request (
                                            'CFI',                                   'CFIECAPEMLSH',                         NULL,                              NULL,                              FALSE,                              r_error_rec.sender,                          v_recipient,                              v_ccrecipient,                          v_bccrecipient,                          v_subject,                                   v_body,                                   v_attachment     
    So here the problem i am facing is that the shell script is not getting called.
    If i keep v_body= 'Test' the shell script is called and program is working fine.
    Is it a problem with CHR(10) or the size limitation of v_body i dont know.
    I tried to keep v_body VARCHAR2(10000).
    Still it did not work.
    Plz help me if u know about this.

    You cannot have varchar2 > 4000.

  • Oracle 9iAS Discoverer Viewer - version 9.0.2.53.16 - Exit Button

    We are using Oracle 9iAS Discoverer Viewer - version 9.0.2.53.16. Is it possible to remove or customize the 'Exit' button in discoverer viewer? If yes then how?

    Nevermind. I found a different solution.

  • "This file was created by Oracle Reports. View this document in Page Layout mode" , how to avoid this text

    we print some RTF Files , we dont want to  print to paper  this text "This file was created by Oracle Reports. View this document in Page Layout mode"
    How to able do it.
    Tanks for reply.

    we print some RTF Files , we dont want to  print to paper  this text "This file was created by Oracle Reports. View this document in Page Layout mode"
    How to able do it.
    Tanks for reply.

Maybe you are looking for

  • Robohelp 8 Webhelp Output cannot be viewed in IE 10

    Hi,     I have used Robohelp 8 to create help file. The webhelp output can be perfectly seen in IE 7 OR 8. However, in IE 10,  when the start page in the webhelp folder is cliked, the TOC is opening but the topics are not getting displayed in the rig

  • Ipod 160g music library shows up when connected to itunes, but empty when disconntected from computer

    At some point last night the mac i had connected to my ipod 160gb went to sleep and when it awakened, I ejected and disconnected ipod, instead of going right to the music menus, the ipod restarted, and opens up the language selection screen, as if it

  • License4J 4.5.2 Released

    License4J 4.5.2 Released http://www.license4j.com/download/License String column added to license table. Right click on license table header to show/hide. SSL connection to MySQL, PostgreSQL and MS SQL Server is supported. Database Storage Options wi

  • Tab characters in a string indicator box

    I have a string indicator box and would like to make text on different lines match up. When I try using the tab character or a \t I only get a single space. Is there a trick to making the text line up?

  • Copy html source

    how can I, from a given URL, copy the content from tag <body> to tag </body> of the html resul page in a JTextArea?