Problem. Update region source

I want to update region source runtime.
declare
src clob;
begin
src := 'new content';
wwv_flow_api.set_plug_source(
p_id => 1676526383627240, p_plug_source => src);
end;
but I get following error: ORA-22922: nonexistent LOB value
if variable src is null then this code works without errors.

Hi Tyoma,
Can you give us some more background why you want to do this?
Thanks,
Dimitri
-- http://dgielis.blogspot.com
-- http://apex-evangelists.com

Similar Messages

  • Problem with SQL query region source containing OLAP clauses

    Hi team,
    I believe I found a bug when HTMLDB validates the SQL Query in a report region.
    My query includes an ORDER BY clause within a windowing function and HTMLDB refuses to accept the source owing to the presence of the ORDER BY and the column heading sort preference.
    Clearly the order-by in a window function has little to do with the column heading sort, but this error prevents me from updating the conditional display item in the page definition.
    Note also that the page was imported smoothly from the 1.5 version, so probably the region source is not checked at that time, but only when you update it "manually".
    So, in the end, if I don't change anything the page works because the sql query is assumed to be correct but unfortunately I need to change the condition and I cannot.
    The problem shows up in page 126 of app 21670, SQL query region.
    Bye,
    Flavio
    PS: may be I can work around this by using the pl/sql function returning the sql query.

    Flavio,
    We're aware of this problem. For now, your workaround is described in this thread:
    HTMLDB 1.6 and "order by" in analytic functions
    Sergio

  • Multi update region with 5 checkboxes - problem in updating

    Hi,
    I have a multi update region with more 5 checkboxes which 2 tables LO & SCLO. LO ID is the unique id for each row.
    1st checkbox - If we select 1st checkbox, I am adding a record to SCLO with LO ID.
    2nd Checkbox - yes/no attribute in SCLO table.
    3rd - 5th checkboxes - T/F attributes in LO table.
    Everything is working well if there is LO ID, because I will have a hidden item for LO ID and process where I am only updating LO and adding SCLO.
    When I add a new LO, the trouble occurs for updating 3rd - 5th ck boxes because there will be null value for all the columns in the row.
    What I did is, I first insert LO and gets LO ID from OUT parameter, sets 3rd - 5th ckboxs as null. Then get the out parameter (LO ID) and tried to update again the LO table which is causing some problem and the code, loops are getting very tricky.
    Is there any easy way to handle this?

    Try waiting, a lot of people are also interested in updating to iOS 5.1 so it's probably server related.
    Hope I helped,
    Simmm

  • Update Region Iframe source via javascript

    I have looked at Carls example on showing an iframe within a table. I have a tree of records on left side of page and html region on right.
    I have the iframe html in the region source.
    How can I update this in javascript.
    I tried
    document.getElementById("test").innerHTML = gReturn
    where gReturn has the iframe source.
    it returns javascript error - I am thinking that I can't use innerhtml for my region (named test).
    Any help or direction would be greatly appreciated.
    Peter

    Any takers on this?
    How to update a region with Iframe from a tree?
    Thanks
    Peter

  • Using CASE WHEN THEN in dynamic Region Source area

    Hi all,
    I've been knocking my head around on this one for a while. Hope someone can show me some guidance. So far, the SQL Query in the Region Source works ok except after the THEN ''||'LINK'||'' . All text between the single quotes displays, and not just the hyperlink LINK. (My goal is to this simple test working, then go back an substitute in APP_ID, Page#, SESSION variables.) But I'm stuck with this problem. Searched the forum but this is as far as I got. Below is the code I'm using in the Region Source area. Perhaps a region attribute setting is needed but I'm unsure. Thanks for any assistance. -Mike
    select DISTINCT
        AWARD,
        CASE
        WHEN WINNER_NAME = 'India Retail Support Team'
       THEN '<A HREF="http://www.hotmail.com">'||'LINK'||'</A>'         *----------------HREF link (LINK) is working fine here but doesn't work ok in Region Source.
        ELSE WINNER_NAME
        END WN,
            GBU_WINNER,
            DORDER
    from   GBUSERVICEPACESETTERAWARDS
    where FY = '2012'
    and TYPE = 'Service Award'

    >
    As previously requested, please update your forum profile with a real handle instead of "user10734329".
    I've been knocking my head around on this one for a while. Hope someone can show me some guidance. So far, the SQL Query in the Region Source works ok except after the THEN ''||'LINK'||'' . All text between the single quotes displays, and not just the hyperlink LINK.Not clear from this what the problem is. It appears to me that LINK is all of the "text between the single quotes". What do you mean by "all text"? (An example on apex.oracle.com is a good way to resolve such ambiguities...)
    The usual cause of unexpected results when the separation of concerns is breached and HTML is directly generated in report queries is having the Display Text As report column attribute wrongly set. Ensure it is Standard Report Column rather than the default Display as Text (escape special characters).

  • Application Item Not Working as Bind Variable in Region Source

    I've created an application variable - APP_AC_CODE - a value for which - PA1 - I set as part of the column link on page A that branches to page B.
    I use APP_AC_CODE as part of a region title on page B - &APP_AC_CODE. Parameters - which evaluates successfully to 'PA1 Parameters'.
    However when I try to use APP_AC_CODE on the same page as part of the SQL query that drives the report for that region it fails to retrieve any records.
    If I set the region source to:
    SELECT idi FROM v_parameters WHERE aircraft_code = :APP_AC_CODE ;
    then it fails but if I explicitly state the where clause:
    SELECT idi FROM v_parameters WHERE aircraft_code = 'PA1' ;
    then it works just fine and retrieves the records as expected.
    If I check the session state then the right value is assigned to APP_AC_CODE; if I check debug then it shows the right value - binding: ":APP_AC_CODE"="APP_AC_CODE" value="PA1". Also, it displays fine as a substitution string.
    I'm very confused. I'll be very grateful if someone can shed a little light. I expect I'm doing something stupid - new user and all that - but I haven't got a clue what that is.

    Thanks for the reply Scott, but unfortunately I can't upload the app for business reasons. I appreciate that might make it impossible for you to diagnose the problem.
    I don't know if I'm making progress with the problem but I've tried adding a hidden page item, setting that value from page A and using it from page B with the same results. Check the session state, the debug messages, or use it as a substitution variable and the right value is there.
    I then tried setting the value of the page item with the value of the application item and (according to session and debug) the right value ends up in the page item. Still didn't work though.
    I then created a new page (using the sql report wizard in case I was doing something wrong manually) and tried using the application item in the same way with the same problem.
    Given that no records are being returned I assume that the database server doesn't care for the SQL query it sees. Is there a way of seeing what this is? When I look at the debug messages, all I see is 'parse query' and 'binding' messages. Any way I can see what the database server eventually sees?
    Matt

  • Region source (PL/SQL function body returning SQL query)

    Hi, guys.
    Here is what i try to do:
    Create a region of type SQL Query (PL/SQL function body returning SQL query). In the source area i tried to put this:
    DECLARE
    v_new VARCHAR2(10);
    v_SQL varchar2(32000);
    BEGIN
    v_new := :P102_HDN_NEW;
    -- htp.p(v_new);
    IF v_new = 'N-Set' THEN
    v_SQL := 'select ' ||
    ELSIF v_new = 'Y-Set' THEN
    v_SQL := 'select ' ||
    END IF;
    RETURN v_SQL;
    END;
    And here is the reply from APEX:
    1 error has occurred
    Query cannot be parsed within the Builder. If you believe your query is syntactically correct, check the ''generic columns'' checkbox below the region source to proceed without parsing. The query can not be parsed, the cursor is not yet open or a function returning a SQL query returned without a value.
    Now.
    1. Variable is set with the right value.
    2. Each statement (separately) returns SQL that works with no problems
    3. Problem occures if i try to put IF statement around the SQL creation.
    4. If i select "Use Generic Column Names (parse query at runtime only)" instead of "Use Query-Specific Column Names and Validate Query" then the script returns SQL properly, however report's column names are set to Col1, Col2,Col3 ......
    Thnks in advence
    Mike

    OK. Here is enire statement:
    DECLARE
    v_new VARCHAR2(10);
    v_SQL varchar2(32000);
    BEGIN
    v_new := :P102_HDN_NEW;
    htp.p(v_new);
    IF v_new = 'N-Set' THEN
    v_SQL := 'select ' ||
    'APEX_ITEM.DISPLAY_AND_SAVE(10,c.sdescr) descr, ' ||
    'APEX_ITEM.DISPLAY_AND_SAVE(12,DECODE(ld.level,''All'', ''All Categories'',ld.level)) level, ' ||
    'apex_item.checkbox(1, ld.opt_in_auto_flag, decode(ld.opt_in_auto_flag,NULL,''disabled'',''Y'',''checked'')) auto_in, ' ||
    'apex_item.checkbox(2, ld.opt_in_manual_flag, decode(ld.opt_in_manual_flag,NULL,''disabled'',''Y'',''checked'')) manual_in, ' ||
    'apex_item.checkbox(3, ld.opt_out_auto_flag, decode(ld.opt_out_auto_flag,NULL,''disabled'',''Y'',''checked'')) auto_out, ' ||
    'apex_item.checkbox(4, ld.opt_out_manual_flag, decode(ld.opt_out_manual_flag,NULL,''disabled'',''Y'',''checked'')) manual_out, ' ||
    'DECODE(c.code, ''NMBR'', NULL,''Change to '' || DECODE(ld.level,''All'',''Categories'',''All Categories'')) link_change, ' ||
    'APEX_ITEM.DISPLAY_AND_SAVE(11,c.code) code ' ||
    'from ' ||
    'tbl1 c, ' ||
    'tbl2 ld ' ||
    'where c.code = ld.code ' ||
    'and c.type = ''TYPE1'' ' ||
    'and c.active = ''Y'' ' ||
    'order by c.sorting ';
    ELSIF v_new = 'Y-Set' THEN
    v_SQL := 'select ' ||
    'APEX_ITEM.DISPLAY_AND_SAVE(10,c.sdescr) descr, ' ||
    'APEX_ITEM.DISPLAY_AND_SAVE(12,''All Categories'') level, ' ||
    'apex_item.checkbox(1, c.option_1, decode(c.option_1,NULL,''disabled'',''Y'',''checked'')) auto_in, ' ||
    'apex_item.checkbox(2, c.option_3, decode(c.option_3,NULL,''disabled'',''Y'',''checked'')) manual_in, ' ||
    'apex_item.checkbox(3, c.option_2, decode(c.option_2,NULL,''disabled'',''Y'',''checked'')) auto_out, ' ||
    'apex_item.checkbox(4, c.option_4, decode(c.option_4,NULL,''disabled'',''Y'',''checked'')) manual_out, ' ||
    'DECODE(c.code, ''AAA'', NULL,''Options by AAA'') link_change, ' ||
    'APEX_ITEM.DISPLAY_AND_SAVE(11,c.code) code ' ||
    'from ' ||
    'tbl1 c ' ||
    'where 1 = 1 ' ||
    'and c.type = ''TYPE1'' ' ||
    'and c.active = ''Y'' ' ||
    'order by c.sorting ';
    END IF;
    RETURN v_SQL;
    END;
    If i put just this
    DECLARE
    v_new VARCHAR2(10);
    v_SQL varchar2(32000);
    BEGIN
    v_new := :P102_HDN_NEW;
    htp.p(v_new);
    v_SQL := 'select ' ||
    'APEX_ITEM.DISPLAY_AND_SAVE(10,c.sdescr) descr, ' ||
    'APEX_ITEM.DISPLAY_AND_SAVE(12,DECODE(ld.level,''All'', ''All Categories'',ld.level)) level, ' ||
    'apex_item.checkbox(1, ld.opt_in_auto_flag, decode(ld.opt_in_auto_flag,NULL,''disabled'',''Y'',''checked'')) auto_in, ' ||
    'apex_item.checkbox(2, ld.opt_in_manual_flag, decode(ld.opt_in_manual_flag,NULL,''disabled'',''Y'',''checked'')) manual_in, ' ||
    'apex_item.checkbox(3, ld.opt_out_auto_flag, decode(ld.opt_out_auto_flag,NULL,''disabled'',''Y'',''checked'')) auto_out, ' ||
    'apex_item.checkbox(4, ld.opt_out_manual_flag, decode(ld.opt_out_manual_flag,NULL,''disabled'',''Y'',''checked'')) manual_out, ' ||
    'DECODE(c.code, ''NMBR'', NULL,''Change to '' || DECODE(ld.level,''All'',''Categories'',''All Categories'')) link_change, ' ||
    'APEX_ITEM.DISPLAY_AND_SAVE(11,c.code) code ' ||
    'from ' ||
    'tbl1 c, ' ||
    'tbl2 ld ' ||
    'where c.code = ld.code ' ||
    'and c.type = ''TYPE1'' ' ||
    'and c.active = ''Y'' ' ||
    'order by c.sorting ';
    RETURN v_SQL;
    END;
    it works fune...

  • ORA-06502 when searching region source

    The following is listed as a limitation of Apex 3.1, for both interactive reports and the application builder, although the specific context is not mentioned.
    The row length limit is 32k (just as with Classic Reports). You can include more columns but if too many are selected to be displayed, the user will get the following error - "ORA-06502: PL/SQL: numeric or value error: character string buffer too small". This should be considered when creating your report.You can find that here: http://www.oracle.com/technology/products/database/application_express/html/3.1_known_issues.html
    I'm getting this very error when trying to search region source for one of my application items. Presumably the region source is larger than the 32k limit where my particular page item is being used?
    Can anyone from Oracle verify that this is still a problem in Apex 3.2.0.00.27?
    Earl

    >
    The following is listed as a limitation of Apex 3.1, for both interactive reports and the application builder, although the specific context is not mentioned.
    The row length limit is 32k (just as with Classic Reports). You can include more columns but if too many are selected to be displayed, the user will get the following error - "ORA-06502: PL/SQL: numeric or value error: character string buffer too small". This should be considered when creating your report.
    You can find that here: http://www.oracle.com/technology/products/database/application_express/html/3.1_known_issues.html
    I'm getting this very error when trying to search region source for one of my application items. Presumably the region source is larger than the 32k limit where my particular page item is being used?
    Can anyone from Oracle verify that this is still a problem in Apex 3.2.0.00.27?
    EarlAnyone have any ideas about the above? I'm getting this error when searching region source code, here:
    Home>Application Builder>Application nnn>Application Reports>Page Components>Search Region Source
    Any help would be appreciated. Thanks.
    Earl

  • Using bind variables in HTML Region source

    <nl>
    http://apex.oracle.com/pls/apex/f?p=49417:1   workspace: SVK demo/demo
    I am having problems incorporating an item variable into a string of embedded html that should popup a modal video when the button is pressed.
    Item 1 works fine and that is what I want to accomplish with item 2, but when I pass :p1_url, it does not work even though the contents of the two items text areas equivalent.

    svk1965 wrote:
    If you look at my app, you'll see what I am attempting. Click on the button "Pass Hardcoded URLs in Variable to HTML Region" and a modal video will pop up. The goal is to display video in a modal window. The first example in my app works just fine. It is the second one that is causing me problems. BTW - Sequence 18 in the second DA does the same thing as Sequence 10 in the first - and it does work there so I am not sure that removing it is the right thing to do. I am not trying to set a region value per se, but populate the region source and sequence 10 does just that. So I don't think it is "useless" as you say.I can't see anything in the documentation or any previous posts here that indicates that DAs are supposed to work that way. If you can point me to some I'd like to see it. Which is not to say I like the idea. Plays too fast and loose with terms and concepts.
    Rather than trying to use a "Set Value" DA, my understanding would be to manipulate the region content via an "Execute JavaScript Code" DA, which works exactly as intended.
    I'll have to investigate this DA behaviour with a simpler example that doesn't involve hidden regions and Dynamic Acrion plugins.

  • Problems Updating CS6 products on a Mac running 10.8.2

    Is anyone else having problems updating their Adobe CS6 suite. When I go to Update, the Adobe Application Manager loads, goes through the process of downloading the Updates, takes ages (as they are large files) and then right at the end gives me an error message saying how the updates have failed.

    I posted my original AE log in a thread I started, which remains unanswered, unless it has been in the last couple of hours.
    I have uninstalled and reinstalled not only AE but my entire set of CS6 apps. I have run the 'cleaner' app, and with various cycles of uninstall, reinstall, update attempt, also used the downloadable installers for both the main AE 11.0.0 package and the downloaded update package for 11.0.2.
    All fail.
    The 'log analyzer' which is referred to in the 'error' logs, found in /Library/Logs/Adobe/Installers as directed by the dialog from the App Manager, finds 'no error/problem'.
    The packages that correctly install 'updates' are at the moment only Premiere Pro 6.0.0 to 6.0.2, and Audition 5.0.0 to 5.0.2.
    Currently I just tried updating Speed Grade.. and after that log, is yesterday's failed AE update log.
    --------- Speed Grade log ---------
    02/09/13 12:49:05:371 | [INFO] |  | OOBE | DE |  |  |  | 159955 | START - Installer Session
    02/09/13 12:49:05:371 | [INFO] |  | OOBE | DE |  |  |  | 159955 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    02/09/13 12:49:05:371 | [INFO] |  | OOBE | DE |  |  |  | 159955 | RIBS version: 7.0.0.91
    02/09/13 12:49:05:374 | [INFO] |  | OOBE | DE |  |  |  | 159955 | OSX version: 10.8.2 
    02/09/13 12:49:05:374 | [INFO] |  | OOBE | DE |  |  |  | 159955 | ::START TIMER:: [Total Timer]
    02/09/13 12:49:05:374 | [INFO] |  | OOBE | DE |  |  |  | 159955 | CHECK: Single instance running
    02/09/13 12:49:05:374 | [INFO] |  | OOBE | DE |  |  |  | 159955 | CHECK : Credentials
    02/09/13 12:49:05:374 | [INFO] |  | OOBE | DE |  |  |  | 159955 | Load Deployment File
    02/09/13 12:49:05:374 | [INFO] |  | OOBE | DE |  |  |  | 159955 | deploymentFile option not given
    02/09/13 12:49:05:374 | [INFO] |  | OOBE | DE |  |  |  | 159955 | CHECK : Another Native OS installer already running
    02/09/13 12:49:05:374 | [INFO] |  | OOBE | DE |  |  |  | 159955 | Create Required Folders
    02/09/13 12:49:05:374 | [INFO] |  | OOBE | DE |  |  |  | 159955 | Assuming install mode
    02/09/13 12:49:05:374 | [INFO] |  | OOBE | DE |  |  |  | 159955 | Looking up install source path
    02/09/13 12:49:05:374 | [INFO] |  | OOBE | DE |  |  |  | 159955 | Sync Media DB ...
    02/09/13 12:49:05:375 | [INFO] |  | OOBE | DE |  |  |  | 159955 | ::START TIMER:: [Sync Media DB]
    02/09/13 12:49:05:375 | [INFO] |  | OOBE | DE |  |  |  | 159955 | Pre check media db sync
    02/09/13 12:49:05:375 | [INFO] |  | OOBE | DE |  |  |  | 159955 | End of Pre check media db sync. Exit code: 0
    02/09/13 12:49:05:375 | [INFO] |  | OOBE | DE |  |  |  | 159955 | :: END TIMER :: [Sync Media DB] took 25 milliseconds (0.025 seconds) DTR = 1600 KBPS (1.5625 MBPS)
    02/09/13 12:49:05:375 | [INFO] |  | OOBE | DE |  |  |  | 159955 | Ready to initialize session to start with ...
    02/09/13 12:49:05:375 | [INFO] |  | OOBE | DE |  |  |  | 159955 | ::START TIMER:: [CreatePayloadSession]
    02/09/13 12:49:05:375 | [INFO] |  | OOBE | DE |  |  |  | 159955 | -------------------- BEGIN - Updating Media Sources - BEGIN --------------------
    02/09/13 12:49:05:375 | [INFO] |  | OOBE | DE |  |  |  | 159955 | Updated source path: /Users/jeclark2006/Library/Caches/Adobe/AAMUpdater/AdobeSpeedGradeCS6-6.0.0-Trial/6.0.4
    02/09/13 12:49:05:375 | [INFO] |  | OOBE | DE |  |  |  | 159955 | Updating media info for: {904C1964-3DE7-4EC0-BF46-E506E4542FAB}
    02/09/13 12:49:05:375 | [INFO] |  | OOBE | DE |  |  |  | 159955 | Ignoring original data since install source is local
    02/09/13 12:49:05:375 | [INFO] |  | OOBE | DE |  |  |  | 159955 |   Type: 0, Volume Order: 1, Media Name: SpeedGradeTrial-6.0.4-mul-AdobeUpdate
    02/09/13 12:49:05:375 | [INFO] |  | OOBE | DE |  |  |  | 159955 |   Path: /Users/jeclark2006/Library/Caches/Adobe/AAMUpdater/AdobeSpeedGradeCS6-6.0.0-Trial/6.0.4/p ayloads/AdobeSpeedGrade6.0AllTrial-110912024220/AdobeSpeedGrade6.0AllTrial-110912024220.dm g
    02/09/13 12:49:05:375 | [INFO] |  | OOBE | DE |  |  |  | 159955 | --------------------  END  - Updating Media Sources -  END  --------------------
    02/09/13 12:49:05:388 | [INFO] |  | OOBE | DE |  |  |  | 159955 | Supported RIBS version range: [0.0.0.0,7.0.0.91]
    02/09/13 12:49:05:388 | [INFO] |  | OOBE | DE |  |  |  | 159955 | ----------------- CreatePayloadSession: machine is x86 ---------------
    02/09/13 12:49:07:577 | [INFO] |  | OOBE | DE |  |  |  | 159955 | ______ Verify Dependency Subscribers ______
    02/09/13 12:49:07:577 | [INFO] |  | OOBE | DE |  |  |  | 159955 | BEGIN Operation order for all session payloads: mediaGroup (requires,satisfies)
    02/09/13 12:49:07:577 | [INFO] |  | OOBE | DE |  |  |  | 159955 |   Adobe SpeedGrade CS6_6.0.4_AdobeSpeedGrade6.0AllTrial 6.0.4.0 {904C1964-3DE7-4EC0-BF46-E506E4542FAB}: 0 (0,0)
    02/09/13 12:49:07:577 | [INFO] |  | OOBE | DE |  |  |  | 159955 | END Operation order for all session payloads: mediaGroup (requires,satisfies)
    02/09/13 12:49:07:578 | [INFO] |  | OOBE | DE |  |  |  | 159955 | Patch Adobe SpeedGrade CS6_6.0.4_AdobeSpeedGrade6.0AllTrial 6.0.4.0 {904C1964-3DE7-4EC0-BF46-E506E4542FAB} can be applied to product Adobe SpeedGrade CS6 6.0.0.0 {3D46121C-A0E6-4259-B7E0-5127C218A096}
    02/09/13 12:49:07:638 | [INFO] |  | OOBE | DE |  |  |  | 159955 | Setting property "installSourcePath" to: /Users/jeclark2006/Library/Caches/Adobe/AAMUpdater/AdobeSpeedGradeCS6-6.0.0-Trial/6.0.4
    02/09/13 12:49:07:638 | [INFO] |  | OOBE | DE |  |  |  | 159955 | Setting property "mode" to: silent
    02/09/13 12:49:07:638 | [INFO] |  | OOBE | DE |  |  |  | 159955 | Setting property "updateManifestPath" to: /Users/jeclark2006/Library/Application Support/Adobe/AAMUpdater/1.0/Data/AdobeSpeedGradeCS6-6.0.0-Trial/6.0.4/6.0.4.xml
    02/09/13 12:49:07:638 | [INFO] |  | OOBE | DE |  |  |  | 159955 | Setting property "workflow" to: updater
    02/09/13 12:49:07:638 | [INFO] |  | OOBE | DE |  |  |  | 159955 | Overwrite property "extensionsOnly" to: 1
    02/09/13 12:49:07:638 | [INFO] |  | OOBE | DE |  |  |  | 159955 | Overwrite property "mode" to: silent
    02/09/13 12:49:07:638 | [INFO] |  | OOBE | DE |  |  |  | 159955 | Overwrite property "patchesOnly" to: 1
    02/09/13 12:49:07:638 | [INFO] |  | OOBE | DE |  |  |  | 159955 | Overwrite property "updateManifestPath" to: /Users/jeclark2006/Library/Application Support/Adobe/AAMUpdater/1.0/Data/AdobeSpeedGradeCS6-6.0.0-Trial/6.0.4/6.0.4.xml
    02/09/13 12:49:07:638 | [INFO] |  | OOBE | DE |  |  |  | 159955 | Overwrite property "workflow" to: updater
    02/09/13 12:49:07:639 | [INFO] |  | OOBE | DE |  |  |  | 159955 | Found payload actions:
    02/09/13 12:49:07:639 | [INFO] |  | OOBE | DE |  |  |  | 159955 | Deciding what installer mode to use...
    02/09/13 12:49:07:672 | [INFO] |  | OOBE | DE |  |  |  | 159955 | BEGIN Setting requested payload actions
    02/09/13 12:49:07:672 | [INFO] |  | OOBE | DE |  |  |  | 159955 | Value returned on lookup of payload: Adobe SpeedGrade CS6_6.0.4_AdobeSpeedGrade6.0AllTrial 6.0.4.0 {904C1964-3DE7-4EC0-BF46-E506E4542FAB} is: false
    02/09/13 12:49:07:672 | [INFO] |  | OOBE | DE |  |  |  | 159955 | Action string for Adobe SpeedGrade CS6_6.0.4_AdobeSpeedGrade6.0AllTrial 6.0.4.0 {904C1964-3DE7-4EC0-BF46-E506E4542FAB}  is install
    02/09/13 12:49:07:685 | [INFO] |  | OOBE | DE |  |  |  | 159955 | END Setting requested payload actions
    02/09/13 12:49:07:700 | [INFO] |  | OOBE | DE |  |  |  | 159955 | Collected advanced path check information for INSTALLDIR
    02/09/13 12:49:07:700 | [INFO] |  | OOBE | DE |  |  |  | 159955 | INSTALLDIR is a well-formed path
    02/09/13 12:49:07:700 | [INFO] |  | OOBE | DE |  |  |  | 159955 | INSTALLDIR is not the root path
    02/09/13 12:49:07:700 | [INFO] |  | OOBE | DE |  |  |  | 159955 | INSTALLDIR is on a local volume
    02/09/13 12:49:07:700 | [INFO] |  | OOBE | DE |  |  |  | 159955 | INSTALLDIR is on a writable volume
    02/09/13 12:49:07:700 | [INFO] |  | OOBE | DE |  |  |  | 159955 | INSTALLDIR is not on a case sensitive volume
    02/09/13 12:49:07:700 | [INFO] |  | OOBE | DE |  |  |  | 159955 | INSTALLDIR passed path basic path validation: /Applications
    02/09/13 12:49:07:824 | [INFO] |  | OOBE | DE |  |  |  | 159955 | BEGIN InstallOperationsQueue Unordered operations
    02/09/13 12:49:07:824 | [INFO] |  | OOBE | DE |  |  |  | 159955 |   Adobe SpeedGrade CS6_6.0.4_AdobeSpeedGrade6.0AllTrial 6.0.4.0 {904C1964-3DE7-4EC0-BF46-E506E4542FAB}:  with operation install
    02/09/13 12:49:07:824 | [INFO] |  | OOBE | DE |  |  |  | 159955 | END InstallOperationsQueue Unordered operations
    02/09/13 12:49:07:824 | [INFO] |  | OOBE | DE |  |  |  | 159955 | BEGIN InstallOperationsQueue Ordered operations
    02/09/13 12:49:07:824 | [INFO] |  | OOBE | DE |  |  |  | 159955 |   Adobe SpeedGrade CS6_6.0.4_AdobeSpeedGrade6.0AllTrial 6.0.4.0 {904C1964-3DE7-4EC0-BF46-E506E4542FAB}:  with operation install
    02/09/13 12:49:07:824 | [INFO] |  | OOBE | DE |  |  |  | 159955 | END InstallOperationsQueue Ordered operations
    02/09/13 12:49:07:888 | [INFO] |  | OOBE | DE |  |  |  | 159955 | Payloads passed preflight validation.
    02/09/13 12:49:07:888 | [INFO] |  | OOBE | DE |  |  |  | 159955 | Call PreSession Custom Hook
    02/09/13 12:49:07:888 | [INFO] |  | OOBE | DE |  |  |  | 159955 | BEGIN InstallOperationsQueue Unordered operations
    02/09/13 12:49:07:888 | [INFO] |  | OOBE | DE |  |  |  | 159955 |   Adobe SpeedGrade CS6_6.0.4_AdobeSpeedGrade6.0AllTrial 6.0.4.0 {904C1964-3DE7-4EC0-BF46-E506E4542FAB}:  with operation install
    02/09/13 12:49:07:888 | [INFO] |  | OOBE | DE |  |  |  | 159955 | END InstallOperationsQueue Unordered operations
    02/09/13 12:49:07:888 | [INFO] |  | OOBE | DE |  |  |  | 159955 | BEGIN InstallOperationsQueue Ordered operations
    02/09/13 12:49:07:888 | [INFO] |  | OOBE | DE |  |  |  | 159955 |   Adobe SpeedGrade CS6_6.0.4_AdobeSpeedGrade6.0AllTrial 6.0.4.0 {904C1964-3DE7-4EC0-BF46-E506E4542FAB}:  with operation install
    02/09/13 12:49:07:888 | [INFO] |  | OOBE | DE |  |  |  | 159955 | END InstallOperationsQueue Ordered operations
    02/09/13 12:49:08:021 | [INFO] |  | OOBE | DE |  |  |  | 159955 | Calling the custom action code for pre-install for payload Adobe SpeedGrade CS6_6.0.4_AdobeSpeedGrade6.0AllTrial 6.0.4.0 {904C1964-3DE7-4EC0-BF46-E506E4542FAB}
    02/09/13 12:49:08:021 | [INFO] |  | OOBE | DE |  |  |  | 159955 | ::START TIMER:: [Payload Operation :{904C1964-3DE7-4EC0-BF46-E506E4542FAB}]
    02/09/13 12:49:08:027 | [INFO] |  | OOBE | DE |  |  |  | 159985 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    02/09/13 12:49:08:027 | [INFO] |  | OOBE | DE |  |  |  | 159985 | Installer Operation: PayloadUninstaller
    02/09/13 12:49:08:027 | [INFO] |  | OOBE | DE |  |  |  | 159985 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    02/09/13 12:49:08:027 | [INFO] |  | OOBE | DE |  |  |  | 159985 | Session {904C1964-3DE7-4EC0-BF46-E506E4542FAB} modify request for AdobeCode: {904C1964-3DE7-4EC0-BF46-E506E4542FAB}
    02/09/13 12:49:08:086 | [INFO] |  | OOBE | DE |  |  |  | 159985 | Effective AdobeCode for: {904C1964-3DE7-4EC0-BF46-E506E4542FAB} is {904C1964-3DE7-4EC0-BF46-E506E4542FAB}
    02/09/13 12:49:08:158 | [INFO] |  | OOBE | DE |  |  |  | 159985 | PDB install manipulation failed
    02/09/13 12:49:08:228 | [INFO] |  | OOBE | DE |  |  |  | 159955 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: -1 =*=*=*=*=*=*=*=*=*=*=*=*=*
    02/09/13 12:49:08:228 | [INFO] |  | OOBE | DE |  |  |  | 159955 | :: END TIMER :: [Payload Operation :{904C1964-3DE7-4EC0-BF46-E506E4542FAB}] took 206 milliseconds (0.206 seconds)
    02/09/13 12:49:08:230 | [INFO] |  | OOBE | DE |  |  |  | 159955 | User specified overrideFile:
    02/09/13 12:49:08:232 | [INFO] |  | OOBE | DE |  |  |  | 159955 | The csu inventory was not updated for payload Adobe SpeedGrade CS6_6.0.4_AdobeSpeedGrade6.0AllTrial 6.0.4.0 {904C1964-3DE7-4EC0-BF46-E506E4542FAB}, value of local var is -1
    02/09/13 12:49:08:232 | [INFO] |  | OOBE | DE |  |  |  | 159955 | Calling the ROLLBACK custom action code for pre-install for payload Adobe SpeedGrade CS6_6.0.4_AdobeSpeedGrade6.0AllTrial 6.0.4.0 {904C1964-3DE7-4EC0-BF46-E506E4542FAB}
    02/09/13 12:49:08:371 | [INFO] |  | OOBE | DE |  |  |  | 159955 | No operation.  We're done:
    02/09/13 12:49:10:378 | [INFO] |  | OOBE | DE |  |  |  | 159955 | Total components installed: 0
    02/09/13 12:49:10:378 | [INFO] |  | OOBE | DE |  |  |  | 159955 | Total components repaired: 0
    02/09/13 12:49:10:378 | [INFO] |  | OOBE | DE |  |  |  | 159955 | Total components removed: 0
    02/09/13 12:49:10:378 | [WARN] |  | OOBE | DE |  |  |  | 159955 | DW050: The following payload errors were found during install:
    02/09/13 12:49:10:378 | [WARN] |  | OOBE | DE |  |  |  | 159955 | DW050:  - Adobe SpeedGrade CS6_6.0.4_AdobeSpeedGrade6.0AllTrial: Install failed
    02/09/13 12:49:10:378 | [INFO] |  | OOBE | DE |  |  |  | 159955 | Call PostSession Custom Hook
    02/09/13 12:49:10:378 | [INFO] |  | OOBE | DE |  |  |  | 159955 | :: END TIMER :: [Total Timer] took 6546 milliseconds (6.546 seconds)
    02/09/13 12:49:11:380 | [INFO] |  | OOBE | DE |  |  |  | 159955 | -------------------------------------- Summary --------------------------------------
    02/09/13 12:49:11:380 | [INFO] |  | OOBE | DE |  |  |  | 159955 |  - 0 fatal error(s), 0 error(s)
    02/09/13 12:49:11:380 | [INFO] |  | OOBE | DE |  |  |  | 159955 | OSX version: 10.8.2 
    02/09/13 12:49:11:380 | [INFO] |  | OOBE | DE |  |  |  | 159955 |
    02/09/13 12:49:11:380 | [INFO] |  | OOBE | DE |  |  |  | 159955 | -------------------------------------------------------------------------------------
    02/09/13 12:49:11:380 | [INFO] |  | OOBE | DE |  |  |  | 159955 |
    02/09/13 12:49:11:380 | [INFO] |  | OOBE | DE |  |  |  | 159955 | Exit Code: 7 - Unable to complete Silent workflow.
    02/09/13 12:49:11:380 | [INFO] |  | OOBE | DE |  |  |  | 159955 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    02/09/13 12:49:11:380 | [INFO] |  | OOBE | DE |  |  |  | 159955 | END - Installer Session
    02/09/13 12:49:11:380 | [INFO] |  | OOBE | DE |  |  |  | 159955 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    --------- yesterday's AE failed update install log -------------
    02/08/13 11:58:45:643 | [INFO] |  | OOBE | DE |  |  |  | 675837 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    02/08/13 11:58:45:643 | [INFO] |  | OOBE | DE |  |  |  | 675837 | START - Installer Session
    02/08/13 11:58:45:643 | [INFO] |  | OOBE | DE |  |  |  | 675837 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    02/08/13 11:58:45:643 | [INFO] |  | OOBE | DE |  |  |  | 675837 | RIBS version: 7.0.0.91
    02/08/13 11:58:45:647 | [INFO] |  | OOBE | DE |  |  |  | 675837 | OSX version: 10.8.2 
    02/08/13 11:58:45:647 | [INFO] |  | OOBE | DE |  |  |  | 675837 | ::START TIMER:: [Total Timer]
    02/08/13 11:58:45:647 | [INFO] |  | OOBE | DE |  |  |  | 675837 | CHECK: Single instance running
    02/08/13 11:58:45:647 | [INFO] |  | OOBE | DE |  |  |  | 675837 | CHECK : Credentials
    02/08/13 11:58:45:647 | [INFO] |  | OOBE | DE |  |  |  | 675837 | Load Deployment File
    02/08/13 11:58:45:647 | [INFO] |  | OOBE | DE |  |  |  | 675837 | deploymentFile option not given
    02/08/13 11:58:45:647 | [INFO] |  | OOBE | DE |  |  |  | 675837 | CHECK : Another Native OS installer already running
    02/08/13 11:58:45:647 | [INFO] |  | OOBE | DE |  |  |  | 675837 | Create Required Folders
    02/08/13 11:58:45:647 | [INFO] |  | OOBE | DE |  |  |  | 675837 | Assuming install mode
    02/08/13 11:58:45:647 | [INFO] |  | OOBE | DE |  |  |  | 675837 | Looking up install source path
    02/08/13 11:58:45:647 | [INFO] |  | OOBE | DE |  |  |  | 675837 | Sync Media DB ...
    02/08/13 11:58:45:647 | [INFO] |  | OOBE | DE |  |  |  | 675837 | ::START TIMER:: [Sync Media DB]
    02/08/13 11:58:45:647 | [INFO] |  | OOBE | DE |  |  |  | 675837 | Pre check media db sync
    02/08/13 11:58:45:647 | [INFO] |  | OOBE | DE |  |  |  | 675837 | End of Pre check media db sync. Exit code: 0
    02/08/13 11:58:45:647 | [INFO] |  | OOBE | DE |  |  |  | 675837 | :: END TIMER :: [Sync Media DB] took 24 milliseconds (0.024 seconds)
    02/08/13 11:58:45:647 | [INFO] |  | OOBE | DE |  |  |  | 675837 | Ready to initialize session to start with ...
    02/08/13 11:58:45:647 | [INFO] |  | OOBE | DE |  |  |  | 675837 | ::START TIMER:: [CreatePayloadSession]
    02/08/13 11:58:45:647 | [INFO] |  | OOBE | DE |  |  |  | 675837 | -------------------- BEGIN - Updating Media Sources - BEGIN --------------------
    02/08/13 11:58:45:647 | [INFO] |  | OOBE | DE |  |  |  | 675837 | Updated source path: /Volumes/AfterEffectsTrial-11.0.2-mul-AdobeUpdate
    02/08/13 11:58:45:647 | [INFO] |  | OOBE | DE |  |  |  | 675837 | Updating media info for: {AFB0B8BA-A209-4E84-A6CD-2E9177DC191E}
    02/08/13 11:58:45:648 | [INFO] |  | OOBE | DE |  |  |  | 675837 |   Type: 1, Volume Order: 1, Media Name: AfterEffectsTrial-11.0.2-mul-AdobeUpdate
    02/08/13 11:58:45:648 | [INFO] |  | OOBE | DE |  |  |  | 675837 |   Path: /Volumes/AfterEffectsTrial-11.0.2-mul-AdobeUpdate/payloads/AdobeAfterEffects11AllTrial-07 0912014419/AdobeAfterEffects11AllTrial-070912014419.dmg
    02/08/13 11:58:45:648 | [INFO] |  | OOBE | DE |  |  |  | 675837 | --------------------  END  - Updating Media Sources -  END  --------------------
    02/08/13 11:58:45:661 | [INFO] |  | OOBE | DE |  |  |  | 675837 | Supported RIBS version range: [0.0.0.0,7.0.0.91]
    02/08/13 11:58:45:661 | [INFO] |  | OOBE | DE |  |  |  | 675837 | ----------------- CreatePayloadSession: machine is x86 ---------------
    02/08/13 11:58:47:062 | [INFO] |  | OOBE | DE |  |  |  | 675837 | ______ Verify Dependency Subscribers ______
    02/08/13 11:58:47:062 | [INFO] |  | OOBE | DE |  |  |  | 675837 | BEGIN Operation order for all session payloads: mediaGroup (requires,satisfies)
    02/08/13 11:58:47:062 | [INFO] |  | OOBE | DE |  |  |  | 675837 |   Adobe After Effects CS6_11.0.2_AdobeAfterEffects11AllTrial 11.0.2.0 {AFB0B8BA-A209-4E84-A6CD-2E9177DC191E}: 0 (0,0)
    02/08/13 11:58:47:062 | [INFO] |  | OOBE | DE |  |  |  | 675837 | END Operation order for all session payloads: mediaGroup (requires,satisfies)
    02/08/13 11:58:47:063 | [INFO] |  | OOBE | DE |  |  |  | 675837 | Patch Adobe After Effects CS6_11.0.2_AdobeAfterEffects11AllTrial 11.0.2.0 {AFB0B8BA-A209-4E84-A6CD-2E9177DC191E} can be applied to product Adobe After Effects CS6 11.0.0.0 {4817D846-700B-474E-A31B-80892B3E92E3}
    02/08/13 11:58:47:151 | [INFO] |  | OOBE | DE |  |  |  | 675837 | Setting property "DEVersion" to: 6.0
    02/08/13 11:58:47:151 | [INFO] |  | OOBE | DE |  |  |  | 675837 | Setting property "installSourcePath" to: /Volumes/AfterEffectsTrial-11.0.2-mul-AdobeUpdate
    02/08/13 11:58:47:151 | [INFO] |  | OOBE | DE |  |  |  | 675837 | Setting property "mode" to: silent
    02/08/13 11:58:47:151 | [INFO] |  | OOBE | DE |  |  |  | 675837 | Setting property "workflow" to: updater
    02/08/13 11:58:47:151 | [INFO] |  | OOBE | DE |  |  |  | 675837 | Overwrite property "DEVersion" to: 6.0
    02/08/13 11:58:47:151 | [INFO] |  | OOBE | DE |  |  |  | 675837 | Overwrite property "extensionsOnly" to: 1
    02/08/13 11:58:47:151 | [INFO] |  | OOBE | DE |  |  |  | 675837 | Overwrite property "mode" to: silent
    02/08/13 11:58:47:151 | [INFO] |  | OOBE | DE |  |  |  | 675837 | Overwrite property "patchesOnly" to: 1
    02/08/13 11:58:47:151 | [INFO] |  | OOBE | DE |  |  |  | 675837 | Overwrite property "workflow" to: updater
    02/08/13 11:58:47:151 | [INFO] |  | OOBE | DE |  |  |  | 675837 | Found payload actions:
    02/08/13 11:58:47:151 | [INFO] |  | OOBE | DE |  |  |  | 675837 | Deciding what installer mode to use...
    02/08/13 11:58:47:179 | [INFO] |  | OOBE | DE |  |  |  | 675837 | BEGIN Setting requested payload actions
    02/08/13 11:58:47:179 | [INFO] |  | OOBE | DE |  |  |  | 675837 | Value returned on lookup of payload: Adobe After Effects CS6_11.0.2_AdobeAfterEffects11AllTrial 11.0.2.0 {AFB0B8BA-A209-4E84-A6CD-2E9177DC191E} is: false
    02/08/13 11:58:47:180 | [INFO] |  | OOBE | DE |  |  |  | 675837 | Action string for Adobe After Effects CS6_11.0.2_AdobeAfterEffects11AllTrial 11.0.2.0 {AFB0B8BA-A209-4E84-A6CD-2E9177DC191E}  is install
    02/08/13 11:58:47:194 | [INFO] |  | OOBE | DE |  |  |  | 675837 | END Setting requested payload actions
    02/08/13 11:58:47:208 | [INFO] |  | OOBE | DE |  |  |  | 675837 | Collected advanced path check information for INSTALLDIR
    02/08/13 11:58:47:208 | [INFO] |  | OOBE | DE |  |  |  | 675837 | INSTALLDIR is a well-formed path
    02/08/13 11:58:47:208 | [INFO] |  | OOBE | DE |  |  |  | 675837 | INSTALLDIR is not the root path
    02/08/13 11:58:47:208 | [INFO] |  | OOBE | DE |  |  |  | 675837 | INSTALLDIR is on a local volume
    02/08/13 11:58:47:208 | [INFO] |  | OOBE | DE |  |  |  | 675837 | INSTALLDIR is on a writable volume
    02/08/13 11:58:47:208 | [INFO] |  | OOBE | DE |  |  |  | 675837 | INSTALLDIR is not on a case sensitive volume
    02/08/13 11:58:47:208 | [INFO] |  | OOBE | DE |  |  |  | 675837 | INSTALLDIR passed path basic path validation: /Applications
    02/08/13 11:58:47:231 | [INFO] |  | OOBE | DE |  |  |  | 675837 | ::START TIMER:: [System check :{AFB0B8BA-A209-4E84-A6CD-2E9177DC191E}]
    02/08/13 11:58:47:233 | [INFO] |  | OOBE | DE |  |  |  | 675837 | In InstallPreSystemCheckProc
    02/08/13 11:58:47:233 | [INFO] |  | OOBE | DE |  |  |  | 675837 | Custom action return code: 0
    02/08/13 11:58:47:233 | [INFO] |  | OOBE | DE |  |  |  | 675837 | :: END TIMER :: [System check :{AFB0B8BA-A209-4E84-A6CD-2E9177DC191E}] took 2 milliseconds (0.002 seconds)
    02/08/13 11:58:47:347 | [INFO] |  | OOBE | DE |  |  |  | 675837 | BEGIN InstallOperationsQueue Unordered operations
    02/08/13 11:58:47:347 | [INFO] |  | OOBE | DE |  |  |  | 675837 |   Adobe After Effects CS6_11.0.2_AdobeAfterEffects11AllTrial 11.0.2.0 {AFB0B8BA-A209-4E84-A6CD-2E9177DC191E}:  with operation install
    02/08/13 11:58:47:347 | [INFO] |  | OOBE | DE |  |  |  | 675837 | END InstallOperationsQueue Unordered operations
    02/08/13 11:58:47:347 | [INFO] |  | OOBE | DE |  |  |  | 675837 | BEGIN InstallOperationsQueue Ordered operations
    02/08/13 11:58:47:347 | [INFO] |  | OOBE | DE |  |  |  | 675837 |   Adobe After Effects CS6_11.0.2_AdobeAfterEffects11AllTrial 11.0.2.0 {AFB0B8BA-A209-4E84-A6CD-2E9177DC191E}:  with operation install
    02/08/13 11:58:47:347 | [INFO] |  | OOBE | DE |  |  |  | 675837 | END InstallOperationsQueue Ordered operations
    02/08/13 11:58:47:389 | [INFO] |  | OOBE | DE |  |  |  | 675837 | Payloads passed preflight validation.
    02/08/13 11:58:47:389 | [INFO] |  | OOBE | DE |  |  |  | 675837 | Call PreSession Custom Hook
    02/08/13 11:58:47:389 | [INFO] |  | OOBE | DE |  |  |  | 675837 | ::START TIMER:: [Pre session :{AFB0B8BA-A209-4E84-A6CD-2E9177DC191E}]
    02/08/13 11:58:47:390 | [INFO] |  | OOBE | DE |  |  |  | 675837 | In InstallSessionOpenProc
    02/08/13 11:58:47:390 | [INFO] |  | OOBE | DE |  |  |  | 675837 | Custom action return code: 0
    02/08/13 11:58:47:390 | [INFO] |  | OOBE | DE |  |  |  | 675837 | :: END TIMER :: [Pre session :{AFB0B8BA-A209-4E84-A6CD-2E9177DC191E}] took 0 milliseconds (0 seconds)
    02/08/13 11:58:47:390 | [INFO] |  | OOBE | DE |  |  |  | 675837 | BEGIN InstallOperationsQueue Unordered operations
    02/08/13 11:58:47:390 | [INFO] |  | OOBE | DE |  |  |  | 675837 |   Adobe After Effects CS6_11.0.2_AdobeAfterEffects11AllTrial 11.0.2.0 {AFB0B8BA-A209-4E84-A6CD-2E9177DC191E}:  with operation install
    02/08/13 11:58:47:390 | [INFO] |  | OOBE | DE |  |  |  | 675837 | END InstallOperationsQueue Unordered operations
    02/08/13 11:58:47:390 | [INFO] |  | OOBE | DE |  |  |  | 675837 | BEGIN InstallOperationsQueue Ordered operations
    02/08/13 11:58:47:390 | [INFO] |  | OOBE | DE |  |  |  | 675837 |   Adobe After Effects CS6_11.0.2_AdobeAfterEffects11AllTrial 11.0.2.0 {AFB0B8BA-A209-4E84-A6CD-2E9177DC191E}:  with operation install
    02/08/13 11:58:47:390 | [INFO] |  | OOBE | DE |  |  |  | 675837 | END InstallOperationsQueue Ordered operations
    02/08/13 11:58:47:524 | [INFO] |  | OOBE | DE |  |  |  | 675837 | Calling the custom action code for pre-install for payload Adobe After Effects CS6_11.0.2_AdobeAfterEffects11AllTrial 11.0.2.0 {AFB0B8BA-A209-4E84-A6CD-2E9177DC191E}
    02/08/13 11:58:47:524 | [INFO] |  | OOBE | DE |  |  |  | 675837 | ::START TIMER:: [Pre payload :{AFB0B8BA-A209-4E84-A6CD-2E9177DC191E}]
    02/08/13 11:58:47:524 | [INFO] |  | OOBE | DE |  |  |  | 675837 | In PrePayloadInstallProc
    02/08/13 11:58:47:524 | [INFO] |  | OOBE | DE |  |  |  | 675837 | CH: MediaPath: /Volumes/AfterEffectsTrial-11.0.2-mul-AdobeUpdate/payloads/AdobeAfterEffects11AllTrial-07 0912014419/AdobeAfterEffects11AllTrial-070912014419.dmg
    02/08/13 11:58:47:524 | [INFO] |  | OOBE | DE |  |  |  | 675837 | CH: Helper Path: /Volumes/AfterEffectsTrial-11.0.2-mul-AdobeUpdate/payloads/AdobeAfterEffects11AllTrial-07 0912014419/customactionHelper
    02/08/13 11:58:47:526 | [INFO] |  | OOBE | DE |  |  |  | 675837 | CH: Get user id
    02/08/13 11:58:47:526 | [INFO] |  | OOBE | DE |  |  |  | 675837 | uid = 505
    02/08/13 11:58:47:526 | [INFO] |  | OOBE | DE |  |  |  | 675837 | CH: Processing for AC = {4817D846-700B-474E-A31B-80892B3E92E3}
    02/08/13 11:58:47:550 | [INFO] |  | OOBE | DE |  |  |  | 675837 | CH: action = rm, path = /Applications/Adobe After Effects CS6/Adobe After Effects CS6.app/Contents/ImporterREDServer.app
    02/08/13 11:58:47:551 | [INFO] |  | OOBE | DE |  |  |  | 675837 | CH: action = rm, path = /Applications/Adobe After Effects CS6/Adobe After Effects CS6.app/Contents/Plug-ins/(MediaCore)/ImporterRED.bundle
    02/08/13 11:58:47:551 | [INFO] |  | OOBE | DE |  |  |  | 675837 | Custom action return code: 0
    02/08/13 11:58:47:551 | [INFO] |  | OOBE | DE |  |  |  | 675837 | :: END TIMER :: [Pre payload :{AFB0B8BA-A209-4E84-A6CD-2E9177DC191E}] took 27 milliseconds (0.027 seconds)
    02/08/13 11:58:47:551 | [INFO] |  | OOBE | DE |  |  |  | 675837 | ::START TIMER:: [Payload Operation :{AFB0B8BA-A209-4E84-A6CD-2E9177DC191E}]
    02/08/13 11:58:47:572 | [INFO] |  | OOBE | DE |  |  |  | 675869 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    02/08/13 11:58:47:572 | [INFO] |  | OOBE | DE |  |  |  | 675869 | Installer Operation: PayloadUninstaller
    02/08/13 11:58:47:572 | [INFO] |  | OOBE | DE |  |  |  | 675869 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    02/08/13 11:58:47:572 | [INFO] |  | OOBE | DE |  |  |  | 675869 | Session {AFB0B8BA-A209-4E84-A6CD-2E9177DC191E} modify request for AdobeCode: {AFB0B8BA-A209-4E84-A6CD-2E9177DC191E}
    02/08/13 11:58:47:619 | [INFO] |  | OOBE | DE |  |  |  | 675869 | Effective AdobeCode for: {AFB0B8BA-A209-4E84-A6CD-2E9177DC191E} is {AFB0B8BA-A209-4E84-A6CD-2E9177DC191E}
    02/08/13 11:58:47:679 | [INFO] |  | OOBE | DE |  |  |  | 675869 | PDB install manipulation failed
    02/08/13 11:58:47:774 | [INFO] |  | OOBE | DE |  |  |  | 675837 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: -1 =*=*=*=*=*=*=*=*=*=*=*=*=*
    02/08/13 11:58:47:774 | [INFO] |  | OOBE | DE |  |  |  | 675837 | :: END TIMER :: [Payload Operation :{AFB0B8BA-A209-4E84-A6CD-2E9177DC191E}] took 222 milliseconds (0.222 seconds) DTR = 18.018 KBPS (0.0175957 MBPS)
    02/08/13 11:58:47:776 | [INFO] |  | OOBE | DE |  |  |  | 675837 | User specified overrideFile:
    02/08/13 11:58:47:778 | [INFO] |  | OOBE | DE |  |  |  | 675837 | The csu inventory was not updated for payload Adobe After Effects CS6_11.0.2_AdobeAfterEffects11AllTrial 11.0.2.0 {AFB0B8BA-A209-4E84-A6CD-2E9177DC191E}, value of local var is -1
    02/08/13 11:58:47:778 | [INFO] |  | OOBE | DE |  |  |  | 675837 | Calling the ROLLBACK custom action code for pre-install for payload Adobe After Effects CS6_11.0.2_AdobeAfterEffects11AllTrial 11.0.2.0 {AFB0B8BA-A209-4E84-A6CD-2E9177DC191E}
    02/08/13 11:58:47:778 | [INFO] |  | OOBE | DE |  |  |  | 675837 | ::START TIMER:: [Pre payload :{AFB0B8BA-A209-4E84-A6CD-2E9177DC191E}]
    02/08/13 11:58:47:778 | [INFO] |  | OOBE | DE |  |  |  | 675837 | In PrePayloadInstallProc
    02/08/13 11:58:47:778 | [INFO] |  | OOBE | DE |  |  |  | 675837 | CH: MediaPath: /Volumes/AfterEffectsTrial-11.0.2-mul-AdobeUpdate/payloads/AdobeAfterEffects11AllTrial-07 0912014419/AdobeAfterEffects11AllTrial-070912014419.dmg
    02/08/13 11:58:47:778 | [INFO] |  | OOBE | DE |  |  |  | 675837 | CH: Helper Path: /Volumes/AfterEffectsTrial-11.0.2-mul-AdobeUpdate/payloads/AdobeAfterEffects11AllTrial-07 0912014419/customactionHelper
    02/08/13 11:58:47:779 | [INFO] |  | OOBE | DE |  |  |  | 675837 | CH: Get user id
    02/08/13 11:58:47:780 | [INFO] |  | OOBE | DE |  |  |  | 675837 | uid = 505
    02/08/13 11:58:47:780 | [INFO] |  | OOBE | DE |  |  |  | 675837 | CH: Processing for AC = {4817D846-700B-474E-A31B-80892B3E92E3}
    02/08/13 11:58:47:786 | [INFO] |  | OOBE | DE |  |  |  | 675837 | CH: action = rm, path = /Applications/Adobe After Effects CS6/Adobe After Effects CS6.app/Contents/ImporterREDServer.app
    02/08/13 11:58:47:787 | [INFO] |  | OOBE | DE |  |  |  | 675837 | CH: action = rm, path = /Applications/Adobe After Effects CS6/Adobe After Effects CS6.app/Contents/Plug-ins/(MediaCore)/ImporterRED.bundle
    02/08/13 11:58:47:787 | [INFO] |  | OOBE | DE |  |  |  | 675837 | Custom action return code: 0
    02/08/13 11:58:47:787 | [INFO] |  | OOBE | DE |  |  |  | 675837 | :: END TIMER :: [Pre payload :{AFB0B8BA-A209-4E84-A6CD-2E9177DC191E}] took 8 milliseconds (0.008 seconds)
    02/08/13 11:58:48:103 | [INFO] |  | OOBE | DE |  |  |  | 675837 | No operation.  We're done:
    02/08/13 11:58:50:113 | [INFO] |  | OOBE | DE |  |  |  | 675837 | Total components installed: 0
    02/08/13 11:58:50:113 | [INFO] |  | OOBE | DE |  |  |  | 675837 | Total components repaired: 0
    02/08/13 11:58:50:113 | [INFO] |  | OOBE | DE |  |  |  | 675837 | Total components removed: 0
    02/08/13 11:58:50:113 | [WARN] |  | OOBE | DE |  |  |  | 675837 | DW050: The following payload errors were found during install:
    02/08/13 11:58:50:113 | [WARN] |  | OOBE | DE |  |  |  | 675837 | DW050:  - Adobe After Effects CS6_11.0.2_AdobeAfterEffects11AllTrial: Install failed
    02/08/13 11:58:50:113 | [INFO] |  | OOBE | DE |  |  |  | 675837 | Call PostSession Custom Hook
    02/08/13 11:58:50:113 | [INFO] |  | OOBE | DE |  |  |  | 675837 | ::START TIMER:: [Post session :{AFB0B8BA-A209-4E84-A6CD-2E9177DC191E}]
    02/08/13 11:58:50:114 | [INFO] |  | OOBE | DE |  |  |  | 675837 | In InstallSessionCloseProc
    02/08/13 11:58:50:114 | [INFO] |  | OOBE | DE |  |  |  | 675837 | Custom action return code: 0
    02/08/13 11:58:50:114 | [INFO] |  | OOBE | DE |  |  |  | 675837 | :: END TIMER :: [Post session :{AFB0B8BA-A209-4E84-A6CD-2E9177DC191E}] took 0 milliseconds (0 seconds) DTR = inf KBPS (inf MBPS)
    02/08/13 11:58:50:114 | [INFO] |  | OOBE | DE |  |  |  | 675837 | :: END TIMER :: [Total Timer] took 5239 milliseconds (5.239 seconds) DTR = 6.10804 KBPS (0.00596488 MBPS)
    02/08/13 11:58:51:115 | [INFO] |  | OOBE | DE |  |  |  | 675837 | -------------------------------------- Summary --------------------------------------
    02/08/13 11:58:51:115 | [INFO] |  | OOBE | DE |  |  |  | 675837 |  - 0 fatal error(s), 0 error(s)
    02/08/13 11:58:51:116 | [INFO] |  | OOBE | DE |  |  |  | 675837 | OSX version: 10.8.2 
    02/08/13 11:58:51:116 | [INFO] |  | OOBE | DE |  |  |  | 675837 |
    02/08/13 11:58:51:116 | [INFO] |  | OOBE | DE |  |  |  | 675837 | -------------------------------------------------------------------------------------
    02/08/13 11:58:51:116 | [INFO] |  | OOBE | DE |  |  |  | 675837 |
    02/08/13 11:58:51:116 | [INFO] |  | OOBE | DE |  |  |  | 675837 | Exit Code: 7 - Unable to complete Silent workflow.
    02/08/13 11:58:51:116 | [INFO] |  | OOBE | DE |  |  |  | 675837 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    02/08/13 11:58:51:116 | [INFO] |  | OOBE | DE |  |  |  | 675837 | END - Installer Session
    02/08/13 11:58:51:116 | [INFO] |  | OOBE | DE |  |  |  | 675837 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*

  • Problems updating the BAM database

    Hi Guys,
    I have an activity that runs for a long time and after executing for about 15-16 mins it causes the following exception.
    Did somebody else also faced this problem ever? I have tried configuring all possible timeout parameters but all in vain.
    Any help would be highly appreciated.
    Thanks,
    MK
    EXCEPTION DETAILS
    Problems updating the BAM database. Reason:Unable to connect to the database.
    Caused by: A lock could not be obtained within the time requested
    fuego.analyzer.UpdaterRuntimeException: Unable to connect to the database.
         at fuego.analyzer.UpdaterRuntimeException.cannotConnecToDatabase(UpdaterRuntimeException.java:80)
         at fuego.analyzer.UpdaterRunner.synchronizeMetadata(UpdaterRunner.java:494)
         at fuego.analyzer.UpdaterRunner.run(UpdaterRunner.java:273)
         at fuego.analyzer.UpdaterRunner.runUpdater(UpdaterRunner.java:176)
         at fuego.server.service.BAMRunnerService.runUpdater(BAMRunnerService.java:62)
         at fuego.server.execution.BAMUpdater.execute(BAMUpdater.java:33)
         at fuego.server.execution.DefaultEngineExecution$AtomicExecutionTA.runTransaction(DefaultEngineExecution.java:290)
         at fuego.transaction.TransactionAction.startBaseTransaction(TransactionAction.java:465)
         at fuego.transaction.TransactionAction.startTransaction(TransactionAction.java:543)
         at fuego.transaction.TransactionAction.start(TransactionAction.java:216)
         at fuego.server.execution.DefaultEngineExecution.executeImmediate(DefaultEngineExecution.java:116)
         at fuego.server.execution.DefaultEngineExecution.executeAutomaticWork(DefaultEngineExecution.java:56)
         at fuego.server.execution.EngineExecution.executeAutomaticWork(EngineExecution.java:42)
         at fuego.server.execution.ToDoItem.executeAutomaticWork(ToDoItem.java:265)
         at fuego.server.execution.ToDoItem.run(ToDoItem.java:536)
         at fuego.component.ExecutionThread.processMessage(ExecutionThread.java:752)
         at fuego.component.ExecutionThread.processBatch(ExecutionThread.java:732)
         at fuego.component.ExecutionThread.doProcessBatch(ExecutionThread.java:138)
         at fuego.component.ExecutionThread.doProcessBatch(ExecutionThread.java:130)
         at fuego.fengine.ToDoQueueThread$PrincipalWrapper.processBatch(ToDoQueueThread.java:429)
         at fuego.component.ExecutionThread.work(ExecutionThread.java:816)
         at fuego.component.ExecutionThread.run(ExecutionThread.java:395)
    Caused by: SQL Exception: A lock could not be obtained within the time requested
         at com.ibm.db2cs.m.j.generateCsSQLException(Unknown Source)
         at com.ibm.db2cs.m.b.wrapInSQLException(Unknown Source)
         at com.ibm.db2cs.m.b.handleException(Unknown Source)
         at com.ibm.db2cs.m.d.handleException(Unknown Source)
         at com.ibm.db2cs.m.t.handleException(Unknown Source)
         at com.ibm.db2cs.m.s.closeOnTransactionError(Unknown Source)
         at com.ibm.db2cs.m.s.movePosition(Unknown Source)
         at com.ibm.db2cs.m.s.next(Unknown Source)
         at fuego.jdbc.FaultTolerantResultSet.next(FaultTolerantResultSet.java:553)
         at fuego.analyzer.Updater.loadInstanceInfoValues(Updater.java:1039)
         at fuego.analyzer.Updater.loadInstanceInfoValues(Updater.java:988)
         at fuego.analyzer.Updater.loadInstanceInfo(Updater.java:982)
         at fuego.analyzer.Updater.synchronize(Updater.java:252)
         at fuego.analyzer.UpdaterRunner.synchronizeMetadata(UpdaterRunner.java:480)
         ... 20 more

    Good morning justinmm357,
    I would be more than happy to help delink the secondary email address from your My Best Buy™ account.  Please send me a private message with the information below, by clicking on the blue button in my signature, and I will make sure that everything is up-to-date.
    Name
    Phone #
    Mailing address
    Email address (primary and secondary)
    Thank you for reaching out to us on the forum and for being a My Best Buy™ member!
    Derek|Social Media Specialist | Best Buy® Corporate
     Private Message

  • Problem updating master data

    Hi all, im having a problem updating master data for an infoobject.
    Im not able to upload the data from the data source and im not able either to update it manually.
    Im getting this error Field symbol has not yet been assigned
    can anybody hekp me?

    Ask your Basis team to implement this note in BI system..
    Summary
    Symptom
    GETWA_NOT_ASSIGNED (a field symbol is not yet assigned) occurs when new master data providers are implemented after Note 1089231.
    Reason and Prerequisites
    This problem is caused by a program error.
    This problem only occurs when display attributes are requested and no data is returned.

  • How to retrieve report region source statement programmatically?

    Hi all,
    I have several report regions in an apex application each
    of type "PL/SQL function body returning SQL query"
    and of same structure like:
    bq. declare \\ stmt varchar2(32767); \\ ... \\ begin \\ /* some stuff preparing sql query string */ \\ stmt := 'select' || ' a,b,c' || 'from table'; \\ return stmt; \\ end;
    Now I need to retrieve the region source returned sql statement programmatically.
    The region source is stored in apex view "apex_application_page_regions.region_source".
    But what is the best way to retrieve the SQL statement value, by executing
    the anonymous pl/sql block OR how does it work in apex internally?
    An "execute immediate +region_source+ ... " approach does not work due to PLS-00372.
    Any hints?
    Regards,
    Matthias

    Dear Matthias,
    an interesting problem you raise here. The solution is to create a function from the region source, call that function and then do something useful with the result.
    Let's suppose your region source is :
    declare v_text varchar2(100); begin return(''select * from emp''); end;
    - put this text instead of the first declare
    declare
    v_statement varchar2(4000) := '
    declare
    function test return varchar2 is
    - put this code behind the source:
    begin
    dbms_output.put_line(test);
    end;';
    begin
    execute immediate v_statement;
    end;
    Now you have created a anonymous PL/SQL block that can be performed. The whole code looks like:
    declare
    v_statement varchar2(4000) := '
    declare
    function test return varchar2 is
    begin return(''select * from emp''); end;
    begin
    dbms_output.put_line(test);
    end;';
    begin
    execute immediate v_statement;
    end;
    Instead of the put_line you might set a package variable, so that you can use the result in another way,
    good luck, DickDral

  • Can't help but share arraycollection updating vs. source updating

    I've read and read advice about updating the source array of an arraycollection if one has a lot of updates to perform but I had never run into real-world issues with the speed of what I was doing. However, on my current project, I'm updating a calendar and every time I added a calendar event, Flex was trying to be helpful by dispatching collectionChange event, trying to help me out way too much via binding. That was no problem until I decided to allow for clipboard pasting of selected items and I just couldn't figure out why it would take 10 seconds to paste maybe 100-200 copies of calendar events. When I switched to updating the source array and then refresh the arraycollection at the end of the process, the elapsed time went from an average of 9.14 seconds to 0.18 seconds. So thanks to all those who at least pounded that suggestion into my head so that it bubbled up when I finally encountered a real-world problem and keep it in mind the next time your arrayCollection seems like it's taking to long to update.

    I am having the exact same problem..  I have the same router and same version as well.. I followed the directions and upgraded the firmware. it said update successfull and then I reset it and power cycled it to find that my network no longer works and I cannot access the router..I've looked through all the troubleshooting guides and they do not help..  It says if you can't access the web based page then to use the TFTP  utility to re-flash the router’s firmware but it seems it cannot make a connection to the router..  I've tried to ping it like it says to in the TFTP guide but it does not seem to be able to make a connection to the router..  I tried to access Management Mode to recover the router and resume the loading of the firmware upgrade but I can't get the Management Mode Firmware Upgrade page to open as well..  So what gives?  I followed the directions  but the only thing I seemed to accomplish was to brick my router..   Does anyone have a clue on how to go about fixing this problem?   Any help is appreciated.. 

  • Problems updating my 3gs on itunes to 4ioss it will not let me activate the iphone

    problems updating my iphone 3gs on itunes to 4 ioss it will not let me activate my iphone and it telling me to insert sim when already inserted

    Any error numbers given?
    If yes, check this article:
    Update and restore error messages on iPhone and iPod touch
    Has any modified software been installed before you updated?
    Unauthorized modification of iOS has been a major source of instability, disruption of services, and other issues

Maybe you are looking for