Split Margin By %

Hii,
Can we have split margin on pricing procedure by percentage ?
the scenario is like this ;-
We have an accessories item that only Plant A can make the order to vendor. Then Plant B need to request the accessories item from plant A. There will use STO process to transfer accessories item from Plant A to Plant B. Than, Plant B will sales this accessories item to the customer.
Plant A requested to have profit sharing about 10% for this accessories item when the item sold to the customer.
In the sales pricing procedure, how do i create the condition to split the margin for profit center Plant A and profit center plant B ?

When I use "split region by locator" , I first paste a copy of the the originl region and then use command Y without a problem!
Hope this helps!

Similar Messages

  • Split header at the left and right margins

    I want to split my header where the book name is by the left margin and chapter title on the right margin. Is this possible?

    Hi Jerry:  This is my issue. As you can see, I have to tab over and then space over to get it over to the right margin.  Seems like quite a silly issue, but I can't figure this one out!  Also, in my format toolbar, I can't find the tab that's in your screenshot, nor do I find it when I go to customize toolbar. I'm sure this is an easy fix, and I'm overthinking it.
    Thanks for responding.
    Eleni

  • Spry menu bar changed since I tried to split cells in a table! Help!

    I am VERY new to web design, so I apologize in advance for being ignorant.  I am trying to learn!
    I had inserted a spry menu bar that looked fine and even tested fine!
    I subsequently tried to split a section of my table in the web page in order to have 3 columns of centered text.  The first time I did this, the spry menu bar became vertical even though it is listed as horizontal.  I looked up a forum answer, copied the code from the suggestion, and that seemed to fix the problem (although I still don't know what EXACTLY happened)
    I tried to split the table again (I had undone everything prior to this), only this time, the spry menu bar is located outside the page in the left hand corner where my background (I have a wrapper) is.  I tried opening another page where I already had a nice spry menu bar, and it did the same thing!! This makes me think it is the CSS sheet for the menu bar that was modified somehow when I split the table.  I'm pasting the CSS here below, so if anyone sees any issues that might cause this problem, please let me know!! I have been working for the most part in design view, and haven't really modified the code other than to put a wrapper in and a facebook like button, which I've now lost in the slitting cells catastrophe.  Thanks in advance!!!
    @charset "UTF-8";
    /* SpryMenuBarHorizontal.css - Revision: Spry Preview Release 1.4 */
    /* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */
    LAYOUT INFORMATION: describes box model, positioning, z-order
    /* The outermost container of the Menu Bar, an auto width box with no margin or padding */
    ul.MenuBarHorizontal
    margin-top: 0;
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
    padding: 0;
    list-style-type: none;
    font-size: 12pt;
    cursor: default;
    width: 60%;
    float: left;
    /* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
    ul.MenuBarActive
    z-index: 1000;
    /* Menu item containers, position children relative to this container and are a fixed width */
    ul.MenuBarHorizontal li
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 12pt;
    position: relative;
    text-align: left;
    cursor: pointer;
    width: auto;
    float: left;
    background-color: #99CC66;
    /* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
    ul.MenuBarHorizontal ul
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 100%;
    z-index: 1020;
    cursor: default;
    width: auto;
    position: absolute;
    left: -1000em;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
    left: auto;
    /* Menu item containers are same fixed width as parent */
    ul.MenuBarHorizontal ul li
    width: auto;
    /* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
    ul.MenuBarHorizontal ul ul
    position: absolute;
    margin: -5% 0 0 95%;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
    left: auto;
    top: 0;
    DESIGN INFORMATION: describes color scheme, borders, fonts
    /* Submenu containers have borders on all sides */
    ul.MenuBarHorizontal ul
    border: 1px solid #CCC;
    /* Menu items are a light gray block with padding and no text decoration */
    ul.MenuBarHorizontal a
    display: block;
    cursor: pointer;
    background-color: #99CC66;
    padding: 0.5em 0.75em;
    color: #333;
    text-decoration: none;
    /* Menu items that have mouse over or focus have a blue background and white text */
    ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
    background-color: #336600;
    color: #FFF;
    /* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
    ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
    background-color: #33C;
    color: #FFF;
    SUBMENU INDICATION: styles if there is a submenu under a given menu item
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal a.MenuBarItemSubmenu
    background-image: url(SpryMenuBarDown.gif);
    background-repeat: no-repeat;
    background-position: 95% 50%;
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenu
    background-image: url(SpryMenuBarRight.gif);
    background-repeat: no-repeat;
    background-position: 95% 50%;
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal a.MenuBarItemSubmenuHover
    background-image: url(SpryMenuBarDownHover.gif);
    background-repeat: no-repeat;
    background-position: 95% 50%;
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover
    background-image: url(SpryMenuBarRightHover.gif);
    background-repeat: no-repeat;
    background-position: 95% 50%;
    BROWSER HACKS: the hacks below should not be changed unless you are an expert
    /* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
    ul.MenuBarHorizontal iframe
    position: absolute;
    z-index: 1010;
    /* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
    @media screen, projection
    ul.MenuBarHorizontal li.MenuBarItemIE
      display: inline;
      f\loat: left;
      background: #FFF;

    Well, I took a picture of my dreamweaver screen, so you can see what I am looking at...
    You can see that the spry menu bar shows up in the top left corner in my design view, but on the website, it is located in the correct place! Maybe it is a Dreamweaver problem??? This happened when I tried to split the cell underneath the section that says "Let NOLA Scribes help you!" into 5 cells so that I could insert 5 differnet pictures and captions. Now, when I open the other linked pages in Dreamweaver, it does the same thing! I'm using an older version of Dreamweaver, but from what I read, that shouldn't be an issue.  Thanks in advance for your help!

  • Question about Noise Margin and Line Attenuation a...

    1.       For several years I have had a BT telephone line.  From the utilities provided by http://www.kitz.co.uk/adsl I find  that I am connected to the Exchange at Merton Park (BT Code: LSMEPK)  Distance:-   Direct:    960 metres (appx)*  By Road:  1.29 km. Exchange Status ADSL enabled: March 30, 2000 DSL Max enabled:   March 30, 2006 SDSL enabled : Enabled  21CN due : (PSTN) N/A 21CN WBC (Broadband)   Enabled 15.02.09
    2.       I  previously had broadband from UKOnline  and used a Speedtouch 570 adsl modem. I was paying £9.99 for a speed of 1MBit/s – in practice 700K – which was fine for most purposes but BBC iplayer did struggle a bit. UkOnline has been taken over by SKY so I switched to BT Total Broadband Option 3 in mid December, and initially used the Speedtouch 570 as there were delivery delays on BT Home Hub 2.0 due to weather conditions.  Speed was initially very good but did not measure it.
    3.       After Xmas I set up the BT Home Hub and ran a  speed test  - the profile was 2.5MBit/s.  I was disappointed to get less than 3Mbit/s which is needed for BBC iplayer HD.
    ADSL line status
    Connection information
    Line state  Connected
    Connection time  0 days, 2:26:57 ------> 6th January 2011
    Downstream  2,268 Kbps
    Upstream  440 Kbps
    ADSL settings
    VPI/VCI  0/38
    Type  PPPoA
    Modulation  ITU-T G.992.5 ---à this apparently means ADSL2+
    Latency type  Interleaved
    Noise margin (Down/Up)  15.7 dB / 31.9 dB
    Line attenuation (Down/Up)  27.0 dB / 9.7 dB
    Output power (Down/Up)  0.0 dBm / 12.7 dBm
    Loss of Framing (Local)  22
    Loss of Signal (Local)  3
    Loss of Power (Local)  0
    FEC Errors (Down/Up)  6512 / 0
    CRC Errors (Down/Up)  0 / 2147480000
    HEC Errors (Down/Up)  nil / 0
    Error Seconds (Local)  2
    4.       As part of the “slow speed wizard” I looked into getting the accelerator plate for my NTE5 split face master socket available for postage only (£1.20) but the web form advised me that if I proceeded with this order the broadband contract would automatically be extended by 12 months. I checked my BT internet account and was surprised to find an email (23rd Dec 2010) advising me that as an Option *1* customer I was in danger of exceeding my usage allowance – which surprised me as I am definitely Option 3. I wondered if I had had the speed throttled. Therefore phoned BT accounts who said the email was a mistake - I am Option 3,  also said that accelerator plate was unlikely to make a difference.
    5.       I contacted the BT call centre who talked me through various options. Plugging the hub direct into the master socket made no difference.  They also ran a line test and said the line was fine.
    6.       I therefore browsed the community care forum and find that disappointing speeds are not uncommon. One of the threads mentioned disconnecting the bell wire on the extensions. I follow this advice and removed line 3 on all extensions and then checked the ADSL status on the hub.
    ADSL line status
    Connection information
    Line state  Connected
    Connection time  0 days, 6:33:45 10th January 2011
    Downstream  2,272 Kbps
    Upstream  888 Kbps
    ADSL settings
    VPI/VCI  0/38
    Type  PPPoA
    Modulation  ITU-T G.992.5
    Latency type  Interleaved
    Noise margin (Down/Up)  31.8 dB / 14.4 dB
    Line attenuation (Down/Up)  27.0 dB / 9.7 dB
    Output power (Down/Up)  0.0 dBm / 12.3 dBm
    Loss of Framing (Local)  0
    Loss of Signal (Local)  0
    Loss of Power (Local)  0
    FEC Errors (Down/Up)  0 / 0
    CRC Errors (Down/Up)  0 / 2147480000
    HEC Errors (Down/Up)  nil / 0
    Error Seconds (Local)  0
    7.       This had a dramatic improvement on Upstream speed –  and a big change to the noise margin Noise margin which had been (Down/Up) 15.7 dB / 31.9 dB  and is now Noise margin (Down/Up)  31.8 dB / 14.4 dB. It did not improve the download speed.
    8.       In the following days the BT hub has not been particularly stable with some intermittent loss of wireless connectivity every few hours. Examining the event log I was a bit disconcerted to see  alterations to firewall settings had happened (which I hadn’t made) and resets which I am pretty certain I hadn’t made – and a userid login with a name like TR69. Perhaps these are occasioned by the BT speedtester? To be fair I had reset and powered off the hub a number of times in attempt to sort out this problems.
    9.        I have switched to a Netgear DG83GT (V1.03.23)  for the time being until I have what I can regard as a reasonably fast stabile connection.  At the time of writing this has been stable for 20 hours DownStream Connection Speed 2268 kbps UpStream Connection Speed  888 kbps.As stated earlier I would like downstream to be faster.
    The perceived wisdom on the forum seems to be that several days of complete stability are required if there is to be any improvement on speed.
    10.   If a moderator or anyone with the relevant experience reads this I would be very grateful for answers to the follow questions:
    A.      Is the change in the Noise Margin parameter a good thing or a bad thing?
    B.      Are the line attenuation figures acceptable for a distance of under 1.5kilometres to the exchange?
    C.      Should I be able in theory to get a faster speed i.e. downstream 3Mbit/s?
    D.      From the forum it seems to take several days for speed adjustments to be effected or to take effect – is this a technical issue or a policy issue?
    Many thanks.
    Robert
    Solved!
    Go to Solution.

    Good Morning - it is now 6 days since this posting. During this time there have been 2 resets of the adsl line
    Fri, 2011-01-14 03:28:43 - LCP down.
    Fri, 2011-01-14 03:28:54 - Initialize LCP.
    Fri, 2011-01-14 03:28:54 - LCP is allowed to come up.
    Fri, 2011-01-14 03:28:54 - CHAP authentication success
    and
    Sun, 2011-01-16 16:37:26 - LCP down.
    Sun, 2011-01-16 16:37:36 - Initialize LCP.
    Sun, 2011-01-16 16:37:36 - LCP is allowed to come up.
    Sun, 2011-01-16 16:37:36 - CHAP authentication success
    These were not initiated by me - and since noise margins and sync speeds changed as a consequence can I assume that this is evidence of the adaptive process working?
    Secondly, as you can see, the noise ratio has vastly improved as have the upstream and downstream sync speeds
             System Up Time 157:54:52               
          ADSL Link          Downstream          Upstream              
          Connection Speed           11199 kbps           1091 kbps                
          Line Attenuation           27.0 db           9.9 db                
          Noise Margin           14.8 db           9.2 db               
    BUT from the BT speedtester, as shown below  I seem to be stuck in a banded IP profile of 1750/1091 which is very different from the  downstream sync speeds of 11199 Kbps(DOWN-STREAM)
    Can BT staff take action to alter this? If they can how do I contact them?
    Regards,
    Robert
    18th Jan 2010
     Download Speed    1288 Kbps
     0 Kbps   2000 Kbps
    Max Achievable Speed
     Download speedachieved during the test was - 1288 Kbps
     For your connection, the acceptable range of speedsis 800-2000 Kbps.
     Additional Information:
     Your DSL Connection Rate :11199 Kbps(DOWN-STREAM), 1091 Kbps(UP-STREAM)
     IP Profile for your line is - 1750 Kbps
    The throughput of Best Efforts (BE) classes achieved during the test is - 2.28:10.77:87.0 (SBE:NBEBE)
    These figures represent the ratio while sententiously passing Sub BE, Normal BE and Priority BE marked traffic.
    The results of this test will vary depending on the way your ISP has decided to use these traffic classes.
    2. Upstream Test: -provides background information.
      Upload Speed       896 Kbps
    0 Kbps   1091 Kbps
    Max Achievable Speed
    >Upload speed achieved during the test was - 896 Kbps
     Additional Information:
     Upstream Rate IP profile on your line is - 1091 Kbps

  • Split Standard Cost during Goods Issue

    Dear Experts,
    I have a problem and would like to take your help.
    In SD, when we do a good issue to customer i.e. during posting of delivery document, the system credits the inventory and debits the SCOGS. In most of the clients I have worked, the SCOGS always is posted to a singe GL account.
    Is it possible to do a SCOGS posting to various GL accounts by splitting the SCOGS into its various components like - Material, Labor, External costs, etc?
    Any help will be highly appreciated.
    Thanks and regards,
    Vishal.

    Hi,
    OBYC has automatic account assignment (GBB/VAX/VAY) for COGS PGI posting. I don't see a way, you can achieve this in standard SAP. Moreover, how did you plan to determine cost components splits (Mat, Lab etc.,)? from CO-PC?
    Is this conceived as a work around to activating CO-PA? Otherwise, I can suggest you to consider activating CO-PA, which does exactly what you expect (margin reporting), provided you have CO-PC active.
    If CO-PA is ruled out, then some kind of enhancement should be thought of. Posting cost component break-up to FI-GL may not be a legal requirement and I see this as more of a internal management reporting. So, instead of focussing on posting to GL, focus on creating a report which shows this break up.
    Hope this helps.

  • How can I return to a split screen set-up?

    While I was away on business, a co-worker shared my computer and somehow changed the appearance of my inbox to a full screen. I want to return to the split screen which allows me to see my e-mails and read the highlighted one in the split screen format I had originally.

    Please keep your discussion in this thread. Do not PM me. Other people might benefit from the discussion.
    You say that pressing F8 does not turn on the Message Pane? You are in the main window with your Inbox showing right?
    From the Menu Bar select View-Layout. is Message Pane checked?
    No Menu Bar? Press the alt key.
    If it is checked and still no message pane showing, maybe it got dragged off the bottom of the screen. Move your mouse down toward the bottom margin of the screen and watch for it to change to a double headed arrow. When it does click and drag up to see if you can pull up the message pane.

  • Magin change moving from Design to Split views

    For some reason, the margins of my HTML page change when I
    move from split view to design view. The page is a single table,
    centered with <center>, but when I change views, they whole
    thing shifts over by 19 pixels, from being centered starting at 309
    to being centered starting at 328.
    What the heck!?? Anyone know what might be causing
    this?

    Appearance of a vertical scrollbar?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "D Cam" <[email protected]> wrote in message
    news:fbt85u$cpv$[email protected]..
    > For some reason, the margins of my HTML page change when
    I move from split
    > view
    > to design view. The page is a single table, centered
    with <center>, but
    > when I
    > change views, they whole thing shifts over by 19 pixels,
    from being
    > centered
    > starting at 309 to being centered starting at 328.
    >
    > What the heck!?? Anyone know what might be causing this?
    >

  • How can a 2 column text frame be split into 2 separate text frames?

    Hi InDesigners,
    I have a 12 spread (22 page) document that was originally created with a single column primary text frame in CS6. It contains text and anchored images throughout the doc. (images are anchored to the text frame).
    My client now wants each page split into 2 columns, but the columns need to have different widths - the left column needs to be narrower than the right. Although I can create 2 columns in a single frame, it's not possible to adjust the column widths separately, so I need to get them into 2 separate frames.
    Is there a way to convert a 2 column text frame into 2 separate text frames, so I can resize the column widths invididually?
    kind regards,
    -c

    hi, Thanks for the replies,
    The doc size is 8.5"x11", with 1/2 " margins. I never mentioned anything about it being a book. (It's just a paper my client wrote and woud like a PDF of it). The reason for the uneven columns is he wants the images to be 4" wide. For some reason, he wasn't keen on just a single column with text wrapped around the pix. I proposed making a 3" left column threaded into a 4" right col with a .5" gutter between them and he wants it that way.
    Thank you both for your respones. I'll try the script
    -c

  • Split A3 into two A4 pages

    Hi all,
    Just wondering if anyone knows of an easy way to split one A3 page (with photos, text boxes, graphics etc - there's no inline text) into its two respective A4 pages (ie. top & bottom) in a new document. I tried just copy and pasting it but for some reason it converts everything into inline formatting, changes its size and so it takes some time to put it back together - I have a whole calendar to change from A3 to A4!
    Thanks
    Bryce

    Hi bcammo
    Welcome to the forum.
    It depends how you created the original A3 Calendar.
    Did you create it in Word Processing mode or Page Layout mode? It says which after the file name in the title bar of the document.
    If all the images and text are in separate floating image boxes and text boxes:
    Hold down the command key to turn your cursor into a selection pointer.
    Start dragging from outside the page or margin around the parts you want to collect.
    +Menu > Arrange > Group+
    This is just to keep them together and not accidental dislodge any pieces.
    Copy and paste to your horizontal A4 copy.
    Another way is to export the A3 version to a .pdf, then bring it back into the A4 versions as a graphic, alternately showing the top and the bottom on 2 separate pages.
    If you just want to tile print it, then try:
    http://www.macupdate.com/info.php/id/20637/tiler (free)
    http://www.macupdate.com/info.php/id/19256/poster-print (US(US$18.90)8.90)
    Peter

  • Right margin ?  and JSrollBar question

    To keep my components from being too close to the edge on the left hand side of my app, i use:
    container.add(Box.createRigidArea(new Dimension(5,0)));
    My question is how i can acheive the same 5 pixel wide margin on the right handside of my container. If i do 'newDimension(5, (getWidth() - 5))' will this be respected as the component is enlarged or is there a better way ?
    Secondly i have 2 JScrollBars (each with a JTable) in a splitPane, the horizontal scroll bar outline always shows but never with the blue bar part. Here is the relevant code:
    JScrollPane s1 = new JScrollPane(getTableA());
    JScrollPane s2 = new JScrollPane(getTableB());
        JSplitPane spl = new JSplitPane(JSplitPane.VERTICAL_SPLIT,s1, s2);
        s1.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_ALWAYS);
        s1.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED);
        s2.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_ALWAYS);     s2.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED); 
    void set(Container pane){
    pane.setLayout(new BoxLayout(pane, BoxLayout.Y_AXIS));
    //returns the split pane above
    pane.add(getSpl());
    }Thanks for the help

    Regarding the margin, it appears i can't apply this to a container. Is there another way ?Borders are only for Swing components so you would at the Border to the panel you added to the content pane.
    if the table doesn't resize to the size of the application it looks very bad indeedIf the table resizes to the size of the application then there is no need for horizontal scrollbars.

  • How to center page in Split and Design view?

    When I look at my template in Design or Split View, it is flush right on my screen with a top margin of 20 px or so. But when I check it in Live View, or when I preview it on Firefox/Safari/Chrome/Opera, it is centered and flush against the top of the screen.
    I should add that the template was fine in Design and split, until I started mucking about the a spry menu. My page fell apart, I deleted the spry with plans ot start over. But then I discovered my template flush right (in Design and Split, anyway).
    Can anyone please tell me how to correct this? I suppose it's more of a nuisance than a tragedy, as long as the page is centered when it goes online. But it is a nuisance to work on the right side of the screen.
    Coding follows:
        margin-top: 0px;
        margin-left: 0px;
    #wrapper {
        background-image: url(../template%20images/mainBody.jpg);
        background-repeat: repeat;
        overflow: hidden;
        width: 800px;
        background-color: #CCC;
        margin-right: auto;
        margin-left: auto;
    #wrapper #header {
        height: 150px;
        width: 800px;
        background-color: #CCC;
        background-image: url(../template%20images/header.jpg);
    #wrapper #navBar {
        height: 55px;
        width: 800px;
        background-color: #666;
        background-image: url(../template%20images/navBar.jpg);
    #wrapper #mainBody {
        width: 80%;
        margin: 0 auto;
        padding-top: 20px;
        font-family: Arial, Helvetica, sans-serif;
    #wrapper #footer {
        background-image: url(../template%20images/footer.jpg);
        width: 800px;
        height: 60px;
        text-align: center;
        font-size: 16pt;
        clear: both;
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <!-- TemplateBeginEditable name="doctitle" -->
    <title>2000_template</title>
    <!-- TemplateEndEditable -->
    <link href="../CSS/layout.css" rel="stylesheet" type="text/css" />
    <style type="text/css">
    <!--
    -->
    </style>
    </head>
    <body>
    <div id="wrapper">
    <div id="header">
    </div><!--close header-->
    <div id="navBar">
      </div><!--close navBar-->
    <div id="mainBody"><!--begin mainBody--><!-- TemplateBeginEditable name="mainContent" -->
      <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam dolor libero, aliquam vitae scelerisque in, malesuada non neque. </p>
      <p>Phasellus dignissim arcu eget velit posuere vel varius magna dapibus. Phasellus pharetra imperdiet nunc, vel interdum dolor fermentum id. Integer luctus mollis tempor. Nunc lacus urna, blandit sollicitudin cursus at, ultrices et erat. Sed rhoncus, ipsum vitae dictum scelerisque, diam felis euismod augue, a facilisis massa augue ut nibh. </p>
      <p>Sed ac ante magna. Nulla consequat posuere ullamcorper. In interdum, elit sed tempor suscipit, quam mauris egestas justo, sed lobortis sem magna a mi. Etiam tincidunt fringilla sapien, congue condimentum augue adipiscing ut. Nam pretium egestas lacus in elementum. Vivamus eros erat, varius nec aliquam quis, congue at orci.</p>
    <p>Vivamus eget felis purus, in porta tellus. Nullam ac orci eu arcu luctus ornare. Aliquam quis ligula metus. Morbi congue cursus justo, et sagittis sem adipiscing blandit. </p>
    <p>Quisque sed bibendum nisi. Curabitur ultrices imperdiet lacus in ullamcorper. Etiam pulvinar magna et neque congue eu aliquam metus semper. </p>
    <!-- TemplateEndEditable --></div>
    <!--close main body-->
    <div id="footer"><!-- TemplateBeginEditable name="footerPage" -->
      <p> &#8249; &#8249; Previous    1 :: 2 :: 3 :: 4    Continue &#8250; &#8250;</p>
    <!-- TemplateEndEditable --></div><!--close footer-->
    </div><!--close wrapper-->
    </body>
    </html>

    Get rid of this.
        margin-top: 0px;
        margin-left: 0px;
    The universal selector (asterisk) applies whatever styles you give it to  EVERY PAGE ELEMENT regardless of where it is.  So unless you know  exactly what you're doing, don't use universal selectors.
    To center your page
    body {
    width:900px /**some width in pixels, ems or %}
    margin:0 auto;
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb

  • How can I make a Splitting in Cost center accounting by Cost elements?

    Hi experts:
    I have defined a splitting structure and I would like to split the cost bettew fixed and variables cost.
    To to that I have defined two different assignments and in the selection for each assignment  I have completed the "Field label" with:
    In the first assigment I would like to have only the "fixed cost" and I did the next:
    1. Cost element (I have entered a Group) the cost which is in this cost element group is 4.000.0000 euros
    2.- Activity type (I have entered a Individual value)
    In the second assignment I did the same but with a different Cost element group (the original amount was 6.000.000 euros
    The problem is that when I have executed the transaction to do the split, the system split the 50% of the total cost (10.000.000 euros)  to each assignment.
    How can I make if I want that the system split the cost based only in the "cost element group" which are defined one of them for the "Fixed cost" and the another one for "Variable cost"??
    Are there any method which can split a total Cost for a Cost center based only in the cost amount for a cost element group??
    Thanks a regards!!
    Manuel

    sry. im not from the united states, and I never think to spell when posting on forums
    Your site's customers will think of it, and they will regard such errors as the mark of a sloppy vendor, not a sloppy webmaster.  And I'm not sure what being from the US has to do with anything.
    I want to position the container in the center while having absolute positioning, is that possible?
    I have doubts, I've seen a lot of people saying that u can't center a container with aboslute position.
    Then you should remove those people from your circle of trust.  Of course it's possible.
    Make the container relatively positioned, and centering with an explicit width and auto left/right margins.  The inner absolutely positioned elements will center along with their positioned ancestor.

  • DW CS3 crashing due to negative margin CSS?

    I have a simply CSS layout with an element I'm positioning with a negative top margin.
    Every time I input the margin attribute when in either Design view or Split view Dreamweaver throws the spinning beachball of death and I have to force quit.
    I inched my way up to -100px just fine. As soon as I hit -200 pix I'm toast. I have replicated this over and over. I've tossed preferences, I've rebooted. I've opened other pages. I successfully input the proper value in Code view. But as soon as I toggle to Design or Split, same thing.
    I'm using DW CS3, on a Mac G5 tower with loads of RAM, hard drive space. I'm running the current OS X update for my G5.
    Insanely, the file will also crash DW CS3 on my MacBook Pro.
    What could be so bad about one CSS entry that DW cannot display the page?
    I don't recall ever seeing a CSS rule limiting negative margin...

    8k exactly? As in 8192 bytes? If so, then you've been lucky to not see it crash. Try adding a comment line to the file just to bump it out of that 8K figure. Although I seem to recall that the 8k bug would crash DW without even getting the chance to open the file. There might be a chance that embedded CSS in an HTML file equals that number of bytes, too. If so, add a comment line there, too.
    FWIW, the following causes no troubles on my CS3 Vista box.
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
    <html>
      <head>
        <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
        <title>Untitled Document</title>
        <style type="text/css">
          #neg {
            margin-top: -212px; /* or any large number. Tried it up to 1024*/
        </style>
      </head>
      <body>
        <div id="neg">This is my negative margin content</div>
        <p>Here is my body content.</p>
      </body>
    </html>
    Mark A. Boyd
    Keep-On-Learnin' :-)

  • Split a webpage in two?

    Anyone know how I could put a background on a webpage that
    splits exactly vertically down the middle (white on the left, black
    on the right)? It needs to sit in the background so I can pput
    stuff on top of it, and it needs to be in the background so that it
    goes all the way to edges without a border around it.

    On 10 Apr 2007 in macromedia.dreamweaver, Michael Hager
    wrote:
    > Why not just use a background color? If all you want is
    black and
    > white, couldn't you just use a 100% wide table 2 cells
    wide one
    > black and one white with 0 borders and margines?
    >
    > Maybe I'm missing something but why load an image if you
    don't have
    > to?
    a) the image is small - a 2-color, 3000x5 pixel image, runs
    to all of
    275 bytes.
    b) it's so much easier to span stuff across the center of the
    page if
    you're dealing with a background image, rather than trying to
    get them
    to line up in adjacent table cells. Consider:
    body {
    background-image : url(bwimage.gif) ;
    background-repeat : repeat-y ;
    background-position : top center ;
    <body>
    <h1 style="text-align:center;">Hello, World!</h1>
    Versus:
    <body>
    <table>
    <tr>
    <td style="background-color:#000;">
    <h1 style="text-align:right;">Hello,</h1>
    </td>
    <td style="background-color:#fff;">
    <h1 style="text-align:left;">World</h1>
    </td>
    </td>
    Which is going to be easier to work with?
    Joe Makowiec
    http://makowiec.net/
    Email:
    http://makowiec.net/contact.php

  • No 'Viewer' view in fullscreen only Browser and Split

    I'm not sure if I am doing something stupid here. I installed the 3.1 update and launched Aperture and I have lost the full screen 'Viewer' view. Pressing V toggles between Browser and Split view. All three views are selectable in the non full screen view.
    I'm following the Aperture 3 Pro training series book, so it's possible that I have changed something but I'm pretty sure it was fine before the 3.1 update.
    Any ideas?
    Thanks,
    Gareth.

    Is the 'always show filmstrip' slider (on the right edge of the filmstrip between the last image and the right margin) in the down or 'on' position?

Maybe you are looking for

  • WAD: function to change scaling factors

    Hi, in the web application designer, i would like to insert a button that changes the scaling factors of certain key figures in the report. i cannot find a function in the WAD to influence the scaling factor of a key figure. any help? thx!

  • Belkin support is now useless ( WPSM54G question)

    I talked with one of the live chat people and they couldn't even link me to the latest firmware for this thing. "Not supported...buzz off" was pretty much what I was told to do. I have this thing working with Windows 8.1 using the manual method (LPR1

  • N97 Browsing from Rss feed

    Hi all, first post on here. I decided (for some mad reason) last month to get a N97 rather than a iphone...I think I was going to miss a good camera, and I thought it was too much. Anyway I have a good few issues with the thing, one being If I click

  • Passing object between dialogs. please help

    I have a panel which displays student's info. There is a button called "Create New Student" When the button is clicked, a new Dialog will shows up, where users can enter basic info for new student. My question is, after a user finish entering data fo

  • One common filter interface

    I think it would be nice to have EVERY filter in the filter gallery. It`s disturbing to have only some of the filters in the filter gallery. We also need much more Pixel Bender filters. I know of the Pixel Bender exchange site , but what we need are