Table invites the column space question OBIEE 11 g

Hello

I have a relationship with the table view and 2 columns in section guests table. When I see the dashboard report 2 invites showing by far. How can I reduce the space between the 2 column guests?

Any help?

Thank you

Prasanna

I found the solution. The law in the 2nd column of filling. It solves the problem.

Tags: Business Intelligence

Similar Questions

  • Reduction "between the column" space in a classic report

    To cram more on a screen, I want to reduce by half the spacing between columns in a classic report. Is this possible with these default settings? (I know, it can probably go negative.)
    <tr><td><table cellpadding="0" border="0" cellspacing="0" ... 
    Is these same control spacing inter-colonne? The space can be reduced? What is required?

    Howard

    Howard (in training) wrote:
    @joe,

    If you log in here
    http://Apex.Oracle.com/pls/Apex/f?p=4550:1:2807482452656:

    WS: APEX_EXAMPLES_01
    USER: demo
    PW: demo

    Application BPS_f991202 page 1 shows where I'm trying to reduce the spacing between the columns.

    For the region of report, I gave her a static ID

    Ok. It is useful/necessary to provide a selector for a style target for a specific region and to provide greater specificity selectors to override the theme style.

    and I placed the style in the header of the region as suggested.

    Do not do this. The HTML specification requires that the context of the elements ofstyle elements without scope attribute is the head of page element. APEX 4.2 provides the property CSS File URL/Inline especially page for the style information can be correctly located in the page header. The header HTML property page must be used in previous versions.

    I reduce all the '1px' to '0px '. I even cut the police but he seems to have no effect.

    It has no effect because the CSS pasted from the above posts contains no selectors for theme/templates that you use:

    
    

    Structures HTML class and ID attributes are not consistent or interchangeable in most themes APEX (more still more backward in time go you to your templates). Therefore the CSS selectors required to style the elements are not consistent or interchangeable. Your page contains a region with ID RR_COLLATERAL_SUMMARY, but it doesn't have a tbody.uReportBody or a table.uReportStandard , and therefore these rules are not applied to each of the elements on the page.

    If you look at the HTML templates in the theme you are using (17 Sapphire), or inspect the page rendered with even low web Inspector IE8, required selectors can be determined, and the required stylesheet created in the HTML Header page:

    
    

    That's why I keep going the importance of providing model information and its theme, and/or examples on apex.oracle.com when asking questions about the layout and Visual formatting. Without this information, proposed "solutions" are random speculation that produce only nets long and winding, time-wasting. As I said above, if you had 15 minutes creating an example on apex.oracle.com Thursday, you would have been answered in the night, instead of 4 days later.

  • Mark from a table where the column value is a colon-delimited list

    Version: Oracle Database 11 g Enterprise Edition Release 11.2.0.2.0 - 64 bit Production

    Hello

    This is a new query of a query Frank helped me with: https://community.oracle.com/message/12506306#12506306

    Demand is all users to restrict the report based on a multiple selection on the front-end server (application APEX) filter.

    The filter returns that a colon-delimited list and the data in the table can be saved in a delimited by a colon list too. There may be 1 to n values (up to 4000 characters).

    I need a WHERE clause that will allow a match, if it exists, between the data in the column of the Table and the Mult-selection list filter.

    The abbreviated for this post query would be something like:

    SELECT slt_id, slt_item, slt_owner

    OF slt_dashboard

    WHERE slt_owner IN (colon delimited page list);

    The Create Table and Insert statements:

    CREATE TABLE slt_dashboard
    (
      dashboard_id  NUMBER,
      slt_id        VARCHAR2(10),
      slt_item      VARCHAR2(2500),
      slt_owner     VARCHAR2(4000),
      slt_type      VARCHAR2(25),
      slt_year      NUMBER,
      parent_id     NUMBER
    );
    
    --Insert slt_dashboard
    INSERT INTO slt_dashboard(dashboard_id,slt_id,slt_item,slt_owner,slt_type,slt_year,parent_id)
    VALUES (12,'1.1','Implement revenue enhancement initiatives','E15889:JPARISI:BDUR63','Business Commitment',2014,6);
    
    INSERT INTO slt_dashboard(dashboard_id,slt_id,slt_item,slt_owner,slt_type,slt_year,parent_id)
    VALUES (13,'1.2','Strengthen our Energy position','KVROMAN','Business Commitment',2014,6);
    
    
    

    I have a function to separate the list delimited by two points in a table for the IN clause, but because these values can be saved in a delimited list of Colon in the column of the Table, I have a problem, being able to analyze the data in the column, AND the filter data.

    The function is:

    CREATE OR REPLACE FUNCTION get_list( p_string IN VARCHAR2
                                        ,p_delimiter IN VARCHAR2 DEFAULT ':'
                                       )
        RETURN vc_array_1
        PIPELINED
    IS
        l_string VARCHAR2( 32000 );
        l_array wwv_flow_global.vc_arr2;
    BEGIN
        l_array     :=
            APEX_UTIL.string_to_table( p_string
                                      ,p_delimiter
                                     );
    
        FOR i IN l_array.FIRST .. l_array.LAST
        LOOP
            PIPE ROW ( TRIM( l_array( i ) ) );
        END LOOP;
    
        RETURN;
    END;
    
    
    

    The function called in the query in the form (it's just for reference in case someone wanted to know):

    SELECT ...
    FROM ...
    WHERE slt_owner IN (SELECT * FROM TABLE( get_list( :P115_SLT_OWNER ) ));
    

    But I can't use this approach because the data in the Table can be saved in a delimited list of Colon too.

    Desired output:

    If the Mult-Select list filter contains: E15889:JPARISI then

    1.1 implementation of the E15889 revenue improvement initiatives; JPARISI (it's a semicolon between the names)

    If the multiple-selection list filter contains: KVROMAN then

    1.2 strengthen our position of energy KVROMAN

    If the multiple-selection list filter contains: BDUR63:KVROMAN then

    1.1 implementation of the BDUR63 revenue improvement initiatives

    1.2 strengthen our position of energy KVROMAN

    Please let me know if something is not clear.

    Thank you

    Joe

    I went to approach the Table and the Page works perfectly.

    Thank you to everyone!

    Thank you

    Joe

  • ALTER TABLE with the column NULL time consuming

    Hello

    I have a table with nearly 2 million documents (about 10 GB size table) when I perform the following change statement its run fast

    ALTER TABLE tbl_1 ADD (DEFAULT col_4 NUMBER 100 NOT NULL);

    but when I do not give the NOT NULL in the alter its taking a long time to complete this i.e tbl_1 of ALTER TABLE ADD (NUMBER col_4 by DEFAULT 100); once I do the column as NOT NULL.

    Can someone explain why is it happening like that regarding the execution point.

    Thanks in advance.

    I can reproduce the effect in 11.2.0.1 - but not in 12.1.0.1.

    drop table tbl_1;

    create table tbl_1

    as

    Select rownum id

    , lpad ('* ', 50,' *') padding

    of the double

    connect by level<=>

    ALTER TABLE tbl_1 ADD (NUMBER col_4 by DEFAULT 100);

    --> slow in 11.2.0.1; fast 12.1.0.1

    ALTER TABLE tbl_1 ADD (DEFAULT col_4 NUMBER 100 NOT NULL);

    --> Quick 11.2.0.1 and 12.1.0.1

    A SQL trace for two operations (11g) shows that the altar slow (without the constraint explicit non-null) made explicit (and tedious) update of any row in the table:

    Update 'TBL_1"set"COL_4"= 100

    call the query of disc elapsed to cpu count current lines

    ------- ------  -------- ---------- ---------- ---------- ----------  ----------

    Parse        1      0.00       0.02          0          1          0           0

    Run 1 11,63 33.56 8336 1016125 2053531 1000000

    Fetch        0      0.00       0.00          0          0          0           0

    ------- ------  -------- ---------- ---------- ---------- ----------  ----------

    Total 2 11,63 33,58 8336 1016126 2053531 1000000

    The other trace file does not contain the explicit Update. I guess in the optimized case that oracle stores somewhere that col_4 has the value 100 and updates only the line of the block after completing DML operations. But that's just a guess.

  • Freeze the column headings in OBIEE 11.1.1.7

    Hi Experts,

    I have reports with a lot of columns, but the report is not easy to check.

    When a user scrolls to the bottom of the report, the column header need to stay in place and move only the data rows.

    I applied the next configurations but I do not see the changes. http://shivabizint.WordPress.com/tag/scroll-bar-in-OBIEE/

    How can I freeze columns?

    I think that it will work on the Version of IE greater than 8.

    Thank you

    AJ

  • Remove the column space

    Hi, just wanted to help regarding the deletion of my user name column spaces. I used the following code to remove the double space to a single space.
    regexp_replace(table_a.username, ' {2,}', ' ')
    but when you look through my answers I noticed that there is an extra in a few names at the end of the field as well. The original double space was between first name and family name, but now I have to replace the space completely, but don't know how.

    If someone could please advise.

    Thanks in advance.
    with t as (
               select 'ABC         DEF   ' str from dual
              )
    select  regexp_replace(str,' *( |$)','\1')
      from  t
    /
    
    REGEXP_
    -------
    ABC DEF
    
    SQL> 
    

    SY.
    P.S. It does not remove the spaces to the left, just backwards.

    SY.

  • How to create the Table using the column Drag and Drop feature

    Hello:
    I'm new to Data Modeler tool Oracle SQL dev and would like to know if there is a way to create a new table by reusing existing columns or groups of columns. The idea is to maintain consistency and save time of table design. If the columns created previously can be reused and require, drag and drop column in the right pane, then only new columns must be created manually.

    Any thoughts on this will be appreciated.

    Thank you!

    Yes - just change the name of the model table in the script (t_name = "table_template") then save this new transformation for later use.

    I don't know how to apply only some of the tables. Seems like something you could do to a secondary view level?

    Perhaps someone else on the forum can advise how to change the script to work on a subview only instead of the whole model.

  • table and the column in the chain

    Hello
    I'll have a column data containing the combination table and the names of columns as

    act_hand_table.work_order
    I want the names of table and column separated
    I want to separte. Classified

    Please help me
    Kind regards
    Kiran

    I think it'll work

    SELECT
    SUBSTR (COL1, 1, INSTR(COL1,'.',1,1)-1) TABLENAME.
    SUBSTR (COL1, INSTR(COL1,'.',1,1) + 1) COLUMNNAME
    FROM TABLENAME

  • Tables set the column width

    I took someone else's code and have problems with the width of the columns in a table for sizing.

    I have a table to create three columns of work. The table is 905px wide and I want column 140, 350, and the rest in width.

    If I put these values < td width = "140"... > etc., while they seem to be neglected, and the three columns are all the same width.

    It seems fine in design mode but not in Live View or published. Can someone help me to overcome this please?

    Thank you very much.

    1. Tables in HTML behave in their own way and you do not guarantee the width of columns
    2. Do not specify the widths of cell via (attributes) HTML).
      The width attribute in thetag is obsolete (the browsers are not required to support or to obey) and it was always a recommendation to the browser in any case, it was never a precise measurement are met.
    3. Learn how to your tables with CSS style

    See

    http://Veerle.Duoh.com/blog/comments/a_css_styled_table/

    http://www.ehow.com/how_2082412_style-table-CSS.html

    the http://www.google.com.au/Search?SourceId=navclient&ie=UTF-8&rlz=1T4ADFA_enAU351AU351&q=sty + tables + with + css

  • How to download the columns selected in obiee

    Hi all

    Available in obiee which allows to download the selected columns of a report to an excel download all feature.

    Regarding
    Prads

    .. And if you don't, you go to the Page Options > change the dashboard, click on the properties of the report, and select report links...

    Oh, and anyway, you can download "selected columns"; you will need to download the entire report. If you insist on a report that includes only some of the columns, you can build column selectors where the user can select the columns they want to see in the report, and then when they select the "Download" link, the report will only have the columns...

    Visit this link:

    Re: How to add new columns by using the multiple selection

    Edited by: David_T on June 25, 2010 10:19

  • Center the column headings in obiee 10g

    Hello

    I need to center the column headers for all columns in a report.
    For the rest of the reports, it should be by default.
    Is it possible to align the column focused without going through the column headers and modify the properties...


    Thanks in advance...
    Sankat.

    Hello

    You can do one way.

    The option called - import formatting of another analysis.

    How to proceed:

    Create a column and changes of position of column format and save this report then GO--> your main report--> tab Select results--> below option called set import in form, another analytical use, this option will apply in your report, format column changes all the columns.

    Note: Have you tried the "formatting of another analysis to import" button in the upper left corner of the view of layout? Make all your changes of format in an analysis. Then when everything is finalized, import them in other analyses.

    Hope this helps

    Thank you
    Satya

  • Addition of days for the column date of OBIEE

    Hi gurus,

    I have a date column, date alert and based on this column, I need to create another column to date, due date. The formula will be like,
    Due date alert = date + 30 days. I found a function, TimeStampAdd when you change the column formula but not sure how to use it. Pls help me to implement this.

    Thanks in advance.

    TIMESTAMPADD(SQL_TSI_DAY,30,alertdate)

    TIMESTAMPADD (interval, intExpr, timestamp)

    e.g:TIMESTAMPADD (SQL_TSI_DAY, 3, TIMESTAMP'2000-02-27 14:30:00 ')

  • table and the columns in small capitals!

    Dear all,

    My database is GR 11, 2 and Linux is the operating system.
    One of my application, whose code I cannot access, he is trying to insert records into the Oracle database. The problem is that the application is case sensitive and try to find the table and columns in small capitals, name while he gets the caps of Oracle and gives error or identifier is not valid.

    Y at - it option to create fields and the table with small letters.

    Kindly help.

    Kind regards
    Imran

    Use "" for the table and columns

    create table "table_test" ( "col_test" number(12));
    
  • SQL join on the two tables where the column as another column

    Hi all


    tried to get the results of a join between two tables where only one column is like another.

    Table1 (nameA) examples: black2, green1

    Table2 (Name) example: black2.location.uk.com, green1.location.uk.com

    so, for example, I want to match all those in table1 with black2 column in table2 that begins with black2 and so of suite, if you see what im trying to get to!

    My sql up to now:
    select * from  schema.table1 a
    join schema.table2 b 
    on a.nameA like concat('%', b.nameB, '%'); 
    but it errors:

    ORA-00909: invalid number of arguments
    00909 00000 - "invalid number of arguments.

    Any help or advice would be greatly appreciated, thank you!

    Or any of them should do...

    select * from  schema.table1 a
    join schema.table2 b on a.nameA like '%'||b.nameB||'%';
    

    or

    select * from  schema.table1 a
    join schema.table2 b on instr(b.nameB,a.nameA) > 0
    
  • Delete rows in a table when the columns from two tables match

    Hello

    I have following two tables.

    ===========================================

    create the table empbooth as

    (

    Select 1 empid, 1 double cabin Union all the

    Select option 2, Union 1 double all the

    Select 3, Union 1 double all the

    Select option 4, Union 2 double all the

    Select option 5, 2 double

    );

    create the table attsht as

    (

    Select 1 empid, 240 reg, 0 unpaid all double union

    Select option 2, reg 200, 0 unpaid of all the double union

    Select 3, 240 reg, 0 unpaid all double them union

    Select 4 480 reg, 0 unpaid all double union

    Select 5 240 reg, unpaid double 0

    );

    =================================================

    I want to remove rows from attsht where corresponding booth (which is stored in the empbooth table) is 1.

    The condition is 'where attsht.empid = empbooth.empid and empbooth.booth = 1 '.

    I use oracle 10g.

    Help, please

    delete from attsht where a.empid in (select b.empid from empbooth b where b.booth = 1)

    or

    remove from attsht a

    where exists (select null

    of empbooth b

    where b.booth = 1

    and b.empid = a.empid)

Maybe you are looking for

  • Hi, how can I find number emei of stolen iPad that I erased remotely

    Hi, how can I find number EMEI of my stolen iPad that I erased remotely

  • Qosmio G20 - 108 - Outlook Express stopped delete me emails

    Just recently my Outlook Express from Microsoft has denied me the ability to delete emails with inevitable consequence than my (already) crowded hard drive clog up and die! My machine is a * Qosmio G20-108 *."I get errors about this software *" No.:

  • Segmented regression analysis

    Hello I am writing a tool that allows me to calculate a segmental curve data discontinuous, similar to example 1 or 3 here or this photo. It is supposed to consist of a linear, followed by an exponential curve to adapt, which respond to a breakpoint.

  • Can I move the SWSETUP folder

    I have a HP Envy 17 with a 80 GB drive mSata which also has the operating system if space is limited.  The SWSETUP folder is 1.81 GB.  Can I move it to my 1 TB of data disc without consequences?

  • Issue of digital entry behavior

    PCI-6143 with wheel wired to PFI0 & PFI1. LabVIEW pgm written in 8.5 full. Source code works well (on other Web development pages computer with USB-6211 card) but hangs, as is eating 100% cpu time in the destination computer. This machine it must run