How to Disable check constraint in cronacle

Hi All,
We found that one job failed in cronacle with the following error
*ORA-20800: JCS-02138: problem with parameter "PRINT_BANNERPAGE"
SAP recommended the soultion saying
Disable the "Check Constraints" that are being used in the scripts currently in Cronacle or apply some patch.So we want to explore the first option i.e check constraint
Can any one help me in Regarding the check constraints.
Thanks in advance
shylaja

Hi,
Scripts can have check constraints and reference contraints, you will find these under the script properties when you edit the script.
I would set the constraint to optional, meaning that you still have the dropdown available but it no longer complains if it does not like the chosen value.
Regards,
Anton.

Similar Messages

  • How to disable checking for updates for Shockwave plug-in?

    SOS: how can I disable checking for updates (and reporting
    that there is one) for a Shockwave object on a web page?
    I have a client with an older Shockwave version, and it's a
    royal pain for each user to be told there's a newer veriosn and do
    you want to download...
    Any help gratefully received.

    I have zero experience of macs.
    Can't you install Silverlight and the plugin for all users rather than a specific one?
    I would guess/hope/expect there'd then be one plist file for everyone? 
    Please don't forget to upvote posts which you like and mark those which answer your question.
    My latest Technet article - Dynamic XAML

  • How to disable checking for sites security certificates

    I work in a company which manipulates its server in a way to make all unwanted sites look like not having a valid certificate so when I try to open them like gmail site I get a message that this site doesnt have a valid certificate and firefox - or any other browser- dont open the site. The question is: how to disable this feature in firefox to stop looking for sites certificates or doesnt care about them?

    Exporting a root certificate in another browser would only be helpful if it did work in that browser.
    If it happens in other browsers as well then it would be of any help.
    I'm not seeing the button to add an exception as that would allow to inspect the certificate in the Certificate Manager.
    Is that specific page opened in an (i)frame?
    If "I Understand the Risks" is missing then this page may be opened in an (i)frame and in that case try the right-click context menu and use "This Frame: Open Frame in New Tab".

  • How to disable  all constraints on a table

    Hi ,
    I want to disable all constraints on a table
    select 'ALTER TABLE '||substr(c.table_name,1,35)||
    ' DISABLE CONSTRAINT '||constraint_name||' ;'
    from user_constraints c
    where c.table_name = MY_table;
    thanks in advance

    What is wrong with query you have?
    Why do you have substr around the table name?
    If you want to execute the output as well, do this,
    SET SERVEROUT ON
    BEGIN
       FOR i IN (SELECT 'ALTER TABLE ' || c.table_name || ' DISABLE CONSTRAINT ' || constraint_name AS l_sql, table_name, constraint_name
                   FROM user_constraints c
                  WHERE c.table_name = my_table_name)
       LOOP
          EXECUTE IMMEDIATE i.l_sql;
          DBMS_OUTPUT.PUT_LINE ('Disabled constraint ' || i.constraint_name || ' on table ' || i.table_name);
       END LOOP;
    END;
    /

  • How to disable all Constraints for a Table

    Hi There,
    So I have a table that I need to delete a significant amount of records from. Using some advice I found it better to select the records that I wanted to keep into a temporary table and then truncate the original table. After that I insert the contents of the temp table into the original table.
    So now I am thinking I could speed this up even more if I disable all the constraints on the original table.
    Is there an easy way to do this or do I need to disable each constraint individually?
    thanks
    John

    http://forums.oracle.com/forums/search.jspa?threadID=&q=disable+all+constraints+&objID=c84&dateRange=all&userID=&numResults=15

  • How to disable check for updates??

    I ve to package a ctrlPrint 5.0.2.33 plugin to adobe incopy CS3. After installing that plugin exe , in adobe incopy first window, plugin will add two tabs called ctrl and ctrlPrint if we press ctrl tab than there is a feature called check for updates and i have to disable this update so pls suggest me how to do it ?  no reg entry ,no update reg ,no xlm file for update is there.

    Hi,
    If you are referring to Help -> Check for Updates, I'm not certain if that is possible.
    If you mean Tools -> Preferences -> Extensions, just uncheck the Automatically Check for Updates box. Doing that is standard procedure for improving the tool's launch performance.
    Regards,
    Gary

  • How to disable check in/check out in a document library?

    We have a library but would want to use it as regular network folder. Users don't want to see the check in/check out option. Is there a way to disable that? thanks in advance.

    If you want to disable both check in/ check out context menu items in the document library then see the following link which describes how to add custom menu items to a document library via a hidden "content editor web part". Add that to your web part page and add the following to the "source editor"
    <script language="javascript">
    function AddCheckinCheckoutMenuItem(m, ctx, url)
    {return;}
    </script>
    This will override the core.js function which adds these items to the context menu.
    http://blogs.msdn.com/bowerm/articles/175691.aspx
    http://www.certdev.com

  • Satellite Pro U200-10I - How to disable check system on start up?

    :x Hi,
    I have Toshiba Satellite Pro U200-10I and I want to disable the check system as it is time-consuming for the machine start up. Is there a way to diable that?
    Nedd your help!!:D

    If you are referring to CheckDisk, just let it run through and it should stop running after that, until the system crashes or the power shuts off while in Windows.
    If it keeps on appearing, test the Hard Disk for errors by using DFT.
    DFT Download: http://www.hitachigst.com/hdd/support/download.htm#DFT
    Download the ISO File and burn it to a CD-R Disc (There is also a Floppy Disk version if that's easier).
    If you dont know how to burn an ISO file, read this guide: http://www.petri.co.il/how_to_write_iso_files_to_cd.htm
    Restart your laptop and boot from the DFT Disc.
    Choose the "Advanced" Test and let it run (it may take an hour or so).
    If you see a red message box, the HDD is faulty.
    An error code 0x70 means there are bad sectors and the HDD needs replacing.

  • How to disable check box (row selector) in a tabular APEX report

    I have a tabular report with check boxes that gets populated by a SQL query.  For certain rows, I want to disable (or not render) the check box, depending on the value of one of the columns for that particular row (if the value of a column defined as Date is less than sysdate, I don't want to display the check box for that row).  I tried using the Conditional Display in the Column Attribute section of the check box, but I am unable to access this Date column which is being selected from a view in the source SQL.  I used variable such as :name-of_column, V(':name-of_column'), but always get a NULL value for this Date column in the SQL that I am trying to code in the Conditional Display section.  For this reason, my condition does not work correctly.
    What am I doing wrong?  Is my approach above correct?

    Hi Ajay,
    I don't think you can handle this with a conditional display, as that works on column level rather than row level.
    The way I see it, there are two things you can do:
    1) an sql approach, where youo render the checkbox as part of your query using apex_item.checkbox, check the oracle docs for detailed info on the usage APEX_ITEM
    You'll end up with a query like
    select case when YOUR_DATE_COLUMN < sysdate
                      then null
                      else  apex_item.checkbox2( p_idx => 1
                                                               , p_value => YOUR_DATE_COLUMN
    ,      <rest of your query here>
    from YOUR_TABLE
    2) an JavaScript approach in which you create a dynamic action that check your tabular form date column and, when necessary hides and disables the checkbox for that row.
    First option is more robust, but will require a bit more work. Second option is faster to develop, but might have different effect across various browsers and browser versions.
    Regads,
    Vincent
    http://vincentdeelen.blogspot.com

  • How to Disable Check for updates button in Help/About in firefox 5.0

    Hi the user should not manually check for updates so we want to disable the Check for updates button also in Help/About.
    Thanks in advanced

    You can hide that button with code in userChrome.css below the @namespace line.
    * http://kb.mozillazine.org/userChrome.css
    * http://kb.mozillazine.org/Editing_configuration
    You can use the ChromEdit Plus or Stylish extension to have easier access to the customization files.
    * ChromEdit Plus: http://webdesigns.ms11.net/chromeditp.html
    <pre><nowiki>@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */
    #aboutDialog #updateBox { display:none!important; }</nowiki></pre>
    You can also choose to lock the related update pref(s) to false if you want to make sure.
    See:
    * http://kb.mozillazine.org/Locking_preferences
    * http://kb.mozillazine.org/about:config

  • How to disable check for updates in sql developer 3.2

    Is there a possibility to disable or remove the "Check for Updates" option in SQL Developer 3.2.2 version.
    I have tried using the below AddVmMOption but it is not working
    AddVMOption -Dide.noextensions=oracle.ide.webupdate
    AddVMOption -Dide.cfu.autoskip=true

    Hi,
    If you are referring to Help -> Check for Updates, I'm not certain if that is possible.
    If you mean Tools -> Preferences -> Extensions, just uncheck the Automatically Check for Updates box. Doing that is standard procedure for improving the tool's launch performance.
    Regards,
    Gary

  • How to disable Check for Updates in Lightroom 4.1

    Can some one help me out please. Working on lightroom 4 failing to disable updates

    I did but when when the user user maually go to Help\Check for updates tab it displays all the updates that are available.
    I would like to gryed out Check for updates tab under Help

  • How to disable checks for certificate revocation on Java 7 u25

    I have updated a standalone network to Java 7 update 25.  With this new version is an option to "Perform certificate revocation checks on".  Since this checks against sources published to the outside network, it fails to allow users on the standalone network to use some Java applications.  This is remedied by checking Do not check.  However, I need to be able to push this setting out to all users on the network.
    Does anyone have or know a way to make this change through the registry or a config file?

    For Internal webauth - HTTP & HTTPs redirection is possible on 7.0 & 7.2 code on WLC. See the difference below.
    On 7.0 code both webauth redirection & wlc management were global, Disabling http management disables http webauth redirection, same for https as well. This behavior is changed in 7.2.
    On 7.2 code, You can have both HTTP & HTTPs management enabled and configure either HTTP or HTTPs redirection. use the below command to control http or https redirection.
    (Cisco Controller) >config network web-auth secureweb enable/disable
    Enable   -     Enables https for web-auth redirection.
    Disable  -     Enables http for web-auth redirection.

  • Content Server 6.1: How to disable check-in/out opertation?

    Hello,
    We have developed a custom application that would process the content items through a workflow. Our business users are frustrated with the content items being accidentally locked out. They would edit a content item and would approve it to the next stage without checking in the content item. As such the items remains locked by them and the portal administrator has to manually unlock the item through content server explorer.
    Is there a way to disable the entire check-in/out operation? Or as alternative is there a way to automatically check-in the content item when the user approves the content item?
    Thanks
    Jignesh

    Hi Jignesh, I apologize, I thought I was on 6.1 but in fact I'm on 6.2:(
    I assume they are fairly similar though.
    The solution I was talking about is to go into your publisher explorer and set the folder security in such a way that the checkin/checkout buttons don't appear.
    I dont know which setting that is off the tob of my head but I believe its Submitter. They will only see one button called "Submit for Approval". So that could be for your workflow initiator. Then the remainder of your workflow people can have the same security option, except the final publisher who will need Editor permission to see the Publish button, which will also allow them to checkin.
    Let me know if that helps!

  • How to apply check constraint at a row level?

    I am new to SQL. I have a schema like this. Students(student_id,student_name,club,date_of_passed_out). clubs(club_name,club_in_charge,club_inaugurated_date). The students can act as the club in charges. So it is not possible for a student to act as a club in-charge if his date_of_passed_out is less than club_inaugurated_date. I must prevent accidental inputs where the club inauguration date is greater than the date of pass out of the club in-charge. How can I achieve this. Thanks in advance.

    Hi,
    There should be three tables for your requirement.
    Table1: Clubs ( club_name, club_inauguration_date)  -- club_name is Primary Key
    Table2: Students(student_id,student_name,club_name,date_of_passed_out) -- student_id primary key, club_name - Foreign Key
    Table3: club_inchrg_detail ( club_name,club_incharge); -- club_incharge is - students(student_id)
    SQL> create or replace trigger club_inchrg_trig
      2  after insert or update on clubs
      3  for each row
      4  declare
      5      l_passed_out  date;
      6  begin
      7
      8        select date_of_passed_out
      9          into l_passed_out
    10        from students
    11        where student_id = :new.club_in_charge;
    12
    13    if inserting or updating then
    14        if :new.club_inaugurated_date <= l_passed_out then
    15              raise_application_error(-20100,' Student is not eligible for club incharge ');
    16        end if;
    17    end if;
    18  end;
    19  /
    Trigger created.
    As I already mentioned, you should have three tables for this requirement, and also I didnt handle the exceptions. This code is just for demonstration purpose only.

Maybe you are looking for

  • Itunes not recognising iPod and cds

    When i insert a CD or plug in my iPod to my Mac it does not register in itunes, therefore i am unable to sync anything

  • Lack of Bluetooth Functionality Blackberry Z10 Vehicle

    About a month ago the Bluetooth stopped working on my vehicle. It would work for my wife's i Phone but not the BB Z10 and it had worked flawlessly for about  a year. It was right after i had upgraded the software. I tried it on our other vehicle and

  • Used Sound Check on my iTunes library-did I make a mistake?

    Hi all, I have some rudimentary questions about iTunes, and the "Sound Check" feature in particular. I've just completed converting my 18K FLAC song library into ALAC, mainly to use iTunes Genius mixes and to be more compatible with my iPhone and Tou

  • IPhone 3G stuck on T-Mobile Network and no service!

    I am on Rogers in Canada and live on the border with the US and always pickup the US towers. When I pickup AT&T towers, my phone works as usual but every now and then it picks up a t-mobile and when it does, the phone because useless. Now it could be

  • Text variables for non-input ready variables

    I have a query with a structure in the Rows section.  The row structure contains three selections for different time periods.  Two of the time periods are based on non-input ready variables for Calendar Month.  The user will enter a calendar month an