Same items moving on different pages

So, my "logo" and menu move around depending on which page you are on.  I am placing different images behind the menu, so I have created a master page with menu only and then duplicated the page for different images to be place behind (so each page is it's own master, but duplicated from the same menu page).  Some pages everything stays the same, some pages it moves.  Any thoughts or suggestions? I have only just started this project so there isn't anything really there yet, but want to get this fixed before I continue on.  http://yaboproductions.businesscatalyst.com/

Hi,
Kindly refer to the following forum post:
Re: Some pages aligned further left than others
Hope it helps,
Sonam

Similar Messages

  • Same item used in different pages & for different tables

    Hi,
    i created some items, which work like a filter for my tables. I've got a lot of tables and the items have always the same function. They filter the same column but they're used for different tables! If i want to copy 1 item to another page, it's forbidden to use the same name again and that's the reason why I've got to customize every item for every page. I can copy the items but i have to change the name and thats why i have to update the item name in my SQL Query & the Tablename. All which is marked i have to change for every page(new table)!
    where upper(TABLENAME) like '%' || upper(:P158_FILTER_TABLENAME) || '%'
    AND upper(KEYVALUE) like '%' || upper(:P158_FILTER_KEYVALUE) || '%'
    AND DATE_INSERTED_PDW >= to_date(:P158_FILTER_DATE_INSERTED_PDW,'DD.MM.YYYY')
    P158_FILTER_TABLENAME:
    select distinct TABLENAME d, TABLENAME r
    from ERR_MAPL //it's the tablename I have to update it on every new page/table
    order by 1
    By a Process I created i have the same Problem it's the same Process, it's only used in differnet tables:
    BEGIN
    FOR ii IN 1 .. WWV_Flow.g_f01.COUNT -- the row selector
    LOOP
    UPDATE ERR_MAPL SET RELOAD_FLAG = 1
    WHERE ERR_ID = WWV_Flow.g_f02(WWV_Flow.g_f01(ii));
    END LOOP;
    END;
    THX Mat
    Message was edited by:
    user552848

    Hi Carl Rutter,
    You have to creat 2 special production order for this item. when issue the component make sure you issue the stock as per the cosumption becaue one have 10mmx10mm and the another item have 50x50 in this case you issue component by square inch wise. for example 10*10 = 100 squre inch.
    50*50 = 2500 square inch so the cost will be approtionate. you can Use multiple uom method to obtain this, other wise you have covert into stock then you issue the component. If you want traxk size wise ,you can use batch option for Finishe goods.
    Regards
    Sridharan

  • Line items are printing different page

    hi all,
    I neet to print line items in the same page.
    but when i execute my pogram it is giving 6 pages with one line item each page.
    how can we print 6 line items in same page if there is no space it must print in second page.
    Kind Regards,
    Kiran.

    Hi,
    You can specify, either in the style or in the form, that a particular paragraph should not be split in two by a page break. If this page protect attribute is set, then the complete paragraph is always printed on one page. This property applies only to that particular paragraph.
    This attribute is not intended to be used to protect all paragraphs against a page break. The point is that a page break is by its very nature a dynamic event and the exact point at which it occurs depends on the current state (length and contents) of the preceding text. It is also possible that you may want to protect only certain parts of a paragraph against a page break. One way to achieve this is to use the NEW-PAGE command immediately before the text concerned starts. Explicitly beginning a new page at this point should ensure that a further page break does not occur within the text. However, this technique is not change-friendly. For example, you format your text with the help of the NEW-PAGE command so that no page breaks occur where they should not. At a later time, you insert or delete some lines. These changes cause all the subsequent text to be moved relative to the printed page, and you must check each NEW-PAGE command you previously inserted to see if it is still in the correct place.
    To allow you to define the areas to be protected against a page break on an individual basis, SAPscript provides the PROTECT.. ENDPROTECT command pair. If you enclose the text to be protected in these commands, then SAPscript will ensure that each line of this text is printed together on the same page. If the complete text fits in the space remaining on the current page, then it is printed on this page just as it would be if no PROTECT command had been used. If, however, the remaining space is not sufficient for the text, then the PROTECT command has the same effect as a NEW-PAGE command and text is printed on a new page.
    Thus the PROTECT/ENDPROTECT commands may be regarded as a kind of conditional NEW-PAGE command, the condition being whether or not the lines enclosed between the two commands fit in the space remaining in the current main window.
    Syntax:
    /: PROTECT
    /: ENDPROTECT
    The text lines to be protected are enclosed between the two commands.
    An ENDPROTECT command without a preceding PROTECT command has no effect.
    If the terminating ENDPROTECT is missing, SAPscript assumes it at the end of the text.
    PROTECT.. ENDPROTECT command pairs cannot be nested. If a second PROTECT command occurs before the first one has been terminated by an ENDPROTECT, it is ignored.
    If the text enclosed by a PROTECT.. ENDPROTECT pair is itself too long for a single page, then a page break is generated immediately before the text and the text is printed in the normal way. It is then unavoidable that a page break will occur at some point within the text.
    Thnks and reward me with pts if useful.

  • Footer items moving up the page.

    Hi i have just upgraded to v3 build 645 and now items in my footer are moving up the page. Here is the site http://sographicssite.businesscatalyst.com/index.html its the black tabs on the sides. This is what it should look like http://www.sographics.co.uk/ I have tried it grouped and ungrouped.
    Thanks
    Jason

    Hey everyone,
    We are aware of one issue where, if Muse has to recreate an image in the footer on the master page, it will get pushed up the page. We are actively working on fixing the issue, but in the meantime there are a few things you can do. When Muse has to change the image, either because of a large size difference, an effect (shadow, glow, or bevel), rounded corners, or rotating the item, we will render the image with these effects to ensure proper behavior across different browsers. You can remove these properties on the image to fix the issue, and you can add them using an editor outside of Muse if the effect is something in particular you are going for.
    Sorry for the inconvience. As I said, we are working on getting a fix for this issue.

  • Same item column(s) different valuecolumns

    When trying to output a chart with the same itemcolumn
    values, but different valuecolumn values cfchart only graphs the
    second one. I would expect to get two slices of apples, one
    equaling 10, the other 15, but I only get the 15. I'd even settle
    for 25 apples!
    apples - 10
    apples - 15
    oranges - 20
    <cfscript>
    level = queryNew('howmany,name');
    queryAddRow(level);
    querySetCell(level, 'howmany','10');
    querySetCell(level, 'name','Apples');
    queryAddRow(level);
    querySetCell(level, 'howmany','15');
    querySetCell(level, 'name','Apples');
    queryAddRow(level);
    querySetCell(level, 'howmany','20');
    querySetCell(level, 'name','Oranges');
    </cfscript>
    <cfdump var="#level#">
    <cfchart show3d="true" format="flash" chartwidth="800"
    chartheight="550">
    <cfchartseries type="pie"
    query="level"
    itemcolumn="name"
    valuecolumn="howmany">
    </cfchartseries>
    </cfchart>
    <cfchart show3d="true" format="flash" chartheight="500"
    chartwidth="500">
    <cfchartseries type="bar"
    query="level"
    itemcolumn="name"
    valuecolumn="howmany">
    </cfchartseries>
    </cfchart>
    how do you like them apples? I don't like them apples!

    I'm not aware that this is a confirmed bug. Bug or not, what
    is commonly known is that cfchart uses just a fraction of the
    functionality Coldfusion gets from the WebCharts engine. It is not
    easy to tell when a deficiency of the tag is by design or when it
    is a bug.
    However, Coldfusion redeems itself a little. You can use its
    webcharts engine to build your own custom charts, as MikerRoo has
    hinted. If you're on Windows, all you need to do is to double-click
    on
    C:\CFusionMX7\charting\webcharts.bat. You should then get a
    webcharts interface.
    Choose a chart-type from the
    Chart Gallery and press
    OK. You can customize the chart by changing the values in
    the
    Property/Value table in the
    Design tab. The engine registers such changes automatically
    in the
    Code View tab. For more on the classes in the code, have a
    look at the
    WebCharts3D
    v5.0 Developer’s Guide.
    Here is an example based on your query.

  • How do we do production orders for same item code in different sizes

    Hi,
    We have Items which we buy as a single sheet of material and our customers can ask for us to cut the complete sheet into different sizes before despatching it. i.e
    Item Code Sheet1: Sheet size 100mm x 100mm
    Customer asks for sheet to be cut into 10 off 10mm x 10mm sheets, which we presently put on the sales order as a line note
    We then generate a production order for this item and indicate on the production order printout the line note
    We've recently had a customer who has asked for Item 1 in two different sizes on the same sales order ie
    Order Line 1 Sheet1 Qty:1 Line note: cut into 10mm x 10mm sheets
    Order Line 2 Sheet1 Qty:1 Line note: cut into 50mm x 50mm sheets
    When generating the Production order SAP combines the items into
    Product No: Sheet1
    Planned Qty: 2
    Where as we want it to create 2 production orders 1 of each different sizes items.
    I know I can create BOMs for those two sizes, but customers can ask for the sheets to be cut to whatever size they want. Is the best method to create BOMs on the fly for each different sizing option or are there alternative methods that are easier to manage ?
    Thanks
    Carl

    Hi Carl Rutter,
    You have to creat 2 special production order for this item. when issue the component make sure you issue the stock as per the cosumption becaue one have 10mmx10mm and the another item have 50x50 in this case you issue component by square inch wise. for example 10*10 = 100 squre inch.
    50*50 = 2500 square inch so the cost will be approtionate. you can Use multiple uom method to obtain this, other wise you have covert into stock then you issue the component. If you want traxk size wise ,you can use batch option for Finishe goods.
    Regards
    Sridharan

  • Same Code In 2 Different Pages Behaves Differently In Each

    I have a series of three pages such that each, when submitted, calls the next one.  The first page calls the second one correctly, but the second one calls only itself.  Both are using the same code.
    The form code for the first page is:
    <form name="form1" method="post" onSubmit="return show_message();" action="<?php echo $_SERVER['PHP_SELF']; ?>">
    At the top of the page is the following php script:
         In the first page (the one that works):
    if (isset($_POST['submit']))
         echo '<META http-equiv="refresh" content="0;URL=WOTCPg2.php">';     // This works
    //  header('Location: WOTCPg2.php');     // This was tried but didn't work
    ?>
         When the Submit button is pressed, the above code displays the next page, as it should.
         The form code for the second page is:
        <form  method="post" name="QstnrPg1" id="QstnrPg1" action="<?php echo $_SERVER['PHP_SELF']; ?>">
         In the second page is the following php script:
       <?php
    if (isset($_POST['submit']))
    //  header('Location: BlankIOD.php');     // this was tried but didn't work
      echo '<META http-equiv="refresh" content="0;URL=BlankIOD.php">';  // This doesn't work either (???)
    } else
         Other code that executes (correctly) when the form loads
         When the Submit button here is pressed, the form simply refreshes itself.  I can't understand why this is happening, since both pages have essentially the same code.  Can anyone tell me what I'm missing or doing wrong?

    Well, I just discovered something.  Here's a reversal of one of my previous threads (i.e. ... Works in Live View but not on the server.  The second page (above) still doesn't work in my local server (xampp), but just for kicks, I uploaded it to my Yahoo site and guess what? It works there.  Go figure!  I'd really like to know why that would be the case, because it's certainly causing me a lot of confusion.  Are there some xampp settings somewhere that I need to check on?

  • Different query for same view showing on different page as list view web part

    Hi all,
    If you have three pages and want to add Documents library as list view web part to these three pages with different query (Programmatically), Do you need to create three different views for Documents library or it is possible to have different query when
    I add the list view web part to the page?
    thanks and appreciate all kind of advice.

    When you add a List View Web Part to a page, SharePoint actually copies the selected view query into the Web Part itself. For example:
    You create a custom view on a list called "Mede71's View" and you configure it only show the Title column
    You add a List View Web Part to a page and update the settings to use the "Mede71's View"
    You go back to your list and change "Mede71's View" and add the "Modified Date" column
    Your List View Web Part will not reflect this change because in step 2 the Query from the view was copied into the List View Web Part
    When you programmatically add the List View Web Part, you can either assign it to an existing view or supply the query directly. If you want to instruct users to be able to add their own web parts pointing to those views in the future, I would recommend
    creating the views first.
    Dimitri Ayrapetov (MCSE: SharePoint)

  • Same Items on a Different Computer

    So my old Computer got a virus that won't let it load up and all my iTunes Music is Hooked up to that computer and my iPod broke so I got a new one, is there any way to get back all the music I bought?

    Restore it from the backups you made. If you don't have any backups, you need to buy everything again, since there is only ONE download from the itunes store and most other online MP3 stores.

  • Reference Items from different pages

    Hey Guys,
    I have a short question:
    How can I reference Items from a different page?
    I have a query, which references to a datepicker from another page.....
    Can anybody help?
    Thanks,
    Tim

    Tim,
    just as you would reference the item on the same page.
    The current value is written to session state.
    For example, you datepicker on page 1 is called P1_DATE1.
    Then you can reference is using the usual methods on page 2:
    select v('P1_DATE1') from dual;
    select :P1_DATE1 from dual;
    select '&P1_DATE1.' from dual;~Dietmar.

  • Can't open same pdf to different page...

    I am creating a pdf document that contains hyperlinks to open other pdf files to specific pages by adding #page=pagenumber to the end of the url.  The problem arises when I've opened a pdf with one link, then click a link to the same pdf, but with a different page number specified.  Because that pdf is already open, it will not re-open and go to the second page.  It just sits there on the first page opened in that pdf and does nothing.
    I have found ond kludgey work around - adding additional forward slashes in one of the the urls will fool the system into thinking the urls are different and the same pdf can be opened to different pages one after the other, no problem.  I'm hoping someone has a more elegent solution.  Thanks for any advice you can give.

    I tried named destinations as you suggested, but didn't work.  Thanks for the suggestion, though.  I may have found a partial fix.  I'm creating my pdf in InDesign CS5 and, on a hunch, I tried setting two button actions: Go To Next View before Go To Url.  For some reason, when I export the document to a pdf, the links will now work as I wanted.  I'm not sure why this works since, from what I read, Go To Next View should only do something if you've gone to a previous view, giving it somewhere to return to.  I'll take it, though.
    To answer your first question, the reason I want to link one pdf to multiple pages in a second pdf is that we have many large pdfs containing our company's procedures - yes, they're so large that putting them all in one file is not practical.  So, when I need to refer readers to something in another pdf, I want to have them click a link or button and the second pdf will open in a new window to the page I specified.  One link on one page might take them to the Glossary clear at the back of the other pdf, and another link might take them to the Introduction at the start of the pdf.  I'm amazed from my searching that there isn't more about this issue online.  I have found a few people who experienced the same thing, but none of them have ever solved it.  It's not just limited to buttons in pdfs, either - creating links in an HTML document has the same problem of not being able to open the same document to two different pages successively using two links.

  • Menu items linking to other pages?

    I have built a menu using the forms menu tool in Dreamweaver, and now I would like to link each menu item to a different page. Can this be done and how? does it require SPRY?

    No, you don't need Spry to link pages.
    Highlight the text or image that you want to use as the link.
    Insert > Hyperlink
    Complete the Dialog Box... you can use the little folder icon/button at the right of the Link: field to navigate to the file you want to open with this link
    Clicking the "Help" button there will get you more information about Hyperlinking.
    Or:
    Highlight the text or image you want to use as the link.
    Just to the right of the Link field in the Property Inspector, drag the target icon over to the Files Panel and tap on the file you want to link to
    Of course, you say that you have used the "forms menu tool". Do you mean the "Jump Menu?" That has its own way of working: http://help.adobe.com/en_US/Dreamweaver/10.0_Using/WScbb6b82af5544594822510a94ae8d65-7c1ca .html
    I hope some of this helps!
    Z

  • Ability to display data in Different Page Sizes in a Single RTF

    We have a requirement to show different page sizes in a Single RTF file .
    Please let me know you have worked on such a functionality as part of earlier assignments.
    Requirement Detail:
    We have 2 templates (One Legal (8.5*14) and One Statement ( 5.5*8.5)) as part of the same report in 2 different pages.
    Conditionally we need to show xml data in either the Statement or the Legal Format .
    Issues Currently faced:
    1.     When the Statement is chosen as a user parameter: (Attachment : ReportoutputforStatement.pdf)
    -     The data is super-imposed on the Legal layout instead of showing it on the Statement layout . Hence the page dimensions are not as expected in the report.
    -     There is a extra last page in the report which is blank with the Statement Layout.
    2.     When the Legal option is chosen as a user parameter: (Attachment : ReportoutputforLegal.pdf)
    -     The Data is appropriately shown on the legal layout
    -     There is a extra last page in the report which is blank with the Statement Layout.
    Regards:
    Nagaraj.s

    Have you tried creating two subtemplates and conditionally calling them based on the parameter chosen?
    If I understand correctly,currently you have a single RTF template (2 pages) that includes the two different layouts..
    Thanks,
    Bipuser

  • Item code with different description

    Hi All
    The requirement is
    in a PO, the items have same Item code with different item description and diff price and UOM
    How to receive into Inventory ?
    Please suggest
    Thankyou

    My issue has been resovled

  • Multiple objects to have the same rollover state at the same time (but link to different pages)

    Hi,
    I have a mac
    I would like to know how i can have multiple images with the same rollover states - but which show up at the same time on more than one image, (but each item to have its own linking property applied to it)?
    see image below: i want both box 'A' to pop with the same rollover state even if I'm hovering on just one of the boxes. But i want each of the boxes to link to different pages in my website.
    Ive tried grouping the images and moving them to their own layer, but the rollovers aren't 'linking' together on multiple objects
    help!
    thanks

    It's not, but you don't need that to achieve the behavior you've described. A1, a trigger, will have the states and hyperlink you desire. On rollover it will show its rollover state and will show its target container which will be directly on top of A2. It will look like a rollover state for A2. Repeat this for A2, B1 and B2 and I believe you achieve the behavior you've described. It's just a different way of approaching the problem (that happens to fit the tools available in Muse).

Maybe you are looking for