SWF Viewer Syntax

Hi,
I have some SWF files created using Captivate that we wish to
publish to an INTRAnet site. On this site we have the benefit of
knowing that ALL users have a local network drive available as the
mapped "I:" drive. We'd like to distribute the SWF files to each
local site where they would be installed in the I:\IFTraining
folder. Now, we should be able to reference these files in the
INTRAnet website. Unfortunately, I'm having problems with the
syntax:
<object
classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6, 0,29,0"
width="800" height="600" ID="Captivate1">
<param name="movie"
value="file:////i:/IFTraining/TDITransfers20061101.swf">
<param name="quality" value="high">
<param name="menu" value="false">
<param name="loop" value="0">
<embed
src="file:////i:/IFTraining/TDITransfers20061101.swf" width="800"
height="600" loop="0" quality="high"
pluginspage="https://www.macromedia.com/go/getflashplayer"
type="application/x-shockwave-flash" menu="false"></embed>
</object>
How should I correctly refer to the SWF files? I've tried a
bunch of changes in syntax with no luck.
Thanks for the help.

make it in relation to the calling html page...
most likely its just
<param name="movie" value="TDITransfers20061101.swf">
<embed src="TDITransfers20061101.swf" ....>
the other possibility is just:
IFTraining/TDITransfers20061101.swf

Similar Messages

  • Looking for Good swf viewer/browser

    I'm looking for a swf viewer/browser similar to Windows standard browser.
    I need to basically show someone a bunch of swfs in a slideshow format.
    Thanks!

    Thanks for responding kglad.
    The swfs aren't being displayed in a web browser.
    I don't see an option for showing the swfs in slideshow format/view in the flash player. It will only display one, then I need to open the next one individually.
    Creating a swf slideshow seems like far much more work than what is needed in this case. I just need to be able to browse through a bunch of swfs quickly.

  • How can I control creation of empty tags when using ora:view syntax?

    I'm using XMLQuery and ora:view syntax to create xml resources in the database but I'd like to be able to prevent the creation of empty tags for null values in the table.
    CREATE OR REPLACE PROCEDURE proc_ctsi_build is
    XMLdoc XMLType;
    BEGIN
    DBMS_XDB.deleteResource('/public/CTSI/ctsi_phsall_rpt1.xml',1);
    SELECT XMLQuery(
    '<Progress_Report>
    <Personnel_Roster>
    {for $c in ora:view("CTSI_INVEST_SOURCE_V")
        let $username  := $c/ROW/COMMONS_USERNAME/text(),
    $expertise  := $c/ROW/AREA_OF_EXPERTISE/text()
         return
      <Investigator>
       <Commons_Username>{$username}</Commons_Username>
    <Area_of_Expertise>{$expertise}</Area_of_Expertise>
    </Investigator>}
    </Personnel_Roster>
    </Progress_Report>'
    RETURNING CONTENT) INTO XMLdoc FROM DUAL;
    IF(DBMS_XDB.CREATERESOURCE('/public/CTSI/ctsi_phsall_rpt1.xml', XMLdoc)) THEN
    DBMS_OUTPUT.PUT_LINE('Resource is created');
    ELSE
    DBMS_OUTPUT.PUT_LINE('Cannot create resource');
    END IF;
    COMMIT;
    END;
    In this example how can I prevent getting <Area_of_Expertise/> in my output when AREA_OF_EXPERTISE is null in the table?
    Thanks

    Hi,
    you can use if else conditions.
    {if ($expertise) then
    <Area_of_Expertise>{$expertise}</Area_of_Expertise>
    else ()}
    **not tested**
    Ants
    Message was edited by:
    Ants Hindpere

  • SWF Viwere Syntax

    Hi,
    I have some SWF files created using Captivate that we wish to
    publish to an INTRAnet site. On this site we have the benefit of
    knowing that ALL users have a local network drive available as the
    mapped "I:" drive. We'd like to distribute the SWF files to each
    local site where they would be installed in the I:\IFTraining
    folder. Now, we should be able to reference these files in the
    INTRAnet website. Unfortunately, I'm having problems with the
    syntax:
    <object
    classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
    codebase="https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6, 0,29,0"
    width="800" height="600" ID="Captivate1">
    <param name="movie"
    value="file:////i:/IFTraining/TDITransfers20061101.swf">
    <param name="quality" value="high">
    <param name="menu" value="false">
    <param name="loop" value="0">
    <embed
    src="file:////i:/IFTraining/TDITransfers20061101.swf" width="800"
    height="600" loop="0" quality="high"
    pluginspage="https://www.macromedia.com/go/getflashplayer"
    type="application/x-shockwave-flash" menu="false"></embed>
    </object>
    How should I correctly refer to the SWF files? I've tried a
    bunch of changes in syntax with no luck.
    Thanks for the help.

    make it in relation to the calling html page...
    most likely its just
    <param name="movie" value="TDITransfers20061101.swf">
    <embed src="TDITransfers20061101.swf" ....>
    the other possibility is just:
    IFTraining/TDITransfers20061101.swf

  • Swf view/convert for ipad app

    I am trying to develop an app for iPad/iPhone device so that I can view swf file. We have a component developed in flex where we are calling swf file into that window. I am trying to load that proofing component in ipad/iphone app.
    Actually I am opening an url which contains swf image.I have to open this swf image on ipad by using Objective C and Xcode.Please suggest me some third party option/links/libraries/guidance/books or source code for the problem.
    url is="http://so.expresskcs.com/adportal-03/viewProof.php?JobId=23723,"
    Regards,
    Team EKCS

    If you trying to develop an app (and flash isn't supported on the iPad) then the developer forums would be a better place to post : https://devforums.apple.com/index.jspa

  • Reg: View Syntax

    Hi All,
    Could you please tell me , what is the difference between the below two statements and how it works. In one of the forum recent posts i have seen it.
    CREATE OR REPLACE VIEW emp_vw (empno, ename, deptno, log_date, inp_emp) as SELECT empno, ename, deptno, SYSDATE, 'SYS' FROM emp;
    CREATE OR REPLACE VIEW emp_vw as SELECT empno, ename, deptno, SYSDATE, 'SYS' FROM emp;
    Thanks,

    The answer is - as so often - in the documentation: http://docs.oracle.com/cd/E11882_01/server.112/e26088/statements_8004.htm#SQLRF01504
    Have you tried the statements? I guess not, or else you'd have noticed that the second one doesn't work:
    SQL> CREATE OR REPLACE VIEW emp_vw as SELECT empno, ename, deptno, SYSDATE, 'SYS' FROM emp;
    CREATE OR REPLACE VIEW emp_vw as SELECT empno, ename, deptno, SYSDATE, 'SYS' FROM emp
    ERROR at line 1:
    ORA-00998: must name this expression with a column alias
    And from the documentation regarding alias:
    Specify names for the expressions selected by the defining query of the view. The number of aliases must match the number of expressions selected by the view. Aliases must follow the rules for naming Oracle Database schema objects. Aliases must be unique within the view.
    If you omit the aliases, then the database derives them from the columns or column aliases in the query. For this reason, you must use aliases if the query contains expressions rather than only column names. Also, you must specify aliases if the view definition includes constraints.
    A working alternative to the first statement would be
    CREATE OR REPLACE VIEW emp_vw as SELECT empno, ename, deptno, SYSDATE as log_date, 'SYS' as inp_emp FROM emp;
    , giving aliasses to the two expressions SYSDATE and 'SYS' in the SELECT of the view.
    //Tine

  • SWF Viewing problem - Web Galleries?

    Hi there,
    I am entirely new to this – I’m using Dreamweaver MX and use Abobe Bridge CS2.
    My questions are;
    1 – I have created a Web Gallery in Adobe, and then placed the swf file into a Dreamweaver page, my problem is this – the file works ok in design mode when I test it, but when I ‘proof’ it in explorer 8 it fails to appear, just a blank white box….i have examined the link to the file in Dreamweaver and believe the link to be ok after having read on here about this possibility, but I’m not so sure – so the code for the page is as follows….
    2 – Will I be able to create multiple galleries?, if so how can I do this (as I’m a photographer and wish to display different aspects to my work on different pages)
    <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="600" height="600">
          <param name="movie" value="Gallery%20One/gallery.swf">
          <param name=quality value=high>
          <embed src="Gallery%20One/gallery.swf" quality=high pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="600" height="600"></embed>
        </object>
    Many Thanks in advance – and forgive the dumbness or any misunderstanding on the more technical aspects, as I said I’m beginner in these things!.
    Reagards,
    JB

    .htaccess first assumes you're on an Apache server. Are you?
    To make the file, create a text file with the single line of text recommended above. Use Notepad or Text Edit -- a program that will save a simple text file (don't use Word). Save it on your computer and call it anything you want. If you name it .htaccess on your local machine and you're using a Mac, it will disappear (because any file name that starts with a period on UNIX is invisible).
    Upload the file you made to your server. You can put it in your root directory because .htaccess files affect the directory they're in and all directories below it.
    Rename the file .htaccess on the server.
    You're done.

  • Flash CS3 swf viewing @ hyper-speed on IE

    Hello-
    I have created a slide show from the Flash CS3 template...
    inserted in a DW CS3 document. Views/Tests GREAT except from IE...
    I'm thinking there must be a special "IE" code... but cannot find
    documentation. What's also interesting, I also created a Flash
    slide show from a version 6 Flash and inserted in the MX DW...
    works like a charm... hmmm???
    The examples are found:
    http://www.bonanzapress.com/chipsproducts.html
    (hyper-speed in IE)
    http://www.islandsanctuaryproperties.com/photos.html
    (created with the older version of Flash)
    THANKS in advance!!
    Krys

    What version of IE? I would actually strongly discourage
    coding anything for IE. It has always been broken. Did you know
    that to display PNG graphics properly, you need to enable Active-X
    controls? Probably the same thing with Flash. For that reason, I
    suggest adding a line to your website that can only be viewed by IE
    users that says "Please visit this site using any 32-bit web
    browser other than Internet Explorer. Adobe just doesn't have
    anyone that is able to compile a 64-bit browser at this time, and
    does not support those who know what they are doing. Thank
    you."

  • Create view syntax

    create view [dbo].[Dim]
    AS SELECT case
    when [EnglishProductCategoryName] in ( 'Bikes','Components')
    then 1 --project
    when [EnglishProductCategoryName] not in ( 'Bikes','Components')
    then 2 ---Non project
    end as mike_key,
    SELECT CASE
    when [EnglishProductCategoryName] in ( 'Bikes','Components')
    then project
    when [EnglishProductCategoryName] not in ( 'Bikes','Components')
    then Non project
    end as mike_NAME
    FROM [dbo].[DimProductCategory]
    GO
    PLEASE WHAT AM I TYPING WORNGLE.i WANT TO HAVWE 1 AND 2 SHOW UP ON THE MIKE_KEY, THEN PROJECT AND NON PROJECT ON MIKE_NAME.
    Thanks.

    Try
    create view [dbo].[Dim]
    AS SELECT case
    when [EnglishProductCategoryName] in ( 'Bikes','Components')
    then 1 --project
    when [EnglishProductCategoryName] not in ( 'Bikes','Components')
    then 2 ---Non project
    end as mike_key,
    CASE
    when [EnglishProductCategoryName] in ( 'Bikes','Components')
    then project
    when [EnglishProductCategoryName] not in ( 'Bikes','Components')
    then Non project
    end as mike_NAME
    FROM [dbo].[DimProductCategory]
    GO
    Many Thanks & Best Regards, Hua Min

  • Crystal Reports 2008 Viewer Syntax error number: -2146827286

    I have CrystalReportViewer12 installed on Apache/Tomcat 6. I have configured all components as necessary: installed jars and setup web.xml/CRConfig.xml. I can get the report to display appropriately in my jsp page. But when I try to use the Go To Next Page button I receive the following error:
    name: SyntaxError
    message: Syntax error
    number: -2146827286
    description: Syntax error
    Any assistance will be appreciated.
    Thanks.

    Translating the error message on bablefish I get:
    Mistake with the store of the data bank information. Mistake in the file Report {C6512421-348A-4621-B1ED-895D28646A0A} .rpt
    Which I'm sure is not 100% accurate, but it gives a good hint. As well, because of this:
    "Do I need to install an additional / diffrent runtime than 2008 Runtime"
    I wonder how you installed the CR 12 runtime on that computer? For more info on CR runtimes, see [this|https://wiki.sdn.sap.com/wiki/display/BOBJ/CrystalReportsforVisualStudio.NETRuntimeDistribution-Versions9.1to12.0] wiki.
    If my suggestion above does not help, make sure the Win\temp directory can be accessed buy the application. Crystal Reports runtime needs to write and read files from the temp directory.
    Ludek

  • Doubt in Create View Syntax

    Hi All,
    I want to know the logic behind the following create view statement. Primarily I want to know about the significance of "with" statement in the following command.
    CREATE OR REPLACE FORCE VIEW ODS_DEV.RPT_BU_GEN_REV_V_2
    (HRCHY_ID, FRE_ID, S_BU_ID, BU_ID, EFF_FROM_DT,
    EFF_TO_DT, ACTIVE_FLG, HRCHY_NM_LONG, HRCHY_LVL_NB, S_LVL1,
    LVL1, NM_LONG_1, LOB_CD_1, LVL_NB_1, LVL_NM_1,
    S_LVL2, LVL2, NM_LONG_2, LOB_CD_2, LVL_NB_2,
    LVL_NM_2, S_LVL3, LVL3, NM_LONG_3, LOB_CD_3,
    LVL_NB_3, LVL_NM_3, S_LVL4, LVL4, NM_LONG_4,
    LOB_CD_4, LVL_NB_4, LVL_NM_4, S_LVL5, LVL5,
    NM_LONG_5, LOB_CD_5, LVL_NB_5, LVL_NM_5, S_LVL6,
    LVL6, NM_LONG_6, LOB_CD_6, LVL_NB_6, LVL_NM_6,
    S_LVL7, LVL7, NM_LONG_7, LOB_CD_7, LVL_NB_7,
    LVL_NM_7, S_LVL8, LVL8, NM_LONG_8, LOB_CD_8,
    LVL_NB_8, LVL_NM_8, S_LVL9, LVL9, NM_LONG_9,
    LOB_CD_9, LVL_NB_9, LVL_NM_9, S_LVL10, LVL10,
    NM_LONG_10, LOB_CD_10, LVL_NB_10, LVL_NM_10, S_LVL11,
    LVL11, NM_LONG_11, LOB_CD_11, LVL_NB_11, LVL_NM_11,
    S_LVL12, LVL12, NM_LONG_12, LOB_CD_12, LVL_NB_12,
    LVL_NM_12, S_LVL13, LVL13, NM_LONG_13, LOB_CD_13,
    LVL_NB_13, LVL_NM_13, S_LVL14, LVL14, NM_LONG_14,
    LOB_CD_14, LVL_NB_14, LVL_NM_14, S_LVL15, LVL15,
    NM_LONG_15, LOB_CD_15, LVL_NB_15, LVL_NM_15, S_LVL16,
    LVL16, NM_LONG_16, LOB_CD_16, LVL_NB_16, LVL_NM_16,
    S_LVL17, LVL17, NM_LONG_17, LOB_CD_17, LVL_NB_17,
    LVL_NM_17, S_LVL18, LVL18, NM_LONG_18, LOB_CD_18,
    LVL_NB_18, LVL_NM_18, S_LVL19, LVL19, NM_LONG_19,
    LOB_CD_19, LVL_NB_19, LVL_NM_19, S_LVL20, LVL20,
    NM_LONG_20, LOB_CD_20, LVL_NB_20, LVL_NM_20, S_LVL21,
    LVL21, NM_LONG_21, LOB_CD_21, LVL_NB_21, LVL_NM_21,
    S_LVL22, LVL22, NM_LONG_22, LOB_CD_22, LVL_NB_22,
    LVL_NM_22, S_LVL23, LVL23, NM_LONG_23, LOB_CD_23,
    LVL_NB_23, LVL_NM_23, S_LVL24, LVL24, NM_LONG_24,
    LOB_CD_24, LVL_NB_24, LVL_NM_24, S_LVL25, LVL25,
    NM_LONG_25, LOB_CD_25, LVL_NB_25, LVL_NM_25, S_LVL26,
    LVL26, NM_LONG_26, LOB_CD_26, LVL_NB_26, LVL_NM_26,
    S_LVL27, LVL27, NM_LONG_27, LOB_CD_27, LVL_NB_27,
    LVL_NM_27, S_LVL28, LVL28, NM_LONG_28, LOB_CD_28,
    LVL_NB_28, LVL_NM_28, S_LVL29, LVL29, NM_LONG_29,
    LOB_CD_29, LVL_NB_29, LVL_NM_29, S_LVL30, LVL30,
    NM_LONG_30, LOB_CD_30, LVL_NB_30, LVL_NM_30)
    AS
    WITH parse1 AS
    (SELECT hrchy_id, fre_id, bu_node_id s_node_id, eff_from_dt, eff_to_dt, active_flg, hrchy_nm_long,
         substr(path, instr(path, '/', 1, 1) +1, instr(path, '/', 1, 2) - instr(path, '/', 1, 1) -1) gen_prnt1,
         substr(path, instr(path, '/', 1, 2) +1, instr(path, '/', 1, 3) - instr(path, '/', 1, 2) -1) gen_prnt2,
         substr(path, instr(path, '/', 1, 3) +1, instr(path, '/', 1, 4) - instr(path, '/', 1, 3) -1) gen_prnt3,
         substr(path, instr(path, '/', 1, 4) +1, instr(path, '/', 1, 5) - instr(path, '/', 1, 4) -1) gen_prnt4,
         substr(path, instr(path, '/', 1, 5) +1, instr(path, '/', 1, 6) - instr(path, '/', 1, 5) -1) gen_prnt5,
         substr(path, instr(path, '/', 1, 6) +1, instr(path, '/', 1, 7) - instr(path, '/', 1, 6) -1) gen_prnt6,
         substr(path, instr(path, '/', 1, 7) +1, instr(path, '/', 1, 8) - instr(path, '/', 1, 7) -1) gen_prnt7,
         substr(path, instr(path, '/', 1, 8) +1, instr(path, '/', 1, 9) - instr(path, '/', 1, 8) -1) gen_prnt8,
         substr(path, instr(path, '/', 1, 9) +1, instr(path, '/', 1, 10) - instr(path, '/', 1, 9) -1) gen_prnt9,
         substr(path, instr(path, '/', 1, 10) +1, instr(path, '/', 1, 11) - instr(path, '/', 1, 10) -1) gen_prnt10,
         substr(path, instr(path, '/', 1, 11) +1, instr(path, '/', 1, 12) - instr(path, '/', 1, 11) -1) gen_prnt11,
         substr(path, instr(path, '/', 1, 12) +1, instr(path, '/', 1, 13) - instr(path, '/', 1, 12) -1) gen_prnt12,
         substr(path, instr(path, '/', 1, 13) +1, instr(path, '/', 1, 14) - instr(path, '/', 1, 13) -1) gen_prnt13,
         substr(path, instr(path, '/', 1, 14) +1, instr(path, '/', 1, 15) - instr(path, '/', 1, 14) -1) gen_prnt14,
         substr(path, instr(path, '/', 1, 15) +1, instr(path, '/', 1, 16) - instr(path, '/', 1, 15) -1) gen_prnt15,
         substr(path, instr(path, '/', 1, 16) +1, instr(path, '/', 1, 17) - instr(path, '/', 1, 16) -1) gen_prnt16,
         substr(path, instr(path, '/', 1, 17) +1, instr(path, '/', 1, 18) - instr(path, '/', 1, 17) -1) gen_prnt17,
         substr(path, instr(path, '/', 1, 18) +1, instr(path, '/', 1, 19) - instr(path, '/', 1, 18) -1) gen_prnt18,
         substr(path, instr(path, '/', 1, 19) +1, instr(path, '/', 1, 20) - instr(path, '/', 1, 19) -1) gen_prnt19,
         substr(path, instr(path, '/', 1, 20) +1, instr(path, '/', 1, 21) - instr(path, '/', 1, 20) -1) gen_prnt20,
         substr(path, instr(path, '/', 1, 21) +1, instr(path, '/', 1, 22) - instr(path, '/', 1, 21) -1) gen_prnt21,
         substr(path, instr(path, '/', 1, 22) +1, instr(path, '/', 1, 23) - instr(path, '/', 1, 22) -1) gen_prnt22,
         substr(path, instr(path, '/', 1, 23) +1, instr(path, '/', 1, 24) - instr(path, '/', 1, 23) -1) gen_prnt23,
         substr(path, instr(path, '/', 1, 24) +1, instr(path, '/', 1, 25) - instr(path, '/', 1, 24) -1) gen_prnt24,
         substr(path, instr(path, '/', 1, 25) +1, instr(path, '/', 1, 26) - instr(path, '/', 1, 25) -1) gen_prnt25,
         substr(path, instr(path, '/', 1, 26) +1, instr(path, '/', 1, 27) - instr(path, '/', 1, 26) -1) gen_prnt26,
         substr(path, instr(path, '/', 1, 27) +1, instr(path, '/', 1, 28) - instr(path, '/', 1, 27) -1) gen_prnt27,
         substr(path, instr(path, '/', 1, 28) +1, instr(path, '/', 1, 29) - instr(path, '/', 1, 28) -1) gen_prnt28,
         substr(path, instr(path, '/', 1, 29) +1, instr(path, '/', 1, 30) - instr(path, '/', 1, 29) -1) gen_prnt29,
         substr(path, instr(path, '/', 1, 30) +1, instr(path, '/', 1, 31) - instr(path, '/', 1, 30) -1) gen_prnt30,
    hrchy_lvl_nb
    FROM rpt_bu_gen_rev_v),
    parse2 AS
    (SELECT a.hrchy_id, a.fre_id, a.s_node_id s_bu_id, LTRIM(a.s_node_id,'S') bu_id, a.eff_from_dt, a.eff_to_dt,
    a.active_flg, a.hrchy_nm_long,
    a.hrchy_lvl_nb, a.gen_prnt1 s_lvl1,
    LTRIM (a.gen_prnt1, 'S') lvl1, a.gen_prnt2 s_lvl2,
    LTRIM (a.gen_prnt2, 'S') lvl2, a.gen_prnt3 s_lvl3,
    LTRIM (a.gen_prnt3, 'S') lvl3, a.gen_prnt4 s_lvl4,
    LTRIM (a.gen_prnt4, 'S') lvl4, a.gen_prnt5 s_lvl5,
    LTRIM (a.gen_prnt5, 'S') lvl5, a.gen_prnt6 s_lvl6,
    LTRIM (a.gen_prnt6, 'S') lvl6, a.gen_prnt7 s_lvl7,
    LTRIM (a.gen_prnt7, 'S') lvl7, a.gen_prnt8 s_lvl8,
    LTRIM (a.gen_prnt8, 'S') lvl8, a.gen_prnt9 s_lvl9,
    LTRIM (a.gen_prnt9, 'S') lvl9, a.gen_prnt10 s_lvl0,
    LTRIM (a.gen_prnt10, 'S') lvl10, a.gen_prnt11 s_lvl11,
    LTRIM (a.gen_prnt11, 'S') lvl11, a.gen_prnt12 s_lvl12,
    LTRIM (a.gen_prnt12, 'S') lvl12, a.gen_prnt13 s_lvl13,
    LTRIM (a.gen_prnt13, 'S') lvl13, a.gen_prnt14 s_lvl14,
    LTRIM (a.gen_prnt14, 'S') lvl14, a.gen_prnt15 s_lvl15,
    LTRIM (a.gen_prnt15, 'S') lvl15, a.gen_prnt16 s_lvl16,
    LTRIM (a.gen_prnt16, 'S') lvl16, a.gen_prnt17 s_lvl17,
    LTRIM (a.gen_prnt17, 'S') lvl17, a.gen_prnt18 s_lvl18,
    LTRIM (a.gen_prnt18, 'S') lvl18, a.gen_prnt19 s_lvl19,
    LTRIM (a.gen_prnt19, 'S') lvl19, a.gen_prnt20 s_lvl20,
    LTRIM (a.gen_prnt20, 'S') lvl20, a.gen_prnt21 s_lvl21,
    LTRIM (a.gen_prnt21, 'S') lvl21, a.gen_prnt22 s_lvl22,
    LTRIM (a.gen_prnt22, 'S') lvl22, a.gen_prnt23 s_lvl23,
    LTRIM (a.gen_prnt23, 'S') lvl23, a.gen_prnt24 s_lvl24,
    LTRIM (a.gen_prnt24, 'S') lvl24, a.gen_prnt25 s_lvl25,
    LTRIM (a.gen_prnt25, 'S') lvl25, a.gen_prnt26 s_lvl26,
    LTRIM (a.gen_prnt26, 'S') lvl26, a.gen_prnt27 s_lvl27,
    LTRIM (a.gen_prnt27, 'S') lvl27, a.gen_prnt28 s_lvl28,
    LTRIM (a.gen_prnt28, 'S') lvl28, a.gen_prnt29 s_lvl29,
    LTRIM (a.gen_prnt29, 'S') lvl29, a.gen_prnt30 s_lvl30,
    LTRIM (a.gen_prnt30, 'S') lvl30
    FROM parse1 a)
    SELECT b.hrchy_id, b.fre_id, b.s_bu_id, b.bu_id, b.eff_from_dt, b.eff_to_dt, b.active_flg, b.hrchy_nm_long, b.hrchy_lvl_nb,
    CAST(b.s_lvl1 AS VARCHAR2(13)) s_lvl1,
    CAST(b.lvl1 AS VARCHAR2(13)) lvl1,
    (CASE WHEN b.lvl1 is not null then (select x.nm_long from bu x where x.fre_id=b.fre_id and x.bu_id=b.lvl1)END) nm_long_1,
    (CASE WHEN b.lvl2 is not null then (select x.lob_cd from bu_node x where x.bu_node_id=b.lvl2)END) lob_cd_1,
    '' lvl_nb_1,
    '' lvl_nm_1,
    CAST(b.s_lvl2 AS VARCHAR2(13)) s_lvl2,
    CAST(b.lvl2 AS VARCHAR2(13)) lvl2,
    (CASE WHEN b.lvl2 is not null then (select x.nm_long from bu_node x where x.bu_node_id=b.lvl2)END) nm_long_2,
    (CASE WHEN b.lvl2 is not null then (select x.lob_cd from bu_node x where x.bu_node_id=b.lvl2)END) lob_cd_2,
    '' lvl_nb_2,
    '' lvl_nm_2,
    CAST(b.s_lvl3 AS VARCHAR2(13)) s_lvl3,
    CAST(b.lvl3 AS VARCHAR2(13)) lvl,
    (CASE WHEN b.lvl3 is not null then (select x.nm_long from bu_node x where x.bu_node_id=b.lvl3)END) nm_long_3,
    (CASE WHEN b.lvl3 is not null then (select x.lob_cd from bu_node x where x.bu_node_id=b.lvl3)END) lob_cd_3,
    '' lvl_nb_3,
    '' lvl_nm_3,
    CAST(b.s_lvl4 AS VARCHAR2(13)) s_lvl4,
    CAST(b.lvl4 AS VARCHAR2(13)) lvl4,
    (CASE WHEN b.lvl4 is not null then (select x.nm_long from bu_node x where x.bu_node_id=b.lvl4)END) nm_long_4,
    (CASE WHEN b.lvl4 is not null then (select x.lob_cd from bu_node x where x.bu_node_id=b.lvl4)END) lob_cd_4,
    '' lvl_nb_4,
    '' lvl_nm_4,
    CAST(b.s_lvl5 AS VARCHAR2(13)) s_lvl5,
    CAST(b.lvl5 AS VARCHAR2(13)) lvl5,
    (CASE WHEN b.lvl5 is not null then (select x.nm_long from bu_node x where x.bu_node_id=b.lvl5)END) nm_long_5,
    (CASE WHEN b.lvl5 is not null then (select x.lob_cd from bu_node x where x.bu_node_id=b.lvl5)END) lob_cd_5,
    '' lvl_nb_5,
    '' lvl_nm_5,
    CAST(b.s_lvl6 AS VARCHAR2(13)) s_lvl6,
    CAST(b.lvl6 AS VARCHAR2(13)) lvl6,
    (CASE WHEN b.lvl6 is not null then (select x.nm_long from bu_node x where x.bu_node_id=b.lvl6)END) nm_long_6,
    (CASE WHEN b.lvl6 is not null then (select x.lob_cd from bu_node x where x.bu_node_id=b.lvl6)END) lob_cd_6,
    '' lvl_nb_6,
    '' lvl_nm_6,
    CAST(b.s_lvl7 AS VARCHAR2(13)) s_lvl7,
    CAST(b.lvl7 AS VARCHAR2(13)) lvl7,
    (CASE WHEN b.lvl7 is not null then (select x.nm_long from bu_node x where x.bu_node_id=b.lvl7)END) nm_long_7,
    (CASE WHEN b.lvl7 is not null then (select x.lob_cd from bu_node x where x.bu_node_id=b.lvl7)END) lob_cd_7,
    '' lvl_nb_7,
    '' lvl_nm_7,
    CAST(b.s_lvl8 AS VARCHAR2(13)) s_lvl8,
    CAST(b.lvl8 AS VARCHAR2(13)) lvl8,
    (CASE WHEN b.lvl8 is not null then (select x.nm_long from bu_node x where x.bu_node_id=b.lvl8)END) nm_long_8,
    (CASE WHEN b.lvl8 is not null then (select x.lob_cd from bu_node x where x.bu_node_id=b.lvl8)END) lob_cd_8,
    '' lvl_nb_8,
    '' lvl_nm_8,
    CAST(b.s_lvl9 AS VARCHAR2(13)) s_lvl9,
    CAST(b.lvl9 AS VARCHAR2(13)) lvl9,
    (CASE WHEN b.lvl9 is not null then (select x.nm_long from bu_node x where x.bu_node_id=b.lvl9)END) nm_long_9,
    (CASE WHEN b.lvl9 is not null then (select x.lob_cd from bu_node x where x.bu_node_id=b.lvl9)END) lob_cd_9,
    '' lvl_nb_9,
    '' lvl_nm_9,
    CAST(b.s_lvl0 AS VARCHAR2(13)) s_lvl10,
    CAST(b.lvl10 AS VARCHAR2(13)) lvl10,
    (CASE WHEN b.lvl10 is not null then (select x.nm_long from bu_node x where x.bu_node_id=b.lvl10)END) nm_long_10,
    (CASE WHEN b.lvl10 is not null then (select x.lob_cd from bu_node x where x.bu_node_id=b.lvl10)END) lob_cd_10,
    '' lvl_nb_10,
    '' lvl_nm_10,
    CAST(b.s_lvl11 AS VARCHAR2(13)) s_lvl11,
    CAST(b.lvl11 AS VARCHAR2(13)) lvl11,
    (CASE WHEN b.lvl11 is not null then (select x.nm_long from bu_node x where x.bu_node_id=b.lvl11)END) nm_long_11,
    (CASE WHEN b.lvl11 is not null then (select x.lob_cd from bu_node x where x.bu_node_id=b.lvl11)END) lob_cd_11,
    '' lvl_nb_11,
    '' lvl_nm_11,
    CAST(b.s_lvl12 AS VARCHAR2(13)) s_lvl12,
    CAST(b.lvl12 AS VARCHAR2(13)) lvl12,
    (CASE WHEN b.lvl12 is not null then (select x.nm_long from bu_node x where x.bu_node_id=b.lvl12)END) nm_long_12,
    (CASE WHEN b.lvl12 is not null then (select x.lob_cd from bu_node x where x.bu_node_id=b.lvl12)END) lob_cd_12,
    '' lvl_nb_12,
    '' lvl_nm_12,
    CAST(b.s_lvl13 AS VARCHAR2(13)) s_lvl13,
    CAST(b.lvl13 AS VARCHAR2(13)) lvl13,
    (CASE WHEN b.lvl13 is not null then (select x.nm_long from bu_node x where x.bu_node_id=b.lvl13)END) nm_long_13,
    (CASE WHEN b.lvl13 is not null then (select x.lob_cd from bu_node x where x.bu_node_id=b.lvl13)END) lob_cd_13,
    '' lvl_nb_13,
    '' lvl_nm_13,
    CAST(b.s_lvl14 AS VARCHAR2(13)) s_lvl14,
    CAST(b.lvl14 AS VARCHAR2(13)) lvl14,
    (CASE WHEN b.lvl14 is not null then (select x.nm_long from bu_node x where x.bu_node_id=b.lvl14)END) nm_long_14,
    (CASE WHEN b.lvl14 is not null then (select x.lob_cd from bu_node x where x.bu_node_id=b.lvl14)END) lob_cd_14,
    '' lvl_nb_14,
    '' lvl_nm_14,
    CAST(b.s_lvl15 AS VARCHAR2(13)) s_lvl15,
    CAST(b.lvl15 AS VARCHAR2(13)) lvl15,
    (CASE WHEN b.lvl15 is not null then (select x.nm_long from bu_node x where x.bu_node_id=b.lvl15)END) nm_long_15,
    (CASE WHEN b.lvl15 is not null then (select x.lob_cd from bu_node x where x.bu_node_id=b.lvl15)END) lob_cd_15,
    '' lvl_nb_15,
    '' lvl_nm_15,
    CAST(b.s_lvl16 AS VARCHAR2(13)) s_lvl16,
    CAST(b.lvl16 AS VARCHAR2(13)) lvl16,
    (CASE WHEN b.lvl16 is not null then (select x.nm_long from bu_node x where x.bu_node_id=b.lvl16)END) nm_long_16,
    (CASE WHEN b.lvl16 is not null then (select x.lob_cd from bu_node x where x.bu_node_id=b.lvl16)END) lob_cd_16,
    '' lvl_nb_16,
    '' lvl_nm_16,
    CAST(b.s_lvl17 AS VARCHAR2(13)) s_lvl17,
    CAST(b.lvl17 AS VARCHAR2(13)) lvl17,
    (CASE WHEN b.lvl17 is not null then (select x.nm_long from bu_node x where x.bu_node_id=b.lvl17)END) nm_long_17,
    (CASE WHEN b.lvl17 is not null then (select x.lob_cd from bu_node x where x.bu_node_id=b.lvl17)END) lob_cd_17,
    '' lvl_nb_17,
    '' lvl_nm_17,
    CAST(b.s_lvl18 AS VARCHAR2(13)) s_lvl18,
    CAST(b.lvl18 AS VARCHAR2(13)) lvl18,
    (CASE WHEN b.lvl18 is not null then (select x.nm_long from bu_node x where x.bu_node_id=b.lvl8)END) nm_long_18,
    (CASE WHEN b.lvl18 is not null then (select x.lob_cd from bu_node x where x.bu_node_id=b.lvl18)END) lob_cd_18,
    '' lvl_nb_18,
    '' lvl_nm_18,
    CAST(b.s_lvl19 AS VARCHAR2(13)) s_lvl19,
    CAST(b.lvl19 AS VARCHAR2(13)) lvl19,
    (CASE WHEN b.lvl19 is not null then (select x.nm_long from bu_node x where x.bu_node_id=b.lvl19)END) nm_long_19,
    (CASE WHEN b.lvl19 is not null then (select x.lob_cd from bu_node x where x.bu_node_id=b.lvl19)END) lob_cd_19,
    '' lvl_nb_19,
    '' lvl_nm_19,
    CAST(b.s_lvl20 AS VARCHAR2(13)) s_lvl20,
    CAST(b.lvl20 AS VARCHAR2(13)) lvl20,
    (CASE WHEN b.lvl20 is not null then (select x.nm_long from bu_node x where x.bu_node_id=b.lvl20)END) nm_long_20,
    (CASE WHEN b.lvl20 is not null then (select x.lob_cd from bu_node x where x.bu_node_id=b.lvl20)END) lob_cd_20,
    '' lvl_nb_20,
    '' lvl_nm_20,
    CAST(b.s_lvl21 AS VARCHAR2(13)) s_lvl21,
    CAST(b.lvl21 AS VARCHAR2(13)) lvl21,
    (CASE WHEN b.lvl21 is not null then (select x.nm_long from bu_node x where x.bu_node_id=b.lvl21)END) nm_long_21,
    (CASE WHEN b.lvl21 is not null then (select x.lob_cd from bu_node x where x.bu_node_id=b.lvl21)END) lob_cd_21,
    '' lvl_nb_21,
    '' lvl_nm_21,
    CAST(b.s_lvl22 AS VARCHAR2(13)) s_lvl22,
    CAST(b.lvl22 AS VARCHAR2(13)) lvl22,
    (CASE WHEN b.lvl22 is not null then (select x.nm_long from bu_node x where x.bu_node_id=b.lvl22)END) nm_long_22,
    (CASE WHEN b.lvl22 is not null then (select x.lob_cd from bu_node x where x.bu_node_id=b.lvl22)END) lob_cd_22,
    '' lvl_nb_22,
    '' lvl_nm_22,
    CAST(b.s_lvl23 AS VARCHAR2(13)) s_lvl23,
    CAST(b.lvl23 AS VARCHAR2(13)) lvl23,
    (CASE WHEN b.lvl23 is not null then (select x.nm_long from bu_node x where x.bu_node_id=b.lvl23)END) nm_long_23,
    (CASE WHEN b.lvl23 is not null then (select x.lob_cd from bu_node x where x.bu_node_id=b.lvl23)END) lob_cd_23,
    '' lvl_nb_23,
    '' lvl_nm_23,
    CAST(b.s_lvl24 AS VARCHAR2(13)) s_lvl24,
    CAST(b.lvl24 AS VARCHAR2(13)) lvl24,
    (CASE WHEN b.lvl24 is not null then (select x.nm_long from bu_node x where x.bu_node_id=b.lvl24)END) nm_long_24,
    (CASE WHEN b.lvl24 is not null then (select x.lob_cd from bu_node x where x.bu_node_id=b.lvl24)END) lob_cd_24,
    '' lvl_nb_24,
    '' lvl_nm_24,
    CAST(b.s_lvl25 AS VARCHAR2(13)) s_lvl25,
    CAST(b.lvl25 AS VARCHAR2(13)) lvl25,
    (CASE WHEN b.lvl25 is not null then (select x.nm_long from bu_node x where x.bu_node_id=b.lvl25)END) nm_long_25,
    (CASE WHEN b.lvl25 is not null then (select x.lob_cd from bu_node x where x.bu_node_id=b.lvl25)END) lob_cd_25,
    '' lvl_nb_25,
    '' lvl_nm_25,
    CAST(b.s_lvl26 AS VARCHAR2(13)) s_lvl26,
    CAST(b.lvl26 AS VARCHAR2(13)) lvl26,
    (CASE WHEN b.lvl26 is not null then (select x.nm_long from bu_node x where x.bu_node_id=b.lvl26)END) nm_long_26,
    (CASE WHEN b.lvl26 is not null then (select x.lob_cd from bu_node x where x.bu_node_id=b.lvl26)END) lob_cd_26,
    '' lvl_nb_26,
    '' lvl_nm_26,
    CAST(b.s_lvl27 AS VARCHAR2(13)) s_lvl27,
    CAST(b.lvl27 AS VARCHAR2(13)) lvl27,
    (CASE WHEN b.lvl27 is not null then (select x.nm_long from bu_node x where x.bu_node_id=b.lvl27)END) nm_long_27,
    (CASE WHEN b.lvl27 is not null then (select x.lob_cd from bu_node x where x.bu_node_id=b.lvl27)END) lob_cd_27,
    '' lvl_nb_27,
    '' lvl_nm_27,
    CAST(b.s_lvl28 AS VARCHAR2(13)) s_lvl28,
    CAST(b.lvl28 AS VARCHAR2(13)) lvl28,
    (CASE WHEN b.lvl28 is not null then (select x.nm_long from bu_node x where x.bu_node_id=b.lvl28)END) nm_long_28,
    (CASE WHEN b.lvl28 is not null then (select x.lob_cd from bu_node x where x.bu_node_id=b.lvl28)END) lob_cd_28,
    '' lvl_nb_28,
    '' lvl_nm_28,
    CAST(b.s_lvl29 AS VARCHAR2(13)) s_lvl29,
    CAST(b.lvl29 AS VARCHAR2(13)) lvl29,
    (CASE WHEN b.lvl29 is not null then (select x.nm_long from bu_node x where x.bu_node_id=b.lvl29)END) nm_long_29,
    (CASE WHEN b.lvl29 is not null then (select x.lob_cd from bu_node x where x.bu_node_id=b.lvl29)END) lob_cd_29,
    '' lvl_nb_29,
    '' lvl_nm_29,
    CAST(b.s_lvl30 AS VARCHAR2(13)) s_lvl30,
    CAST(b.lvl30 AS VARCHAR2(13)) lvl30,
    (CASE WHEN b.lvl30 is not null then (select x.nm_long from bu_node x where x.bu_node_id=b.lvl30)END) nm_long_30,
    (CASE WHEN b.lvl30 is not null then (select x.lob_cd from bu_node x where x.bu_node_id=b.lvl30)END) lob_cd_30,
    '' lvl_nb_30,
    '' lvl_nm_30
    FROM parse2 b;
    Thanks & Regards,
    Subbu S

    create or replace view tv as
    with t as
    (select 1 id, to_date('01/02/1994','MM/DD/YYYY') dte
    from dual
    union
    select 2 id, to_date('02/02/2000','MM/DD/YYYY') dte
    from dual
    union
    select 3 id, to_date('01/05/1988','MM/DD/YYYY') dte
    from dual
    union
    select 4 id, to_date('06/05/2006','MM/DD/YYYY') dte
    from dual)
    select * from t where dte > (select dte from t where id = 4);
    -- eliminate the necessity of writing the same query more than once.
    WITH Clause will add readability of code.
    If the scenario is such that you need to write the same query inline multiple times, you can name it using WITH clause and then use it.
    In some cases it improves the performance as well. Some times it creates global temp table for the query specified in WITH clause. It can improve performance drastically, if the query is complex.
    The life time of the temp table is only till that query executes.....

  • How to view syntax code errors in firefox

    When coding in php if I made a coding error I used to get the error details in the ff window - now I do not see that and can not find anywhere to view the errors.
    I have now written a small bit of php with the wrong table name - I used to get a message "table not found" but now all I get is a blank page.
    The only error message I have seen is "cannot connect to the mySQ server"
    I have looked around in Web Console and plugins and downloads, searched the net and this site but can not find the answer - and I am sure it will be a simple thing.
    (php is set to show errors)
    I am using FF 24.0
    Could someone kindly tell me what I am missing? *LOL*
    thank you for your time.

    @emotn its the php that is supposed to show the errors, FF can only format the output, i think all things are fine in the code if not the php execution will stop.
    If you use, wrong table name you will not get errors try to echo the query and try it in phpmyadmin

  • Help needed with view syntax

    I have the following tables:
    T1, T2, T3
    T1 and T2 have the same primary key (prim1)
    T2 has a foreign key (ref) into T3 (prim2)
    Basically T2 is a join table between T1 and T3 with some extra data.
    I want to create a view that displays all three tables.
    Amongst other things I have tried the following:
    CREATE VIEW .....
    FROM T1 tab1 FULL OUTER JOIN T2 tab2 ON tab1.prim1 = tab2.prim1
    FULL OUTER JOIN T3 tab3 ON tab2.ref = tab3.prim2
    This gives me too many copies of certain entries.
    Anyone know how to accomplish this?
    Edited by: user538801 on Dec 8, 2008 5:07 PM

    T1
    key | field2
    1 | 54
    2 | 62
    T2
    key | t3Ref | field3
    1 | 6 | 'abc'
    T3
    key2 | field4
    5 | 92
    6 | 11
    View
    key | field2 | field 3 | field4
    1 | 54 | 'abc' | 92
    2 | 62 | null | null
    As you can see I want to see everything from T1, if there is an entry in T2 I want to see the data from it and also the entry that it references in T3. This is the reason for the outer join. So I want an outer join between T1 and T2 on the primary key, but the part I am struggling with is how to join T3 to that based on the foreign key t3Ref. Does that make a little more sense?
    I am using Oracle 11g

  • DPS Animation & Full Screen Video functionality failure when viewing mag in Adobe Content Viewer

    HI There,
    Specifically the following issues are occuring when we view the mag through the Adobe Content Viewer on our Ipad.
    All Title animations are not functioning at all (although in the SWF viewer they are working fine)
    Although we select the media to be played full screen when we are setting up the videos in the media panel they won't play full screen, but play perfectly well in the place we put them. - full screen doesnt function in the SWF viewer either.
    The control bars to control playing, stopping, full screen etc also don't appear on our videos we selected.  - doesn't function in the SWF viewer like it should with the control bars working
    In terms of how we set everything up just to confirm we are doing it right.
    For animations.
    1. Select copy to animate
    2. Click on Animations panel, chose the preset fade in, selected the time 1.25seconds, animate from current appearance, fade in.
    For videos
    Our videos are H264 Quicktime videos all 16x9 in ratio
    1. Went to media panel.
    2. Searched for file to insert
    3. Inserted it and sized down the actual physical size of the video to fit in the space we wanted (NB we didn't create a rectangle to put them in or anything)
    4. Chose the poster from file
    5. Selected skin over play full screen & show controller over rollover
    Any help to sort this out would be appreciated.  Thanks so much in advance

    Hi BellaMove:
    For the animations:
    You have to create a document with the size of the animation you want to create and give attributes using the animation panel of indesign.
    Then you export to fla and using Adobe Wallaby pass it to HTML5.
    Then place them by the panel Overlay Creator (Web Content). Using the Content Viewer can not see it on your desktop. You'll have to climb the publication in the ipad to see the result.
    Do not forget to retouch the css. Read this:
    http://digitalpublishing.tumblr.com/post/3898796141/animate-headlines-or-other-things
    Is the simplest way to make simple animations I've found.
    I hope you find it helps

  • How i can make my swf file appear full screen?

    Salam;
    I need to make my swf view as a full screen in all browsers, i need to add code in fla file, not in html page, can i make that?
    thanks for any help ...

    1.  the stage has a displayState property you can use.  check the help files for example code.
    2.  publish your html to allow full-screen.
    3.  test in your browser.

Maybe you are looking for

  • Error message when Burning CDs in Media Player

    When I burn cds in media player, i get error on about half of the songs in the playlist. I delete the errored songs, re-import them and then try to burn. same problem. then the cd tray locks up and i ether use the paper clip trick to open the tray or

  • No Video With Google Talk on Droid 3

    Just got my wife the new Droid 3 that's running Android 2.3.4. This is the version of Android that is supposed to support video with Google Talk. Tried starting Talk and only thing I can do is messaging with Talk. No video option like on my Thrive ta

  • Why did I have to reset safari in order to be able to see an updated page in third party browsers?

    Why would Safari's Web Cache be used by Other Third Party Browsers (Chrome, Opera, Camino) under OS X 10.6.8 (Safari 5.1), This is functionality that needs to be stripped from OS X or at least selectable so that it can be turned off for web design pr

  • Time Machine continually running lately

    Does anyone have any idea why Time Machine would continually run? This a relatively new problem and I'm not sure what to do to fix it. I don't get any error messages, and I'm not adding a lot of new content to the hard drive for it to back up.

  • Spry:test with select

    Hi to all i need to show "optgroup label="Africa"" when '{@sitename}' == 'Corallo' I write this code but don't work where is my error? <label for="gallerySelect">Tipologia di pietre:</label> <select spry:repeatchildren="dsGalleries" id="gallerySelect