Nested naviagation problem

Hi,
I am working on a site that has a flash nested horizontal navigation menu...other than the fact that only the main links work, (can't get the nested ones to work, they are just going to frames on the main timeline)
the actionscript that is on the 1st frame is now on everysingle frame thru out the whole fla file!
What causes this?  And how can I fix it without startin all over ?
Next question will be how do I link up the nested navigation?  I have been working on this for days and ready to quit.
please help

Hi,
I think if u use THE operator with select statement on the table and then use the function on the nested table column; I think it should work.
Good Luck
Saha

Similar Messages

  • Nested Window Problem

    Hopefully someone out there can help solve this one.
    How do you get a child window to automatically resize within a parent
    window?
    On their own both the child window and the parent window behave as
    expected but once we attempt to load the child window into the parent
    window the child window is sized to some unknown but excessively large
    size.
    Can this be solved with some creative use of parent size relationships
    or do we have to programmatically size the child window?
    Any help/comments/suggestions would be greatly appreciated.
    Sincerely,
    Sean G. Germain

    Glen,
    Thank you for the prompt reply.
    We have already done what you suggested (My explanation was not very
    clear ... sorry) to no avail.
    Any more takers and/or ideas anyone?
    Thanks,
    Sean
    -----Original Message-----
    From: Glen A. Whitbeck [SMTP:[email protected]]
    Sent: Monday, January 26, 1998 2:47 PM
    To: GERMAIN Sean
    Cc: 'Forte Users Group'
    Subject: Re: Nested Window Problem
    You may need to dynamically tell the child window what its parent is (such
    as a named grid that exists on the parent window). Setting the child
    window to size to its parent should work once the child window knows who
    its parent is. You should be able to put your window into that grid at
    specified row and column coordinates. To reset the parent and position a
    widget in a grid, you do something like the following:
    <Widget>.Parent = NIL;
    <Widget>.Row = 1;
    <Widget>.Column = 1;
    <Widget>.Parent = <TargetGrid>;
    I believe that you should be able to do the same thing for a window, too
    (using "Self.Window" instead of "<Widget>").
    Glen
    GERMAIN Sean wrote:
    Hopefully someone out there can help solve this one.
    How do you get a child window to automatically resize within a parent
    window?
    On their own both the child window and the parent window behave as
    expected but once we attempt to load the child window into the parent
    window the child window is sized to some unknown but excessively large
    size.
    Can this be solved with some creative use of parent size relationships
    or do we have to programmatically size the child window?
    Any help/comments/suggestions would be greatly appreciated.
    Sincerely,
    Sean G. Germain<< File: vcard.vcf >>

  • Update Nested Table Problem

    Hi All,
    I have a update problem in nested table.
    Below is my query:
    CREATE OR REPLACE TYPE TRACER.SEARCH_DATA AS TABLE OF VARCHAR2(20);
    UPDATE TRACER_SEARCH_SCHEDULE_LOT_NUM
    SET NOT_FOUND_SOR_LOT_NUM = SEARCH_DATA(
    SELECT
    COLUMN_VALUE
    FROM
    TABLE (SELECT SORTING_LOT_NUMBER FROM TRACER_SEARCH_SCHEDULE_LOT_NUM WHERE JOB_ID = 8)
    WHERE
    TRIM(COLUMN_VALUE) NOT IN (SELECT DISTINCT (SORTING_LOT_NUMBER) FROM SEARCH_SCHEDULE_RESULT_LOT_NUM WHERE JOB_ID = 8)
    ) WHERE JOB_ID = 8;
    ORA-00936: missing expression
    or I try as following
    DECLARE
    sor_lot_num_not_found SEARCH_DATA :=
    SEARCH_DATA
    SELECT
    FROM
    TABLE (SELECT SORTING_LOT_NUMBER FROM TRACER_SEARCH_SCHEDULE_LOT_NUM WHERE JOB_ID = 8)
    WHERE
    TRIM(COLUMN_VALUE) NOT IN (SELECT DISTINCT (SORTING_LOT_NUMBER) FROM SEARCH_SCHEDULE_RESULT_LOT_NUM WHERE JOB_ID = 8)
    BEGIN
    UPDATE TRACER_SEARCH_SCHEDULE_LOT_NUM SET NOT_FOUND_SOR_LOT_NUM = sor_lot_num_not_found WHERE JOB_ID = 8;
    END;
    ORA-06550: line 5, column 9:
    PLS-00103: Encountered the symbol "SELECT" when expecting one of the following:
    ( ) - + case mod new not null others <an identifier>
    table avg count current exists max min prior sql stddev sum
    variance execute multiset the both leading trailing forall
    merge year month DAY_ hour minute second timezone_hour
    timezone_minute timezone_region timezone_abbr time timestamp
    interval date
    <a string literal with character set specificat
    ORA-06550: line 11, column 5:
    PLS-00103: Encountered the symbol ")" when expecting one of the following:
    ; for and or group having intersect minus order start union
    where connect
    ORA-06550: line 14, column 4:
    PLS-00103: Encountered the symbol "end-of-file" when expecting one of the following:
    begin case declare end exception exit for goto if loop mod
    null pragma raise return select update while with
    <an identifier> <a double-quoted d
    I have try on the Select Statement, it work. So is it the way that I assign data from nested table and update method is wrong?
    Edited by: skymonster84 on Mar 8, 2011 5:12 PM

    Hi,
    I think MULTISET operators might interest you.
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14200/operators006.htm
    Not tested :
    UPDATE tracer_search_schedule_lot_num
    SET not_found_sor_lot_num =
          sorting_lot_number
          MULTISET EXCEPT ALL
          CAST(
            MULTISET(
              SELECT distinct sorting_lot_number
              FROM search_schedule_result_lot_num
              WHERE job_id = 8
            AS search_data
    WHERE job_id = 8
    ;

  • Nested Aggregation Problem

    I am using OBI 11g.
    Nested aggregation is not supported in some forms in the BI Server (RPD), but appears to be possible by putting the second aggr rule in an Answers column formula or pivot view column. However, I cannot get this to work. Looks like can even be done in the RPD with aggregation based on dimensions, as long as there is a standard aggregation function on the outside of the expression.
    The biggest problem with any of the above techniques is the BI Server does not push the outer aggregation rule to the DB engine (the generated SQL).
    In my case, consider a Referral Fact with Customer Dim and Referral Dim. I need to get # of Referrals per customer, filter that with a case statement to "bin" 1 Referral and >1 Referral, and then get # of Customers in each bin. So the first measure aggregation looks like:
    Other: COUNT (DISTINCT "Referral Key")
    Customer: "SUM( CASE WHEN "Referral Key" = 1 THEN 1 ELSE 0 END )"
    Or the logical measure just has the COUNT DISTINCT aggregation rule and an Answers column has the CASE statement with a SUM aggregation rule. Or use CASE WHEN "Referral Key" = 1 THEN "Customer Key" END and use COUNT DISTINCT instead of SUM.
    All these appear to return correct results, but they all perform the outer aggregation in the BI Server or Pivot engine instead of pushing to the generated SQL (DB engine).
    I can't find any problem in the DB Features. We are using SQL Server 2010.
    Thanks in advance for help.

    Hi AL,
    here is my requirement what i have been asked to get this output result.
    i have keyfigures KF1, KF2 and total KF.
    three characteristics dist,inch,load.
    dist-inch-load--KF1-KF2-Total KF                         
      5---A--010-0-----10=10                         
      5---A--120-20----20+10=30                         
    10--B---050-0-----50                         
    12--C---160-60----60                         
    13--D---270-70----70                         
    14--E---080-0-----80                         
    15--E---120-20----20+80=100                         
    15--E---230-30----302080=130     
    KF1 is the initial volume coming from the file directily.based on this keyfigure i have to calculate KF2,Total KF.     
    In order to calcuate KF2 and Total KF i have some conditions.which are mentioned below;
    KF2---> if  load=0 then KF2=0 elseif load>0 then KF2=KF1 ;
    Total KF--->if load=0 then Total KF=KF2KF1 elseif load>0 then KF2=KF2KF1
    How to achieve this dynamic summation.Do i have to do nested exception aggregation based on the above three characteristics. what would be the open options.please do help me.

  • Nested subcontrollers problem

    Hi,
    I have an application with one main controller and some nested subcontrollers.
    On the main page I have <bsp:call> to subcontroler 1, and on the page controlled by subcontroller 1 I have another <bsp:call> to subcontroller 2.
    The problem is that when I trigger an event on the page controlled by subcontroller 2 the request is not catched by the do_handle_event of subcontroller 2.
    I have dispatch_input() in do_request of main controller and nowhere else.
    My application is stateful.
    Does anyone know how to build application with nested controllers

    You <b>need not</b> to have dispatch_input() in all the subcontroller..
    In Main Controllers DO_INIT() method: You need to attach the subcontroller:
    sub_cont1 ?=
      create_controller( controller_name = 'list.do'
                         controller_id   = 'List' ). 
    sub_cont2 ?=
      create_controller( controller_name = 'control.do'
                         controller_id   = 'Detail_Long_Id' ).
    Look at the SAP standard BSP Application <b>BSP_MODEL</b>. You will get the clear idea..
    Raja T

  • Nested Repeater Problem

    Hi All,
    I have a nested Repeater structure (please see attached
    code). There is an outer Repeater which contains a VBox with
    another inner Repeater inside that. I add items one at a time to
    the Repeaters to create a tree like structure that should look
    like:
    Outer0
    Inner0
    Inner1
    Outer1
    Inner0
    Inner1
    If the outer Repeater is set with recycleChildren="true"
    then the inner Repeater data is shown incorrectly, specifically it
    looks like:
    Outer0
    Inner0
    Inner0 (Should be Inner1)
    Outer1
    Inner0
    Inner1
    If the VBox between the outer and inner Repeaters is removed
    then the Repeaters work correctly.
    I believe there is a problem here in that when a Repeater
    recycles it's components it checks to see if each component is also
    a [nested] Repeater and if so it executes that Repeater. However,
    if the nested/inner Repeater is not a direct descendent of the
    outer Repeater (ie. in this example there is a VBox between the
    inner and outer Repeaters) then any [grand]child Repeaters are not
    executed.
    Has anyone else come across this? Am I doing something wrong
    and/or is there a workaround? I may be able to fix it if I can
    force the Repeater to execute, but unfortunately the execute method
    is private.
    Incidentally, I do not want to set recycleChildren to false
    as this causes a flicker, and I need the VBox inbetween for layout
    purposes.
    Thanks a lot,
    Chris.
    ----

    Hi Chris,
    I was excited when I see your question because I am having the same issue now, but I was turned down when there is no reply to your questions. Do you happen to solve this issue after all? Your feedback will be appreciated! Thanks in advance!

  • BPMN to BPEL nested XOR problem

    Hi everyone
    I'm having a problem when converting BPMN to BPEL. In my BPMN diagram i have various XORs that validate the output of a predecessing process. If the values are not correct, they terminate the process with an error message, otherwise the main sequence continues. The problem is, when i convert my diagram to BPEL, the generated Switches nest in an unorderly manner. I can't find a way to delimit where the scope of one swith ends, so instead of having one switch after another, they nest.
    Normally when you perform branching with XOR gateways, there is a point where you join them with another XOR gateway. But in my diagram's case, that is not possible since one of the branches terminates the process with an end event and there is no way of linking the end event with the joining XOR gateway.
    Does anyone know how to solve this? I would appreciate any help

    Hi,
    sorry for the late reply.
    If I understood you right you have the following issue:
    Start Event -> XOR(Branch A | Branch B with Error-End-Event) -> New XOR(...) -> End
    What you should try is to add a JOIN-XOR after the first Switch. This will result in two independent Switches (one after the other) - even if the Error-End-Event is not connected to the joining XOR.
    Start Event -> XOR(Branch A | Branch B with Error-End-Event) -> JOIN XOR -> New XOR(...) -> End
    Best regards, Danilo

  • Stored procedure: nested cursor problem

    Hey folks,
    i am really having a hard time trying to figure out how nested cursors work.
    What i want to do:
    -> Do one select statement and process the yielded rows with one cursor
    -> Do another select statement depending on the first cursor
    The code is quite simple, the beginning of the stored procedure is:
    create or replace
    PROCEDURE extractEntireMD IS
    CURSOR curTemplateUnitId IS
    SELECT
    tu.externalident,
    tu.templateunitid
    FROM
    templateunit tu
    WHERE
    tu.templateunitid = 100007;
    CURSOR curPartTypeId(templateUnitID IN varchar2) IS
    SELECT
    tpt.parttypeid
    FROM
    templateparttype tpt
    WHERE
    tpt.templateunitid = templateUnitID;
    From what i have read, this seems to be right.
    No i want to use this code like this:
    BEGIN
    FOR valInCurTemplateUnitId IN curTemplateUnitId LOOP
    DBMS_OUTPUT.PUT_LINE('ExtIdent: ' || valInCurTemplateUnitId.externalident);
    DBMS_OUTPUT.PUT_LINE('templateunitid: ' || valInCurTemplateUnitId.templateunitid);
    FOR valIncurPartTypeId IN curPartTypeId(valInCurTemplateUnitId.templateunitid) LOOP
    DBMS_OUTPUT.PUT_LINE('PartTypeId: ' || valIncurPartTypeId.parttypeid);
    END LOOP;
    END LOOP;
    EXCEPTION
    WHEN NO_DATA_FOUND THEN
    DBMS_OUTPUT.PUT_LINE('No such data ');
    END;
    The problem:
    I seem to be doing something wrong, because Oracle does not heed the argument which i give to the second cursor from the first cursor:
    CURSOR curPartTypeId(templateUnitID IN varchar2) IS
    which i call via:
    FOR valIncurPartTypeId IN curPartTypeId(valInCurTemplateUnitId.templateunitid)
    Instead, oracle prints out __all__ templateunitids.
    If I modify the second cursor with a constant argument like this:
    CURSOR curPartTypeId(templateUnitID IN varchar2) IS
    SELECT DISTINCT
    tpt.parttypeid
    FROM
    templateparttype tpt
    WHERE
    tpt.templateunitid = 100007;
    The result is correct. So it seems like oracle simply disregards the parameter i am giving him for the second cursor.
    What am i doing wrong?

    > i am really having a hard time trying to figure out how nested cursors work.
    Good. I trust that this will result in the realisation that it is an idiotic thing to emulate the features of the SQL engine in PL/SQL. Only a fool thinks the he/she can outprogram and outsmart the SQL engine, and do things like nested loop joins better and faster in PL/SQL.
    Use SQL for the purpose it was designed. Use PL/SQL for the purpose it was designed.
    Joining of data? That is prime function and feature of SQL. Not PL/SQL.

  • Nested folder problems in XP via Bootcamp

    I'm running Windows XP on my iMac via Bootcamp. It runs pretty much fine, with the exception of some fits over mouse/keyboard/DirectX drivers that I guess everyone is having.
    However, it has one really huge annoying and flummoxing problem: if you have too many layers of subfolders, XP stops letting you drag files into the nested folder, won't open them if they're text or jpg, etc.
    For example, suppose I create a "Beretta" subfolder at this level:
    C:\Documents and Settings\Kate\My Documents\Games\Particular Game\Downloads\Weapons\Handheld Weapons\Guns\Handguns\Pistols\Beretta\
    XP won't let me drag any files into the "Beretta" folder without an error message saying "Cannot move file RKELLY: The file name is not valid or [is] too long. Specify a different file name." I can drag the "Beretta" folder to another location further up the tree--or to my Desktop--and drop the RKELLY file in. If I check, the RKELLY file will open fine. I can even move the "Beretta" folder back to where I wanted it, under "Pistols." But then the RKELLY file inside the folder won't open. I can't delete it or do anything else to them, either, until I move them back to my Desktop or another less-nested folder. Instead, just get a "ding" sound.
    Is there some sort of limit in XP I don't know about? Or it is a BootCamp issue? I can't figure out for the life of me why this would be happening, and it's a huge pain.

    Long File Names and Maximum Folder Depth
    Fat32
    The FAT32 file specification from Microsoft does not specify a maximum directory depth. There is no official published NTFS file specification...however, under NTFS the directory depth is limited by the 255 character file name limit; directory depth cannot be more that.
    The following is taken from Article No.: Q148754
    Long file names are limited to 255 characters in Windows 95. However, the maximum path length in Windows 95 is 259 characters. The maximum path length represents the length of the file name, plus the number of characters used to represent the drive and folder where the file is located. For example, the path length for the file
    C:\Windows\LongFileName.extension
    is 33 characters, but the file name is only 22 characters.
    Because the path length is limited to 259 characters, a long file name is limited to less than 255 characters if more than five characters are needed to represent the drive and folder where the file is located. If five characters or less are needed to represent the drive and folder where the file is located, the long file name is limited to 255 characters, even if the total path length is less than 259 characters. For example, if a file is located in the root folder of a drive, the long file name is still limited to 255 characters, even though 256 characters could be used before the maximum path length is reached.
    NTFS
    NTFS File name has a repeatable attribute for both long and short file names. The long name of the file can be up to 255 Unicode characters. The short name is the 8.3, case-insensitive name for the file. Additional names, or hard links, required by POSIX can be included as additional file name attributes.
    http://www.gelosoft.com/faq.html

  • FTP publishes to nested folder, problems ensue

    Hi,
    I'm trying to publish my iWeb site to a domain hosted on my university's server, and have made a successful test connection to that server, but when I publish the site to that server, it ends up in a nested folder, which my school's server doesn't allow read access to for the general public. I need for iWeb to publish its pages directly into the directory I provided for the FTP path. Does anybody know how to do this?

    One of the problems with the iWeb FTP is that it uploads the whole folder created by iWeb and this creates a sub directory which, in your case, you don't want.
    Publish your site to a local folder and upload the contents of the folder and not the folder itself.
    If you need an FTP app get the freeware Cyberduck here.....
    http://cyberduck.ch/

  • Nested folders problem in Bookmarks Bar

    When I want to save a web page to my bookmark bar, I hit "command-D" and then choose the folder I want the page to reside in. No problems there.
    However, I have about 100 folders in my Bookmarks Bar, many of them with nested folders inside, and some of those with nested folders in them as well. Hitting "command-D" shows me all of the folders, *but all open*, ie showing all of the nested folders as well, thus making it a very time consuming process to find the folder I want.
    I seem to remember in an earlier (much earlier?) version of Safari, it would just show me the main folders, with a "►" next to them, thus making it very easy to scan the main folders before delving into the nested folders. Many other programs (Default Folder X) manage this without any problem at all, making it very easy to scroll down, then across etc until you find the place you want.
    Is there any way to make Safari "close" the main folders, and make my life much easier?
    I hope my description is clear!
    Thank you.

    KS, there is no triangle to click. That's the problem.
    Anyhow, I just tried this on an old Powerbook running Mac OS 10.4 Tiger and Safari 4.1. It does not have disclosure triangles in this menu either. So, this is definitely nothing new. Although I haven't thought this through completely, I believe this is the only way that a menu can behave, behave when you click a menu item, its action is executed. There can be only one action, which in this case is to place the bookmark. If there were a disclosure triangle, expanding or collapsing the folder would be a different action.
    This behavior is built into Safari. It could possibly be modified by a extension, or more likely, a hack. I'd need to do a little research. But the behavior you see is definitely as Apple designed it. (Terminology: An "extension" is a "legal" hack which uses API provided by Apple. A "hack" uses reverse-engineered, private API and is not sanctioned by Apple.)
    Disclosure triangles, the things you can click to expand or collapse a folder, or more generally, a "container item", are available in outline views, such as in Safari's Show All Bookmarks window. I don't recall ever seeing one in a menu. If Default Folder does it, I'd like to see a screenshot.
    Jerry Krinock
    http://sheepsystems.com - Bookmarks Management
    San José, CA USA

  • Nested Table Problem

    Hello,
    I am using Oracle10g and TopLink 10.1. I would like to implement a table descriptor which has nested tables.
    When I try to read "root" table, I get error messages described below.
    Could anybody tell me what's wrong?
    Thanks,
    ***** [3 Tables] *****
    Table: PARENT
    Fields: PARENT_NO
    Table: CHILD
    Fields: CHILD_NO, PARENT_NO
    Table: CHILD_MASTER
    Fields: CHILD_NO, CHILD_NAME, etc.
    ***** [The relation between tables] *****
    Parent<---(OneToMany)--->Child<---(Multitable)--->ChildMaster
    *****   *****[/b]
    RelationalDescriptor descriptor = new RelationalDescriptor();
    descriptor.setJavaClass(Parent.class);
    descriptor.setTableName("PARENT");
    descriptor.setPrimaryKeyFieldName("PARENT_NO");
    descriptor.addTableName("CHILD");
    descriptor.addTableName("CHILD_MASTER");
    // OneToMany configuration
    OneToManyMapping oneToMany = new OneToManyMapping();
    oneToMany.setAttributeName("Child");
    oneToMany.setReferenceClass(Child.class);
    oneToMany.setTargetForeignKeyFieldName("PARENT_NO");
    descriptor.addMapping(oneToMany);
    // Multitable configuration
    ExpressionBuilder builder = new ExpressionBuilder();
    Expression exp = builder.getField("CHILD.CHILD_NO").equal("CHILD_MASTER.CHILD_NO");
    descriptor.getDescriptorQueryManager().setMultipleTableJoinExpression(exp);
    // Read
    ReadObjectQuery query = new ReadObjectQuery("PARENT");
    UnitOfWork uow = toplinkSession.acquireUnitOfWork();
    uow.executeQuery(query);
    ***** [Resulting SQL] *****
    SELECT t0.PARENT_NO, t1.PARENT_NO, t2.PARENT_NO,...
    FROM PARENT t0, CHILD t1, CHILD_MASTER t2
    WHERE ((t1.PARENT_NO = t0.PARENT_NO) AND (t1.CHILD_NO = t2.CHILD_NO))
    ***** [Error Message] *****
    When I read "Parent",  I get following error...
    "T2" is "CHILD_MASTER" table which has no "PARENT_NO" field. I don't want select "CHILD_MASTER.PARENT_NO" because it doesn't exist!
    Exception[TOPLINK-4002] (Oracle TopLink - 10g Release 3 (10.1.3.3.0) (Build 070620)): oracle.toplink.exceptions.DatabaseException
    Internal Exception: java.sql.SQLException: ORA-00904: "T2"."PARENT_NO": Invalid Identifier
    Error Code: 904
    Query:ReadAllQuery(Parent)
         at oracle.toplink.exceptions.DatabaseException.sqlException(DatabaseException.java:290)
         at oracle.toplink.internal.databaseaccess.DatabaseAccessor.basicExecuteCall(DatabaseAccessor.java:581)
         at oracle.toplink.internal.databaseaccess.DatabaseAccessor.executeCall(DatabaseAccessor.java:441)
    Message was edited by:
            user601162                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    Thank you for your reply. Maybe my explanation was confusing.
    >Parent should map to the PARENT table,
    Child should map the CHILD
    and ChildMaster should map to the CHILD_MASTER table.
    Exactly. What I want to do is "Parent has Child" using OneToMay, "Child has ChildMaster" using Multitable. I guess it's still unclear...
    Anyway, I appreciate your advice.

  • Nested templates - problems with inheriting editable/repeating regions

    I have made a template called 'basic', with 2 sections, 'maincontent' and 'sidecontent' then nested a template in it called 'home'. In 'home', I have made repeats of some regions (sidecontent) and edited them to make a section I want on all 'home' type pages. When I make  a new document from 'basic', it has all the same editable and repeating regions as 'basic'. But when I make a new document from 'home' there are no editable or repeating regions, either in 'sidecontent' which I edited or 'maincontent' which I didn't. I want to be able to edit 'maincontent' when I make a new document from 'home', to make repeating regions and edit them. Please can you advise me what to do?
    Thanks

    When I tried to attach the files it automatically zipped them again, so I have put the code above.
    Thanks,
    Rachel

  • Nested Report Problem

    Hello Gurus,
    I have created a Classic Nested Report following Dietmar's example from:
    Nested report howto?
    I followed the steps to create the nested report:
    Step 1 - created the package
    create or replace package UNFUND_PCK as
       FUNCTION get_unfund_inline_f (p_dfcyseqno NUMBER)
          RETURN CLOB;
    end;
    --------------------------------package body--------------------------------------
    create or replace package body "UNFUND_PCK" is
    function GET_UNFUND_INLINE_F(P_DFCYSEQNO IN NUMBER
    ) return CLOB
    as
    l_str   VARCHAR2 (32767);
    l_cnt   NUMBER   := 0;
    begin
    -- null;
    /* insert function code */
      l_str    := '<table class="inlineTable">';
          l_str    :=
                l_str
             || '<tr><th class="colFundType">Funding Type</th><th class="colRequireType">Requirement Type</th><th class="colFY">Fiscal Year</th>'
             || '<th class="colCost">Cost</th></tr>';
          FOR cur IN (SELECT fundg_type_c, fundg_rqrmt_type_c, fundg_fy, fundg_cost
                         FROM dfcy_catg_fundg
                         WHERE dfcy_seqno = p_dfcyseqno)
          LOOP
             l_str    := l_str || '<tr>';
             l_str    :=
                   l_str
                || '<td class="colFundType">'
                || cur.fundg_type_c
                || '</td><td class="colRequireType">'
                || cur.fundg_rqrmt_type_c
                || '</td><td class="colFY">'
                || cur.fundg_fy
                || '</td><td class="colCost">'
                || cur.fundg_cost
                || '</td>';
             l_str    := l_str || '</tr>';
             l_cnt    := l_cnt + 1;
          END LOOP;
          l_str    := l_str || '</table>';
          IF l_cnt = 0
          THEN
             RETURN '';
          ELSE
             RETURN l_str;
          END IF;
    end GET_UNFUND_INLINE_F;
    end "UNFUND_PCK";Step 2 - Created the Styles placed this in the HTML Header Head.
    <style type="text/css">
    <!--
    .inlineTable{border:1px solid #cfe0f1;border-collapse:collapse;width:100%;}
    .inlineTable th{color:#336699;border:1px solid #cfe0f1;padding:2px;}
    .inlineTable td{border:1px solid #cfe0f1;border-left:none;border-top:none;padding:2px;}
    /* additional formatting for the specific columns*/
    .inlineTable.colFundType{width:100px; text-align:center;}
    .inlineTable.colcolRequireType{width:100px; text-align:right;}
    .inlineTable.colFY{width:50px;}
    .inlineTable.colCost{width:100px; text-align:right;}
    -->
    </style>Step 3- Created a New Page of Report, Classic Report (SQL qry)
    select      V.DFCY_SEQNO,
          V.DFCY_NAME,
          V.DFCY_SMY_NARR,
          V.DFCY_STATUS,
          V.DFCY_CATG_C,
              UNFUND_PCK.GET_UNFUND_INLINE_F(V.DFCY_SEQNO) UNFUNDED_DFCY
    from      V_DFCY_BASE V
    where   V.DFCY_CATG_C = 1My results comback with HTML tags everywhere:
    528 Funding dfcy funding dfcy added 5/27/10 updated on 6/10/10 closed/accepted risk 1 <table class="inlineTable"><tr><th class="colFundType">Funding Type</th><th class="colRequireType">Requirement Type</th><th class="colFY">Fiscal Year</th><th class="colCost">Cost</th></tr><tr><td class="colFundType">3</td><td class="colRequireType">2</td><td class="colFY">2013</td><td class="colCost">999</td></tr><tr><td class="colFundType">2</td><td class="colRequireType">2</td><td class="colFY">2012</td><td class="colCost">8888888888</td></tr></table>
    I am using Application Default for the page, No Template for the Region, standard report and using Theme 9. Please tell me what I am doing wrong so I can get the correct format.
    Thank You,
    Mary

    Thank you for the quick response..That was correct, I didn't even think to look at the column type. One more question, is it possible to display the nested table below a row instead of to the right of the main table?
    Like this
    INV # | name | status | category|
    15 | abc | closed| apples |
    Detail
    FType | RType | FY | Cost |
    Proc | Reset | 2013 | $1250.00
    ABC | Redo | 2011 | $18888.00
    INV # | name | status | category|
    18 | book | open | bannas |
    Thanks,
    Mary

  • Nested sequences problem

    When I drag an existing sequence into a new sequence it now suddenly divides into its individual clips before it is set in the timeline. I want the nested sequence in the new sequence. What has changed? How do I change it back? I can create the nested sequence using the Nest... command, but I do not want to create a new nested sequence when I already have one in the project window.

    Click the icon to the left of the magnet under the sequence timecode.

Maybe you are looking for

  • Inferior quality when viewing a built DVD in on a computer

    I've seen a few postings with similar problems but have yet to find any good solutions. I'm creating a DVD and many of my client's clients will be viewing it on computers instead of NTSC monitors. No matter how high I set the encoding bitrate in DVDS

  • How to send multiple documents using SENDMAIL step

    Hi Experts,                      I have  a requirement to send a notification to multiple users using SENDMAIL step. How can I do this? I thought to create a method in the BO and to export ACTOR_TAB to wrkflow but the problem is I am unable to create

  • Business Connector Inbound process failed

    Hi, We have a requirement to import a QALITY IDoc into the Business Connector 4.7 to send to customer in CSV flat file. However, everything when I tried to import the IDocs (I have configured the partner profile and the routing rule),  I receive an s

  • How to convert .MP3 files into .AAC with iTunes 10.5.2

    Im running a Mac OS X 10.5.8, and my iTunes version is 10.5.2. I want to convert .MP3 files into .AAC using iTunes, but no option is given for me. What should I do?

  • Safari crashes all the time - since installing v.5.0

    I read a previous posting and so I have included the crash report. I also wondered if going back in time might help, but would need some guidance there as to what to 'restore'. Thank you! CRASH REPORT Process: Safari [1022] Path: /Applications/Safari