Tooltip trigger styling not working

Hello,
I'm using Muse 3.1 on Mac 10.8 and i'm having trouble with trigger stlying. I'm able to style it exactly how i'd like it in the design view, but when i go into the preview view (or browser based view), the tooltip looses some of it's styling and defaults to a grey shape with rounded corners. Can anyone tell me why this is happening and how i might fix it?

Hi,
It may be the case that you're styling the Active state in Design mode, and then we see the Normal state when the page loads. If you select the trigger that's giving you trouble, then select the Normal state in the States panel, is the styling correct in Design mode?
Thanks,
Colby

Similar Messages

  • Partial Trigger is not working with Panel Group Layout using ADF 11g.

    Friends,
    I have a requirment , Based on the <af:selectBooleanCheckbox> value I have to render <af:panelGroupLayout> dynamically. If the check box is checked then I have to display panel group layout otherwise not. The problem what I am facing here is Partial Trigger is not working, If I Un check the boolean box and refresh the page then I see it is working. If I don't refresh the page I am not seeing this is working as expected.
    Below is the snippet
    <af:selectBooleanCheckbox value="#{bindings.ChkBoolean.inputValue}"
    shortDesc="#{bindings.OtherOptChk.hints.tooltip}"
    id="OtherOpt" immediate="true" autoSubmit="true"
    />
    <af:panelGroupLayout id="pgl11" partialTriggers="ChkBoolean"
    rendered="#{bindings.ChkBoolean.inputValue}"">
    Am I doing anything wrong here
    Thanks in Advance

    Hi,
    I started to document common pitfalls like this. The problem has been reported last month too and is documented in here: http://www.oracle.com/technetwork/developer-tools/adf/learnmore/oct2010-otn-harvest-183714.pdf
    Frank

  • When-mouse-click trigger is not working

    Hi,
    My forms version is 10g.
    I've a black level and item level when-mouse-click trigger.
    There is some code inside that which is not being executed.
    To test, i simply printed a hello message inside the trigger's code.
    Even hello is not being displayed.
    Can anyone please help me in why this trigger is not working.
    Navnit

    You have some other issues going on if you don't see anything from a when-mouse-click trigger.
    First of all, are you spelling the trigger using a dash or underscore? WHEN-MOUSE-CLICK will run, but WHEN_MOUSE_CLICK will not.
    Have you set :SYSTEM.Message_Level to some value above zero in the form? If so, set it back to zero.
    On what object are you trying to click? Is this causing navigation? Navigation may cause validation to run, which may fail, which may prevent the navigation, which may prevent your when-mouse-click from running.
    And last, are you sure you are running the currently compiled fmx version of your form?
    When nothing works, you need to back up and start finding out what DOES work first.

  • Trigger is not working properly

    Hi,
    I am developing a library application where user is not allowed to take more than 2 books. If he is trying to take 3rd book, a trigger is used from the backend to throw error message, I developed a trigger, but somhow it is not working: Can you anybody help? Code is below:
    create or replace trigger "BOOKS_T1"
    BEFORE
    insert or update on "BOOKS"
    for each row
    declare
    counter1 number(38);
    countstr varchar2(10);
    pragma autonomous_transaction;
    begin
    select count(*) into countstr from books where user_name ='[email protected]';
    counter1:=to_number(countstr);
    IF counter1 > 2 THEN
    RAISE_APPLICATION_ERROR(-20100, 'Sorry, you have already taken 2 books. Please return a book and try');
    END IF;
    end;
    Books - Table Name
    User_name - one of the column in Books table, where the name of the user is stored.
    Right now, the user_name, I am using here is static, that is I give the name manually, but in the APEX application is should be APP_USER, how can this be done. Also, if there are also any better ways to handle this validation, other than using triggers, please let me know.
    Thanks!
    Edited by: Suzi on May 10, 2010 11:38 PM

    Suzi,
    i think you chose the worst method of doing this and I'll try to explain why:
    you have a relation table where you keep track of books per user and this forces you to perform a select count every time inside a trigger. This is bad, especially if you didn't create an index on the user_name column.
    Moreover you are going to bury some apex logic inside this trigger without any real reason.
    At this point it would be easier to move this validation checks to the place where they belong to: apex.
    Create an EXISTS or NOT EXISTS type of validation where you are free to use :APP_USER without having to resort to v('APP_USER') inside a trigger;
    The reason for using a trigger in this situation would be if non-apex procedures are also inserting/updating the table.
    If that is the case then i strongly recommend to put a book counter on the master table (the users table presumably) and then use the trigger on delete/insert/update on the books table to keep this counter in sync with the master table.
    With such book counter you could also implement a simple CHECK constraint to perform this instead of that trigger:
    ALTER TABLE app_users ADD CONSTRAINT ck_book_count CHECK(book_count < 3);If the max number of books is going to be variable for some reason, then the trigger would be the way to go:
    create or replace
    TRIGGER "BI_APP_USERS"
    before insert on app_users
    for each row
    begin
      if :new.book_count > 2 then
        RAISE_APPLICATION_ERROR(-20100, 'Sorry, you have already taken '||2||' books. Please return a book and try');
      end if;
    end;Flavio
    http://oraclequirks.blogspot.com

  • After update insert trigger is not working correctly

    Hello experts!
    I created an after insert/update trigger and what strikes me is that it is not working as expected.
    The trigger launches a procedure that does an insert in a second table if values in the triggered table ("my_table") are altered.
    The problem is that the values in my second table, which are correlated to "my_table", are not changed with the correct values right away. The trigger and insert trails behind!
    I have to update twice for the values to appear in my second table. Only then, the data of the first update will be inserted into the second table wheras the parent table ("my_table") will hold the latest values.
    Do you have an idea what could be wrong?
    create or replace
    trigger myscheme.after_update_insert_set_tw
    after update or insert
      on myscheme.my_table
      for each row
    declare
    begin
    pr_my_table_tw_sync_sk(:new.lng_falle, :new.int_fallennummer, :new.lng_schaedling, :new.objectid);
    end;Brgds,
    Seb

    Okay I'll give my best to explain what my procedure is supposed to do and what the table structure is like. I hope it'll help you to help me :-)
    My parent table is called fangzahlen and is created as follows:
    CREATE TABLE "BORKI"."FANGZAHLEN"
       (     "OBJECTID" NUMBER(10,0) NOT NULL ENABLE,
         "LNG_FALLE" NUMBER(10,0) NOT NULL ENABLE,
         "LNG_BEARBEITER" NUMBER(10,0),
         "DATE_DATUM" DATE DEFAULT SYSDATE NOT NULL ENABLE,
         "INT_FALLENNUMMER" NUMBER(4,0) NOT NULL ENABLE,
         "LNG_SCHAEDLING" NUMBER(2,0) NOT NULL ENABLE,
         "INT_VOLUMEN" NUMBER(10,0),
         "INT_ANZAHL" NUMBER(10,0),
         "INT_ANTEIL_JUNGKAEFER" NUMBER(3,0),
         "BOOL_KOEDERWECHSEL" NUMBER(1,0),
          CONSTRAINT "PK_FANGZAHLEN" PRIMARY KEY ("OBJECTID")
      USING INDEX PCTFREE 10 INITRANS 2 MAXTRANS 255 COMPUTE STATISTICS
      STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
      PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)
      TABLESPACE "USERS"  ENABLE,
          CONSTRAINT "CHECK_DATE_DATUM" CHECK ("DATE_DATUM" >= '1.apr.2006') ENABLE
       ) PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 NOCOMPRESS LOGGING
      STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
      PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)
      TABLESPACE "USERS" ;It holds values such as:
    OBJECTID,"LNG_FALLE","LNG_BEARBEITER","DATE_DATUM","INT_FALLENNUMMER","LNG_SCHAEDLING","INT_VOLUMEN","INT_ANZAHL","INT_ANTEIL_JUNGKAEFER","BOOL_KOEDERWECHSEL"
    97548,"39","1081","08.04.10","1","2","","220","","0"
    97534,"39","1081","06.04.10","1","2","","100","","-1"My subtable is called tbl_test and created with:
    CREATE TABLE "BORKI"."TBL_TEST"
       (     "OBJECTID" NUMBER(12,0) NOT NULL ENABLE,
         "LNG_FALLE" NUMBER(10,0),
         "DATE_DATUM" DATE,
         "INT_FALLENNUMMER" NUMBER(4,0),
         "LNG_SCHAEDLING" NUMBER(2,0),
         "INT_VOLUMEN" NUMBER(10,0),
         "INT_ANZAHL" NUMBER(10,0),
         "LNG_FANGZAHLEN" NUMBER(12,0)
       ) PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 NOCOMPRESS LOGGING
      STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
      PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)
      TABLESPACE "USERS" ;Okay, this were the prerequisites!
    Let's concentrate on the trigger and procedure:
    The purpose of the procedure is to insert data into tbl_test once a record in "fangzahlen" has been updated or inserted.
    Tbl_test holds the mean average values (int_anzahl) for a number of collected items (lng_schaedling).
    I need to insert date values for the combination of each lng_fangzahlen, lng_schaedling, lng_falle and int_fallennr into tbl_test.
    If I had the following data in table fangzahlen:
    97548,"39","1081","08.04.10","1","2","","220","","0"
    97534,"39","1081","06.04.10","1","2","","100","","-1"the query in the insert section of my procedure returns the following data when run manually:
    97534     31.03.10     16,667     (null)     1     39     2
    97548     06.04.10     110     (null)     1     39     2Now, I need to generate the dates between the first and the second objectid (column 1 in the data above).
    Hence,
    97534     31.03.10     16,667     (null)     1     39     2
    97534     01.04.10     16,667     (null)     1     39     2
    97534     02.04.10     16,667     (null)     1     39     2
    97534     03.04.10     16,667     (null)     1     39     2
    97534     04.04.10     16,667     (null)     1     39     2
    97534     05.04.10     16,667     (null)     1     39     2
    97534     06.04.10     16,667     (null)     1     39     2
    97548     07.04.10     110     (null)     1     39     2
    97548     08.04.10     110     (null)     1     39     2
    My problem is thatthe values above will only appear after I do another update to table fangzahlen or insert a new record into it. Theoretically the result above should be inserted right away?
    Below is my procedure, which might give you a better idea of what I am trying to do! Please excuse this rather awkward explanation. If you need more info please don't hesitate to ask for it!
    create or replace
    Procedure "PR_FANGZAHLEN_TW_SYNC_SK"
        Pr_falle        Number,
        Pr_fallennummer Number,
        Pr_schaedling   Number,
        Pr_objectid     Number)
    Is
      Y                Number (10);
      pragma autonomous_transaction;
    Begin
    -- first all records should be deleted from the subtable i.e. tbl_test
        delete from borki.tbl_test where lng_falle = pr_falle
            and int_fallennummer = pr_fallennummer
            and lng_schaedling   = pr_schaedling
           and date_datum       > '31.03.2010';
          commit;
          For Rec In
          (select objectid lng_fangzahlen,
            date_datum,
            prev_date,
            (date_datum - prev_date) difference_in_days,
            round((
            case
              when nvl(int_volumen,0) > 0
              and lng_schaedling      = 1
              then int_volumen * 40
              when nvl(int_volumen,0) > 0
              and lng_schaedling      = 2
              then int_volumen * 550
              when nvl(int_anzahl,0) > 0
              then int_anzahl
            end ) / (date_datum - prev_date),3) counted_bugs,
            int_fallennummer,
            lng_falle,
            lng_schaedling
          from
            (select objectid,
              date_datum,
              case
                when lag(date_datum) over(order by date_datum) is null
                then to_date('31.03.2010')
                else lag(date_datum) over(order by date_datum)
              end as prev_date,
              int_volumen,
              int_anzahl,
              int_fallennummer,
              lng_falle,
              lng_schaedling
            from borki.fangzahlen
            where lng_falle      = pr_falle
            and int_fallennummer = pr_fallennummer
            and lng_schaedling   = pr_schaedling
            and date_datum       > '31.03.2010'
           -- and objectid         = pr_objectid
            order by date_datum desc
          order by date_datum asc
          Loop
            Y := 1;
            While Y < rec.difference_in_days + 1
            Loop
              Insert
              Into tbl_test
                  lng_fangzahlen,
                  date_datum,
                  int_anzahl,
                  int_volumen,
                  int_fallennummer,
                  lng_falle,
                 lng_schaedling
              select objectid lng_fangzahlen,
            prev_date +Y,
            round((
            case
              when nvl(int_volumen,0) > 0
              and lng_schaedling      = 1
              then int_volumen * 40
              when nvl(int_volumen,0) > 0
              and lng_schaedling      = 2
              then int_volumen * 550
              when nvl(int_anzahl,0) > 0
              then int_anzahl
            end ) / (date_datum - prev_date),3) counted_bugs,
            int_volumen,
            int_fallennummer,
            lng_falle,
            lng_schaedling
          from
            (select objectid,
              date_datum,
              case
                when lag(date_datum) over(order by date_datum) is null
                then to_date('31.03.2010')
                else lag(date_datum) over(order by date_datum)
              end as prev_date,
              int_volumen,
              int_anzahl,
              int_fallennummer,
              lng_falle,
              lng_schaedling
            from borki.fangzahlen
            where lng_falle      = pr_falle
            and int_fallennummer = pr_fallennummer
            and lng_schaedling   = pr_schaedling
            and date_datum       > '31.03.2010'
            order by date_datum desc
          order by date_datum asc
              commit;
              Y := Y + 1;
            End Loop;
          End Loop; -- end of cursor
      Exception
      When No_data_found Then
        Null;
      When Others Then
        -- Consider logging the error and then re-raise
        Raise;
      End "PR_FANGZAHLEN_TW_SYNC_SK";

  • Trigger is not working while updating the values of UDF

    Dear Freind,
    I have created one Trigger for ORDR for Sales order. It is working fine. For that i have created two UDF to Title level. When i fill all fields it shows the correct result in DocTotal. But problem is that, while updateing specific record it also update but only refresh the DocTotal.
    Means suppose i change the value of UDF fields that time it is not working it gives following error.
    "There is difference between the document total and component total"
    ALTER TRIGGER AmountForPC1
    ON dbo.ORDR
    AFTER INSERT,
    UPDATE
    AS
    SET NOCOUNT ON
    UPDATE x
    SET x.DocTotal = COALESCE(i.DocTotalSy, 0) + COALESCE(i.U_Ref, 0) + COALESCE(i.U_Sub, 0)
    FROM dbo.ORDR AS x
    INNER JOIN inserted AS i ON i.DocEntry = x.DocEntry
    Thanks
    Swapnil

    Hi Swapnil,
    Are you aware that you might run into trouble, at least when it comes to a support case, because you have created triggers?
    Accordingly to note [896891|https://websmp230.sap-ag.de/sap(bD1lbiZjPTAwMSZ3PTU4ODAwMDAr)/bc/bsp/spn/smb_searchnotes/display.htm?note_langu=E&note_numm=896891] triggers are not supported.
    Regards
    Mario

  • If the trigger is not working what is the possible reason

    I update the form then suppose auto update the table PaymentRecords , but today it sudden not working , not error on the trigger , what is the possible mistake ??
    delimiter $$
    CREATE TRIGGER Date_PaymentRecord
    AFTER UPDATE ON tableA
    FOR EACH ROW BEGIN
    IF NEW.Ast= 'on' THEN
    UPDATE PaymentRecords SET DueDate = New.ADate
    WHERE FeeType = 'Fee 1st Instalment'
    and PaymentRecords.UserId=New.UserId;
    end if;
    END$$
    delimiter ;
    not error at all , just not work

    This is the forum for issues with the SQL Developer tool. You should ask your question in the SQL and PL/SQL forum.

  • Process Trigger is not working in OIM 11gR2

    Hi Experts,
    The Lookup.USR_PROCESS_TRIGGERS is not working. Assigned some process task on user attribute changes but it is not working as of now. Earlier it was working fine. Even I am not able to update the existing lookup value in Lookup.USR_PROCESS_TRIGGERS as we are getting below errror:
    The security level for this data item indicates that it cannot be updated.
    We are not able to figure out what is the issue behind this. might be some sandbox issue or some database value problem.
    Please provide me pointer to solve my problem.
    Thanks,

    Select LKV.LKV_DATA_LEVEL from LKU LKU, LKV LKV where LKU.LKU_KEY = LKV.LKU_KEY AND LKU.LKU_TYPE_STRING_KEY='Lookup.USR_PROCESS_TRIGGERS'
    If it is 1, make it 0 and try again. No need to change it for OOTB tasks/rows.

  • .oam file of html5 video trigger code not working in Muse

    I simply want to have a video play on page load. I have done the code for a trigger on one <div> to automatically play a video in Edge. The video plays perfectly in browser preview, even with transparency intact! Just the way I want it. The problem is when I insert .oam file in Muse it doesn't work. Other animations of simple objects and key frames work fine in Muse. But, I can make much more beautiful animations for certain elements in After Effects, with transparency and integrate them with elements in Muse. The video, its transparency and other objects work great from Edge to browser preview but not when .oam file is exported and placed into Muse. I know, I wouldn't build an entire site like this, I just want one or two animations to play automatically, with out controls (which I've been able to do), when the page is loaded.
    I publish with business catalyst to a my own domain, with Creative Cloud.
    Attached is a video where I'm at.
    What is the code or method to get to work?

    HI,
    Ok. I know that mov is not supported in Firefox nor Chrome, now.
    When I put the trigger in Edge to play the .mov file, it works when I preview from Edge to Safari, and not in any of the other browsers. This leads me to think that Safari supports .mov files, with and without transparency.
    However, when I try to put the .oam file generated by Edge into Muse and run the page in Safari the video doesn't work. Is this a .mov support with Muse? Does the video need to be uploaded to the Adobe Business Catalyst server? Where I publish my site?
    .mov and transparency aside, I can't get any video to play in any browser from the .oam file placed in Muse. Nothing plays in preview nor when I publish in Muse. I get the previews to work from Edge for the corresponding video for each browser. And yes, when controls in put in it says wether the video is supported or not. But I would want no controls and the video to play automatically on page load. Ideally I would like transparency. But I realize that's a browser support thing.  I don't see why all browsers don't support all video types and WITH transparency. C'mon now it's almost 2014! Am I right or am I right? Ok, sorry.
    I followed everything in this Tom Green video. Pretty sure all my code is correct.
    http://layersmagazine.com/embedding-video-in-adobe-edge-animate.html
    Picture shows code for working .ogv in Edge preview but not from .oam file in Muse in preview nor publish.
    Not sure why it won't even show in preview from Muse. But thinking when I publish, the video must have to be local on the publish server right?
    Am I missing something? Do I need to insert HTML into Muse, not the .oam?

  • Trigger does not work after client upgrade to 8.1.7

    I use a simple trigger to keep a table in three databases synchronized
    all worked fine with client 8.0.5 server 8.1.6.
    Now we are testing client 8.1.7 because another application needs it.
    The front end application is in vb (third party)accessing the db via
    odbc.
    the trigger looks like this:
    and I have two database links for mcct and mcc
    TRIGGER copy_ap
    after insert or update on aptabelle
    for each row
    begin
    if updating then
    update aptabelle@mcct set
    apraum = :new.apraum,
    apmemo = :new.apmemo,
    apfree = :new.apfree,
    apnetadress = :new.apnetadress,
    apkhfarefnr = :new.apkhfarefnr
    where aprefnr=:new.aprefnr;
    update aptabelle@mcc set
    apraum = :new.apraum,
    apmemo = :new.apmemo,
    apfree = :new.apfree,
    apnetadress = :new.apnetadress,
    apkhfarefnr = :new.apkhfarefnr
    where aprefnr=:new.aprefnr;
    else
    insert into aptabelle@mcct
    ( APREFNR, APNAME, APRAUM, APMEMO,
    APFREE, APNETADRESS, APKHFAREFNR )
    VALUES
    (:new.aprefnr,:new.apname,:new.apraum,
    :new.apmemo,:new.apfree,:new.apnetadress,:new.apkhfarefnr);
    insert into aptabelle@mcc
    ( APREFNR, APNAME, APRAUM, APMEMO,
    APFREE, APNETADRESS, APKHFAREFNR )
    VALUES
    (:new.aprefnr,:new.apname,:new.apraum,
    :new.apmemo,:new.apfree,:new.apnetadress,
    :new.apkhfarefnr);
    end if;
    end;
    Now after the update I can still get the trigger doing it's job when
    i do a manual update with toad or sql*plus.
    But if the change is done in the vb front end application I get an
    error and I can't save or make any changes at all.
    I updated the odbc driver to 8.1.7.6 but that did not solve the
    problem.
    Is there an default session limit, connection limit introduced as a
    default with 8.1.7 that could keep this trigger from running?
    Or is there a mistake and the 8.0.5 client just did not bother?
    Why can the local client version influence a trigger running on the
    server anyways?
    Any suggestions where to search?
    thanks
    alex

    It's neither an odbc nor an oracle error message.
    It's just a window with Error/Warning in the title bar and the Text "Error while saving"
    with an Ok Button.Seems you are using windows ...
    How is the trigger run when it's called from the application.
    One thing I noticed is a change in tnsname.ora the three databease we use were just called mcc, mcct and mccp
    now they are called mmc.world an so on
    In the odbc config I have to use these names, but if I create the database links with .world they don't work.
    I also have to use the new names for login in SQL*Plus while the database links don't work with the new scheme.
    As I said the whole thing works in pure sql.Just an idea. Maybe your new odbc-middleware makes a read-after-write, thats a select to check if the update was ok. This will fail since you change the updated values in the trigger.
    But it should be possible to switch the read-after-write off via configuration.

  • SSRS 2008 Gauge ToolTips - expression does not work?

    Hi,
    I'm attempting to use various SSRS 2008 gauges in a report.  When I attempt to use an expression in a tooltip such as '=Sum(Fields!ID.Value)' , the tooltip does not show up.
    However if I replace that expression with a static value such as '1' it pops up.
    It seems that an expression should work?  Any reason that it would not?
    Thanks

    Hi,
    I could reproduce the scenario you posted.
    It is caused that string type is required for the
    ToolTip property of the Gauge Pointer. So, please change the expression to
    =CStr(Sum(Fields!ID.Value)).
    If you have any question, please feel free to ask.
    Thanks,
    Tony Chain
    Tony Chain [MSFT]
    MSDN Community Support | Feedback to us
    Get or Request Code Sample from Microsoft
    Please remember to mark the replies as answers if they help and unmark them if they provide no help.

  • Update trigger is not working...

    Hi
    I am writing an update trigger.
    We have a two DB, one is application DB and other is reporting DB. We are writing trigger on Reporting DB. There is a job schedule for synchronizing the application data to reporting DB , this daly basis synchronization. So when the synchronization runs and if the FUNDING_RULE_TABLE is updated them my trigger gets called.
    CREATE OR REPLACE
    TRIGGER COMM_EXISTING_REP_TRIGGER AFTER UPDATE OF FR_IR_NAME ON FUNDING_RULE_TABLE
    DECLARE
    serialno INTEGER;
    CURSOR C_CES_REP IS
    Select distinct FR_IR_NAME,FR_IR_CODE from FUNDING_RULE_TABLE ;
    V_IR_NAME FUNDING_RULE_TABLE.FR_IR_NAME%TYPE;
    V_IR_CODE FUNDING_RULE_TABLE.FR_IR_CODE%TYPE;
    CURSOR C_CES_COMIT IS
    SELECT DISTINCT FR_IR_NAME1,FR_IR_CODE from COMM_EXSTS_COMIT_AGGR;
    IR_NAME VARCHAR2(20);
    IR_CODE VARCHAR2(10);
    BEGIN
    OPEN C_CES_REP;
    LOOP
    FETCH C_CES_REP INTO V_IR_NAME,V_IR_CODE;
    IF C_CES_REP%NOTFOUND THEN
    EXIT;
    END IF;
    OPEN C_CES_COMIT;
    LOOP
    FETCH C_CES_COMIT INTO IR_NAME,IR_CODE;
    IF(V_IR_CODE = IR_CODE AND V_IR_NAME = IR_NAME) THEN
    EXIT;
    ELSE
    update COMM_EXSTS_COMIT_AGGR set FR_IR_NAME1 = IR_NAME where FR_IR_CODE = IR_CODE;
    END IF;
    END LOOP;
    CLOSE C_CES_COMIT;
    END LOOP;
    CLOSE C_CES_REP;
    END COMM_EXISTING_REP_TRIGGER;
    The problem is:
    When the synchronization runs the trigger will gets called and the synchronization prc never stops because of the table locks.
    1)     why some tables are getting locks? (I think this is becuse some source is waiting for another to release-deadlock)
    2)     Is there any problem in trigger? (I think there is some problem is trigger)
    3)     When I comment below part then sync procedure works fine
    OPEN C_CES_COMIT;
    LOOP
    FETCH C_CES_COMIT INTO IR_NAME,IR_CODE;
    IF(V_IR_CODE = IR_CODE AND V_IR_NAME = IR_NAME) THEN
    EXIT;
    ELSE
    update COMM_EXSTS_COMIT_AGGR set FR_IR_NAME1 = IR_NAME where FR_IR_CODE = IR_CODE;
    END IF;
    END LOOP;
    CLOSE C_CES_COMIT;
    It menas that there is somr problem in trigger because i am reading and updation is performed on the same table "COMM_EXSTS_COMIT_AGGR ".
    Is this is the problem?
    waitting for ur rply...thx..
    Edited by: 931005 on Apr 30, 2012 2:38 AM

    Welcome to the forum!
    Whenever you post provide your 4 digit Oracle version (result of SELECT * FROM V$VERSION).
    >
    1) why some tables are getting locks? (I think this is becuse some source is waiting for another to release-deadlock)
    >
    Because you have an UPDATE statement in your inner loop that may lock one or more rows that are updated.
    >
    2) Is there any problem in trigger? (I think there is some problem is trigger)
    >
    Many problems
    1. The outer query queries the same table that the update trigger is updating. So some rows may never get seen; rows inserted or updated by other sessions. This means the DISTINCT results may not be distinct at all.
    2. The cursors select into SCALAR variables so if either cursor returns more than one row the trigger will raise an exception.
    3. The nested cursor loops could be replaced by a simple update statement.
    4. The original issue of updating the same table queried by your cursor.
    Whatever it is you are trying to do - this isn't the way to do it.

  • Enable alternating row "green bar" styling not working

    Hi ,
    I have one field , on which I am selecting 'Enable alternating row "green bar" styling'. But it is not reflecting in the result.
    Any idea , how to solve it.
    Thanks.

    Hi Kart,
    I am just taking one field and trying to give "green bar" styling on it.
    It is not a measure column.
    One more thing, I have one other field. The problem with this field ,while applying "green bar" on this is , it is working fine in QA but not in DEV environment.

  • Urgent - After Insert Trigger is not working

    CREATE OR REPLACE TRIGGER TD_ADD_SHIPPING_COST
    AFTER INSERT ON wlcs_order
    REFERENCING NEW AS new_order
    FOR EACH ROW
    BEGIN
    IF (:new_order.order_id IS NOT NULL) THEN
    -- call update_wlcs_order procedure from shipping_cost package
    SHIPPING_COST.update_wlcs_order(:new_order.order_id);
    END IF;
    END TD_ADD_SHIPPING_COST;

    See my answer in your other posting here
    Re: Calling of Stored Procedure in After Insert Trigger

  • SCRIPT/TRIGGER editor not working correctly - red box - codearea.htc

    Hello,
    I have installed HTMLDB on my computer, and everything works fine, except when I try to edit or create a procedure, script, or trigger, instead of the blue box which allows edit happening it is instead a red box. This box cannot be edited. When trying to compile code already uploaded, a javascript error is produced: Length value is null.
    Please help me. I think that I might have a problem with the type of editor( codearea.htc)

    You will need to setup the MIME types properly in your HTTP server configuration. Please take a look into the Oracle HTML DB Installation guide / chapter 4: Oracle HTML DB post-installation tasks.
    Hope this helps,
    Regards,
    Marc

Maybe you are looking for

  • How can I create a dynamic image button

    Hi I want to fill a region with buttons with image. I will execute a PL/SQL procedure to do this. I have made some tests but the image didn't is shown. I write in my plsql code: htp.p('<input type="image" src="#WORKSPACE_IMAGES#image.png" >'); Any he

  • Z77A-GD65 boot issue!

    Hey. I have this Z77A-GD65 motherboard which I bought around July 2012, which has been working great until this morning.  First of all, I don't do any overclocking, It has no meaning to me and I didn't change anything on the BIOS, not even used it pr

  • Photoshop CC with Mac OSX 10.6.8?

    Sorry, this is my first time and I hope I'm in the right section. So I need to download photoshop, and when I checked out the system requirements it says "Mac OS X v10.7, v10.8, or v10.9" I have a Mac OSx 10.6.8, I was wondering if it would work? I'v

  • Help in modifying codes.

    hi, im having a problem now, lets say i have a table which contain (NAME(pk), AGE, GENDER), from program A i will insert the NAME and Age, so in the table it will be like (Tzepin, 20, GENDER), and from program B i wan to insert Male GENDER to my tzep

  • Thread and Runnable

    Can anyone please tell me why this code is not executing FirstClass second=new FirstClass("i m 2nd class");      second.run(); in the below program. its show the output like: i m 3rd class i m 4rd class i m in threadi m 3rd class 0 i m 1st class i m