Tables not showing as desired

Hi...thanks for readling...appreciate...
Having a tables issue:
As one can see from the screen grabs, the table view shows the floral graphic coming right under the text....just over to the side. However, in the Live View, the floral is quite a bit further down the page.
Here is the link to the page: http://www.tmforwomen.org
As far as knowing how to do it, have coded all the tables Cells 'top'. Please enlighten me if you have any clues how to make the live view, and the view in all browsers, like the top view below, meaning floral is up further.
Thanks ever so much,
Warmly Hope
Am using DW CS5.5

I'm not a fan of table based layouts.  CSS is so much more efficient.  Tables are for displaying tabular data like spreadsheets & charts.
If you use CSS for layouts, you can position your background image with CSS.
http://www.w3schools.com/css/css_background.asp
From Tables to CSS Web Design Part 1 -
http://www.adobe.com/devnet/dreamweaver/articles/table_to_css_pt1.html
From Tables to CSS Web Design Part 2 -
http://www.adobe.com/devnet/dreamweaver/articles/table_to_css_pt2.html
Nancy O.

Similar Messages

  • Table not showing data after refresh

    Hi gurus ,
    A unique problem We have added a field in the custom table . once moved to quality system it is not showing up the data whwn when we do a select query on that table in se16 . say total entries are ten thousand four of them are checked and when display not checked i.e eq space we get just 100 entries on number of entries ..i asked to regenerate the table in quality system but it did not help .The Quality system was refresh 1 month ago and we see it not working after it ..please suggest the correct steps we need to perform  to recover the data . Adjust database with keep data has already been done ...

    Hi Anjaneya Bhardwaj,
    If I understand well, your issue is that you have a SELECT in your program, saying newfield is your newfield, something like:
    SELECT ... FROM ztable INTO ... WHERE newfield = space.
    and it doesn't return the records that existed in quality before newfield was added.
    It it because, by default, when you add a field to an existing database table, with records already present, they are assigned the NULL value, which is different from space.
    They can be retrieved using WHERE newfield IS NULL.
    Usually, to avoid this issue, when we add a new field, we tick the "no null value" checkbox for this new field, in SE11 transaction. That will initialize the field of existing records, to the initial value (space for characters, 0 for numeric fields, etc.) Note: maybe it can be counter performant for big tables...
    Solution for your issue, run this code once:
    UPDATE ztable SET newfield = space WHERE newfield IS NULL.
    BR
    Sandra

  • Condition table not showing up in VKOA

    Hi All,
    We have upgraded the sytsem from 4.6c to ECC 6.0.And i have observed that in Transaction VKOA, one of the condition table is not showing up. Can anyone guide me on this?

    Hi,
    If any one of the tables is missing, that can be included.
    The menu path: SPRO >> SD >> Basic Function >> Account Assignment/ Costing >> Revenue Account Determination
    1.     Define dependencies of Revenue Account Determination: Here you can check whether the required table is available; if it is not available create it.
    2.     Define access sequences and Account Determination types: Here select u2018Maintain Access sequences for Account determinationu2019.  You will get the access sequences here. Eg: KOFI. Select the access sequence and click on u2018Accessesu2019. You will get the table details. Here you can maintain the required tables; rearrange as per your requriment.
    Regards,
    K Bharathi

  • Tables not showing

    For one of my connections the tables are not shown in the tree view.
    When i startup with debug info I see following debug lines:
    Prepared:
    select
    * from (
    SELECT OBJECT_NAME, OBJECT_ID ,'' short_name, 'TRUE' partition, OWNER OBJECT_OWNER, CREATED, LAST_DDL_TIME
    FROM SYS.ALL_OBJECTS O
    WHERE O.OWNER = :SCHEMA
    AND O.OBJECT_TYPE = 'TABLE'
    AND O.GENERATED = 'N'
    AND O.OBJECT_ID NOT IN ( SELECT PURGE_OBJECT FROM RECYCLEBIN )
    AND NOT EXISTS (SELECT 1 FROM SYS.ALL_MVIEWS WHERE MVIEW_NAME = O.OBJECT_NAME AND OWNER = O.OWNER)
    union all
    SELECT OBJECT_NAME, OBJECT_ID , syn.SYNONYM_NAME short_NAME,
    'TRUE' partition, SYN.TABLE_OWNER OBJECT_OWNER, o.CREATED, o.LAST_DDL_TIME
    FROM SYS.ALL_OBJECTS O, sys.user_synonyms syn
    WHERE syn.table_owner = o.owner
    and syn.TABLE_NAME = o.object_NAME
    and o.object_type = 'TABLE'
    and :INCLUDE_SYNS = 1
    and :SCHEMA = USER
    AND O.GENERATED = 'N'
    AND O.OBJECT_ID NOT IN ( SELECT PURGE_OBJECT FROM RECYCLEBIN)
    Bind:SCHEMA:STANDARD_DEMO_RLAST_UNI
    Bind:INCLUDE_SYNS:null
    When I execute this query, 238 rows are returned, but the table names do not show up in the UI.
    I only have this problem with our unicode DB, i.e.
    NLS_CHARACTERSET is set to AL32UTF8,
    NLS_NCHAR_CHARACTERSET is set to AL16UTF16.

    Hey,
    Perhaps my first posting is too complex. What I see is that for one of my connections, i don't see the tables, whereas the SQL that is executed in fact returns tables. (so these are not synonyms to tables in other schema's)
    The difference between this connection and the other connections I've tried, is the characterset of the database.
    Johan

  • Tables not showing in a new Database created using CREATE DATABASE command

    Hi there! I've created a database using "Script Database As" in SSMS. Here's the code generated:
    USE [master]
    GO
    /****** Object:  Database [PLMAINDB]    Script Date: 08/22/2014 11:25:44 ******/
    CREATE DATABASE [PLTESTDB] ON  PRIMARY 
    ( NAME = N'CLIENTSPRIME_Data', FILENAME = N'C:\TEMPDB\CLP_Data.mdf' , SIZE = 217472KB , MAXSIZE = UNLIMITED, FILEGROWTH = 10%)
     LOG ON 
    ( NAME = N'CLIENTSPRIME_Log', FILENAME = N'C:\TEMPDB\CLP_Data.ldf' , SIZE = 1024KB , MAXSIZE = UNLIMITED, FILEGROWTH = 10%)
    GO
    ALTER DATABASE [PLMAINDB] SET COMPATIBILITY_LEVEL = 80
    GO
    IF (1 = FULLTEXTSERVICEPROPERTY('IsFullTextInstalled'))
    begin
    EXEC [PLMAINDB].[dbo].[sp_fulltext_database] @action = 'disable'
    end
    GO
    ALTER DATABASE [PLTESTDB] SET ANSI_NULL_DEFAULT OFF 
    GO
    ALTER DATABASE [PLTESTDB] SET ANSI_NULLS OFF 
    GO
    ALTER DATABASE [PLTESTDB] SET ANSI_PADDING OFF 
    GO
    ALTER DATABASE [PLTESTDB] SET ANSI_WARNINGS OFF 
    GO
    ALTER DATABASE [PLTESTDB] SET ARITHABORT ON 
    GO
    ALTER DATABASE [PLTESTDB] SET AUTO_CLOSE ON 
    GO
    ALTER DATABASE [PLTESTDB] SET AUTO_CREATE_STATISTICS ON 
    GO
    ALTER DATABASE [PLTESTDB] SET AUTO_SHRINK ON 
    GO
    ALTER DATABASE [PLTESTDB] SET AUTO_UPDATE_STATISTICS ON 
    GO
    ALTER DATABASE [PLTESTDB] SET CURSOR_CLOSE_ON_COMMIT OFF 
    GO
    ALTER DATABASE [PLTESTDB] SET CURSOR_DEFAULT  GLOBAL 
    GO
    ALTER DATABASE [PLTESTDB] SET CONCAT_NULL_YIELDS_NULL OFF 
    GO
    ALTER DATABASE [PLTESTDB] SET NUMERIC_ROUNDABORT OFF 
    GO
    ALTER DATABASE [PLTESTDB] SET QUOTED_IDENTIFIER OFF 
    GO
    ALTER DATABASE [PLTESTDB] SET RECURSIVE_TRIGGERS OFF 
    GO
    ALTER DATABASE [PLTESTDB] SET  DISABLE_BROKER 
    GO
    ALTER DATABASE [PLTESTDB] SET AUTO_UPDATE_STATISTICS_ASYNC OFF 
    GO
    ALTER DATABASE [PLTESTDB] SET DATE_CORRELATION_OPTIMIZATION OFF 
    GO
    ALTER DATABASE [PLTESTDB] SET TRUSTWORTHY OFF 
    GO
    ALTER DATABASE [PLTESTDB] SET ALLOW_SNAPSHOT_ISOLATION OFF 
    GO
    ALTER DATABASE [PLTESTDB] SET PARAMETERIZATION SIMPLE 
    GO
    ALTER DATABASE [PLTESTDB] SET READ_COMMITTED_SNAPSHOT OFF 
    GO
    ALTER DATABASE [PLTESTDB] SET HONOR_BROKER_PRIORITY OFF 
    GO
    ALTER DATABASE [PLTESTDB] SET  READ_WRITE 
    GO
    ALTER DATABASE [PLTESTDB] SET RECOVERY FULL 
    GO
    ALTER DATABASE [PLTESTDB] SET  MULTI_USER 
    GO
    ALTER DATABASE [PLTESTDB] SET PAGE_VERIFY TORN_PAGE_DETECTION  
    GO
    ALTER DATABASE [PLTESTDB] SET DB_CHAINING OFF 
    GO
    The mdf and ldf files for PLTESTDB were created successfully. The issue I'm having is that tables are not showing when under PLTESTDB. I've searched online and most answers point to Permission issue. I already added user with the ff. database roles 
    db_owner
    db_reader
    db_writer
    But even after refreshing or even closing relaunching SSMS, i could not see any table under PLTESTDB. I've spent  a lot of time already on this but can't find the fix. I might be missing something here. I tried it on another computer but same issue
    persists. 
    Any ideas or suggestions on how to get this resolved are highly appreciated! Thanks in advance. 
    Bong Robles

    You're right Olaf! The above script is only for creating DB and not tables.   I should have done further reading.  I tried now generating scripts for all objects and I got the ff. error:
    Msg 207, Level 16, State 1, Procedure CallbackFormViewUpdateCommand, Line 38
    Invalid column name 'upsizets'.
    Msg 207, Level 16, State 1, Procedure CallbackFormViewInsertCommand, Line 37
    Invalid column name 'upsizets'.
    Msg 207, Level 16, State 1, Procedure CallbackFormViewInsertCommand, Line 39
    Invalid column name 'upsizets'.
    Msg 1018, Level 15, State 1, Procedure GrabCounterUpdate, Line 7
    Incorrect syntax near 'holdlock'. If this is intended as a part of a table hint, A WITH keyword and parenthesis are now required. See SQL Server Books Online for proper syntax.
    Msg 1018, Level 15, State 1, Procedure GrabCounterAllUpdate, Line 7
    Incorrect syntax near 'holdlock'. If this is intended as a part of a table hint, A WITH keyword and I parenthesis are now required. See SQL Server Books Online for proper syntax.
    I'm working on fixing the errors now. I think I can handle this now.
    Really appreciate your quick help. Thanks!
    Bong Robles
    I think script is having reference to a column which doesnt exist
    But unless we see script we will not able to understand the exact reason
    Can you post script?
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • WRT54G v6 client table not showing wired clients

    I have a WRT54G v6 using the lastest firmware.  Is there any 3rd party software that can display what clients I have on my network?  The reason I'm asking is because my router will only show the wireless clients and not the ones connected on the wired side.  Other than that everything works fine.

    I have similar problem. DHCP client table shows only wireless laptops using dynamic ip address. All my wired destop (dynamic ip), and other static ip devices both wired or wireless do not show up in DHCP client table. Any idea? I have v8.

  • Tables not showing in DB Expert - option selected

    Post Author: Clogix
    CA Forum: Data Connectivity and SQL
    Crystal XI R2 - Even though the option to show tables is selected, they do not show up for a SQL database.  OK in our Crystal 10 but not in XI.  Does anyone have a resolution?

    You're right Olaf! The above script is only for creating DB and not tables.   I should have done further reading.  I tried now generating scripts for all objects and I got the ff. error:
    Msg 207, Level 16, State 1, Procedure CallbackFormViewUpdateCommand, Line 38
    Invalid column name 'upsizets'.
    Msg 207, Level 16, State 1, Procedure CallbackFormViewInsertCommand, Line 37
    Invalid column name 'upsizets'.
    Msg 207, Level 16, State 1, Procedure CallbackFormViewInsertCommand, Line 39
    Invalid column name 'upsizets'.
    Msg 1018, Level 15, State 1, Procedure GrabCounterUpdate, Line 7
    Incorrect syntax near 'holdlock'. If this is intended as a part of a table hint, A WITH keyword and parenthesis are now required. See SQL Server Books Online for proper syntax.
    Msg 1018, Level 15, State 1, Procedure GrabCounterAllUpdate, Line 7
    Incorrect syntax near 'holdlock'. If this is intended as a part of a table hint, A WITH keyword and I parenthesis are now required. See SQL Server Books Online for proper syntax.
    I'm working on fixing the errors now. I think I can handle this now.
    Really appreciate your quick help. Thanks!
    Bong Robles
    I think script is having reference to a column which doesnt exist
    But unless we see script we will not able to understand the exact reason
    Can you post script?
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • Tables not showing up

    i've oracle 10 g installed in my comp on windows....
    till now it was working fine....
    but now... when i start database n try to access tables through
    home - > object browser - > show tables ..... it's not showing any tables
    or
    home - > sql -> sql commands -> select * from tab
    (in this case ... there is not even run option to run the command )
    however i can see tables through Run Sql Command Line ... (the console)
    does anyone have any idea...
    thank you

    You can reinstall Oracle if you want to, your datafiles and database structures don't depend on the oracle home. However this would be just a waist of time, as the root problem isn't an EM configuration.
    If you are sure your tables are on the target schema, then just double check the conditions you have typed from the EM DB Control to query these tables.
    ~ Madrid

  • DbXplorer IBM iSeries AS400 tables not showing

    Hi all,
    I was hoping to use the JPA generation on our IBM AS400 tables.
    The DbXplorer gets connected to our AS400 over the JT400 Toolbox JDBC type 4.0 driver. All schema's/libraries show.
    However when I open a specific library no tables are shown.
    How come my tables are not showing?
    This is my configuration:
    Driver Class: jt400.jar (Official V5R2, not JTOpen, although I have tried that one to.)
    JDBC Driver Class: com.ibm.as400.access.AS400JDBCDriver
    Database URL: jdbc:as400://SERVERNAME;date format=iso;libraries=*LIBL,FXSARTHUR
    Logging:
    These entries show in the com.m7.nitrox log:
    14-apr-2008 10:39:55 com.m7.wide.eclipse.jstudio.Plugin activate
    INFO: max mem: 748
    14-apr-2008 11:05:50 com.m7.wide.database.preferences.DatabaseDefaults getDriverClassNames
    SEVERE: java.lang.NoClassDefFoundError: com/ibm/sslight/SSLightKeyRing
    14-apr-2008 11:05:50 com.m7.wide.database.preferences.DatabaseDefaults getDriverClassNames
    SEVERE: java.lang.NoClassDefFoundError: javax/servlet/http/HttpServlet
    14-apr-2008 11:05:51 com.m7.wide.database.preferences.DatabaseDefaults getDriverClassNames
    SEVERE: java.lang.NoClassDefFoundError: com/ibm/as400/ui/framework/java/DataBean

    Hi Arthur,
    The DbXplorer is not tested against AS400 platform. Please open a support case to investigate more into this configuration.
    http://support.bea.com/
    Thanks!

  • Transported table not showing all fields

    dear all
    can u plz help me i have transported a table but its not showing all fileds. whatcan i doto make it show all fields in the table
    Regards
    Flo

    Hi,
    Are there any custom data elements used in the table.
    if so, is all the data elements transported to the table
    first all the data elements to be transported and then the table should be transported if in case they are
    in different transports.
    Regards,
    Venkatesh

  • AP_Checks table not showing any records.

    I am using oracle e-business suite 11.5.x. The table ap_checks is not showing any records at all. Please let me know as when i have to look into ap_checks and when into ap_checks_all table. The code that i am looking into is running for very long time and am sure the ap_checks is waht it is pointing to and it is correct.

    Hi.
    What is the result of?:
    SQL>SELECT DISTINCT org_ig FROM ap_checks_all;
    Octavio

  • Image background in table NOT showing up!  ffs

    I am not kidding, but I have seriously spent HOURSSSSSSS
    trying to figure out why the freakin picture will not show up.
    It’s really irritating, and there’s NO reason why it
    shouldn’t show up. I made my template in photoshop and slice
    it all up. I save it. Then I save the template as a WEB. The thing
    saves all the images and creates an editable site.
    So I then go into dreamweaver to load up the site.
    Everything’s is fine. I have ONE image which is being a pain
    to me because everytime I delete it and replace that image as the
    background so that I can type in it, the stupid image doesn’t
    appear.
    The image I’m trying to get to show up is the GOLD
    navigation bar image. PLEASE PLEASE Help. It’s for a project
    in my webpage design class and I really need help, thanks.
    IMAGES BELOW
    http://img.photobucket.com/albums/v185/viperjts10/dreamweaver.gif
    http://img.photobucket.com/albums/v185/viperjts10/internetexplorer.gif

    There are several issues here, not the least of which is that
    you are trying to create a web page with a program designed to
    create and edit images, then trying to make it work in a program
    designed to create web pages.
    The proper approach is create your web page in Dreamweaver
    (or notepad or what ever you like) then augment it with images
    processed in Photoshop (or Fireworks, etc) optimized for the web.
    Next, there are several things that could be causing your
    problem, but what we really need to see here is a url to your site
    so we can examine the code and tell you what might be causing you
    trouble. Pictures of the problem in this case are NOT worth a
    thousand words.
    Please post the address to your site and I’m sure
    someone will post the solution pretty quickly.

  • Function used in SQL query not showing the desired results

    I have created a function that gives me the client id but when i am using the function in the query its not giving me any result i.e. 0 rows but if I execute the function sepreatly and put the result of that function in the qurey it is giving me the desired result please have a look on the following and please reply with you expert opinion:
    FUNCTION CODE:
    create or replace function j2
    (usid in varchar2)
    return varchar2
    is
    cidn_in varchar2(4000) := '';
    ls_sep varchar2(1) := ',';
    cursor predicate_cidn
    is
    select
    logical_schema_id
    from
    CLIENT_REGISTRY cr,
    MEMBER_ROLE_CLIENT_ASSIGNMENT mrca,
    MEMBER m
    where
    mrca.base_client_id = cr.base_client_id and
    mrca.member_id = m.member_id and
    cr.schema_in_use_in = '1' and
    m.active_status_id = 'A' and
    upper(mrca.member_id) = upper(usid);
    BEGIN
    for GET_CIDN in predicate_cidn
    loop
    cidn_in := cidn_in || ls_sep || '''' || GET_CIDN.logical_schema_id || '''';
    end loop;
    cidn_in := substr(cidn_in, 2);
    cidn_in := '('||cidn_in||')';
    --dbms_output.put_line(cidn_in);
    return cidn_in;
    END ;
    SQL> select j2('qaa@adp') from dual;
    J2('QAA@ADP')
    ('BASE18','SDK1TEST','SEETHA1CONFIG','BASE09','KAREN2','SIVACONFIG','BASE19','SD
    K1CTEST','VASU1','KAREN5','EVENTS1CTEST','SDK1','ADA1CONFIG','BASE10','VRB1CONFI
    G','CRU2CONFIG','BASE20','SIVATEST','PCOMCONFIG','KP1CONFIG','KAREN4CONFIG','EVE
    NTS1TEST','SUZ3CONFIG','DONG2CONFIG','ED2CONFIG','SIVACTEST','APDCONFIG','EVENTS
    1CONFIG','ESSCONFIG','SIVA','SDK2CONFIG','ED3CONFIG','RAJ4CONFIG','CBRCONFIG','N
    AMRATA2CONFIG','EMIL1','NAMRATA1CONFIG','SDK2CTEST','BVT2CONFIG','MURUGAN1CONFIG
    ','COB1CONFIG','GABY1TEST','CHR1CONFIG','ED4CONFIG','USE1CONFIG','SDK2TEST','DEM
    O1CONFIG','BERNIE1CONFIG','XA1','CAR2TEST','SDK2','ED5CONFIG','PAY1TEST','PAYXCO
    NFIG','KP1TEST','SEAN1CONFIG','CAR2CTEST','VASU1CONFIG','SEAN2CONFIG','KP1CTEST'
    ,'MAU1CONFIG','CONWCONFIG','PAN1CONFIG','MERAJ2','PRA3CONFIG','SEAN5CONFIG','KP1
    ','PRA4CONFIG','CAR2CONFIG','PRA2CONFIG','SEAN6CONFIG','PRA3TEST','RPT','GABY1CT
    EST','SDK3CONFIG','PRA2TEST','SEAN9CONFIG','CAR2','LV1CONFIG','PRA3CTEST','DONG1
    CONFIG','TE1CONFIG','MERAJ2CONFIG','VIV1CONFIG','GABY1','SEAN2','PRA2CTEST','PRA
    3','RPTCONFIG','PRA4CTEST','SEAN3','MITA1CONFIG','PRA2','RPTCTEST','PCOM1CONFIG'
    ,'SS2CONFIG','PAY1CONFIG','SEAN7','ANNCONFIG','BASE11','BASE02','LV2CONFIG','RPT
    TEST','IMPECONFIG','SUR1CONFIG','SREEK2CONFIG','BASE03','SRINU3CONFIG','BDCONFIG
    ','JAY1CONFIG','AMMAN1','PRA1TEST','WPGCONFIG','BASE12','MP5CONFIG','MERAJ1','SR
    INU2CONFIG','XA1CONFIG','RAJ1CONFIG','WPGCTEST','BASE04','CHRIS','RAJSCONFIG','P
    ANKAJ','BASE13','WPGTEST','RAJ3CONFIG','WPG','BASE14','VASU2CONFIG','SRINU1CONFI
    G','BASE05','PRA4TEST','VASU1TEST','PRA5CONFIG','NISH1CONFIG','CHRISCONFIG','SDK
    3TEST','RAJ3TEST','KP2CONFIG','BASE06','DEFPCONFIG','NISH2CONFIG','CHRISCTEST','
    WPSCONFIG','VASU2TEST','BASE15','GABY1CONFIG','PRA5TEST','MITA2CONFIG','BASE07',
    'VASU1CTEST','KP2TEST','VASU2CTEST','LAURA3CONFIG','BASE16','CHRISTEST','WPSTEST
    ','VASU2','KP2CTEST','EVENTS1','BASE17','RAJ2CONFIG','WPSCTEST','BASE08','SREEK1
    CONFIG','ADVE','PRA4','SDK1CONFIG','KP2','KAREN1','CRU1CONFIG','WPS')
    Now if i put the results (cut and paste )in the query it gives me the results
    SQL> select count(*) from baseclient.address_detail where cidn in ('BASE18','SDK1TEST','SEETHA1CONFIG','BASE09','KAREN2','SIVACONFIG','BASE19','SD
    2 K1CTEST','VASU1','KAREN5','EVENTS1CTEST','SDK1','ADA1CONFIG','BASE10','VRB1CONFI
    3 G','CRU2CONFIG','BASE20','SIVATEST','PCOMCONFIG','KP1CONFIG','KAREN4CONFIG','EVE
    4 NTS1TEST','SUZ3CONFIG','DONG2CONFIG','ED2CONFIG','SIVACTEST','APDCONFIG','EVENTS
    5 1CONFIG','ESSCONFIG','SIVA','SDK2CONFIG','ED3CONFIG','RAJ4CONFIG','CBRCONFIG','N
    6 AMRATA2CONFIG','EMIL1','NAMRATA1CONFIG','SDK2CTEST','BVT2CONFIG','MURUGAN1CONFIG
    7 ','COB1CONFIG','GABY1TEST','CHR1CONFIG','ED4CONFIG','USE1CONFIG','SDK2TEST','DEM
    O1CONFIG','BERNIE1CONFIG','XA1','CAR2TEST','SDK2','ED5CONFIG','PAY1TEST','PAYXCO
    8 9 NFIG','KP1TEST','SEAN1CONFIG','CAR2CTEST','VASU1CONFIG','SEAN2CONFIG','KP1CTEST'
    10 ,'MAU1CONFIG','CONWCONFIG','PAN1CONFIG','MERAJ2','PRA3CONFIG','SEAN5CONFIG','KP1
    11 ','PRA4CONFIG','CAR2CONFIG','PRA2CONFIG','SEAN6CONFIG','PRA3TEST','RPT','GABY1CT
    12 EST','SDK3CONFIG','PRA2TEST','SEAN9CONFIG','CAR2','LV1CONFIG','PRA3CTEST','DONG1
    13 CONFIG','TE1CONFIG','MERAJ2CONFIG','VIV1CONFIG','GABY1','SEAN2','PRA2CTEST','PRA
    14 3','RPTCONFIG','PRA4CTEST','SEAN3','MITA1CONFIG','PRA2','RPTCTEST','PCOM1CONFIG'
    15 ,'SS2CONFIG','PAY1CONFIG','SEAN7','ANNCONFIG','BASE11','BASE02','LV2CONFIG','RPT
    16 TEST','IMPECONFIG','SUR1CONFIG','SREEK2CONFIG','BASE03','SRINU3CONFIG','BDCONFIG
    17 ','JAY1CONFIG','AMMAN1','PRA1TEST','WPGCONFIG','BASE12','MP5CONFIG','MERAJ1','SR
    18 INU2CONFIG','XA1CONFIG','RAJ1CONFIG','WPGCTEST','BASE04','CHRIS','RAJSCONFIG','P
    19 ANKAJ','BASE13','WPGTEST','RAJ3CONFIG','WPG','BASE14','VASU2CONFIG','SRINU1CONFI
    20 G','BASE05','PRA4TEST','VASU1TEST','PRA5CONFIG','NISH1CONFIG','CHRISCONFIG','SDK
    21 3TEST','RAJ3TEST','KP2CONFIG','BASE06','DEFPCONFIG','NISH2CONFIG','CHRISCTEST','
    22 WPSCONFIG','VASU2TEST','BASE15','GABY1CONFIG','PRA5TEST','MITA2CONFIG','BASE07',
    23 'VASU1CTEST','KP2TEST','VASU2CTEST','LAURA3CONFIG','BASE16','CHRISTEST','WPSTEST
    24 ','VASU2','KP2CTEST','EVENTS1','BASE17','RAJ2CONFIG','WPSCTEST','BASE08','SREEK1
    25 CONFIG','ADVE','PRA4','SDK1CONFIG','KP2','KAREN1','CRU1CONFIG','WPS');
    COUNT(*)
    228
    BUT if I user the function it gives me no results
    0 rows selected and its taking a loon time to reurn

    This appears to be a duplicate of the question in this thread
    Re: VPD issue Need Assistance ASAP
    where I wrote
    "Your function returns a single string that happens to have a bunch of commas and quotes in it. An IN list generally requires a list of strings, which your function doesn't return.
    You could rewrite the function to be a pipelined table function and then do
    select count(*)
    from baseclient.address_detail
    where cidn in (SELECT cidn
    FROM TABLE(<<your pipelined table function>>))
    However, I would expect it to be easier not to wrap all this into a function and just have your IN clause be the logic in your predicate_cidn cursor.
    Justin
    "

  • Table not showing up in Preview PDF

    Hello all,
    I am having an issue with a form that I am making in Adobe LiveCycle Designer ES.
    The project that I am working on deals with making a standarized quoteing template to make getting quotes out faster and whatnot.
    The particular quote template that i am making will have the same information in the table for the Description column.
    So I made the table using the Insert Table wizard and added the information that will not change from quote to quote.  *I took actual info off for legal reasons*
    So I got the table looking the way i wanted it to, and thought great let me check it out in the "Preview PDF" tab.  So I clicked the preview tab and scrolled down to the table and only the headings show up  "/  *You will see this in the pictures below*
    In "Design View".
    In "Preview PDF".
    Any ideas?
    I would appreciate any help that you guys can give me!
    Thanks in advance!

    Thanks pguerett,
    I sent over an email to the above address.  Thanks for your help.
    Hopefully this issue is solved for me soon
    Thank you

  • Tables not showing up in schema browser (3.0 final)

    I don't know if this has been posted by anyone else, or if anyone else if having this problem, but if I expand the + under the Tables collection, I don't get any tables. I supposed that it was a filter problem because when I clear the filter, the tables show up. Of course, I don't want to reset filters for all of my connections. But, alas, it didn't end there. When I cleared the filter, disconnected, and then reconnected, either the filter change didn't save or something else was wrong because I couldn't view tables again. :/
    Note: I did migrate my settings from the EA3 release before running this.
    Thoughts?
    Edited by: fmercury on Mar 30, 2011 7:49 AM

    I'm having the same problem. I just published a blog with photo pages, but the photos do not load using Firefox 3.0. They show just fine using Safari. I've not tried it yet with Explorer, but friends who have logged in have not complained about not seeing the photos, so I suspect the problem is specific to Firefox.
    Anyone have an idea what the problem might be?

Maybe you are looking for

  • How do I get to 'Shuffle Songs' after picking a track?

    I am just getting to grips with my new iPod Classic 160GB (replacing a Sony NW-HD5H Network Walkman that simply didn't have enough capacity for my collection). There were a few functions I liked on my Sony that I can't seem to figure out on my iPod (

  • URL Link on downloaded Excel File

    Hi, I have got a requirement. For study and analysis purpose user download data on excel file from OCOD. Struture(Contents) of downloaded excel file is same as screen. But the problem is when user click on 'DETAIL' (which has URL link) he/she is dire

  • Forcing the aspect ratio (stretching) in QT Player?

    Hello, I want to set my quicktime player to always stretch my video, be it 4:3 or 16:9 source material, to a certain pixel size so it always perfectly fills the screen. I have found the following posting by Adam: "In Quicktime Pro you need to go to M

  • DVD Video Menu Compression

    Hello all. I am putting together my first video menu for my DVD and had a few questions on compression. I have a into movie, in which the last frame of the movie becomes the DVD menu (40 seconds in length). The other movie I have made is a simple tra

  • PLEASE HELP TO CHANGE SCREEN OF Q10 FROM BLACK TO WHITE??

    DOES ANYBODY KNOW IF YOU CAN CHANGE THE SCREEN FRON BLACK TO WHITE??.....