Translation - Reduce spacing between label and value

Hi all,
I have translated the text in multi languages. I am not able to adjust the gap between Text and input field.
For example:
Now displaying :
1. Lang   'EN' ->  Customer : SAP         
2. Lang   'FR'  ->  Client:        SAP 
3. Lang   'DE' ->   kunde        SAP
I need to  display as:
1. Lang   'EN' ->  Customer : SAP         
2. Lang   'FR'  ->  Client: SAP 
3. Lang   'DE' ->   kunde: SAP
Concatenate could not be done as i have to display field label in bold.
So I want to reduce the gap between Field label and its content. Above example for english the gap is less but for other langauges gap or spacing is more. How to reduce the spacing?

Hi Harryibm ,
If you are simply outputting this information from data bound to the form the you may be able to use a floating field instead of a field and caption. You can just use a text element and then go to Insert->Floating Field while editing the text. You can then bind the floating field to the data connection as usual and the length of the text will vary depending on the content at runtime.
Let me know if this helps.
Ben.

Similar Messages

  • Phtmlb: space between Label and Field

    Hello,
    I am using <phtmlb:matrix> to arrange the fields next to one another on the view. For fields, <phtmlb:formLayoutInputField> is used in which case the label is taken automatically through binding to DDIC fields. At one particular row of matrix, it is required to break-up the cell in 3 more cells, so that I can display 3 fields adjacent to one another in the space of one cell. For this I am nesting one more matrix inside the outer matrix.
    Something like this...
    <phtmlb:matrix>
    <phtmlb:matrixCell row = "1"
    col = "1" />
    <phtmlb:formLayout>
    <phtmlb:formLayoutInputField>
    </phtmlb:formLayout>
    <phtmlb:matrixCell row = "2"
    col = "1" />
    <phtmlb:matrix>
    <phtmlb:formLayout>
    ...3 fields next to one another / 3 cells
    </phtmlb:formLayout>
    </phtmlb:matrix>
    </phtmlb:matrix>
    I am able to acheive the desired output of 3 fields next to one another, but facing the following problem.
    To get the inner matrix(3 fields) into effect, i need to close the <phtmlb:formLayout>.
    Now, the first row properly shows all the filds one below the other with proper spacing between the label and input output field.
    (Actually all the input_output fileds are placed at a distance of largest text/label in one formlayout).
    But when the second row starts, the spacing between label and field is no longer taken as per the first row in above case.
    Is it because since a new <phtmlb:fomlayout> is started , the spacing will be as per the elements in this new formlyout. If yes, How can I assure the same spacing between elements of two different formlayouts. I tried "fieldToLabelFactor" but since no. of fields in my page is too large, I can't afford to decide this factor for every <phtmlb:formLayout>.
    Or is there any better way to acheive the required output.
    Thanks ,
    Priti

    did u get the solution?

  • Controlling the space between label and Input field in SELECT-OPTION

    Hi ,
    I am using WDR_SELECT_OPTIONS as a used component in order to dynamically generate the Select option in my WD Component.
    Can any one tell me if there is a way to control the spacing between Label and Input field?  This is because rest of the UI elements are in one particular order but for this dynamically generated UI.
    Please help me.
    Thanks,
    Kavitha

    Hi Kavitha,
    The label is required for accessibility reasons. It's not possible to remove it and to use your own label from outside the component to point to it. Labels cannot point to targets across views (and hence acress component) boundaries.
    Best regards,
    Thomas

  • How do i have subsequent fields label and values move down the page dynamic

    how do i have subsequent fields label and values move down the page dynamicly...
    the field in question "can grow" and can become quite big...overlaping the content of the fileds below...how can i make the fields below this large field move dyanmically so there is no overlap?

    if it is the same field and it is set to can grow you just need to make sure you put space between by inserting a section below

  • Prompt - label and value

    is it possible to have a prompt having label and value
    for example,
    there are 3 choices in the prompt
    the displays (choice name) are Hundred, Thousand, Million
    the choices' values are 100 ,1000 ,1000000
    then we can set a presentation variable on the value (not the name)
    thanks

    OK. There are two parts...
    STEP ONE: Build the prompt
    1) Use any CHAR column from your dimension. In the fx, enter CASE WHEN 1=0 THEN tablename.columnname ELSE 'test' END.
    2) In the "Show" window enter CASE WHEN 1=0 THEN tablename.columnname ELSE 'HUNDRED' END UNION CASE WHEN 1=0 THEN tablename.columnname ELSE 'THOUSAND' END UNION WHEN 1=0 THEN tablename.columnname ELSE 'MILLION' END
    3) Set this prompt to a PV called pvTENS or whatever you want.
    STEP TWO: Configure your report
    1) Move another instance of the the column that contains the values 100, 1000, and 1000000 to your workspace and create a BINS. You can hide this column.
    2) In the filter, when the value is 100, call it HUNDRED, when it is 1000, call it THOUSAND and when it is 1000000, call it MILLION.
    3) Now do a filter on this column. Convert the filter to SQL and set the column equal to the PV.
    There you go.
    Mark as correct and close out this thread. Thanks.
    P.S. I see that now some threads are marked answered. Good. What I didn't notice is that you didn't indicate whether anyone helped you find that answer or even provided the answer for you. Don't just mark the thread answered; if it is answered, let us know what helped you and how you solved your problem. This way others may benefit as well. And show your appreciation by awarding points to those that helped you. You can do this by clicking in the upper right of the post that helped or was "correct." It is part of the ettiquette of using this forum. Later on as you become more proficient, come back here periodically and see if you can GIVE some advice to someone whom you can help.
    Edited by: David_T on Jul 27, 2009 10:48 AM

  • Difference Between Maps and Value Objects

    Hi Guys
    Can you please help me differentiate between HashMap and Value Object Design patterns. The trade offs of each and how to choose between the two patterns.

    It really depends upon what you really want to do:
    - If you want to transfer simple objects using their inherent structure, use your DomainObject itself or if you really need to, use a ValueObject
    - If you want to transfer a lot of similar or even different objects with unique keys, use some Map.
    Using a HashMap, you might need to consider:
    - The hashing can significantly increase your CPU load, if you are doing too much. For example you can define your hashValue() to return just the PrimaryKey, or it's hashValue() if it's an Object. And equals() needs only to compare the PrimaryKey as well. This semantic results in two objects being equal, if they have the same PrimaryKey. You may define an additional deepEquals() method, to see if an updated version contains changes to the stored version, if this is needed.
    - If you keep around references in a Map without clearing them, when you don't need them any more, the Map will increase in size. If you want to keep them, but only as memory alows, you might even consider using WeakReference<T>.
    Together with the rules provided by krunals, I hope this helped a bit...

  • Difference between binding and value

    Hi
    I am new to JSF
    Can you tell me what is the difference between binding and value attribute of a
    JSF component ?
    Many thanks.

    Hi,
    the binding is the component association to a managed bean (or backing bean). This allows you to manipulate the component in Java code stored in a managed bean.
    The value is what the actual component value is.
    Frank

  • Reduce spacing between pop-up menu links

    i have created a horizontal pop-up menu and the spacing
    between the links is huge.. is there a way to reduce the
    spacing.

    You have not provided any way to look at your code and it is very difficult to read you post without much punctuation and no line breaks but as far as ican tell what youare asking is why do links open in new tabs instead of in the same tab or window when you click on them is that correct? See what I mean, kind of difficult to read isn't it?
    If I understood you correctly, you probably have a target specified in the link tag. Just remove it.
    That is, change:
    <a href="YourLinkedPage.html" tareget="_blank">
    to:
    <a href="YourLinkedPage.html">

  • Spacing between textfield and text

    Anyone know how to set spacing between the text and border of a textfield?
    The docs say to use
    textfield.setMargin(new Insets(top, left, bottom, right));
    but that doesn't do anything.
    Thanks a lot for suggestions.

    The problem is that your border isn't going to use the margin of the text field (since it's not specialised for text fields). You've got a number of options:
    1) use the default border
    2) use a compound border with the default border inside
    3) write your own border that incorporates the text field's margin
    4) don't bother setting the margin and simply add a corresponding EmptyBorder into your compound border instead
    Option 4 is probably the quickest for you:
    textField.setBorder(new CompoundBorder(SOLID_BORDER, new EmptyBorder(10, 10, 10, 10)));Hope this helps.

  • Diff between check and value

    Hi experts,
                 Please tell me differance between check table and value table.
    Thanks & Regards
    Ahammad

    check table is validation at field level.
    value table is at domain level.
    Value table is defined at the domain level and is used to provide F4 help for all the fields which refer to that domain.
    Check table is defined against a field in SE11 if you want the values in that field to be checked against a list of valid values. For e.g. if you are using the field matnr in a table you could define MARA as the check table.
    Also while defining a check table SAP proposes the value table as check table by default. Referring to the previous example if you tried to define a check table for the matnr field SAP would propose MARA as the check table.
    1. what is the purpose / use ?
    -- so that the user can select values
    from some master table , for that field !!!!
    2. This is done by
    CHECK TABLE (foreign key concept)
    (and not value table)
    3. When we create a check table for a field,
    then
    some DEFAULT table is PROPOSED
    4. that DEFAULT table is nothing
    but PICKED up from the domain of that field,
    and shown from the value of VALUE TABLE.
    CHECK TABLE -it is a parent table.
    for example..
    i have two tables ZTAB1 and ZTAB2.
    I have one common field in both the tables,i can make any ztable to be the check table .If i make Ztab1 to be the check table then when i have to make an entry in ztab2 i will check whether ztab1 is having that value or not..
    its also field level checking..
    Valuetable-It is nothing but default check table.
    one parent can have n number of child tables.For example
    For ztable we have zchild1 and zchild2 tables r there.
    Its domain level checking..When zchild2 uses the same domain as used by zchild1 then the system automatically generates a popup saying a check table already exists would u want to maintain it.
    go to domain and then press the value tab u can see the valuetable at the end...
    Please refer the links below,
    d/r b/n check and value table?
    wjhat is the exct difference between check table and value table
    what is the check table and value table
    check table and value table
    Re: wjhat is the exct difference between check table and value table
    http://www.sap-img.com/abap/difference-between-a-check-table-and-a-value-table.htm
    regards,
    srinivas
    <b>*reward for useful answers*</b>

  • Reduce spacing between top navigation items.

    My top navigation is a bit too wide for most screens.  Is there a way, via CSS, to ever-so-slightly shrink the spacing between top navigation items?
    Thanks!

    Mike, you are a beautiful human being.  Thank you!  This is precisely what I was looking for.
    I'd love your advice on this one, if you might:
    http://social.technet.microsoft.com/Forums/en-US/sharepointgeneral/thread/29389876-3d83-42ac-857e-c96e588fa4e0/#9c5701d9-edfa-4673-bad0-0ba254c373fc
    Thanks again!

  • How to decrease the gap between label and input field.. pls respnd

    hi friends,
    I am facing this problem since long time and couldnt get any solution...
    pls respnd,
    i need to decrease the gap between my input field and label.. its very much gap there..
    thanks in very advacne,
    niraja

    Hi WD ABAP,
    i am doing the same, created tcontainer, and just binded my node. i given matrix layout. But i dont know why it is coming like that.
    Also WDABAP, could you pls reply me to the other thread,
    about when im trying to read the dropdown value of subnode, the get_static_attribute or create_element method is going into my supplyfunction.
    supplyfunction - my code is to fill the dropdown. and due to this supply function triggering,
    my get_static_att or create_element is not reruting currenct row dropdown value.
    what am i doing wrong.. can u pls pls.. its kicking me. i have spent my whole weekend on this, but couldnt solve this.
    plsfnds :(((((
    Niraja

  • Need to minimize spacing between text and footnotes

    I'm editing a style manual (Librarian self-taught InDesign newbie!) and need to lesson the space between the end of the text and footnote line (So I can get all the material on one page.) I'm using a textbox with the footnote feature. I know that one of the Footnote Options should do it, but when I change the First Baseline Offset options it messes up the leading of the footnotes as well (which need to appear single spaced. Any advice would be greatly appreciated. Thanks!

    That was it Ravi!!! Thank you so much!!!! I'm doing my happy dance

  • Help with adjusting spacing between thumbnails and image in slideshow

    How can I adjust the spacing on the slideshow page?
    Customer wants more space between the thumbnails at the top and the image(s). Can I move the image & navigation tool or adjust the image size relative to the thumbnails and navigation tool at the bottom?
    Although I'm familiar with html source code and working on simple stuff at that level, I have yet to locate it in iWeb and make any adjustments.
    If anyone has step-wise instructions, I'd appreciate it. Thanks much.

    Although I'm familiar with html source code and working on simple stuff at that level, I have yet to locate it in iWeb and make any adjustments.
    iweb photos page's elements: header controls, detail view and footer controls are generated by ajax widgets, so there is nothing to in page source for you to find.
    If anyone has step-wise instructions, I'd appreciate it. Thanks much.
    that would be the instruction on how ajax widgets build photos page... there is none.
    you can send feedback to apple and ask for details on iweb widgets and tools to build widgets.
    that said, it can be done... check out with safari: http://temp.cyclosaurus.com/DetailView_Rearranged/Photos.html
    code is linked to my example, i don't do tutorial.

  • How To Reduce Space Between Text and Image

    I am trying to wrap text around an irregular shape in InDesign CS4. I used the pen tool to mark the outline of the image, cut the image, then selected the pen outline and pasted the image into the outline. With the TextWrap settings set to what is in this dialog box, text wrapping appears fine on the right-hand side, but has too much space on the left-hand side.
    If I try to reduce the space even further, it just affects the right-hand side of the image, not the left:
    It is doing the same thing for all of my irregularly-shaped images where I try to wrap text. How can I reduce the whitespace to the left of the image?

    Actually just noticed your text is already justified apologies.
    Couple more things you can try to improve this:
    From Control panel menu choose Justification and try using the following settings:
    Minimum
    Desired
    Maximum
    Word Spacing
    80%
    100%
    120%
    Letter Spacing
    -2%
    0%
    2%
    Glyph Scaling
    98%
    100%
    102%
    Also check that Single Word Justification is set to Full Justify.
    Cari

Maybe you are looking for