Layout query

I have a page with just text boxes on it and within Muse all is fine. See below
However when viewed in a browser it cases the some of the bottom row buttons to go out of alignment (see below). I have checked and there are no rogue elements on the page and I have removed all unneeded carriage returns from the text boxes, but I still can get it to align. The image below is after I pulled the boxes upwards, before they were slightly lower down, actually on affected the News & Blog buttons. Any ideas?

Thank you for the screenshots. It makes both what's happening and why very clear.
First the two quickest fixes.
Either:
1) Resize the text frame for the first column slightly taller so there's at least enough empty space at the bottom to accommodate one more line of text; or
2) Group the buttons that appear across the bottom.
Now, what's going on and why.
Welcome to the realities of working with live text on the web. Every browser has it's own text layout engine. Even if you open the exact same site on the exact same computer with the same fonts installed, if you use two different browsers (or even just different versions of the same browser) it possible for the line breaks within paragraphs to differ.
If you use "Web Safe" fonts, then line break differences will be extremely common, since "web safe" fonts are actually a list of fonts for the site viewer's computer to try until it finds one it has. Thus the font used may be substantially different than the one you used while designing.
Whenever possible, use a Web Font (via Add Web Fonts in the Font menu). If you absolutely can't find a Web Font that will work, then fall back to using a "Web Safe" font, but when doing so you'll need to plan ahead for the potentially substantial differences in line breaks (by creating oversized text frames and/or using grouping effectively to control how the layout adjusts).
In your screenshots the third paragraph in the first column is 3 lines tall in Muse Design view, but 4 lines tall in the browser. The text frame in Muse Design view wasn't tall enough to accommodate an additional line, so in the browser the text frame grew taller but the gap between the text frame and the items below was maintained. Thus the buttons moved down.
In order to provide reasonable layout adjustments in the browser, Muse has to make decisions regarding your layout at output time. Conceptually it combines everything into horizontal or vertical groupings. In your layout the three columns of text are combined into one horizontal element. That element was forced to grow taller when the text frame grew, so that pushed the 6 buttons below down.
Making the text frame taller in Design view works because then the text frame need not grow in the browser.
Grouping all the buttons "works" but really what's happening is the entire group of buttons is being moved down when the text frame grows taller.

Similar Messages

  • Query Print Layout / Query Manager

    Hopefully some one here can help me out ...
    I have created a handful of Query Print Layouts.  How or is there a way when I make a change to the underlying query, to reassociate it with the report?  Now when I change the query,  I have to create a new report.  I am currently on SAP B1 2007 PL11.  When I upgraded from PL06 to PL11,  the queries handle prompted dates differently, causing me to have to make a simple syntax change to my query which does not change the data being passed to the report.
    Thanks in advance
    Dana

    Dana,
    This is the short-coming of the Query PLD.  Once you change the Query, you will need to redo the template all over again.
    Therefore, it is a good practise to always finalize the query and then design the layout.
    Re-assigning the revised query to QPLD is not possible
    Suda

  • Error layout query

    Hi guys,
    my problem is this:I have built a query and in the output format I have selected the choise 'SAP list viewer' but before run I have noticed that in the screen in label output specification I could not see other choises(Abap list,grapich,file store etc...).
    Then SQ01->change->u2018Extrasu2019-u2019Additional special attributesu2019-u2019flag u2018Use old report structureu2019 and so in this way before run I can see all the other choises but:when I run without this flag with a variant and a layout the query layout is OK,if I run with this flag with same variant,same layout the layout of the query is uncorrected,troncated without values and fields and an informative message AQ 894 Blank unit field found.I have implementde the OSS Note 1503128 without results,I don't use logical database.
    How can I solve this problem so to have the correct layout also with the flag 'Use old report structure'?
    Thanks in advance
    Bye
    Massimiliano

    Hi Vanessa,
                    I got same problem but after three or four days, it has been working fine.
    Thanks,
    Suresh Yerra

  • Problem in Layout query

    create table abc
    (code number , qty number , lot varchar2(20));
    insert into abc
    values
    (39 , 120 , 'M12-39-1');
    insert into abc
    values
    (39 , 120 , 'M12-39-2');
    insert into abc
    values
    (39 , 120 , 'M12-39-3');
    insert into abc
    values
    (150 , 60 , 'M12-150-1');
    insert into abc
    values
    (150 , 60 , 'M12-150-2');
    insert into abc
    values
    (47 , 90 , 'M12-47-1');when i query the table like this
    select * from abcoutput
    CODE     QTY     LOT
    39     120     M12-39-1
    39     120     M12-39-2
    39     120     M12-39-3
    150     60     M12-150-1
    150     60     M12-150-2
    47     90     M12-47-1i want the output like this
    A-------------------B-----------------C-----------------D-------------------E-------------------------F------------------------G-------------------------H {COLUMN HEADING)
    39----------------39---------------39--------------150------------------150---------------------47
    120--------------120-------------120---------------60-------------------60----------------------90
    M12-39-1------M12-39-2-----M12-39-3------M12-150-1---------M12-150-2-----------M12-47-1it is possible to get this type of output????? the column heading must be fixed A-P [ABCDEFGHIJKLMNOP] plzz value varies [bt not exceed to point P]
    plzz help me out... dont be hardcoaded ...
    Regards
    RanchOO

    is this what you want
    SELECT REGEXP_SUBSTR (txt,
                          '[^/,]+',
                          1,
                          1)
              A,
           REGEXP_SUBSTR (txt,
                          '[^/,]+',
                          1,
                          2)
              B,
           REGEXP_SUBSTR (txt,
                          '[^/,]+',
                          1,
                          3)
              C,
           REGEXP_SUBSTR (txt,
                          '[^/,]+',
                          1,
                          4)
              D,
           REGEXP_SUBSTR (txt,
                          '[^/,]+',
                          1,
                          5)
              E,
           REGEXP_SUBSTR (txt,
                          '[^/,]+',
                          1,
                          6)
              F,
           REGEXP_SUBSTR (txt,
                          '[^/,]+',
                          1,
                          7)
              H,
           REGEXP_SUBSTR (txt,
                          '[^/,]+',
                          1,
                          8)
              I,
           REGEXP_SUBSTR (txt,
                          '[^/,]+',
                          1,
                          9)
              J,
           REGEXP_SUBSTR (txt,
                          '[^/,]+',
                          1,
                          10)
              K
      FROM (WITH t
                    AS (SELECT LISTAGG (code, ',') WITHIN GROUP (ORDER BY code)
                               || '; '
                               || LISTAGG (qty, ',') WITHIN GROUP (ORDER BY code)
                               || ';'
                               || LISTAGG (lot, ',') WITHIN GROUP (ORDER BY code)
                                  txt
                          FROM abc)
                SELECT REGEXP_SUBSTR (txt,
                                      '[^;]+',
                                      1,
                                      LEVEL)
                          txt
                  FROM t
            CONNECT BY LEVEL <= LENGTH (txt) - LENGTH (REPLACE (txt, ';')) + 1)
    A     B     C     D     E     F     H     I     J     K
    39     39     39     47     150     150                    
    120     120     120     90     60     60                    
    M12-39-1     M12-39-2     M12-39-3     M12-47-1     M12-150-1     M12-150-2                    Edited by: pollywog on Nov 15, 2010 10:16 AM
    Edited by: pollywog on Nov 15, 2010 10:21 AM

  • Deleteing / Saving Query Print Layouts ..

    I recently upgraded to PL15 and after creating a Query Report Layout, discovered that not only could I not make a change and save the change without saving the form under another name,  but that I could not delete the origional Report Layout. Also,  any Query Report Layouts created BEFORE the upgrade,  I can not delete.  Am I missing something here?  Any ideas or anyone else experiencing the same issue?  We created a Query Report with sensitive data we would like to delete. 
    Thanks in advance!!
    Dana

    How are you trying to delete the layout / query ?
    Please explain the steps.
    To delete a layout open the QPLD ..from the Reports Tab of the QPLD selection screen.  go to Print Layout Design menu on the top and select delete layout.
    Suda

  • Different view of the same query between users

    Hi at all,
    I strongly hope you can help me.
    The problem that i have is that:
    I have a different view of a query inserted in a workbook respect the view of the same query that have other users.
    In particular I watch in my query 4 fixed characteristic of the query ( Cost center, order type , controlling area, fiscal variant ), below the free characteristic block  and before data table.
    Instead other user watch only 3 fixed characteristics ( Cost center, order type , controlling area ).
    This is a problem because in the workbook there is a macro that reads the data from a fixed raw. So that this macro doesn't' t work in my workbook.
    I would specify that the workbooks is called from rules and not from fevorites.
    Thank you very much for your attention!
    Bye
    Fabio

    Hi Erwan,
    i have the SAPGUI version 3500.8.044 and the item you describes :
    Bex menu ( Business explorer -> Change Query -> Change variable values )
    let me to change the values of input variables.
    The new layout query, after the input of the new values, has the same rows of the fixed query value ( fyscal variant too).
    Thank you for your answer..
    bye
    Fabio

  • Access Planning layout by multiple users

    Hi Experts,
    I am using IP in my current Proj, i am facing a scenario where in users need to access the same layout for a given set of objects. . where in the users know what they have to forecast.
    Ex scenario:
    Material        region   KF
    x                   TN       100
    y                   CA      200
    z                   NY      300
    say we have three users each know which material they have to forecast, and all the three want to access the same layout in edit mode.
    Appriciate your valuble suggestions to achieve this.
    Thanks,
    HVR

    HI Harshavardhan,
    The Locks in Planning works in such a way that if we a given selection is queried into the data base, then all the records for the selection is locked.
    Since you have a single layout (Query) Accessing the data for all materials, then all the materials will be locked (provided material is maintained for locking) for the given user. Hence other users cannot logon tot he same layout in Edit mode.
    The Possible option is enable a material variable so that he can see / Plan only the materials he wants to Plan.
    If the user wanted to see other material, then  it is better to give them a desperate Query(not Input Ready) to display the data.
    Hope this helps.
    Regards.
    Shafi.

  • How to Create Master Detail Page with Query Region

    Hi,
    1. I have a requirement that i need to create a Master(Supplier) Detail(Supplier Site) Page with Query Region.
    Eg. Supplier A in Australia has Supplier Sites X in Melbourne and Y in Sydney.
          Supplier B in US has Supplier Sites C in New York and D in California.
    I need to have Search, based on two fields Supplier Name and Country
    Let us assume i am searching with Supplier Name A then the page should be in the below layout
    Query Region
    Supplier Name : A
    Country:
    Master
    Supplier Name  Country
        A                     Australia
    Detail
    Supplier Site  City
    X                   Melbourne
    Y                   Sydney
    In detail VO it should allow me to add new sites which means i need to connect this VO to database to insert new records
    I have gone few threads and understood that this can be achieved by creating SupplierVO, SupplierSiteVO and a ViewLink.
    But when tried i don't know how can i relate my query region with the Suppleir Table(Header Reagin and Table Using Wizard) and Supplier Site Table(Header Region and Table Using Wizard) i am not sure if i am correct or not, please advise
    2. Also i need to have a Open button in this page and if click the button it should navigate to some other page.
    Please help me how can i achieve this.
    - How to design my page with query region and master detail tables
    - what is the AM and CO code need to be handled
    - What is the code should i write in Open button to open new OAF page.
    Thanks,
    CSK

    Hi,
    This link will be useful for your requirement.
    Master Detail Page using Hide Show and Advanced Table inside Advanced Table - OracleArea51.com
    Let me know if you need more help in this.
    Thanks and Regards,
    Myvizhi

  • BI Publisher Report Issue in 11G(HTML format)/ OBIEE 11.1.1.7 version

    Hi All,
    I have migrated reports from 10g to 11g. Issue i am facing is that "reports open in HTML format by default & reports alignment has been distorted in 11g".
    Also if i change the format to PDF ,its working fine.
    I am not able to figure it out where exactly the issue lies as all the parameters,layout & query are fine.
    Thanks.
    Saurabh

    Hopefully this blog article by Tim Dexter will help: http://blogs.oracle.com/xmlpublisher/2007/01/formatting_html_with_templates.html
    Thanks!

  • Significance of the various Region Styles

    OAF gives a lot of options to choose from when developing an OA page having a wide variety of options for Region Styles Ex:MessageComponent Layout,Table Layout,Query,SubTabLayout,RowLayout and so on.Can anyone tell me the difference between all these layouts and where they are used and is it possible to mix and match 2 layouts Ex:Table inside a SubTabLayout...If yes how??
    Message was edited by:
    VikramIyer

    Vikram,
    These are very basic questions, thats y I am asking u to go through the dev guide. For eg, if u wanna add table go directly to table section in dev guide and follow the delarative steps, they have explained each and every point.
    For table u just need to add a child region in subtablayout region of type table.
    --Mukul                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • 12 Months rolling forecast with prev. 4 month actuals - Integrated Planning

    Hi,
    What is the best practice for setting up a 12 month rolling planning with -4 months of actuals and +12 months of forecast with IP?
    Let's think about a very basic setup, Cost Center planning:
    - We have 2 infoproviders (for act/plan) and they are combined as a multiprovider and that is used on the aggregation level.
    In the planning layout/query:
    - On the lines Cost Elements are shown
    - On the columns periods and keyfigures are shown.
    The requirement is that actuals are shown for 4 previous months and planning is open & visible for the current month +11 months. We do not wish to show any actuals beside the figures for planning NOR old planned values beside the actuals for the previous months.
    Versioning works as follows: Zero version is always open for planning and snapshots are loaded into different versions at a given point in time. Actuals are also loaded as version 0.
    Value types are as usual: actual = 10, Plan = 20 and we use 0FISCPER for periods.
    So the result should be that we'll show 16 periods for each line (cost element) with the 4 first columns as static cells displaying only actuals and the 12 latter as input ready cells open for planning.
    All tips leading to workable solution are rewarded!
    -Miikka

    Hi
    Miikka Åkerman  
    how are you set 4 first columns as static cells displaying only actuals and the 12 latter as input ready cells open for planning.?
    and how about you designer cube that is include what characterices and key figure
    you said
    In the planning layout/query:
    - On the lines Cost Elements are shown
    - On the columns periods and keyfigures are shown.
    this periods is set as a keyfigures?
    Now I am face the same problem
    how to  set 4 first columns as static cells displaying only  and how to set the 12 latter as input ready cells open for planning.?
    if periods is move to next periods
    how to rolling this plan ??
    hope you can help me
    thanks a million

  • How to create the layout for query in Bex 3.5

    Hi All,
    i have one requirement to do layout for query. Report like after passing the variable values and then they will select the required layout. It has to get output according layout selection fields.
    i have no idea about how to create layout.
            thanks in advance...
    Thanks & Regards,
    Mallikarjuna.k

    Hi Gregor,
    In the note 1149346 that you have mentioned, it says -
    You must start the input-ready query in change mode.
    BEx Analyzer: In the properties of the analysis grid, the switch
    "Suppress new rows" must not be set.  Furthermore,
    the switch "Allow entry of plant values"
    must be set in the local query properties.
    I have not seen this setting Allow entry of plant values in a query - can you tell what is refers to?

  • Print layout designer for develop report based on query

    Dear Experts/Gurus,
    I am amazing about the manage previous reconciliation report. When I opened it using print layout designer, it looks like the report is not built using query, but I am not sure yet. This is very confusing. I created query similar with manage previous reconciliation (MPR), but when I link the query to print layout and try to make similar format/appearance with MPR report (reconciliation management (system)), it is not success.
    Isn't the MPR report built not based on query ? I appreciate your answer. TIA
    Rgds,

    Hi,
    I am not sure I understand what's the problem:
    Is it the layout that is different or the data?
    Regarding the data you can use SQL Profiler (maybe you did?) to find out what queries are fired, but please note that there are some stored procedures in the DB that are used for some specific functions - not sure whether the "MPR" uses any of these.
    Then you must include some non-default filter in SQL Profiler...
    ...but you can also use the logging functionality in B1 for that purpose:
    Just activate the logging (see the "log" folder in the B1 subdirectory) in the corresponding config file: choose the option to have the SQLs logged in conjunction with the logging being triggered in all cases (not just error).
    Thus you will get all the SQLs - just plain - from the B1 application, but note that it will obviously slow it down!
    HTH,
    Frank

  • How to create authorization to access Query Print Layout?

    Hi again..
    i have 10 query print layout, and not every user can view this layout.
    I assume,
    report 1-3 only for user A,
    report 4-7 only for user B, and
    report 8-10 only for user C.
    How to create autorization for Query Print Layout?
    Thankyou for the help

    Dony,
    In order to createthe PL's of customize report (from Query Manager) you will have to go the Tools Tab of the Menu Bar in which you will have to click the Queries tab which will lead to a drop down menu which when clicked will lead to Quaery Print layout. You will have to choose your query based upon whether from the reports tab double click it to open the Query Print Layout Designer.
    Here again in the Menu Bar you will find the under the Tools the first tab is the PLD which when clicked you can do the same process as explined below
    When you go to the document ( Any Document ) in the tool bar you would find the 24th Icon to be the Print Layout Designer Tab when you click this it takes you to the layout designer window.... below there is tab named set as default when you click this the system would ask you 2 choices
    1. Set as default for all users
    2. Set as default for current user
    Which means that you will have to open each and every form?
    for each and every user and set them as default for the user.
    If you feel this answer is helpful then please do remember to reward points
    Regards,
    Nagesh.

  • Help me . Query in " Query Print layout Design "

    Hi Everybody .
    I Design Report by Query Print layout Design , So when I run Report , I see Message : " Table not found Administrator (OA DM)" .
    This is My Query .
    ( Note :this  Query is run ok in Microsoft SQL  . )
    Select Cast(left([dbo].[Get_rate](T0.BatchNum,left(T0.Account,4),T1.U_VNS_JType),5)       as nvarchar(50))+ Cast(T0.BatchNum as nvarchar(50))As No_Number    ,  T0.TaxDate As Date       ,     case left(T0.Account,4)when '1112'then '0.00'     when '1122'then'0.00' else           [dbo].[Get_11](T0.BatchNum,left(T0.Account,4),T1.U_VNS_JType)end  as Amount1              , case left(T0.Account,4) when '1111'then '0.00' when '1121' then '0.00'           else [dbo].[Get_111](T0.BatchNum,left(T0.Account,4),T1.U_VNS_JType) end  As Amount2            , T1.U_VNS_MEMO  As U_VNS_MEMO, T1.U_VNS_VNUMBER as PV_No    , T1.U_VNS_JType as 'Voucher Type'         , T0.Account  As AC_Code    , T3.AcctName as Description  , T0.Debit As Debit ,T0.Credit As Credit        , T1.U_VNS_NAME,     T0.U_VNS_REMARKS   From BTF1 T0                Inner Join OBTF T1 On T0.BatchNum = T1.BatchNum               Inner Join OBTD T2 On T0.TransID = T2.BatchNum                Inner Join OACT T3 On T0.Account = T3.AcctCode                    Where  T0.BatchNum = '[%0]'  Group by   Cast(left([dbo].[Get_rate](T0.BatchNum,left(T0.Account,4),T1.U_VNS_JType),5)       as nvarchar(50))+ Cast(T0.BatchNum as nvarchar(50)) ,  T0.TaxDate   ,       case left(Account,4)when '1112' then '0.00'     when '1122'then'0.00' else           [dbo].[Get_11](T0.BatchNum,left(Account,4),T1.U_VNS_JType)end             , case left(Account,4) when '1111'then '0.00' when '1121' then '0.00'           else [dbo].[Get_111](T0.BatchNum,left(Account,4),T1.U_VNS_JType) end            , U_VNS_MEMO  , T1.U_VNS_VNUMBER    , T1.U_VNS_JType       , Account     , AcctName       , T1.U_VNS_NAME,     T0.U_VNS_REMARKS      order by  Amount1 desc
    Please help me .
    Thank you very much .
    Message was edited by:
            Tran Ba Hai

    Note: This Quey if I change = [%0] by = 1 ,  and I run Report in SAP is ok .

Maybe you are looking for

  • Is there a way to add a discussion board in iweb?

    i want to add a board like the one we're using to my website in iweb. i am hosted by .mac is this possible?

  • Bought a new ipod, purchased music good for 1!!!

    I just got a newer version of Ipod for christmas, With no intention to keep using my older one... Now Itunes tells me I cant Import the purchased music that on my older Ipod to my newer one... I have probably $200 plus itunes bought music in my libra

  • How do you properly switch off music?

    I posted the following in the connecting forum but should have probably posted this here: Usually when I'm finished listening to my music I use the remote and press the middle button once and it stops the music play and the iPod goes to sleep. Occass

  • Extended vs joined network - which should I use

    I have a Time Capsule connected to my iMac and in the living room I have an airport express that I stream music to. Which should I use. Extended or joined netowrk. I find that if it is extended my MacBook Air, iPad and iPhone run a lot slower than if

  • 5.1.3 won't open because my pre intel g5 does not support "quartz extreme"

    Why am I being sent "updates" that my system doesn't support??? Now I can't open FCP, it keeps telling me that my system doesn't support "quartz extreme".