About the column display issue

A column in a table is Varchar(20),I want to display this column on a Reports.
But I have to allow for the follows:
1. If the column's lengthy < 10 Then only display in one line.
2. If the column's lengthy > 10 Then display in Two lines.
How to do?
Thanks a lot.

Null Null ( nice to have name indeed)
Try this
Set the field displaying this value as vertically variable and horizontally fixed. And ensure that the length of the field is good enough to display 10 characters.
Good Luck
Vij

Similar Messages

  • About the column display index of datagrid

    i need do a customize datagrid, but seems hard to save the
    display index of the grid column after the user drag and drop one
    column to another postion. What i need is catch the event after
    column drag and record that into database, and when reload based on
    the record , resort that column display index as saved before, how
    to get that

    that was i already did before, now even the all columns and
    match datafied are dynamic, my question is
    when after render all columns , dray a column a from right to
    left , after that i can not catch that column display index
    in the grid view, the real index in columns of grid is still
    remain same , i want catch the dray column event and
    get the display index(not the index of columns, but the order
    which that column display in the view) and after reload
    , i can show those colomns in right order as saved
    before

  • Is there still no fix to the column resizing issue?

    I checked the initial bug report about it and didn't see anything. I also didn't see it addressed in the most recent update notes. I know about the zoom workaround but that's really tedious. This is annoying me enough that I'm seriously considering dropping premium until it's fixed.

    Hello:
    Could you detail a little bit more about the column sizing issue you are having?

  • The very best thing about the retina display

    Do you know what is the best thing about the retina display? the answer is they've solved the issue of the dead and stuck pixels thing you know how because the pixels are very very small so u can't see if it's working or not some day you will walking around holding your new ipad and you don't even know the plenty pixels that are dead and you can't notice them HAHAHA that was a good one LOVE YA APPLE.

    I doubt that's the reason Apple spent the money on retina displays, but a good observation. 

  • Is the retina display for the new mac book pro worth the extra cost? I'm buying a new mac book pro but not sure about the retina display.

    Is the retina display for the new mac book pro worth the extra cost? I'm buying a new mac book pro but not sure about the retina display.

    There is a US$10 adapter from old power adapter to new MacBook Pro.
    MagSafe to MagSafe 2 Converter
    The MagSafe to MagSafe 2 Converter allows you to use the MagSafe connector on your LED Cinema Display, Thunderbolt Display, or MagSafe Power Adapter to charge your MagSafe 2-equipped Mac computer.
    For battery life, check the latest Software Update for the fix for most problems.

  • HT1338 There is a lot of talk about the Java security issues and the ability to download a patch fix, do i need to do this or will software update pick this up for me?

    There is a lot of talk about the Java security issues and the ability to download an apple patch fix, do i need to do this or will software update pick this up for me?

    Thanks for that, how do I establish if I have Java installed as on Safari preferences it indicates the following
    Web content - Enable Java
                        - Enable JavaScript

  • When I upload a cvs file not all the column display in the Data / Table Mapping screen

    1. I have created application using Apex Data Loading wizard. There when I am trying to load data from .csv file, but not all the columns display in the "Data / Table Mapping" screen. But if I go through AQL --> Utility --> Data Workshop, there all column display in "Data / Table Mapping" page. I want to get same thing in application I created. How will get all columns display in the screen?
    2. Is there any way to select target table dynamically during runtime. So that in appication we can select different target tables with different source file to load data.

    Your user info says iPad. This is the OS X Numbers forum. Assuming you are using OS X… Be sure the file is named with a .csv suffix.
    (I don't have an iPad, so I don't know the iOS answer.)

  • Re : Issue with the column display in Bex reports

    Hello Gurus,
    I have an issue with the reports in Bex, this is a bit confusing scenario I would try to explain in more details. A query was already built for monthly Report in Sales and Billing for which the variable were  Calender month/year range 1 (mandatory), range 2 range 3 range 4. These 4 variable were created and moved to column rows in query.
    Later the user wanted the copy of same report but he wanted the variables to be Calender date range 1 (mandatory), range 2, range 3 , range 4. I have created them with 0calenderday as reference and moved to the columns.
    for the monthly report text variables were already existing for the Calender month/ year, but for the daily report text variable were not existing for Dates. I have created a text variable for the date in the following way processing by
    " replacement path" and reference characteristic as 0calday and in the replacement path tab.. in replace variable the selection is info object, the next option Replace with " External charactersitic value key " .
    By creating this text variable the dates were being displayed in the colum header like 11/01/2013 - 11/30/2013 which satisfies the requirement.
    But the user wanted to see the report same like monthly report when the mandatory variable Calender year/ month is selected, the rest of the columns range 2, range 3, range 4 are displayed as unassigned in the report. but coming back to the daily report when the user is giving the Calender date rage 1, he is finding that Calender date range 2, range 3, range 4  are also being displayed with values. He want to see the Calender date range 2,3,4 as unassigned in the report just like monthly. Please find the images attached.
    As Calender month/ year is predefined, if the calender range values are not given it would show up as not assigned default. I have created a separate text variable for Calender day, I believe that could be the reason rest of the columns are not showing up as unassigned. The user want to see them as unassigned like monthly report columns.
    I tried different ways changing the text variables but I could not change the display of the columns in Calender date report by the option - replace with ----> External characteristic value key, key, label. when I chose the option external characteristic value then the date was showing up in the text of the column when report is run ( Please find the image for the reference in the attachment ). . I request you to help me out in this. Please find the images of the variables and output below.

    Anshu,
    Thank you very much for above code I  made minor changes to the code that finally worked. I created 4 different text variables needed for Calender date range 1, 2 ,3 ,4. Please find the code below for the text variable that worked in the system
    WHEN 'ZTEXT_CAL1'.
       READ TABLE I_T_VAR_RANGE INTO loc_var_range
       WITH KEY VNAM = 'ZCALDATE1'.
        IF loc_var_range-LOW = '#'.
          dt_low = 'Not Assigned'.
          dt_high = 'Not Assigned'.
          CONCATENATE dt_low '-' dt_high INTO l_s_range-low.
        ELSE.
          CONCATENATE loc_var_range-low+4(2) '/' loc_var_range-low+6(2) '/' loc_var_range-low+0(4) into dt_low.
          CONCATENATE loc_var_range-high+4(2) '/' loc_var_range-high+6(2) '/' loc_var_range-high+0(4) into dt_high.
          CONCATENATE dt_low '-' dt_high INTO l_s_range-low.
        ENDIF.
            L_S_RANGE-SIGN = 'I'.
            L_S_RANGE-OPT = 'EQ'.
            APPEND L_S_RANGE TO E_T_RANGE.

  • Something That May Be Interesting About The Yellow Screen Issue

    I was comparing my 3G and 3GS and have also been experimenting with looking at the color of the 3GS in different lighting environments. There was one situation where it appeared to be a little yellowish or warmer than the 3G, but mainly it is just not as bright as the 3G.
    I compared them again this morning and the 3G seemed much brighter. Both had brightness set to about half way and auto brightness was set to on (on both phones). I decided to set the auto brightness to off (on both phones), and noticed that the 3G display dimmed and the 3GS display brightened. Now they look so close to identical that I can't really tell the difference between them at all.
    I have noticed that a lot of folks seem to be having this issue and would like to ask that if you are having this issue... Please do a similar comparison and post your observations in this thread.
    I notice that the display on these phones change in different kinds of light, and have read that the 3GS now has auto white balance, so maybe it has something to do with this.
    I am not saying that this is the problem, but just something that I have observed over the pas couple of days.

    I've noticed this as well. I posted a thread about it but got very little response. So I'm not sure if were experiencing an isolated issue or if it just doesn't bother anyone else. I'm planning on taking my phone in to a genius soon for the weird tri-tone & other alerts problem & was going to also ask about the screen then. My screen NEVER appears yellow, but it is so dark & dreary when compared to my 3G both using the same settings.
    If you want to see something stranger, go into a completely dark room, like a hall bathroom, unlock & open both phones, notice the brightness (both phones set to auto-brightness). Next turn on the light & watch both phones brighten up, this is one of the very FEW times my 3GS actually has what I feel is a proper brightness level. Unfortunately it goes away once you lock the phone again. It would be great if this was fixed with a software update, but what if it's a phone problem & were past the 15 days? I'm going to take my old phone & compare to the other 3GS in the Apple store.

  • Has Apple said anything about the yellow screen issue?

    Because I just walked into an AT&T store for something and I looked at two demo units, both at the same brightness and settings, identical everything (3GS 16gb black), and one was yellow as ****, and one was pure white. Mine, unfortunately, is yellow.
    The salesman also thought it was weird and said that if Apple would exchange it, I should do it. But since this would be a defect, I technically have the whole year, right?
    Thanks in advance.

    I've been following this topic a bit since I got my 3GS 32gb right on the release date through AT&T pre-order.
    I never thought anything about the color temp of my screen when I got it. I thought it looked just fine. I pulled out my old 1st gen iPhone and powered it up to compare the color temp of the two screens. Sure enough, my new 3GS had a definite warmer tone. But it was OK. White is white if you're only looking at one screen. In fact, I think the warmer tone looks better, I guess.
    The other day I stopped in to my local Apple Store to pick up an accessory. After I finished I remembered to compare my 3GS with a 3GS on display. Sure enough, every 3GS on display had the bluer looking cast as opposed to my 3GS's yellow cast.
    I got the attention of a salesman, resplendent in his orange t-shirt. He came over and I showed him what I was about to get at. The difference in color temp between their display and my phone. He played dumb and that really ****** me off. He acted as if he had never heard anything about varying color temps on the screens. He said "Oh...do you mind waiting a few minutes and is it OK if I take your phone to someone out back?". "Sure, go ahead" I replied. So off he went with my phone.
    He reappeared a few minutes later claiming that he asked the manager about this and the manager compared his own phone with mine and that the MANAGER'S phone was even warmer than mine. I already knew that there was no chance I was going to get my phone replaced. I did'nt even really want it replaced, but I was being treated like a dummy by this guy and his manager. I then said to him "Well, in that case, Apple's quality control really *****. It's like saying that the factory that produced your orange t-shirt can't get the color straight from your t-shirt to that guy's t-shirt over there" as I pointed to another salesman a few feet away. The other salesman looked at me and smiled. He knew where I was coming from but of course couldn't get involved. My salesman replied, "Well the iPhone is made in different factories and there are also differences in the glass from factory to factory. I can set up an appointment at the Genius Bar for you if you like." Like that would do any good. There's no color temp setting on the phone. What good would that do?
    I knew the whole thing was pointless and it didn't really matter. Granted, it may have been cool to have a replacement with the bluer tone, but it was no big deal.
    What ticked me off the most was that I was treated like an idiot. The salesman wouldn't even acknowledge the issue. As if Apple had communicated to the staff not to acknowledge any problem issue with the iPhone.
    OK....it's a mass produced cell phone...made in China at that. So I guess QC is going to be pretty bad in areas like this. I'm just very suprised that Apple would be like that. It's one of the reasons I switched from PC's to Mac many years ago. I thought Apple cared a bit more about their clientel.
    So please Mr. Jobs and crew. Don't treat me like an idiot.

  • How do we let Apple know about the Apple ID Issue?

    Hi, there seems to be an issue (Apple's end)  with signing in to the Itunes store and the Mac App store. How do we let them know about the issue? Their service status shows all green lights so it seems they are not aware of the problem.... I don't know about you but I'm getting really frustrated.. !! PS It seems that my warranty has expired so I don't have direct access to their support ?! HEEEEEEEEELP! THAAAAAANX!!!!!
    Milan, Italy, March 11

    Hi valelorandi,
    I understand that you are seeing an issue with your connection to the iTunes Store and Mac App Store. I have an article for you that will help you address this issue, and it can be found below:
    Can't connect to the iTunes Store - Apple Support
    https://support.apple.com/en-us/HT201400
    Thanks for using the Apple Support Communities. Have a good one!
    -Braden

  • How to get all the columns displayed in pdf.

    If the ALV Display contains 25 columns.When i tried to give the print in PDF format.
    in the PDF it is displaying only 10 columns.Can you let me know how to display all the columns (i.e 25) in the pdf.

    Hi,
    Check the OSS Note 186603 which deals with how to handle Spool lists with width > 255 characters.
    Regards,
    Satish

  • Regions in columns display issue

    Good morning,
    In a previous application, I created a page with multiple display points with multiple regions. One of the display points contains two regions; one in column 1 and one in column 2. And the page displays as I expect. Similar to this:
    <body 1>
    Region 1 – column 1
    <body 2>
    Region 2 – column 1 Region 3 – column 2
    <body 3>
    Region 4 – column 1
    Region 5 – column 1
    I’m creating a subset of that application. Using “New page as copy of” to import the previous page. But when I execute the page, the regions are not displaying correctly. Region 4 is displaying to the right of Region 3, as if it was in <body 2> column 3.
    <body 1>
    Region 1 – column 1
    <body 2>
    Region 2 – column 1 Region 3 – column 2 <body 3> Region 4 – column 1
    Region 5 – column 1
    I’ve double checked both pages multiple times and I can find no differences. If I modify Region 2 to be in column 1 and the page displays as I would expect.
    <body 1>
    Region 1 – column 1
    <body 2>
    Region 2 – column 1
    Region 3 – column 1
    <body 3>
    Region 4 – column 1
    Region 5 – column 1
    Does anyone have any ideas what the problem is?
    Thanks
    Ray

    gillfir wrote:
    In a previous application, I created a page with multiple display points with multiple regions. One of the display points contains two regions; one in column 1 and one in column 2. And the page displays as I expect. Similar to this:
    <body 1>
    Region 1 – column 1
    <body 2>
    Region 2 – column 1 Region 3 – column 2
    <body 3>
    Region 4 – column 1
    Region 5 – column 1
    I’m creating a subset of that application. Using “New page as copy of” to import the previous page. But when I execute the page, the regions are not displaying correctly. Region 4 is displaying to the right of Region 3, as if it was in <body 2> column 3.
    <body 1>
    Region 1 – column 1
    <body 2>
    Region 2 – column 1 Region 3 – column 2 <body 3> Region 4 – column 1
    Region 5 – column 1
    I’ve double checked both pages multiple times and I can find no differences. If I modify Region 2 to be in column 1 and the page displays as I would expect.
    <body 1>
    Region 1 – column 1
    <body 2>
    Region 2 – column 1
    Region 3 – column 1
    <body 3>
    Region 4 – column 1
    Region 5 – column 1
    Does anyone have any ideas what the problem is?Not without a reproduction of the problem on apex.oracle.com, and/or information relevant to page layout:
    <li>Full APEX version
    <li>Full DB version and edition
    <li>Web server architecture (EPG, OHS or APEX listener)
    <li>Browser(s)/version(s) used
    <li>Theme
    <li>Template(s)
    <li>Region type(s)
    (For something this involved you really should produce a test case on apex.oracle.com rather than expecting others to try to reproduce it.)

  • Question about the Cinema Displays

    Hi,
    Until now, I've used one LCD display as my monitory for everything - two computers, my gaming consoles, etc.
    It's getting too old - and I want to replace it. Getting a Cinema display wouldn't be a problem in terms of using the computers on it, but I was curious:
    Is there a possible way I can connect either RCA cables or HD / Digital cables to the display?
    Either directly into it, or through an adapter, and so on.
    Thanks

    If you have no special need for a Cinema display specifically, it would be much simpler and possibly cheaper to get a brand like a Dell that has the multiple input ports, particularly the analog type you are interested in connecting. The Cinema displays are really meant to be driven by DVI only, and have no HDCP support for a direct digital video connection.
    I could be wrong about some of this; the fact that these adapters exist indicate that some DVI adaptation may be possible, but I'll have to leave the ultimate answer to someone who's tried it.

  • About the Column Groups

    hi, all ,i want to produce groups of columns, The header of a column group spans across all the columns it contains.
    e.g.
                 name
    firstname     lastname            age  header "Name" contains two sub columns with headers "First" and "Last" ,This is no problem,but the table contains anthor column "age" , I can't let header "age" align Center,The following is my code
       <af:table rows="#{bindings.StudentVVO.rangeSize}"
                        emptyText="#{bindings.StudentVVO.viewable ? 'No rows yet.' : 'Access Denied.'}"
                        var="row" value="#{bindings.StudentVVO.collectionModel}"
                        selectionState="#{bindings.StudentVVO.collectionModel.selectedRow}"
                        selectionListener="#{bindings.StudentVVO.collectionModel.makeCurrent}"
                        >
               <af:column headerText="name">
                  <af:column headerText="1">
                    <af:outputText value="#{row.firstName}"/>
                  </af:column>
                  <af:column headerText="2">
                    <af:outputText value="#{row.lastName}"/>
                  </af:column>
                </af:column>
              <af:column headerText="age"
                         inlineStyle="height:150.0pt; text-align:center;" >
                     <div>   
                    <af:outputText value="#{row.age}"/>
                    </div>
                  </af:column>
          </af:table>
             my JDeveloper version is 10.1.3.3 ,who can help me ,thanks very much!

    Null Null ( nice to have name indeed)
    Try this
    Set the field displaying this value as vertically variable and horizontally fixed. And ensure that the length of the field is good enough to display 10 characters.
    Good Luck
    Vij

Maybe you are looking for

  • End routine  not workind when DSO Activated

    I have code in End routine of the transformation to populate a date field (from sales header to  sales line item to have the assocaited date to populate for each line item ) to the DSO. The code works and displays data being populated in new data tab

  • Advice on breaking up Stacked Sequences in 6.1?

    I've dived right into an old but functional test system ~300 VI's. Flow and structure is pretty hard to follow and I'm thinking of breaking it up into state machines. Any ideas on how to approach a stacked sequence beast in 6.1? Flat sequence seems c

  • Error Security BEA-090870 The realm "myrealm" failed to be loaded:

    Hi, I am setting up Identity Manager on centos 4.7 with weblogic 10.3. I've followed "Installation and Configuration Guide for BEA WebLogic Server Release 9.1.0.pdf" document. After increasing the memory and setting up the java option, it required po

  • How to rename a file or folder.

    HI, I was thinking of some thing, but I need to know how to make java rename a file/folder like you do via dos. Hope this is clear. PS I had another post and I got the answer thanks for those who help, I lost the thing so couldn't reply(DUH'). So say

  • Attaching files

    If I attach a file and send the email via Entourage a client of mine (using Eudora on a PC Platform) is able to easily save the attachment. However, If I attach a file and send the email via Mail the client us unable to access or even see the attachm