Where we set up forced on schedule with no detail plan?

Hi I see not the navigation of the planning mode in the scheduling options. Implementation guide says that constraints Mode in contrain tab I can configure

Unconstrained:

Constraint (Classic): Limited (without detailed planning):

Limited (with detailed planning):

But to brake the tab I don't see this option. Please help where to locate it.

BR
Sachin

Hi Salah,

Set the MSC profile: activate constraints advanced Yes.

You will then be able to view these options in the constraints tab.

Kind regards

Mohan Balaji

Tags: Oracle Applications

Similar Questions

  • Cursor_Sharing = Force and queries with literal comparisons forcing FTS

    Hi all

    I have the following scenario:

    • Oracle 11.2.0.3
    • A 3rd party application, requiring cursor_sharing = TRUE
    • A table (T2310) with an indexed field (C1000000161), which has no duplicate values
    • Cause the Mode Cache = force (don't think it's relevant in the present case, but its here to justify its appearance in the explain output)

    In this scenario, the 3rd party application run queries like the one below (I have to use the trick here, given that the explanation will not show the FTS):

            SQL> select /*+ GATHER_PLAN_STATISTICS */ C1000000161 
            > from aradmin.T2310 
            > where C1000000161 = 'INC000002137945' or ('a' = 'b');
    

    This type of query will eventually force a full table scan:

        SQL> SELECT * FROM table(DBMS_XPLAN.DISPLAY_CURSOR(FORMAT=>'ALLSTATS LAST'));
    
        PLAN_TABLE_OUTPUT
        --------------------------------------------------------------------------------------------------------------------
        SQL_ID  f3njwvkb0yf1x, child number 0
        -------------------------------------
        select /*+ GATHER_PLAN_STATISTICS */ C1000000161 from
        aradmin.T2310 where C1000000161 = :"SYS_B_0" or (:"SYS_B_1"
        = :"SYS_B_2")
    
        Plan hash value: 1862236576
    
        --------------------------------------------------------------------------------------------------------------------
        | Id  | Operation          | Name                       | Starts | E-Rows | A-Rows |   A-Time   | Buffers | Reads  |
        --------------------------------------------------------------------------------------------------------------------
    
        PLAN_TABLE_OUTPUT
        --------------------------------------------------------------------------------------------------------------------
        |   0 | SELECT STATEMENT   |                            |      1 |        |      0 |00:03:00.20 |    3964K|    161K|
        |   1 |  RESULT CACHE      | bkhyzz7n945syc4numpbs27y20 |      1 |        |      0 |00:03:00.20 |    3964K|    161K|
        |*  2 |   TABLE ACCESS FULL| T2310                      |      1 |  44030 |      0 |00:03:00.20 |    3964K|    161K|
        --------------------------------------------------------------------------------------------------------------------
    
        Predicate Information (identified by operation id):
        ---------------------------------------------------
    
           2 - filter((:SYS_B_1=:SYS_B_2 OR "T2310"."C1000000161"=:SYS_B_0))
    
        Result Cache Information (identified by operation id):
    
        PLAN_TABLE_OUTPUT
        --------------------------------------------------------------------------------------------------------------------
        ------------------------------------------------------
    
           1 -
    

    As we can see in the explanation, literals are replaced with bind variables, and I think that it is forcing the FTS. If you remove the literal comparison, the index is used as intended.

    So my question is: is it possible to avoid this behavior on the side of the database?

    Thank you!

    As you say, we have two possible plans, we want to either that each row in the table or we want to use our predicate of the column. If we let the plan for both possibilities should have acceptable performance for the typical case (: SYS_B_1<>: SYS_B_2) and correct the results in the case of equality.

    If sql is rewritable I would do something like

    Select / * + GATHER_PLAN_STATISTICS * / C1000000161
    of t2310
    where C1000000161 =: b1
    and (: b2 <> : b3 or: b2 is null or: b3 is null)
    Union of all the
    Select C1000000161
    of t2310
    where: = b2: b3;

    The or_expand indicator (undocumented, but I find it more easy to set use_concat) could be useful to force the regime to take this shape without having to rewrite the query.

    create table t2310 (pk_col, C1000000161 VARCHAR2 (100 CHAR), constraint t2310_pk primary key (pk_col));
    create index t2310_161 on t2310 (C1000000161);
    Insert into t2310
    Select rownum, dbms_random.string ('U', 3) | To_char(rowNum,00000000000000)
    of the double
    connect by rownum<=>
    commit;
    exec dbms_Stats.gather_Table_stats (user, 't2310')
    ALTER session set cursor_sharing = force;

    Select / * + OR_EXPAND(t2310 C1000000161) GATHER_PLAN_STATISTICS * / C1000000161
    of t2310
    where C1000000161 = 'INC000002137946' or ("a" = "b");
    SELECT * FROM table (DBMS_XPLAN. DISPLAY_CURSOR (FORMAT-ONLINE 'ALLSTATS LAST'));

    Hash value of plan: 928588817

    -------------------------------------------------------------------------------------------
    | ID | Operation | Name | Begins | E - lines. A - lines.  A - time | Pads |
    -------------------------------------------------------------------------------------------
    |  0 | SELECT STATEMENT |          |      1.        |      0 | 00:00:00.01 |      2.
    |  1.  CONCATENATION.          |      1.        |      0 | 00:00:00.01 |      2.
    |*  2 |  INDEX RANGE SCAN | T2310_161 |      1.      6.      0 | 00:00:00.01 |      2.
    |*  3 |  FILTER |          |      1.        |      0 | 00:00:00.01 |      0 |
    |*  4 |    TABLE ACCESS FULL | T2310 |      0 |  99994 |      0 | 00:00:00.01 |      0 |
    -------------------------------------------------------------------------------------------

    Information of predicates (identified by the operation identity card):
    ---------------------------------------------------

    2 - access("C1000000161"=:SYS_B_0)
    3 - filter(:SYS_B_1=:SYS_B_2)
    4 filter (LNNVL ("C1000000161" =: SYS_B_0))

    Now, you can use a plan for this sql database attach to the sql application:

    Select / * + GATHER_PLAN_STATISTICS * / C1000000161
    of t2310
    where C1000000161 = 'INC000002137946' or ("a" = "b");
    SELECT * FROM table (DBMS_XPLAN. DISPLAY_CURSOR (FORMAT-ONLINE 'ALLSTATS LAST'));

    Hash value of plan: 1862236576

    -------------------------------------------------------------------------------------
    | ID | Operation | Name | Begins | E - lines. A - lines.  A - time | Pads |
    -------------------------------------------------------------------------------------
    |  0 | SELECT STATEMENT |      |      1.        |      0 | 00:00:00.03 |    248.
    |*  1 |  TABLE ACCESS FULL | T2310 |      1.  1006 |      0 | 00:00:00.03 |    248.
    -------------------------------------------------------------------------------------

    Information of predicates (identified by the operation identity card):
    ---------------------------------------------------

    1 Filter ((: SYS_B_1 =: SYS_B_2 or "C1000000161" =: SYS_B_0))

    @sql_find t2310

    CHILD_NUMBER PLAN_HASH_VALUE LAST_ACTIVE_TIME EXECUTIONS SQL_TEXT SQL_ID
    ------------- ------------ --------------- ------------------- ---------- ----------------------------------------------------------------------------------------------------
    34k49g78s1w5w 453626665 04/01/2016 0 22:55:11 1 Select / * + no_parallel_index (t, "T2310_PK") cursor_sharing_exact use_weak_name_resl dyn dbms_stats
    cnsa5smf77n8w 2274106110 04/01/2016 0 22:55:11 1 Select / * + no_parallel_index (t, "T2310_161") use_weak_name_resl cursor_sharing_exact, dbms_stats dy
    1cyhgv72abcf5 928588817 04/01/2016 0 22:55:11 1 Select / * + OR_EXPAND(t2310 C1000000161) GATHER_PLAN_STATISTICS * / t2310 C1000000161 where C1000
    gv84zvt3hagrk 1862236576 04/01/2016 0 22:55:11 1 Select / * + GATHER_PLAN_STATISTICS * / C1000000161 t2310 where C1000000161 =: 'SYS_B_0' or (: "SYS)
    2z5dv340ttwc3 0 0 01/04/2016-22:55:11 1 BEGIN dbms_Stats.gather_Table_stats (user, 't2310'); END;

    number of plans of var
    exec: plans: = dbms_spm.load_plans_from_cursor_cache(sql_id=>'gv84zvt3hagrk',plan_hash_value=>1862236576)

    print plans
    PLANS
    --------
    1

    Select the SQL_HANDLE column, plan_name, sql_Text dba_sql_plan_baselines;

    SQL_HANDLE PLAN_NAME SQL_TEXT
    ------------------------------ ------------------------------ ---------------------------------------------------------
    SQL_32cad750b449f08a SQL_PLAN_35kqra2u4mw4a24696a58 select / * + GATHER_PLAN_STATISTICS * / C1000000161
    of t2310
    where C1000000161 =
                   
                   
    exec: plans: = dbms_spm.load_plans_from_cursor_cache (sql_id-online '1cyhgv72abcf5', plan_hash_value-online 928588817, sql_handle => 'SQL_32cad750b449f08a')
    Select the SQL_HANDLE column, plan_name, sql_Text dba_sql_plan_baselines;
    SQL_HANDLE PLAN_NAME SQL_TEXT
    ------------------------------ ------------------------------ -----------------------------------------------------
    SQL_32cad750b449f08a SQL_PLAN_35kqra2u4mw4a24696a58 select / * + GATHER_PLAN_STATISTICS * / C1000000161
    of t2310
    where C1000000161 =

    SQL_32cad750b449f08a SQL_PLAN_35kqra2u4mw4af7b73bde select / * + GATHER_PLAN_STATISTICS * / C1000000161
    of t2310
    where C1000000161 =

    exec: plans: = dbms_spm.alter_sql_plan_baseline(sql_handle=>'SQL_32cad750b449f08a',plan_name=>'SQL_PLAN_35kqra2u4mw4a24696a58',attribute_name=>'enabled',attribute_value=>'NO')

    Select / * + GATHER_PLAN_STATISTICS * / C1000000161
    of t2310
    where C1000000161 = 'INC000002137946' or ("a" = "b");
    SELECT * FROM table (DBMS_XPLAN. DISPLAY_CURSOR (FORMAT-ONLINE 'ALLSTATS LAST'));

    Hash value of plan: 928588817

    -------------------------------------------------------------------------------------------
    | ID | Operation | Name | Begins | E - lines. A - lines.  A - time | Pads |
    -------------------------------------------------------------------------------------------
    |  0 | SELECT STATEMENT |          |      1.        |      0 | 00:00:00.01 |      2.
    |  1.  CONCATENATION.          |      1.        |      0 | 00:00:00.01 |      2.
    |*  2 |  INDEX RANGE SCAN | T2310_161 |      1.      6.      0 | 00:00:00.01 |      2.
    |*  3 |  FILTER |          |      1.        |      0 | 00:00:00.01 |      0 |
    |*  4 |    TABLE ACCESS FULL | T2310 |      0 |  99994 |      0 | 00:00:00.01 |      0 |
    -------------------------------------------------------------------------------------------

    Information of predicates (identified by the operation identity card):
    ---------------------------------------------------

    2 - access("C1000000161"=:SYS_B_0)
    3 - filter(:SYS_B_1=:SYS_B_2)
    4 filter (LNNVL ("C1000000161" =: SYS_B_0))

    Note
    -----
    -Basic plan SQL SQL_PLAN_35kqra2u4mw4af7b73bde used for this statement

    As you can see, line 4 is running at all because of the filter in line 3 (start = 0 where id = 4)

  • Is it possible to toggle the setting panel open a closure with a combination of keys?

    Is it possible to toggle the setting panel open a closure with a combination of keys, or y at - it a script that can do?

    adjustmentPanel.jpg

    Try this instead:

    Go to Edit/shortcuts...

    Then where it says "shortcuts to: ', pull down the menu drop down and select"request Menus.

    Then expand the category of 'Window' and from there to the bottom, you will find 'Properties' - give a keyboard shortcut.

    This might work

  • can not set up to use exchange with thunderbird address book

    Dear support,

                               I have followed the following link to configure exchange address book with my thunder bird client( I am using the latest version), it is working perfectly fine with some computers, but for few it is not working.
    
       the strange thing is i am not getting any error, when i am typing any name in the address book field it is not giving any results, where as same settings are working fine with other users.
    

    any help will be much appreciated.

    Resolved, your first solution point worked on domain name was incorrect, I thank very you much for your help.

  • Where is the support for the iPhone with some of these issues?  It's amazing that none of the iphone Tech responded to the unanswered questions.

    Where is the support for the iPhone with some of these issues?  It's amazing that none of the iphone Tech responded to the unanswered questions.

    This is a user forum. You to read the terms of use to which you agreed to when registering, you would have been aware that the participation of Apple here is minimal.

  • set up a wireless network with 2 iMacs

    How to set up a wireless network with 2 iMacs?

    Need more information. Writing an effective communities of Apple Support question.

  • Is there a group policy setting to force all systems of closing down on the network at some point?

    Auto-off policy

    Hello

    We have a network of about 50 mix of Office Windows 7 and XP and server 2008 R2. Most of the users we found that they never stop their workstations when you leave the House. We want via Group Policy user desktop after a while if there is no activity.

    This can save our electricity cost and increase the effectiveness of the Office also.

    Thank you best regards &,.

    Champagne Shiju

    There is not this group policy setting.  You can check with the IT Support gurus on the TechNet forums and see if they can recommend some sleep or be able to save the settings that might help:

    http://social.technet.Microsoft.com/forums/en-us/categories/

  • Where can I buy a usb key with thin cable for A500 for cell phone charger?

    Where can I buy a usb key with thin cable for A500 for cell phone charger? Or I can do?  Thanks for any help.

    The A500 uses 12VDC to load. USB use 5VDC. You could do a cable, but it wouldn't work because of differences in voltage. Sorry...

  • Microsoft Account closed, but cannot set up a new one with the same e-mail address

    On his brand new Dell laptop, my wife has Microsoft Windows 8, but decided to close it after the establishment because she didn't see the need for it. Now the laptop screen ask password, but it cannot reopen the account to reset the password in him telling that the account does not exist. If she tries to set up a new account with the same email address, he said that the account is not accessible.

    When you delete a Microsoft account, there is a period of 30 days to use the same address to another account.

  • ERROR - 1051414 - cannot set the role of group with shared services [30:1101:JNDI error] error.

    Hi all

    I tried provide access to filter the group in both SSP and thru Maxl command but still get the error below. Any experience of this problem? If Yes, please let me know how you solved this problem.


    ERROR - 1051414 - cannot set the role of group with shared services [30:1101:JNDI error] error.


    Thanks in advance!

    Krishna

    Read the support document that I posted the link, prior to changes for openldap ensure you that it is saved.

  • Set values in a table with dynamic Action?

    Hi, I need help for my Application first, Apex, please. This page is for users of fuel truck who buy several gallons of fuel and use this page to distribute this fuel among the many projects. These users are familiar with filling in the Date of the Transaction, the Site, the Type of fuel from the fuel tank #, etc. on the top of the page and then using the lines below to split the fuel in different projects.

    Example: The user gets 100 gallons delivered, fills the Page elements on top with the details of the purchase and uses then 3 rows of tabular form to distribute among 3 project (Project1 gets 20 gallons, Project2 gets 30 gallons, Project3 gets 50 gallons). Each line in the form of tables inserts a new record in the table of database of fuel with different values for the Gallons and ProjectID, but the same Site, Date, Type of fuel and tank values.

    So there are columns hidden on the tabular presentation for Site, Date, Type of fuel and tank. They need get these values from the top so that the user doesn't have to type repeatedly. This is my problem: How can these hidden columns to get the values in the top text boxes dynamically? It must be dynamic, or changed immediately if the user changes anything in the decoders (as a typo).

    Just going to each as a column and defining the 'attributes of tabular form' by default for an item and then by setting the default value in the name of the element page text box will only work if somehow, the user submits the page and does not make typing errors before you fill out the form in a table. I need to be adjusted immediately. Also, is it something special to set the date picker on the form as a table for the value of the Date on the top picker? For the moment, I am trying to use the Set button to set the values in the boxes at the top of the page with their items and refresh the page, so the default values of the column in a table can be right. Is there a better way to do it? It does not work for the date picker.

    I just started to use Apex, I only know the basics of dynamic Action HMI. If I should use a jQuery or code in the HTML header or a 'Collection' Apex, be very specific. Page elements above have names like P13_TANK and the P13_TRANSACTION_DATE of Date Picker and the shape of the table has column names like TANK and TRANSACTION_DATE. Truckers and I appreciate any help, thanks!

    apex question.png

    ~ Saphira

    I forgot a few quotes:

    $("input[name='f05']").val(this.triggeringElement.value);
    
  • I am setting up a new computer (with windows 10 HP).  I have a CC account, I went to adobe to download to my new computer do I download trail version then login with my ID?

    I am setting up a new computer (with windows 10 HP).  I have a CC account, I went to adobe to download it and couldn't find the trial download, what I download that then connect with my login?

    Please check private message.

  • How to create a user interface, where my customers can create an account with my site

    How to create a user interface, where my customers can create an account with my site

    Hello

    Some associates of threads

    Re: How can someone create an account / register on my site?

    Re: Can I create a login/password in the Muse for a HTML5 page or two?

    Let me know if you have any question.

  • How to set up a second monitor with a different view than the one on my laptop? [was: ron]

    I'm trying to set up a second monitor with a different view than the one on my laptop.  I have a HP Pavilion dv5 laptop and a secondary monitor View Sonic UP2365-LED.  They are connected with a cable 15 pin... my only choice on the laptop.  When I select the second monitor, it displays a box of a second on my laptop and the secondary monitor.  My pointer moves on both screens at the same time, no matter what display, I select the monitor 2.

    It depends on the whther the laptop can support both points of view.

    Somewhere with the right button on the desktop, choose "screen resolution" and that there should be only a drop down menu entitled "multiple displays".  Looks like you have "displays a duplicate" choose (if it will leave you) "to extend these screens.

  • How to set the simultaneous request completed with warning?

    Hi all:
    How to set the simultaneous request completed with warning in oracle 11.5.9?


    For example:

    I completed an application with "Completed" 'Normal '.
    After I put a condition similar to when xxx > 0 then
    It will complete a request indicates 'Complete' 'warning '.



    My environment is: oracle 11.5.9 and operating system is Linux Redhat 4.0



    Concerning
    Terry

    Terry,

    You can use 'FND_CONCURRENT. Function SET_COMPLETION_STATUS.

    Note: 866194.1 - is there a method to return a 'Warning' to host Language simultaneous program status?

    The Oracle Applications Developer's Guide
    http://download-West.Oracle.com/docs/CD/B11454_01/11.5.9/Acrobat/115devg.PDF

    FND_CONCURRENT. SET_COMPLETION_STATUS
    http://forums.Oracle.com/forums/search.jspa?threadID=&q=FND_CONCURRENT.SET_COMPLETION_STATUS&objid=C3&DateRange=all&userid=&NumResults=15&rankBy=10001

    Thank you
    Hussein

Maybe you are looking for

  • Playing movies, I stayed on my Mac on my iPad

    I rented a movie from iTunes then on my Mac. I would like to play on my iPad. When I try to do it it says that I am not allowed. Any suggestion?

  • Installation SSD

    Hello My apologies if what follows has already been answered before. I'll be unboxing a new T440s this week, and I want to install an SSD in your laptop and install Windows on the SSD drive rather than on the HARD drive. I have some questions about t

  • How can I get rid of the material new wizard detected at startup?

    I downloaded an update (which began with VIA) and do not know what it was for.  For months, I was not able to install this wizard popup.  I tried this week and it worked.  It installed anything and the wizard popup have come.  Whatever it is added a

  • How can I select SEVERAL contacts in my phone blackBerry smart phones

    I want to select more than one contact to assign a specific ringtone, how do I do it?

  • Browser blackBerry Smartphones not fully loading

    Hello, I have a blackberry Torch 9800. My problem is that I can't watch internet on my phone easily. For some reason any that it shows only a part of the page, but there white boxes at the bottom of the block in training/photos/etc page. I deleted al