How to do alignment

Hi all,
   my problem is i am doing editable Alva .In that top of page these fields is there .
  Report Id : YIBRK_BACON_VALIDATION
  User Name :KPALETI
  Date and Time : 28 . 01 . 2007 -- 09 : 36 . 16
  Transaction Type :
  For Period : .
  GIN Number : 00000000
  Country Grouping :
  Status :
  Plan Type :
  Plan :
i want to do alignment .
    i mean exact come colons is same  ,like this type .
  Report Id             : YIBRK_BACO_VALIDATION
  User Name          : KPALETI
  Date and Time     : 28 . 01 . 2007 -- 09 : 36 . 16
  Transaction Type :
  For Period           : .
  GIN Number        : 00000000
  Country Grouping :
  Status                 :
  Plan Type            :
  Plan                    :
it's urgent plz .
Regards,
krishna.

Hi paleti,
you want output "28 . 01 . 2007 -- 09 : 36 . 16 " dots and colons with leading and trailing space.
OK, why not?
data:
  lv_date_txt type text40,
  lv_time_txt type text40,
  lv_date_time type string.
write:
  sy-datum to lv_date_txt,
  sy-uzeit to lv_time_txt.
replace ':' with '.' in section offset 5 of lv_time_txt. "Because you want "36 . 16"
concatenate
'Date and Time:'
  lv_date_txt
  ` -- ` "<b>Note: ` not ' will protect the spaces!!</b>
  lv_time_txt
into lv_date_time.
replace all occurrences of '.' with ' . ' in lv_date_time,
replace all occurrences of ':' with ' . ' in lv_date_time.
write: /  lv_date_time.
This was just the 'worst' part with the date and time formatting. The rest you can do in the same way: Just use the special string delimiter ` (french accent grave). This will protect leading and trailing spaces from deletion with CONCATENATE.
I don't what keyboard layout you use. That's why I can't tell you where to find this ` character on your keyboard. Check your <a href="http://en.wikipedia.org/wiki/Keyboard_layout">Keyboard layout</a>. On US keyboards, it is the top left key above the TAB key.
Hope this helps you to do the rest.
Regards,
Clemens

Similar Messages

  • How to right align a read only numeric field in a panel form layout

    Hi, does anyone know how to right align a read only numeric field in a panel form layout? I am using: Style Class = AFFieldNumberMarker, but it only seems to work if the field is disabled. Disabling the field gives it a difference appearance that does not look right on our forms. These are calculated fields, which cannot be modified, so read only is necessary.
    I have looked online for some answers, and it seems that others are having similar issues.
    I have tried different combinations for the properties, but so far I cannot get it to work.
    Thanks
    Judy
    I am using JDEV 11.1.1.5

    Sorry for the delay in my response. Here is the code
    <af:inputText value="#{bindings.TotalAirlineCostEst.inputValue}"
    label="#{bindings.TotalAirlineCostEst.hints.label}"
    required="#{bindings.TotalAirlineCostEst.hints.mandatory}"
    columns="#{bindings.TotalAirlineCostEst.hints.displayWidth}"
    maximumLength="#{bindings.TotalAirlineCostEst.hints.precision}"
    shortDesc="#{bindings.TotalAirlineCostEst.hints.tooltip}"
    id="it20" readOnly="false"
    disabled="true"
    styleClass="AFFieldNumberMarker">
    <f:validator binding="#{bindings.TotalAirlineCostEst.validator}"/>
    <af:convertNumber groupingUsed="true"
    pattern="#{bindings.TotalAirlineCostEst.format}"
    type="number"
    maxFractionDigits="0"/>
    </af:inputText>
    thank you,
    Judy

  • How can I align text in Acrobat 8.1 Professional?

    Okay this is quite silly, but seriously how can I align text in adobe acrobat? I could not find a way other than creating a new document file which allows me to use alignment options automatically (example below), however does not allow me that when I reopen the same file (alignment and text options just dissapear on the bars, funny). Help anyone please? =/
    http://img152.imageshack.us/my.php?image=examplemo2.jpg

    Not that silly; but you ideally shouldn't be trying. Although there are some rudimentary (and sometimes unpredictable) editing tools in Acrobat, (I presume you are trying with the TouchUp Object tool as well as the TouchUp Text ?) much better to get it right in the source application and think of the pdf as what it basically is...a print.
    For whatever reason, v5 could edit text positioning rather more easily than the later versions.

  • How to use Align function in Flexible UI template

    Hi HR experts,
    how to use Align function in Flexible UI Perforformance management ( not Cascading Goals) do we need any configuration setup, this Align function we are able to see in Predefine Performance Managment template , but not in Flexible UI
    any help
    Regards
    Vijai

    >
    A. Jimenez wrote:
    > Hi Ana,
    >
    > Do you know if the "Obsolete" function also apply only to Predefined UI?
    >
    > Thanks in advance.
    obsolete goals showing up in it's own tab is by default only avaialbe in predefined UI.
    however, the value determinations could be built in flexible so that obsolete goals show up in one criteria group for goals, and active goals appear only in the other criteria group goals. 
    when the cascaded goal is made obsolete it is noted in the description for flexible, but it will not appear anywhere separately.  You could also allow for "deletion of an element" in the flexible template.

  • How to set alignment in a TextField?

    I need to set allignment of the text in a TextField to right. There is no such under TextField.
    Anybody knows how to set alignment in a textfield in javaFX 2.0 ?
    Thanks

    It may be worth filing a feature request jira to get platform native support for this.
    You might think that textField.setStyle("-fx-text-alignment: right;") would work, but it does not.
    I guess that the -fx-text-alignment css property only right aligns multi-line text, not text within a text field.
    The following code uses binding to keep Text in a TextField right aligned.
    The translations place the text visually right and keyboard editing is OK.
    Mouse transparency is enabled because mouse based selections still act as though the text is left aligned.
    So it's not a complete solution.
    public void start(final Stage stage) throws Exception {
      // create a text field.
      final TextField textField = new TextField("This is right aligned text");
      textField.setStyle("-fx-text-alignment: right;");
      textField.setMinWidth(400);
      textField.setMouseTransparent(true);
      // layout the scene.
      final VBox layout = new VBox();
      layout.setStyle("-fx-background-color: cornsilk; -fx-padding: 10; -fx-alignment: center;");
      layout.getChildren().addAll(textField);
      Scene scene = new Scene(layout);
      stage.setScene(scene);
      stage.show();
      // keep the text in the textbox right aligned.
      final Text text = (Text) textField.lookup("Text");
      rightAlign(text, textField);
      textField.textProperty().addListener(new InvalidationListener() {
        @Override public void invalidated(Observable observable) {
          rightAlign(text, textField);
    private void rightAlign(Text text, TextField textField) {
      text.getParent().translateXProperty().bind(textField.widthProperty().subtract(text.xProperty().multiply(2)).subtract(text.getLayoutBounds().getWidth()));
    }

  • Photoshop Elements 7 - How do I align/center a layer?

    I'm using Photoshop Elements 7. How do I align/center a layer vertically or horizontally on a page?

    Are you adding objects to a blank layer? If so bring up the ruler then drag and drop guides to your center and any additional points. You can also set so that objects automatically snap to the guide lines.
    If you want to align visually similar images on top of each other, there is no auto-align like in CS5. The only work around is to lower the opacity of the top layer and then use the move tool to align by eye.
     

  • Illustrator CS6 - How do I align objects into a grid?

    I am a fan of pixel art and the Live Paint Bucket tool in Illustrator CS6 (I don't really like using Photoshop for this because it is more limited in this field). I have made a thing in pixel art, but I noticed that things weren't exactly lined up. See the picture:
    It has messed up the paint bucket tool a lot. Can I align these so that they make a grid? I have tried the Align tools, but I end up with stuff like this:
    Horizontal Distribute Center
    Can I do this (without changing the document grid)? I have tried this script, but I get this:
    Note: My grid is not in proper layer order.

    easyaspi,
    How about using Align to Pixel Grid?
    You may select everything and tick Align to Pixel Grid in the Transform palette, and also tick Align new Objects to pixels Grid in the Options flyout.
    You may also use a document type with that as default (RGB for web and the like).

  • PS Elements 3:  How do you align layers?

    How do you align the edges of layers? (Align top, left side, right side, bottom, etc.) I can't find any way to do this.
    I'm running Mac OS 10.3.9 and PS Elements 3.0.

    The newly released Hidden Power Free tools will work for alignment in Elements 3 -- though they were made for Elements 4. You can get them in several places, including Adobe Studio ( http://share.studio.adobe.com/axBrowseProduct.asp?p=2 search for Hidden Power using the FIND field on the left of the page) and even download.com ( http://www.download.com/Free-Hidden-Power-for-Elements-4/3000-2197_4-10573821.html ). These tools are supported. If there is any interest, I can remake the set for elements 3 users. The tools that will not work are my layer-based channel mixer and component tools...Adobe changed layer merge functions in Elements between versions.
    Please contact me if you are interested in the tools specifically for Elements3...I would be glad to provide them and make them available.

  • How could I align all divs at once in dreamweaver?

    Hi,
    How could I align all divs at once in dreamweaver? I have more than 50 divs, and I want to change the alignments for them all at once, let we say "center" how could I do that especially I'm using the fluid grids layout.
    Thanks.

    Well, I'm doing something like this now, so I'll take a shot at it, and then we can wait for expert comments.
    <head>
    <style>
    .manydivs {
        background-color:black;
        margin-top:10px;
        margin-left:auto;
        margin-right:auto;
        margin-bottom:10px;
        border:1px solid black;}
    </style>
    </head>
    <body>
    <div class="manydivs">Yoyoyo</div>
    <div class="manydivs">Yoyoyo</div>
    <div class="manydivs">Yoyoyo</div>
    <div class="manydivs">Yoyoyo</div>
    <div class="manydivs">Yoyoyo</div>
    </body>
    Just by changing the style section, all of them will change.
    You can assign other sub-behaviors with other methods.

  • How to right align text in JTextArea

    Can u plz tell me how to right align text in JTextArea

    what do you mean by align text in java you mean you have a default text that align in the center is it?
    can you please explain ur question clearly
    Thanks

  • How can I align a JMenuBar at right ?

    Hello,
    the question is very simple : How can I align a JMenuBar at right ?

    So can you try this ?
    import javax.swing.*;
    public class MenuBarDroite extends JFrame
    public MenuBarDroite()
    super();
    setSize(400,300);
    JMenuBar menu = new JMenuBar();
    menu.add(Box.createHorizontalGlue());
    JMenuItem menuItem1 = new JMenuItem("");
    JMenuItem menuItem2 = new JMenuItem("Menu 2");
    JMenuItem menuItem3 = new JMenuItem("Menu 3");
    JMenuItem menuItem4 = new JMenuItem("Menu 4");
    menu.add(menuItem1);
    menu.add(menuItem2);
    menu.add(menuItem3);
    menu.add(menuItem4);
    setJMenuBar(menu);
    public static void main(String argv[]) throws Exception
    MenuBarDroite m = new MenuBarDroite();
    m.setVisible(true);

  • How do I align photos in a slideshow?

    Hello,
    I have been trying to find out how to align photos in a slideshow so that they don't "jump around" in the page, when they have different formats. Unfortunately I just read this discussion and learned that it isn't possible.
    http://forums.adobe.com/message/6071838
    But Iguiva then writes: "Now I only can do it manually, one by one..."
    If I can't controll exactly where the photo is shown, I don't see that I can use Muse.
    So here is my question: How do I do it manually? 
    Thanks,
    Tine

    Hi Tine,
    You can go to the Hero Image level in the Slideshow and then double click the Hero Image.
    That would give you access to the actual Image (you will see the Control Strip left corner reads "Image" rather than "Hero Image").
    Once at that level you can manipulate and place your image inside the Hero Image container as you see fit and it will keep the position you set.
    Hope that helps.
    Cheers,
    Vikas

  • How can I align multiple titles in Premiere Pro?

    We are working on a video (obviously) and we have a bullet list that we'd like to come up as the speaker is naming off specific items. So far we have created a separate title for each bullet point, so that we can control when the bullets fade in. The issue we're having is that we have to eyeball the alignment right now and it's not always accurate. So i'm looking for some help. How can I select multiple titles in the timeline and right align them - OR - is there a way to have all of these bullet points in one title and still maintain control of when they fade in and out?

    This technique will only work with current versions of PPro - it looks harder to do than it actually is:
    Create the title with all the bullet points, aligned as you wish, in the Title Tool.
    Exit the title tool, the title you just created will appear in your project.
    Click on the title to select it (if it is not already selected) and then go to the menu Edit > Duplicate.
    Repeat the duplication process to make as many copies as number of bullet points you want to transition on.
    Place the first copy of the title where you want the Title to appear in your video.
    Double click on the clip of the title on the timeline to re-open the Title Tool. Delete all the text except the first line.
    Now place the second copy where you want it to appear in the video.
    Double click on it to re-enter the Title Tool, and delete all the text except the first two lines.
    Repeat this process for as many bullet points as you have, delating one fewer bullet point each time. You can add transitions at the cut points between the titles (such as a dissolve) to make the next bullet point appear as you wish.
    If you try to to this using an early version of PPro this will not work as the titles and its copies are linked - so if you change one of the copies, it changes all the other titles. Fortunately this has been fixed in the current version.
    MtD

  • How to keep alignment in Windows LARGE and SMALL fonts

    For years, I fought with LabVIEW, trying to keep things looking decent in both Windows LARGE and SMALL font sizes.
    By this, I mean Settings - Control Panels - Display - Settings - Advanced - General - Font Size
    I love to use large fonts - I run my display at 1600x1200 and it just looks better.
    But if you plop an indicator on a panel in LARGE fonts, save it, then open it with SMALL fonts in effect, it looks horrible.
    N.I. Doesn't care about this - just look at how ugly their own examples get when viewed in LARGE fonts.
    So I developed a method to make the bottom of the label text line up with the bottom of the numerical text, whether in LARGE fonts or SMALL.
    Click here for examples. Basically, I turn OFF the SIZE to TEXT attribute and right-justify the label (if on the left of the numeric).
    This works OK, except I have just discovered that it depends on the text being the default size.
    If I have a 17-pt numeric with a 17-point label, then they both appear as 13-pt when I switch to SMALL fonts - great -- they're still aligned.
    But if I have a 17-point numeric with a 16-pt label, when I switch to SMALL, the numeric shrinks to 13, but the label stays at 16, and is thus vertically misaligned with the numeric.
    So how can I have a 17-pt numeric with a 13-pt label, and have them BOTH shrink when I switch to SMALL fonts?
    I suppose I could use property nodes, and detect the switch myself, but I have 50+ of these on a single VI to do - that would be ugly to watch the labels jumping around.
    I suppose I could have two VIs - one for LARGE fonts and one for SMALL, but I don't want to duplicate th
    e code.
    Any other ideas?
    Steve Bird
    Culverson Software - Elegant software that is a pleasure to use.
    Culverson.com
    Blog for (mostly LabVIEW) programmers: Tips And Tricks

    It is true that we don't have a
    solution.  It isn't that we don't care, but the solution choices stink.
    Well, I'll stand by my opinion that N.I. doesn't care - when using the default app font, there *-IS-* a solution - the link in my original post points to a page that I show my employees on how to solve the problem. It is solvable, for the case of using the default font and size. Yet N.I. uses the default font and size, but LOOK HOW THEIR EXAMPLES APPEAR (see attached files). This is how the example software looks, out of the box. These are not ancient examples, either.
    It is NOT my opinion that, because there apparently is no solution for non-standard sizes, the stuff looking ugly is NI's fault.
    But when a solution DOES exist for standard sizes, why they don't apply it is beyond me. Even some of the LabVIEW dialogs suffer from this.
    Steve Bird
    Culverson Software - Elegant software that is a pleasure to use.
    Culverson.com
    Blog for (mostly LabVIEW) programmers: Tips And Tricks
    Attachments:
    ChartsPict.png ‏22 KB
    MenusPict.png ‏15 KB
    GraphPicts.png ‏31 KB

  • How to left align the signature field of dynamic pdf

    Hi,
    I am working on dynamic (interactive) pdf and using Adobe LiveCycle Designer (Adobe Acrobat 9 Pro). My problem is that I cannot align left the signature field of my pdf. I can align left, right and center for textboxs and cannot just do that for signature field. When I couldn't do that from GUI I went to XML code for signature and tried this:
                       <para hAlign="left"/>  but it still didn't work. Ideally it should have worked.
    I would really appreciate if you could help me.
    Regards,
    Kiran

    Use skinning. Use the following skin selector:
    af|panelFormLayout::label-cell {text-align: left; }If you want to apply it only on particular panelFormLayout, then set a custom styleClass on the given <af:panelFormLayout> tag (for example, <af:panelFormLayout styleClass="MyStyleClass" ... >) and use a styleClass-dependent skin selector:
    af|panelFormLayout.MyStyleClass::label-cell {text-align: left; }Adding a custom skin is easy. If you do not know how, see this topic in the documentation: 20.2 Applying Custom Skins to Applications
    Dimitar

  • How do I align a flex field segment using personalizations?

    This is my first attempt at an OAF form personalization.  I added three DFF segments (read only) to the requisition headers portion of the iProcurement requisitions form.  I'll do my best here to try and show what has happened, I hope this will maintain the formatting.  So column on the left side of the form looks like this:
                      Description:   This is a test
                      Created by:    Me
                   Creation Date:   03-DEC-2013
    Confirming Order: Yes
    Capital Expense: No
                         Deliver to:   Test
    So, you can see that the two flexfield segments, Confirming Order and Capital Expense are way over to the left and not aligning with the rest of the fields.   I'm wondering if someone can tell me how to get those to line up with the rest of the form fields.  I have the same issue with a third flexfield segment n the right side of the form.  The other fields in the column are Message Styled Text.  And if I add a field that is of that type it will line up.   Although, when using that type of field or the flex field, I have to set the CSS style, it doesn't automatically inherit it as I thought it would.  I did a view source to see what it was on the other fields then filled that in for the CSS Class for the field I had created.  So, I must be missing something else here for these not to line up.  Any guidance is appreciated.  Thanks.

    I just found this note: 
    DFF Segments Are Not Aligning Correctly When Added Through Personalizations (Doc ID 1594546.1)
    It sounds like it isn't possible, unless someone knows of a workaround.

Maybe you are looking for

  • How to adjust size of Portal Page Panels for WDA Applications

    Hi, I am designing a Portal Page using Page Layout "3 Colums (Narrow:Wide:Narrow" for WDA application.  The problem is that the width of the web dynpro contents on the Left and Right panels ("Narrow" parts of the Page Layout) is not very wide, leavin

  • Switching to Panasonic HVX200... HD Monitor?

    Hello, I am not even sure where to start... we do primarily wedding videos and are looking to take things to the next level, hence the HVX200. The way I see it, we would be using the Firestore to capture the footage which we then bring into FCP. Curr

  • Reference Algorithm

    There is problem with my Reference Algorithm where it is designed to minimize the size of image file after serializing but unfortunately I am not getting the desired results.Reference Algorithm is roughly like this:- Because every pixel has alpha,red

  • Option to Submit or Proceed to Checkout?

    Hi, I'm hoping someone can help solve an issue. We've been using a form to capture bookings for our courses. Where, at the end the user submitted their details we receive it and then contact them and payment method is sorted out over the phone. E.g I

  • How to change the Content-Transfer-Encoding for the fmddataa.fmd from base

    Dear all,    When I using this SO_DOCUMENT_REPOSITORY_MANAGERto send email,I find the fmddata.fmd  file have been changed  to binary file attachment. I don't hope so.any one have good idea to avoid this case occur?   Can you tell me how to change the