Can we have a tooltip text, formatted on 2 and more rows

Hello,
I am interested if it is possible (in List GUIBB) to make a tooltip(on a list cell), containing additional description, formatted on 2 and more rows like bulleted list.
As I can see the "tooltip" field in the fields description(parameter structure FPMGB_S_LISTFIELD_DESCR of below method) is of type char(100), but I can also assign "tooltip_ref" in method if_fpm_guibb_list~get_definition.
I tried to insert some special symbol like "\n" but it was rendered exactly.

I solved the problem already by using the special character  constant cl_abap_char_utilities=>newline for new-line-segmenting the tooltip text on lines.
(In List GUIBB)I have added a technical field to the field catalog in method IF_FPM_GUIBB_LISTGET_DEFINITION and then in method IF_FPM_GUIBB_LISTGET_DATA assigned the field "tooltip_ref" (thus got limitation of 512 chars instead of "tooltip", which is limited at only 100 chars) of the field description structure to it.

Similar Messages

  • How can I have a standard text block appear on the last page of my documents?

    How can I have a standard text block appear on the last page of my documents without having to type it in all the time? I have a terms statement with a line for a customer’s signature which I want on the last page of my invoices and right now I have to type it in each time or cut and paste it from a previous invoice. I already have a Master Page that includes the customer information and my company information at the top of each page and I am using data merge to fill each page with the items ordered and their pictures etc. I would just like to have this standard terms block automatically show up on the last page after the last item in the data merge.
    Thank you all in advance for your help.

    Thank you Peter. This works. I have the text block now at the bottom of a second master page which I apply to the last page. For aesthetics I can modify the position of the text block in the new master page to bring it up from the bottom under the last item ordered when there is less than 4 items on the page. (my data merge fits up to 4 items with their images on a page).  If the last page is full I’ll insert a final page using the second master and also bring it up to the top of the page.

  • I am unable to delete whole texts from left-swipe. i click delete and they dissappear. But then i can't send or recieve texts. i reboot phone and deleted message reappear. i've synced, backup, everything. Help!

    I am unable to delete whole texts from left-swipe. i click delete and they dissappear. But then i can't send or recieve texts. i reboot phone and deleted message reappear, but i am able to continue send/recieving texts.. i've synced, backup, everything. Help! I am doing this beacuse in my space on my phone my doucments and data are taking up 9GB of space, and i don't know why other than in my phone it says messages are taking up 8GB or so. I am running ios 7.0. I have synced my phone with itunes, backed up, reboots after deleting the texts, they never vanish, i have even restored from itunes and restored from a backup that didn't include the texts after i deleted them.

    actually better to reset your phone and reinstall the latest firmware again after that restore your back up it should be ok

  • If I purchase Adobe Creative Cloud for student, can I have the programmes on both my laptop and desktop for the same price?

    If I purchase Adobe Creative Cloud for student, can I have the programmes on both my laptop and desktop for the same price?

    Cloud License allows 2 activations http://www.adobe.com/legal/licenses-terms.html
    -Install on a 2nd computer http://forums.adobe.com/thread/1452292?tstart=0
    -Windows or Mac does not matter... 2 on the same operating system, or 1 on each

  • Can you have two seperate acounts on one MAC and if so how do you do it?

    Can you have two seperate acounts on one MAC and if so how do you do it?

    Look at Method One in this document:  How to use multiple iPods, iPads, or iPhones with one computer, http://support.apple.com/kb/HT1495

  • Hello, I have two questions on time capsule  I can only have it on my external hd files and free up my internal memory to my mac  I can use an external hard drive, in my case a lacie rugged as shared memory for my two computers

    Hello, I have two questions on time capsule  I can only have it on my external hd files and free up my internal memory to my mac  I can use an external hard drive, in my case a lacie rugged as shared memory for my two computers

    I have a mackbook pro and an iMac if I buy a time capsule 2tb airport, I can use it with time machine and what would be the best way to use it.
    There is no particular setup required for TM.. both computers will create their own backup sparsebundle which is like a virtual disk.. Pondini explains the whole thing if you read the reference I gave you.
    and how to use time capsule airport whit other external hd to use my old lacie airport with the new time capsule
    Up to you.. you can plug the external drive into the TC and enjoy really slow file transfers or you can plug it into your computer and use it as external drive.. which is faster than the TC.. and TM can include it in the backup.
    Again everything is explained in the reference.. you are not reading it.

  • How can I have the pricing conditions at the item and header level of the d

    How can I have the pricing conditions at the item and header level of the delivery? There exist "condition" tabs both the header and the item level of the delivery but the contents of the tabs are empty. I'll be happy if you can help me. Thanks in advance....

    Hi
    If you want to have the pricing procedure at delivery level then you need to assign a pricing procedure at delivery level also
    Just go through the path to maintain the pricing procedure at delivery level.
    IMG -> Logistics execution -> Shipping -> Basic Shipping Functions -> Pricing -> Pricing Procedure. for Delivery.
    But can you be more clear if the above one is not your query ?
    Regards
    Srinath

  • Can i have same ORACLE_BASE directory location for Grid and RDBMS home ?

    Grid Version:11.2.0.3
    OS : RHEL 5.8
    Can I have same ORACLE_BASE location for Grid (CRS) and RDBMS software Homes ?

    The OFA guideline for ORACLE_BASE is /u01/app/<owner>.  If you are using the same owner for all software (let's call him "oracle") then a simple installation will have one base /u01/app/oracle.  This base will be shared by all installations of Grid and RDBMS software.  But, if you use two separate owners (let's call them grid and oracle) then you will have two separate ORACLE_BASE locations /u01/app/oracle and /u01/app/grid.  I always use two separate owners, but I know many people who only use the oracle account and that is fine too.
    Oracle allows every ORACLE_HOME to have a unique base.  There is no requirement to install more than one ORACLE_HOME under a given ORACLE_BASE location.  This is just an extension of what I said above, that the ORACLE_HOMEs for Grid and RDBMS can be stored under separate ORACLE_BASEs. 
    If you are using RAC then I strongly suggest you read chapter 1 of the Oracle Real Application Clusters Installation Guide.  Read section "Overview of Oracle Base and Oracle Home Directories". The rules for ORACLE_BASE are as I noted above, but the rules for ORACLE_HOME change: the Grid ORACLE_HOME is not to be a sub-directory of the Grid ORACLE_BASE as it is when not using RAC.  So, with RAC your directory structure might look more like this:
    su -
    umask 0022
    mkdir -p /u01/app/oraInventory
    # Grid Base
    mkdir -p /u01/app/grid
    # Grid Home
    mkdir -p /u01/app/12.1.0.1/grid
    # Oracle  Base
    mkdir -p /u01/app/oracle
    # Oracle Home
    mkdir -p /u01/app/oracle/product/12.1.0.1/db_1
    # Ownership for all of the above...
    chown grid:oinstall /u01/app/grid
    chown grid:oinstall /u01/app/oraInventory
    chown grid:oinstall /u01/app/12.1.0.1
    chown grid:oinstall /u01/app/12.1.0.1/db_1
    chown oracle:oinstall /u01/app/oracle
    My examples show 12.1.0.1 but it's the same for 11.2.0.3.
    There's no requirement to create the home directories prior to running the OUI.  It can create them for you.  I just shown these commands to help you understand the big picture.
    The OUI will pop-up a warning if the Grid user's ORACLE_HOME is outside of his ORACLE_BASE as shown in the above mkdir commands, which is funny since it is the recommended setup in the Oracle RAC documentation.  I submitted a bug report several years ago.  To be consistent across all of my RAC and non-RAC servers I follow the more strict rules of RAC and use the mkdir commands shown above.

  • Hi All, can i have some production support issues with rootcasue and resolution for SAP TM?

    Hi All, can i have some production support issues with rootcasue and resolution for SAP TM?
    Thanks,
    Sreenivas

    Hi Sreenivas,
    I would recommend that you read the Rules of Engagement and other documents in the Getting Started link (top right) before posting anymore.  Your Discussion will most likely get reported as non-specific and get removed.  If you have a specific problem with TM, please post it in a new thread with error messages, version and SPs installed, and how the error occurs and what you are trying to get TM to do.
    There are a lot of resources available in the TM Overview page which can help, so start there and maybe also look at some of the MKS (Monday Knowledge Session) recordings which should also be listed.  There are also a lot of experienced people who can help resolve issues your TM installation, but you need to provide enough information on the problems you are having.  If you are just looking for information on past problems, do a Search or simply browse through past Discussions which are marked with a green Check (Correct Answer).
    Regards, Mike
    SAP Customer Experience Group - CEG (and a Moderator)

  • Can I have RAC 1st node in RHEL 5 and 2nd node in RHEL 4?

    Can I have my RAC 1st node in RHEL5 and 2nd node in RHEL 4?
    I am just checking if there is any possibility like that.
    Thanks,
    Mahi

    Even if it works by accident, it wouldn't be supported.

  • Can I have 2 itues account, one in switzerland and one in uk

    can i have 2 itues account, one in switzerland and one in uk

    Sure.
    You would need a credit card issued in each country with a valid billing address in each country.
    In order to use the account of a country you would have to be physically located inside the borders of that country.

  • Can you have different spine text colour from main title in iPhoto '11?

    I've created an iPhoto book which has a full bleed image on the front cover, white font for the main title and the whole book background is white.  When I preview the book (using ctrl + click > Preview book), I see no title on the spine as both the font and background are white....  I can copy the text from the spine and see that it is there, just not visible as it's the same colour as the background.
    So is there anyway I can set the spine text to be black with the front cover font remaining white?
    Thanks.

    Natalie,
    You can create several master pages within one doc. There you can change the margins and lots of other things. Then you can apply these masters to your "normal" pages.
    For the cover, I would advice to leave it apart, since you created a spine, but if your book is only going to be 20 pages the spine can be omitted. In this case, first page of your doc is the cover and the last page is the back.
    It seems to me it's a saddle stiched booklet, so if "print ready" means imposed, you'll have to create a booklet. Make sure the complete book has 20 pages because if you print on both sides of the paper (let's say you made the doc on A4) the imposed booklet will be printed on A3 format (double A4).
    gert

  • How can I have a checkbox that a user checks and populates a field with read only text, then if another checkbox is checked it will allow user text input

    Hi
    How can I have a check box that a user checks and populates a field with read only text, then if another check box is checked it will allow user text input into that same field, her is my javascript
    var a ="Not Applicable"
    if (this.getField("Do").value == "Yes")
    a=""
    if (this.getField("DoNot").value =="Yes")
    a=a + ""
    event.value=a
    say if the "Do" cb is checked, Not Applicable would populate the text field, and if the "DoNot" cb is checked it would allow user input into the same text field, the javascript I have will not allow user input,
    thanks for any help I am new to javascript

    Are these fields mutually exclusive?

  • Can I have one Apple ID for personal (music) and one for work (syncing contacts and mail)  on the save device

    Between my husband and I we have 6 devices and we are only allowed to share our Apple ID across 5.  Some of the devices are for music and outlook and some are just for music - can I have a separate Apple ID for my mail and contacts.  ie. Can you use two different Apple ID's on the same device?

    Oh maybe ipads and iphones aren't counted in the five

  • How can I have users change textures in acrobat 3d and Reader question tia sal2

    I'm trying to have users in Acrobat reader change textures of a box which I made in acrobat 3d
    how can I do this?
    Example
    I made three textures for a box and I would like the user to have the ability to change the textures if they choose. How can I do this? Any examples?
    Can I have a user select the textures or the layers from a photoshop file in Acrobat 3d?
    Tia sal2

    Yo ratboy,
    You can do this. In order to map the images, they must be attached as a 3D resource. (There is a free plugin for this; search the forum for "Attach3DResource.api"). Once the images are attached, you can use the 3D Javascript API to map them to the meshes you desire.
    For one doc, I attached 25 images in this manner. I then used the script below to create a bunch of empty meshes, and then apply the images to said meshes.
    Hope this helps!
    //3D javascript ========================================
    //create 25 procedural meshes ======
    var leftEdge = -180;
    var horizontalOffset = leftEdge;
    var verticalOffset = 0;
    var myMesh = new Array();
    var myVector = new Array();
    for ( i=0; i<25; i++ ) { myMesh[i] = scene.createSquareMesh(64, 48, "myMesh" + i); myVector[i] = new Vector3( horizontalOffset, verticalOffset, 0 ); myMesh[i].transform.translateInPlace(myVector[i]); horizontalOffset += 74; if ( horizontalOffset > 180 )
    horizontalOffset = leftEdge;
    verticalOffset += 58;
    //create image array and resource objs ============
    var myImageResources = new Array();
    var myImageFiles = new Array("8d91.jpg",
    "ad2e.jpg",
    "barnpond.jpg",
    "Beach01.jpg",
    "Beach04.jpg",
    "Beach05.jpg",
    "Beach06.jpg",
    "Beach13.jpg",
    "bike trailer.jpg",
    "cobra.jpg",
    "cr80xr200.jpg",
    "craigs_place.jpg",
    "Dandrea.jpg",
    "dirtbike.jpg",
    "e027.jpg",
    "f5b5.jpg",
    "f613.jpg",
    "halfdome.jpg",
    "Iceberg.jpg",
    "island.jpg",
    "kx100_gb.jpg",
    "maui_horanhero.jpg",
    "norcal_ocean.jpg",
    "sierraLake.jpg",
    "Smokey Light.jpg",
    "test.txt");
    //create resource objs
    for ( i=0; i<25; i++ ) { myImageResources[i] = new Resource("pdf://" + myImageFiles[i]); }
    //load images on meshes with handler ============
    var myImageObjs = new Array();
    var myImageMats = new Array();
    myRenderer = new RenderEventHandler();
    myRenderer.onEvent = function(renderEvent)
    for ( i=0; i<25; i++ ) { //create image from resource myImageObjs[i] = new Image(myImageResources[i]); console.println("Image = " + i);
    //add image to model
    myImageMats[i] = myMesh[i].material;
    myImageMats[i].diffuseTexture.setImage(myImageObjs[i]);
    //remove handler
    runtime.removeEventHandler(myRenderer);
    runtime.addEventHandler(myRenderer);
    //cause a recalculation of the scenegraph.
    scene.update();
    console.println("Call scene.update()");
    console.println("Created 25 Square meshes: (64, 48, 'myMeshN')");

Maybe you are looking for

  • Installed apps from Macbook Pro Tiger disk to a Powerbook G4

    I bought a used powerbook G4 that came with Tiger installed, but no tiger disk included in the sale (so i'll have to buy my own copy of it if i want to reinstall anything). Everything on the machine worked perfect... until one day.... okay here's the

  • Printing output for invoice.

    Hi All, We want to trigger an output for the invoice for SK language. Currently, the output type works for leanguege EN. but its not working for SK language. The script that works is same for both the languages. Also, we are not able to add a output

  • Authentication Problem - Specify the correect username or password

    Hello dear software developers. I'm a newbie on WebCenter Portal. After installation parts, i try to run my first application according to this tutorial -> http://www.youtube.com/watch?v=Gc1Zdikx4sc Time of 4.54 in tutorial i entered user name and th

  • HELP!!! Does LabView support a thin client or dumb terminal (diskless workstation) type of deployment

    Hello, Does LabView support a thin client or dumb terminal (diskless workstation) type of deployment? I have a need to run LabView on some sort of dumb terminal / diskless workstation.  If someone has deployed LabView in this matter, please provide m

  • Dynamically run multiple VIs and return values

    Dear Experts: I would like to dynamically run 8 VIs from a main VI that esentially do the exact same thing.  The only thing that is different is the data passed to the VIs and the data returned.  The VI has a loop that can possible run for ever and e