Wrap description heading

Is it possible to wrap a description heading in 'query designer'. I have a characteristic in my rows but the heading is quite long, hence I'd like to wrap it over two lines.
Thanks.

You could set the style of that cell so that it has a smaller width. This of course assumes you're publishing the query through a workbook.
In theory you can run the template, find the cell containing the characteristic description, then view the HTML source and determine which CSS class it is using, or use something like the IE Developer Toolbar.
Once you have the required class, add something lke this to the top of your HTML
<style type="text/css">
.clsFixedWidth{
    width : 10px;
</style>
Hope this helps.
Cheers,
Andrew

Similar Messages

  • How to wrap the heading text in alv.

    HI all,
          I need help, how to wrap the heading text in alv.
    can any help ... plz..
    Advanced Thanks
    Regards
    GUhapriyan

    Hello GuhaPriyan,
    I assume that you're referring to the ALV Grid's title. The maximum length for this title is 70 characters and this would generally fit in the one line.
    Are you intending to wrap it because you purposefully want the text to come in two lines? In that case, I'm not sure that it's possible.
    But otherwise, there's an option in the Layout called SMALLTITLE. You can set this attribute so that the title would be displayed in a amaller font and hopefully, all of your text shows up on the screen.
    Regards,
    Anand Mandalika.

  • Wrapping my head around PIVOT - Arggggg

    Ok, I am stumped. What I want seems so simple to me....
    ======= Table Def
    CREATE TABLE "TI" (
    "SNUM" NUMBER,
    "SYMBOL" VARCHAR2(30),
    "OPEN" NUMBER(15, 5),
    "LOW" NUMBER(15, 5),
    "HIGH" NUMBER(15, 5),
    "CLOSE" NUMBER(15, 5),
    "ADJ_CLOSE" NUMBER(15, 5),
    "VOLUME" NUMBER(15, 5),
    "CHANGE_PCT" NUMBER(15, 5),
    "CHANGE_AMT" NUMBER(15, 5),
    "TIMESTAMP" TIMESTAMP(9) DEFAULT systimestamp ,
    "TRADE_DATE" DATE,
    "DATA_SOURCE" NUMBER)
    ============ data
    insert into TI (6975 ,'VT', 48.2,48.11, 48.41,48.23,48.23,200500,.009,.43,'01-JAN-11','08.32.57.366984000 PM','03-JAN-11',2)
    insert into TI (6995,' AGG',105.4,105.3,105.68,105.63,105.63,739700,-.00113,-.12,'31-JAN-11 08.33.18.137327000 PM','03-JAN-11',2)
    insert into TI(7015,'SPY',126.71,125.7,127.6,127.05,127.05,138725200,.01034,1.3,'31-JAN-11 08.33.34.708030000 PM','03-JAN-11',2)
    So as you can see these are all on the same date. We currently collect three indices every day, but a user with the click of a mouse could add another or take one away.
    What I am trying to do is get output gives a date and the indices contained in a given day and their adj_close as a single return value from a query.
    I have spent the day trying to wrap my head around PIVOT or LISTAGG but just can't seem to get a grasp of the damn thing. All the examples I have seen incluse sums and such and I need, nor in fact do I want anything summed. This would seem to come down to grouping by the trade_date and that where something is just not making sense.
    More then an answer ( although an answer would be very helpful :) ) It would be great if someone could simply lay out how this is supposed to work. Uhm did I say an answer would be helpful <big cheesy smile >
    Thanks in advance...

    Hi,
    Thanks for posting the CREATE TABLE and INSERT statements. Please test any code before you post it; there seem to be a lot of mistakes in those 4 statements. Don't forget to post the results you want from the sample data, and your version of Oracle.
    One thing that is common to all forms of pivoting or string aggregation is that you need to know, for each row of input, to which row and which column(s) (or position(s)) of output it corresponds. Sometimes one or both of these are already in the data, but sometimes they have to be derived from the data. I'll assume you have one of each: that trade_date indicates the output row, and that the column you called timestamp (but which I'll call tmstmp, since timestamp isn't a good column name) can be used to tell the output position: the earliestt tmstmp goes on the left, the 2nd lowest tmstmp goes next, the 3rd lowest tmptmp goes next, and so on. We can use the analytic ROW_NUMBER function to assing consectuive numbers (1 for lowest, 2 for 2nd lowest, 3 for 3rd lowest, and so on) to the different tmstmps for each trade_date. I'll assume you don't know how many of these there will be on any given trade_date, and there may be different numbers of them on different trade_dates in the same output. I'll assume you're using Oracle 10.
    If you have an unknown number of items, then string aggregation (concatenating all the values into one big sting column) is a lot easier and more robust than pivoting, so let's do it that way.
    Here's one way to do string aggregation:
    WITH     got_c_num     AS
         SELECT     adj_close
         ,     trade_date
         ,     ROW_NUMBER () OVER ( PARTITION BY  trade_date
                             ORDER BY        tmstmp
                           )     AS c_num
         FROM     ti
    --     WHERE     ...     -- if you need any filtering, put it here
    SELECT       trade_date
    ,       REPLACE ( SYS_CONNECT_BY_PATH ( TO_CHAR (adj_close, '999990.000')
                )          AS indices
    FROM       got_c_num
    WHERE       CONNECT_BY_ISLEAF     = 1
    START WITH     c_num          = 1
    CONNECT BY     c_num          = PRIOR c_num + 1
         AND     trade_date     = PRIOR trade_date
    ORDER BY  trade_date
    ;Output from your sample data:
    TRADE_DAT INDICES
    03-JAN-11       48.230     105.630     127.050CONNECT BY is used for parent-child realtionships of variable length within one table. Here, we have assigned c_num to be 1 for the first input row for each trade_date, 2 for the next, and so on. In the CONNECT BY uery above, we're saying that every parent-child-grandchild-... chain will start with a row numbered c_num=1, and that a row will be considered the child of another row if its c_num is 1 higher, and their trade_dates are the same. (That's what the START WITH and CONNECT BY clauses are doing.)
    SYS_CONNECT_BY_PATH gives a delimited list of items, starting from the root (the item with no parent, c_num=1) and showing the lineage down to each item in the original table that is descendedd from some root. That means we get 3 rows of output in this case: one showing just c_num=1, another with that same c_num=1 and c_num=2. and finally one with all 3 c_nums. We're only interested in the last one, the onme with no child, so the WHERE clause discards the others.
    By using TO_CHAR in SYS_CONNECT_BY_PATH, we get items that are padded to the same length. That way, when they are displayed, they will appear to line up in neat columns. SYS_CONNECT_BY_PATH reuires that you delimit the output items with some string that cannot possibly occur in the items themselves. I chose '/', but, since we don't want to see those '/'s, I used REPLACE to get rid of them once we were finished doing the SYS_CONNECT_BY_PATH.

  • Can't wrap column header if column is sized smaller

    I have been reading through all the threads here and have not found a solution to my particular problem. I have a column with a long title that I want wrapped so the column itself is narrower. I have tried the "display:block;width:150px;overflow:hidden;white-space:normal" approach which works fine with the column data but still leaves the header wrapped. I also tried the "<table><col style="width:100px;"><tr><td>#COL04#</td></tr></table>" approach which had no effect. I'm using Theme 2 and have examined the t2header tags and see that the default tag contains a nowrap directive, but the tags for the other templates such as standard and borderless do not contain a nowrap. I have tried using all of these templates to no avail. Any ideas on how to get my column header to wrap?

    Hi,
    Following is the jsp code that i am using but not able to wrap the text in column:
    <af:table id="logTable"
    value="#{abc.listWorkBenchLog}"
    var="log"
    bandingInterval="1"
    banding="row"
    rows="5"
    inlineStyle="border: 1px solid Silver ;width:700px;height:100px;overflow:scroll;" >
    <af:column sortable="true" sortProperty="strDesc" width="700" noWrap="false" >
    <f:facet name="header">
    <af:outputText value="Description"/>
    </f:facet>
    <af:outputText value="#{log.strDesc}" />
    </af:column>
    </af:table>
    I tried removing noWrap however it places a horizontal scroll bar (which i dont want and hence implementing this wrap text functionality) in the table.
    please help,
    Manglesh

  • Meta, keywords, description Head tags

    Hi all,
    Can someone define the difference between the head tags and how best to use them for improved SEO:
    Meta
    Description
    Keywords
    And is there a difference between description and the title of a page?
    Thanks in advance
    S

    Can someone define the difference between the head tags and how best to use them for improved SEO:
    Meta
    Description
    Keywords
    And is there a difference between description and the title of a page?
    Yes, there is.  <title>unique page name here</title>
    Meta Description = a brief (8 -15 word) sentence about the page and what it contains.  Google uses your page title and meta description in search results pages so this is the very first impression people have of your site.
    Meta Keywords are ignored by search engines.  If adding them to your pages makes you sleep better at night, fine.  But it will have no impact on your ranking.
    What matters most is the content in your <h1>, <h2>, <h3> and <p> tags.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • Way to wrap Column Heading in two lines

    Hi,
    We have created one table UI element in web dynpro application.
    We have a requirement to wrap a table column heading in the table.
    Is there any way to wrap or keep the column heading in two lines.
    Thanks in advance..
    Regards,
    Kranthi.

    Hi Kranthi,
    not that I know of - but then again that doesn't mean there isn't!
    however, you could force two lines by inserting your column in the table as a column inside a column group - you would get a line for the column group and a line for the column - effectively two lines. If this was the only column in the column group I can't see how it could cause any issue.
    Hope this helps,
    Cheers,
    Chris

  • Wrap ALV Heading

    Hi
    I have an ALV Column heading that i very long. How do i wrap it.

    TRY THIS..
    How to make ALV header like this?
    Header long text 1 Header long text 2 Header long text 3 
    Col_1 Col_2 Col_3 Col_4 Col_5 Col_6 Col_7 Col_8 Col_9 
    Cell conents -
    Cell conents -
    Cell conents -
    Cell conents -
    Cell conents -
    You could try: 
    data: gt_list_top_of_page type slis_t_listheader. " Top of page text. 
    Initialization. 
    perform comment_build using gt_list_top_of_page[]. 
    form top_of_page. 
    Note to self: the gif must be loaded into transaction OAOR with 
    classname 'PICTURES' AND TYPE 'OT' to work with ALV GRID Functions. 
    I Loaded NOVALOGO2 into system. 
    call function 'REUSE_ALV_COMMENTARY_WRITE' 
         exporting 
    I_LOGO = 'NOVALOGO2' 
    i_logo = 'ENJOYSAP_LOGO' 
             it_list_commentary = gt_list_top_of_page. 
    endform. " TOP_OF_PAGE 
    form comment_build using e04_lt_top_of_page type slis_t_listheader. 
    data: ls_line type slis_listheader. 
          clear ls_line. 
          ls_line-typ = 'A'. 
          ls_line-info = 'Special'(001). 
          fgrant = xgrant. 
          concatenate ls_line-info fgrant 
          'Stock Option Report to the board'(002) 
                 into ls_line-info separated by space. 
                        condense ls_line-info. 
          append ls_line to e04_lt_top_of_page. 
    endform. " COMMENT_BUILD

  • "InfoObject" with Text data is not showing description/heading/text in IDT...

    Dear All,
    I'm working on SAP NetWeaver 7.3 and I have an InfoCube for QM and recently I had a requirement to add an "InfoObject" which will show text. I added it into InfoCube and after loading my transaction data, I could see the text of newly added  InfoObject as well on "LISTCUBE" transaction. I refreshed the "Data Foundation Layer" on BO tool "Information Design Tool" and also inserted Candidate InfoObject (my newly added InfoObject"). But when I tried to show its values for "InfoObject" its showed me its values. But when I tried to show its text (heading) it threw following error:
    1. Firstly, I could not find Text Table or table for the newly InfoObject into "Data Foundation Layer" why?
    2. Why am I getting able error?
    3. Have I missed some step in BW which is causing an issue for not "Generating SID" for this InfoObject "Master Data Text"?
    4. How to resolve the above issue as I want to show its text into "InfoSpace" or BusinessObject Explorer?
    Many thanks!!!
    Tariq Ashraf

    Problem with JMS IKM of 10.1.3.5 for Hp-UX.
    Step 3 of IKM, where its truncating the schema, the systntax is wrong. The correct syntax will be.
    truncate schema < %=odiRef.getInfo("SRC_SCHEMA")%>

  • I can't seem to wrap my head around resizing/resampling and what is the correct way of doing it (CS5)

    i know this is probably fairly basic but it's escaping my grasp at the moment.  for whatever reason my teacher never really went over this other than to say 300dpi was what you want for the best quality prints, so i've always just sort of worked with that in mind and never gave much consideration to "re-sampling" or what it was necessarily, the box was just always checked.  im not sure how much, or if, i've been screwing myself all this time, and i know this isn't THAT difficult so any advice would be appreciated.  and i apologize if this has been gone over to death, but i wanted to use an example to help (hopefully) understand this better.
    oh, and most of my work i display on the internet with the idea that it will in the future be printed, or with the notion that it can at least be printed.  i've heard for web all you need is 72dpi, but since i expect it to be printed i just do 300dpi and save it normally.  is this a bad move on my part and am i missing something by not saving it "for web and devices"?
    example:
    so i have an image i downloaded from the internet.  as you can see it's at 72DPI and around 12.7x17.7in.
    let's say i want to enlarge it to an even 13in and increase the resolution to 300DPI.
    i'm confused as to when i want to uncheck resample.  since it locks the pixels, if i increase the resolution the image gets smaller, and vice versa.  i'm not sure i grasp when it's beneficial to have resample unchecked.
    i feel really stupid, because i know all of this is pretty noobish but we hardly touched on this and the option of saving for web & devices (not at all) in my design class.  thanks for any help.

    just to clarify the point of the example i'm using...
    let's say i'm going to use part of the knight as a composite on a larger canvas.  i'm basically wanting the image to be as "optimal" as it can be, and large enough so that it can be further resized larger (if need be) without seriously compromising the quality.  i know that it's easier make a larger image bigger than it is a smaller image.
    i guess this way of working helps me keep the number of variables down.  like if i take the helmet and put it on the image of a woman in bikini.  even if the images are different sizes i should be able to scale them until they are proportional, and then if there are any issues i know that it probably has something to do with the original source and not me.
    does any of that make sense?
    honestly, i'm not sure if my way of thinking is ill thought or not.  i'm assuming if i have an image made up of several other images, all at varying resolutions, the final product will be a mess.

  • Attempts to wrap my head around printing and color management.

    So, I've been meaning to get (more) serious about printing my shots. It's the summer and I now have some time.
    I know I've got the first piece of the puzzle in place. I have an i1 Display 2 that I use to calibrate my monitor - my MB + one of 2 Dells using either or TN or P-MVA panel. I try to use the latter more.
    I've viewed the image with different monitors and lowered the brightness when 'soft proofing' with Canon's profile. It's the best I can do being that I don't own a spectrometer.
    Anyway the result on my screen was so incredibly different. The black was grey. I lost shadow detail. And it just looked flat. I tweaked it a bit but it didn't help.
    I decided to test print using the Canon Photo Plus Glossy paper I had. I set the ColorSync Profile box to the profile I soft proofed with. The result was horrible!!!! Incredibly dark and ugly. It however wasn't grey or very flat - though it was so dark.
    I tried again with the colorsync profile set to system managed. This produced a result darker than the screen, but not grey like the profile. Sort of an average between the screen and profile. Much better but still not great.
    Then I ran out of paper and couldn't try anything else.
    So here's the technical info if it matters:
    I'm using a canon ip5200 with 3 fresh inks. The other 2 are fairly recent and not used too much.
    The paper was Canon Photo paper plus glossy
    The photo was a sports shot with a heavy dark vignette I think a more even shot would be easier to work with. However, the dark vignette with blonde flying hair looked great. (Who says sports can't be artistic?- I love the vignette to for some shots!)
    So what exactly is the ColorSync Profile menu in the print window for?
    What am I doing wrong?
    PS: Sorry if this is a repeat, but the search function is down.

    Sorry to be the bearer of bad news but there are some seriously weird stuff going on with printing with Aperture and 10.5 I would not have believed it had a number of my clients and friends not experienced the same kind of issues that I personally walked through and witnessed.
    I can give some general advise in terms of helping to resolve your issues. By all means update to 10.5.4 do a repair permissions on your drive, make sure that you reinstall the latest greatest printer drivers for Leopard downloaded from Canon, and wave some chicken bones over your system.
    You may also want to trash your Aperture prefs and Printer presets and start from scratch. (if you do not know how to do this hit me back)
    Then give it another try - make sure that you turn off color mgt in the printer prefs dialog, select the appropriate paper and then select the corresponding profile in the aperture print dialog. (Have heard reports that if you do not turn the color mgt off in the driver the option becomes unavailable after you select the paper profile in Aperture but does not turn it off - cannot confirm)
    Hope this helps.
    RB

  • Trying to wrap my head around synchronized, wait, notify

    Hi There,
    I've been researching on how to make my midlet repeat cpu-intensive tasks for long periods of time. I found that if I put the big jobs in separate threads, that works fine. However, I'm at a point now where I need my "worker threads" to be able to do a big job, check to see if they need to keep going, then repeat. It seems that synchronized, wait, and notify are the way to do that. But I'm new to this concept.
    Apparently you can only use synchronized to create a spinlock between objects. So I guess that I need to define a new class, that starts its own thread, and has a method inside that thread that is synchronized?
    If that is true, then can my midlet call notify() on that? How does my midlet become a monitor?
    What does notify really do? Does it make the thread synch up state with the midlet globals? How can I get updated information to the thread?
    These things will help me get started.
    Thanks,
    theotherldso

    I answered my own question. I solved the problem by creating my own runnable class with some methods to control the thread. It works great, it's kind of like having my own main() that is controlled from my midlet.

  • How to avoid WRAP of EXCEL Column HEADER Fields

    We have 3 tablix in the rdl file with 11 inch * 8.5 inch (to print in A4)
    Tablix 1 - HTML viewer
    Tablix 2 - EXCEL
    Tablix 3 - PDF 
    The size of the rdl is fixed , if size altered then printing becomes an issue.
    So we have to keep the rdl size fix
    but at the same time the WRAP of column header of the EXCEL need to be avoided ,
    because if the size of the column header is not reduced then we cannot be able to accomodate in the defined page size
    Eaxmple of SOme Header Field Name 
    1.OccupationCode 
    2.ChargeJobPhase which are quiet large fields, so it need to be wrapped(to reduce the length of the column to accomodate ) to fit in the page.
    So as an Alternative option  I use the COncept of Subreport and called it by adding row outside group otherwise the
    Report Server treats subreport as new report for each instance of the parent report.
    The challenge we faced is when export to EXCEL some of the columns is getting merged , I believe the size of the child report (sub report) is having the length
    greater than the parent report (Called Report )  and the size has to be large otherwise the COLUMN HEADER need to reduced which makes it Wrapped 
    So  is there any alternative without changing the parent report size and without WRAPPING the HEADER text of CHild report the MERGING of cell can be avoided.
    Since MERGING is happening which is not allowing us to PUT  FILTER in EXCEL but we need to have FILTER applicable since the END user use it to sort, find the records.

    Hi SubhadipRoy,
    In Reporting Services, whether to wrap text or not is depended on the CanGrow property. If we set the CanGrow property of tablix header row to true, then the header row of tablix will be expanded. If we set the CanGrow property of tablix header row
    to false, the header row will be shrunk as the designed size.
    So if we want to avoid wrap text, we can try to set the CanGrow property of tablix header row to false in Reporting Services level. Alternatively, we can click the Wrap Text button to enable the expended extra-long text property in Excel level.
    If there are any other questions, please feel free to ask.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Column Header Wrapping Issue in OBIEE

    Hi All,
    We are facing issue with the Column Header Wrapping . Our requirement is to wrap the column header to three lines. Few users are able to see the wrapped header in three lines, few are able to see it in two lines . Even though the Browser is same and the screen size (of laptop / desktop) is same we are facing issue with few users. It is also different in different instances . For ex, In DEV instance it is wrapped in three lines but for the same user with same laptop same browser , it is not wrapped in TEST instance.
    Options tried :
    Reducing the width in the additional column properties wraps the header in four line
    CSS Styling : word-wrap:break-word
    Why is there difference in wrapping between the instance for the same user ? Any help , would be appreciated.

    My dear,
    All blogs and sites are teaches about the ways to implement/create a specific functionality.
    Let me go to bed to dream your issue and share that with blog owner so that he can put your issue ;)
    stay tune
    thanks

  • DSC Pull Server functional description

    I am trying to find a functional description of how a DSC Pull Server fits into the model.
    My understanding is that if I place a Custom Resource Module in the \WindowsPowerShell\Modules folder of the DSC Pull Server and I use Import-DscModule in the configuration that the file will be downloaded to the client auto-magically and used.
    But what I am not clear on is MSI and EXE files with the Package Provider.
    Do I place those some place onto he Pull Server and they magically get downloaded? 
    Do I need to define in the configuration that they need to be explicitly downloaded and placed in a particular path? 
    If so, is there some path they should exit in on the client (expected location)?
    I am just trying to wrap my head around dealing with DSC and 3rd party software and the Pull Server model.
    Thanks!
    Brian Ehlert
    http://ITProctology.blogspot.com
    Learn. Apply. Repeat.
    Disclaimer: Attempting change is of your own free will.

    Hi BrianEh,
    Based on my research, to add content in Pull server, we need to Package each custom resource into its own ZIP file and copy it to Folder location (e.g $env:PROGRAMFILES\WindowsPowerShell\DscService\Modules),  which has been defined during the Pull
    server configuration, and also need to create a checksum file for each of the above ZIP files.
    After configure the pull server and the DSC client, with patiently minutes the configuration should be downloaded to your client, however, you can also force this with powershell script.
    For more detailed information to configure powershell DSC pull mode, please refer to these articles:
    How to Deploy and Discover Windows PowerShell Desired State Configuration Resources
    PowerShell DSC Resource for configuring Pull Server environment
    Configuring PowerShell DSC Pull Mode
    If I have any misunderstanding, please let me know.
    If you have any feedback on our support, please click here.
    Best Regards,
    Anna
    TechNet Community Support

  • How to add descriptions to web app items?

    How do I add metta data (keywords and descriptions) to my web app items? Do I need to create them as additional custom fields? 
    Any help would be appreciated.

    It's ok, I worked it out.  You just add another field - meta description and add the following code to the detail template:
    <html>
        <head>
            <title>{tag_name}</title>
            <meta name="description" content="{tag_meta description}" />
            <meta content="{tag_name}" property="og:title" />
            <meta content="{tag_meta description}" property="og:description" />
        </head>
        <body>
           <h1>{tag_name}</h1>
            <p>{tag_description}</p>
        </body>
    </html>

Maybe you are looking for