Matrix layout - line up problem

I have the following layout in my ESS (I've added several fields) - when I run the code in the portal the layout of the TransparentContainer (existing) lays out beautifully - label's line up - input fields line up with the longest label.  The TransparentContainer_1 - is ugly - there is a good inch between the longest lable and the start of the input fields. 
What is causing this inch gap?  
RootUIElementContainer [TransparentContainer - RootUIElementContainer]
   TextView [TextView - Child]
   TransparentContainer [TransparentContainer - Child] - MATRIXLAYOUT
       LastName_Label [Label - Child] - MATRIXHEADDATA
       LastName [InputField - Child]- MATRIXDATA
       FirstName_Label [Label - Child]- MATRIXHEADDATA
       FirstName [InputField - Child]- MATRIXDATA
   ContactHeader [TextView - Child]- MATRIXHEADDATA
   TransparentContainer_1 [TransparentContainer - Child]- MATRIXHEADDATA - MATRIXLAYOUT
       Areac_label [Label - Child]- MATRIXHEADDATA
       TransparentContainer1 [TransparentContainer - Child]- MATRIXDATA - FLOWLAYOUT
             Areac [InputField - Child]
             Telnr [InputField - Child]
       Zzecworkphone_label [Label - Child]- MATRIXHEADDATA
       Zzecworkphone [InputField - Child]- MATRIXDATA
       Stras_label [Label - Child]- MATRIXHEADDATA
       Stras [InputField - Child]- MATRIXDATA
       Locat_label [Label - Child]- MATRIXHEADDATA
       Locat [InputField - Child]- MATRIXDATA
       Ort01_label [Label - Child]- MATRIXHEADDATA
       TransparentContainer2 [TransparentContainer - Child]- MATRIXDATA - FLOWLAYOUT
           Ort01 [InputField - Child]
           State [DropDownByKey - Child]
       Pstlz_label [Label - Child]- MATRIXHEADDATA
       TransparentContainer3 [TransparentContainer - Child] - MATRIXDATA - FLOWLAYOUT
           Pstlz [InputField - Child]
           Land [DropDownByKey - Child]
Regards,
Diane

Make sure you set "stretchedHorizontally" to false. The default value "true" is somewhat unfortunate.
Armin

Similar Messages

  • SSRS 2008 R2 matrix layout issue

    Hi, I am working on a report where I have to report total number of tickets resolved per Resource in a week and I get the total number of tickets from a different table and issues resolved from another and most of the aggregation I do it in my dataset and
    display it as a matrix report.
    The problem I am running into is for instance my layout looks something like below. My data will be I will have 4 records for 2014 week-2 and for each resource will have a Total of 57 tickets and the same for week-3 and when I do the total for Atlanta the
    total I get is 57 * 4 + 39 * 4 instead of staright 57 + 39. Please guide me fix this.
    Region  Year Week Total Resource1 Resource2 Resource3 Resource4
    Atlanta  2014 2      57    16             7               8             12
                        3       39     8             9             
    13              1
    Thanks in advance..............
    Ione

    What is the formula in the total column?
    The layout looks like a matrix, is it?
    How did you add the total column to the matrix/table?
    What fields are returned by the 2 datasets?
    The *4 issue seems to indicate that the dataset that returns total has multiple rows (1 per resource) that includes the same total value for each region/year/week and that the formula in the total cell is summing the values of the dataset rows. If this is
    the case then the issue may be cleared up by simply eliminating the multiple rows in that dataset. That may mean removing the resource field from that dataset's select list or adding the DISTINCT keyword to the select (assuming it is TSQL).
    "You will find a fortune, though it will not be the one you seek." -
    Blind Seer, O Brother Where Art Thou
    Please Mark posts as answers or helpful so that others may find the fortune they seek.

  • How to I get on to page 2 when my document stops at the page 1 layout line and won't go on to another page?

    How to I get on to page 2 when my document stops at the page 1 layout line and won't go on to another page?

    Sounds like you are using a Layout template. These you have to manually link from textbox to textbox.
    Try using a Word Processing template, it lists them in the sidebar of the Template Chooser.
    Peter

  • PDF Letterhead Text LINE SPACING PROBLEM

    I recently upgraded from Pro 8 to X Pro on my Windows XP desktop. With Pro * I used the typewriter fucntion to place text onto my pdf letterhead. I have my letterhead in pdf format on my hardrive. I saved this texted letterhead without a problem, i.e., with the font, paragraphs, and line spacing eaxtly as it was when I creared it. With X Pro, after having placed text in my letterhead using the Typewriter function, my attempt to save the texted in letter head results in a pdf document which does not respect the line spacing I used w=hen creating it. Why am I have this line spacing problem?

    Thank you Michael,
    I am simply trying to continue using X Pro the way I used Pro 8. In Pro 8 I
    used the Typewriter function to input text to the letter head stored in my
    hard drive. Perhaps this is a functionality I lost as a result of the
    upgrade to X Pro -- I hope not??
    Joseph S. Tann, Jr., Esq.
    CONFIDENTIALITY NOTICE: This transmission is intended only for the addressee
    shown above. It may contain information that is privileged, confidential, or
    otherwise protected from disclosure. If you are not the intended recipient,
    please do not read, copy, or use it, and do not disclose it to others.
    Please notify the sender of the delivery error by replying to this message
    and then delete it from your system. Thank you.

  • At Line selection problem

    hi,
    iam stuck up with AT LINE-SELECTION problem ie i designed a screen where they need month list on clicking F4. i got the month list using month_names_get in the screen but while clicking the relevant month no.it's not entering into the required parameter. i have attached the codings,
    MODULE MONTH_DIS OUTPUT.
      SUPPRESS DIALOG.
      LEAVE TO LIST-PROCESSING AND RETURN TO SCREEN 0.
      SET PF-STATUS SPACE.
      NEW-PAGE NO-TITLE.
      WRITE:/ 'SELECT MONTH' COLOR COL_HEADING.
      ULINE.
      DATA: T_MNTH LIKE T247 OCCURS 12 WITH HEADER LINE.
      refresh t_mnth.
      CALL FUNCTION 'MONTH_NAMES_GET'
       EXPORTING
         LANGUAGE                    = SY-LANGU
    IMPORTING
      RETURN_CODE                 =
        TABLES
          MONTH_NAMES                 = T_MNTH
       EXCEPTIONS
         MONTH_NAMES_NOT_FOUND       = 1
         OTHERS                      = 2
      IF SY-SUBRC <> 0.
        MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      loop at t_mnth.
        write:/ t_mnth-mnr, t_mnth-ltx.
      endloop.
      CLEAR T_MNTH-MNR.
    ENDMODULE.                 " MONTH_DIS  OUTPUT
    AT LINE-SELECTION.
      p_period = t_mnth-mnr.
      CHECK NOT p_period IS INITIAL.
      LEAVE TO SCREEN 0.
    here in the AT LINE-SELECTION, the selected month is not coming to the required parameter.
    pls help me in this issue,
    Thanks in advance,
    Premnath.

    You need to set a "Hide" after the write... I suggest you also set your own dialog PF-STATUS too so you can have just a PF2 "pick" button and a Cancel button ( this will look better to the user).
    loop at t_mnth.
      write:/ t_mnth-mnr, t_mnth-ltx.
      hide: t_mnth.  "needs this
    endloop.
    clear: t_mnth.

  • Field status-screen layout-line layout

    hi
    EXPLAIN
    FIELD STATUS
    SCREEN LAYOUT
    LINE LAY OUT
    THANKS N REGARDS
    MAUNAMI

    <b>Field Status</b> It determines entering data in  field is mandatory or optional.it also determines whether a field should be shown or it should be suppressed.Also status can be only display i.e u can only see the field but cannot change it.
    <b>Screen layout:</b> It determines how screen should look like;what tab should be there and under each tab what fields should be there.
    <b>Line Layout</b> It determine the sequence of the lines on a data entry form or standard report.

  • Matrix layout and spreadsheet output 10g r2 reports

    I'm currently developing a couple reports in 10g r2 and using the spreadsheet desformat. It works rather nicely but when I try it on a matrix layout it moves the matrix column(s) over the first cell of the spreadsheet instead of over the matrix cell. Is there a way to correct this issue or a property that I have to set?

    Hi,
    I've recently installed 10gR2 and am interested in using the DESFORMAT=spreadsheet for some existing reports. I've generated the report successfully, however the output in Microsoft Excel look awful - a lot of empty cells. When generated as 'pdf', 'htm' it looks good in the browser.
    Did you do anything speciaI to maintain the format? Were you reports generated from scratch? Is there any reference docs avail (the online-help is pretty vague)...
    I'd appreciate any info that would help get this working (for existing reports).

  • Matrix Layout Width Percentage

    Dear Experts,
    I have a requirement.
    I need to create 4 Transparent Containers:-
    - TCO_MAIN (Matrix Header)
    - - TCO_RIGHT (Matrix Header)
    - - TCO_MIDDLE (Matrix Data)
    - - TCO_LEFT (Matrix Data)
    TCO_RIGHT, TCO_MIDDLE, and TCO_LEFT are in the TCO_MAIN.
    What propeties should i set in order to have these:-
    - TCO_RIGHT to occupy 20% of the TCO_MAIN width,
    - TCO_MIDDLE to occupy 20% of the TCO_MAIN width, and
    - TCO_LEFT to occupy 60% of the TCO_MAIN width.
    Thanks.
    Tee

    Hi Tee,
    Try this config:
    Layout of all the transparent containers should be Matrix Layout.
    TCO_MAIN width 100% Strecthed Horizon
    TCO_LEFT width 20%, Go to layout data property and give width as 20%
    TCO_MIDDLE width 20%, Go to layout data property and give width as 20%
    TCO_RIGHT width 60%. Go to layout data property and give width as 60%
    I hope it works.
    Regards
    Arjun

  • Matrix's line mode

    Hello,
    I would like to know, how I get matrix's line mode (add/update)?
    Thanks you.
    Regards,
    Taweechai

    Hi,
    ur  question is not clear....!!!!!!!!!!!!!!!
    plz..post agin.
    I think u want to enter datas into matrix in add mode
    oMatrix.Addrow()
    By
    Firos.C

  • Matrix layout in IC WebClient

    We would like to use the newer and much easier matrix layout in our customised views of the ICWC but this requires DESIGN2003. The IC WebClient is built on DESIGN2002 and this dependency seems deeply imbedded inside the standard IC WebClient application. Simply changing the profile_depend.htm, default.htm, main0.htm and other files to use DESIGN2003 didn't work and results in BSP errors.
    Is this feasible and what is involved?
    Thanks

    Yes, after looking into it more I came up with the same impression. The IC WebClient seems tightly dependent on the DESIGN2002 rendering engine and there doesn't seem to be an upgrade path short of a rewrite of the ICWC in WebDynpro.

  • [ASAP] Need Help Exporting to PDF - Line weight problems (Illustrator file)

    So, I've drawn some stuff in Illustrator which I've then placed in InDesign.
    It all looks right on screen, but when I export the document to pdf (Adobe PDF Presets: High Quality Print) the Illustrator stuff appears to lose the line weight settings. This is easily noticeable on some really thin lines that print much thicker than they were supposed to.
    I gotta be missing something when exporting to pdf... 'cause if I export to Jpeg everything comes out right. No more line weight problems! The question is: what the hell am I doing wrong???
    Please, somebody help me out.
    Thx!

    1. How are you printing?
    I'm using one of the Adobe PDF Export Presets: High Quality Print.
    2. What are you using to determine the line weight?
    What do you mean? I talking about the stroke size.
    3. Have you tried opening the PDF in Illustrator to see what the reported line weight is?
    I've tried it now and it looks just fine! Just like it was supposed to! All the line weights are correct.
    4. This might just be a limitation of your printer or printer driver.
    I don't think so. I have never had this problem up until now!
    I'm starting to think it has something to do with some Acrobat preferences settings...

  • Line art problem outputting to pdf

    I have a problem with exporting pages of a magazine going to print as pdf, relating to line art placed on the page as a bitmap tiff (typically at 1200 ppi). At present I have a workaround for an annoying problem that really needs clearing up ...
    I'm using CS4 InDesign and Acrobat (files prepared in Photoshop). So, high-res bitmap tiff containing line art sized (that is, just placed - no resizing in Indesign) and placed in Indesign, looks fine on the page. Output to pdf using 'export' and the resulting file, when viewed on screen, has a thin line down the right-hand edge of any and all bitmap files.
    To ensure no misunderstanding, the 'bitmap' reference is what Photoshop calls it - a bilevel file with black lines in it, which enables me easily to overlay other files such as a photo (because the file is black/transparent) and assign a colour or tint to the bitmap, or even a drop shadow etc. I've used this workflow for years, from Photoshop through Indesign, but the latter always gives me this line on the right edge, in the pdf. It did this in CS3 Indesign/Acrobat as well (but never in Pagemaker).
    My workaround is to lay a white-filled box over the edge of the file, thus masking it. But of course, that also limits me to where I can place the file - not easily on a graded tint background, not on a photo and so on. So I'd like to solve this.
    Any ideas? OS is Win XP Pro (all updates applied to this and the CS programs - I don't believe they make a difference to this problem, as it has existed through several iterations of both OS and CS).
    Anyone else seen this effect? Or is it just me? And has anyone a potential solution?
    Chris

    I think by reason of not knowing what else I can do, I'm heading to the same conclusion - put up with it! I'll certainly try sending a line to print and see if it appears, but for on-screen stuff, I think I have to stick with the safe workaround I use and accept the layout limitations. (Or resort to Pagemaker for the pages that I just cannot do otherwise.)
    Seems to me, if people have reported this for years, Adobe might have tried sorting it out. On screen or not, it still must be due to *something* in the file and/or Acrobat/Distiller to allow it to appear. If I create a white greyscale tiff with the same resolution etc, and place it on a page, there's no line down the edge on output - just a white page with a white (invisible) box. If I do this with an 'empty' bitmap file, a line appears ... Both files created in Adobe programs, so it's not me as a user ...
    Just me whinging! I'm really coming from the angle that if this is indeed a display problem, it can only be a display problem if there is something in the file for the display to react to (badly phrased that!).
    Thanks everyone for your support and ideas - I think that's me finished for now; I have files to upload and then sleep.

  • Matrix-style lines on DVD display

    Is anyone acquainted with this? Vertical lines in the style of The Matrix appear when a DVD is played but only on the image. For example, the lines do not appear in the border if the image is set to wide screen or if the video is watched in a window on the desktop. It is almost like a transparency or sheet of plastic is placed over the image. The dvd plays just fine except for the lines. The repair team at the store where it was purchased had not seen this before. The machine is a Powerbook G4 from 2002 with the OSX 10.2.8 operating system. Any help would be appreciated. Thanks.

    Hi April,
    I'm experiencing the same problems. I also have the Powerbook G4 from 2002, the only difference is that im running 10.4.2.
    Also, i've noticed when i rotate the Powerbook itself, up or down, or sideways, the lines will go away and then when i put it in another position they'll come back. Try that and let me know if it happens with you as well.

  • Command line build problem

    We have a large help project I'm migrating to RoboHelp 6
    (nearly 3000 topics, 12 chms plus a master file). We generate using
    a script that calls the command-line option. One of the projects
    fails during command line processing, even though I can build it
    from within the GUI without fail. When I run the command line
    command, this is the message that is returned:
    "D:\quartus\robohelp\subs\reference>"d:\Adobe\RoboHelp
    6.0\RoboHTML\RHCL.exe" reference.xpj
    Adobe (R) RoboHelp Project Command Line Compiler version
    6.00.099
    Copyright (C) 2006 Adobe Macromedia Software LLC. All rights
    reserved.
    Project: D:\quartus\robohelp\subs\reference\reference.xpj
    Layout: Microsoft HTML Help.
    Output: D:\quartus\robohelp\reference.chm.
    Scanning project for compilation....
    Error: Failed to scan all the project files. Please use
    RoboHelp to recover the project.
    Unexpected Error: Failed to prepare single source data for
    RHCL. Please try to compile it in RoboHTML."
    If I open the project in the GUI and compile it, then compile
    from the command line, it works fine. But if I clear the directory,
    run the NGCMD.exe command and get the files out and run the
    RHCL.exe, I get the same error message.
    Thanks

    Finally I figured out this problem.
    It is because one .fpj file missing in the image folder.
    When I was using X5, there is no image.fpj in the image
    folder, but after upgrading to RH6, using the command line compiler
    will fail if there is no the .fpj file under the image folder.
    Checking in the image.fpj to the server, then check it out to
    your build machine, everything is OK now.
    AG2MM

  • CR9.1.5 from server 2003 change to windows 7 layout became smaller problem

    I have an application develop in vs2003 with crystal report 9.1.5. When i move the program to new server from window server 2003 to windows 7.  The crystal report export to pdf file, the report layout became smaller. Font size and line decreases when report is exported to PDF. I have try to regedit set 'HKCR\Software\Crystal Reports\Export\PDF\ForceLargerFonts' value to 1. But is not changing.
    Example Print PDF :
    window server 2003(adobe reader 7.0)                      window 7(adobe readerx 10.0)
    h2.TESTING                                                                   h3.TESTING
    It is possible i can operation system make the layout became small or adobe reader version problem?
    Because i read the report on browser is same size, just after convert to pdf will became smaller.
    is any fix possible to fix it? If anybody is familiar with this issue, kindly reply
    Thanks and Regards
    ysiewpeng
    Edited by: ysiewpeng on Sep 13, 2011 11:01 AM

    The only OS supported by CR 9.1.x is; WIN XP, WIN 2000, WIN 2003.
    See the following wiki for more details:
    https://wiki.sdn.sap.com/wiki/pages/viewpage.action?pageId=56787567
    I don't think VS2003 is supported on WIN 7 either(?).
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup
    Got Enhancement ideas? Try the [SAP Idea Place|https://ideas.sap.com/community/products_and_solutions/crystalreports]

Maybe you are looking for