Parallel paragraphs in the same window - Sapscript

Hi, I want to place two paragraphs next to each other in the same window .
I have tried to do it with paragraph formats but always get the same result, a paragraph below the other.
How can i do it ?
Edited by: Marcel ochoa on Jan 27, 2011 2:40 PM

two windows side by side is the option I would explore

Similar Messages

  • Can Bootcamp and Parallels share the same Windows applications and data?

    I'm looking at getting an Intel iMac which will let me throw away my old PC - Yeah!
    I will have a couple of Win apps that I will need to hang on to (Quicken - Quicken for Mac is horrible, but that's another tghread). Anyway, can Bootcamp and Parallels share the same Windows applications and data?
    My thought would be to allow my wife to access Quicken from Parallels and not have to reboot. She will only need lightweight access and the overhead of running virtualization wouldn't impact her. I, on the other hand, would want to occasionally boot natively into Windows and run the same application with the same datafile. Is this possible?
    Thanks and looking forward to joining the MacIntel world!

    Thanks for all of the freplies. I suspected that BootCamp and Parallels could not shar ethe same partition, but wanted to verify. To address some of the other posts:
    Re: Quicken vs MoneyDance - I looked at MoneyDance a while back and while it is comparable to Quicken for Mac, it isn't comparable to Quicken for Windows (ergo, Quicken for Mac isn't comparable to Quicken for Windows!). But, as I said, that is a topic for another thread!
    Re: Using Bootcamp/Parallels for only one app: I actually have several apps that I still need access to on Windows. I work with many business applications than only run/are supported on Windows as well as receive some complex Office documents which Office for Mac cannot handle. Quicken (for Windows 2007) was just the best example of a consumer app where I could see wanting access from both OS X and Windows.

  • Keep a paragraph on the same page as the previous paragraph

    I know I can keep a paragraph on the same page as the next paragraph but I need to create a paragraph style that keeps a paragraph of the same page as the PREVIOUS paragraph. Is there anyway to do this?
    I used to be able to do it using my "old" M$ Windows DTP package.

    Hi Possum,
    This works. Here is a screen shot from Pages with "Show Invisibles" (the blue spaces and paragraph marks):
    Line spacing is set in Inspector to add space after each paragraph without adding blank lines (it's better that way).
    Dish Title, all descriptions, Price and the blank line below are set to "Keep with following paragraph".
    Do not include the final blank line (which is really blank) in this linking.
    Type this in Pages. Copy everything and then repeatedly Paste. See if the new pages appear as you want them.
    Regards,
    Ian.

  • How to apply different styels to different variable in the same window

    Dear experts
    can any one tell me how to print to different variable with different smartstyle in the same window in Smartforms
    thanks in advance

    Not possible to switch dynamically a smartstyle inside a text. A workaround is to use a SAPscript style (SE72) and switch to it with the following control command inside the text. To come back to the original smartstyle within the same text (if you need it) I think you may use style name *.
    /: STYLE <stylename>
    (please search SDN if you need more information)

  • Is there a way to add two windows in the same window?

    is there a way to add two windows in the same window?

    what do you mean by your first use of the word "window"? do you mean a visible frame? a section of the gui that the user doesnt see?
    or perhaps you mean you want to add multiple tabs to a single window, so that switching between tabs shows different windows?

  • Multiple installations of XI 3.0 on the same Windows server

    Hi,
    is it possible to have multiple instances of XI 3.0 installed on the same Windows server? I know that I can create seperate database users for the repositories and that I can have different ports configured for CMS. I'm concerned about the registry and whether a second installation would overwrite the registry for the first installation or if there are anyother show stoppers.
    Thanks,
    Matt

    Not yet, I know our product group is looking at this but currently only 1 per windows server. They are now supporting XI3 on top of XIR2 or other products known as side by side install. I don't have any type of ETA and wouldn't expect it soon.
    Regards,
    Tim

  • In Firefox 5, New Windows open in the same window even though the options are set to open in a new window.

    I have the options set to open new windows in a new tab. However, they do not.
    For example, as I click on the various options for support on Firefox.com, each opens in the same window. Similarly for Yahoo. If I bring up the news page and click on various links, they all open in the same window. How do you get them to open in new windows?

    Pure speculation, but maybe that Identity Finder program is deleting your browsing history which is how Firefox restores tabs and windows from the previous session. Check with technical support for that program or look at the manual.

  • Open a URL link in the same window as SWF file in indesign CS5

    Hello,
    I am trying to create a SWF file using indesign CS5.  I have created buttons and placed in URL links but they always open another window.  I would like to know if there is a way to have the URL open in the same window that the SWF file has been created.  I tried, putting "_self" to target it in the URL bar, but nothing works.
    Thanks in advance
    TK

    Okay, I found the code but I can't get it to work locally.  If you have a web server maybe you can upload the files (swf and html) after you Publish them:
    import flash.net.URLRequest;
    import flash.events.MouseEvent;
    var myURL:URLRequest = new URLRequest ("http://www.google.com");
    testlink.addEventListener(MouseEvent.CLICK, clickText);
    function clickText(myevent:MouseEvent):void {
    navigateToURL(myURL, "_self");
    you have to have on the stage a link element called "testlink" (see the code above) which would be a Movie Clip with the label testlink.  It can be anything from InDesign:  a button, a rectangle, a circle, a graphic, you get the idea.  Just select that object in Flash and label it testlink or anything you choose but if you change the name from testlink also change the name in the code snippet where the line "addEventListener" is.

  • Open link in the same Window

    Hello,
    i want to open a link from a WDA Action Method, in order to open a bsp applikation. The new page should appear in the same window (no popup, no new window). Here the code which i have at the moment, but the BSP Applikation starts always in a new window. What can i do ?
    data:
    lt_parameters TYPE TIHTTPNVP,
    ls_url               type string,
    lo_window_manager type ref to if_wd_window_manager,
    lo_api_component      type ref to if_wd_component,
    lo_window                type ref to if_wd_window.
    CALL METHOD cl_http_ext_webapp=>create_url_for_bsp_application
          EXPORTING
            bsp_application       = 'ZHRMPBA004'
            bsp_start_page       = 'ZHRMPBPTI006.htm'
            bsp_start_parameters = lt_parameters
          IMPORTING
            abs_url              = ls_url.
    lo_api_component  = wd_comp_controller->wd_get_api( ).
    lo_window_manager = lo_api_component->get_window_manager( ).
    CALL METHOD lo_window_manager->CREATE_external_WINDOW
              EXPORTING     URL            = ls_url
             RECEIVING     WINDOW         = lo_window.
    lo_window->open( ).
    thanks for replays

    You are calling CREATE_external_WINDOW. That API is designed to open the application in a new window.  So that isn't appropriate for what you want.  If you want to navigate in place then you should use an Exit Navigation Plug.
    http://help.sap.com/saphelp_nw70ehp1/helpdata/en/48/ca3351508f04e7e10000000a42189c/frameset.htm

  • Open a URL in the same window

    Hi,
    My objective is to open a URL when i click on a webdynpro iView in the same window.
    I created a outbound plug in the InterfaceViewController.
    And wrote this piece of code in wdDoBeforeNavigation() in Component controller.
    wdThis.wdGetExternalComponentInterfaceViewController().wdFirePlugGoToUrl(Url);
    Where "Url" is a string variable contaning the value.
    But when i run this piece of sode it gives exception
    "Exit-Plug must no be triggered with an URL when running in portal. Use portal navigation instead to navigate to another application!"
    So what should i do solve this problem
    Regards,
    Paresh

    HI,
    Procudere to create the LogoffURL
    In the Application properties add your URL name.
    LogoffURL = http:
    www.google.com
    1.      Define an exit plug in the interface view of your Web Dynpro component:
                                a.      Enter a name and check the checkbox Exit Plug.
                                b.      Enter the name Url for the parameter and select string as the type.
    This parameter is case-sensitive and must be entered exactly this way.
           2.      In your view, define the action Exit and add the event handler onActionExit().
           3.      In the view layout, define a button and bind its onAction event to the Exit action.
           4.      In your view, define the use of the interface view controller of your Web Dynpro component under Properties.
           5.      Insert the following code in this method of the implementation:
    String logoffURL = wdComponentAPI.getApplication().getApplicationInfo().findInApplicationProperties("sap.logoffURL").getValue();
    wdThis.wdGetTimeCompInterfaceViewController().wdFirePlugExit(logoffURL);
    OR Do u need to generate the URL by using the application?
    Thanks,
    Lohi.

  • Open new window in the same Window

    Im developing a project in JavaFX where I wish to open the new window in the same window
    Here is my code :
    Stage st=(Stage)((Node)t.getSource()).getScene().getWindow();
    I tried this but its giving an exception

    It is possible to specifiy a named window instead of _blank.
    So you could use the following instead:
    web.show_document('html/hello.htm','my_window');
    where my_window can be anything you want to call that browser window.
    However, I have discovered that if you put this in a button trigger, the second time you press the button (if the window is still open) it will not take focus - ie. it remains in the background.
    You can get around this by closing the window if it is already open:
    web.show_document('html/close.htm','my_window');
    web.show_document('html/hello.htm','my_window');
    The close.htm needs to contain some javascript to close the window:
    <html>
    <body onload="closeit()">
    <script>
    function closeit()
    window.opener = top;
    window.close();
    </script>
    </body>
    </html>
    Apparently XP SP2 is a little stricter with javascript and may not allow this. Also, not sure if this works in all browsers, I only tried IE6.

  • "Open each folder in the same window" not working

    hey guys, just today, I noticed that whenever i double click a folder, it opens in a new window.  I went to folder properties, and made sure I checked "Open each folder in the same window," and its checked.  I tried switching it on, then off, then restoring all defaults in both those settings and the view settings, and I've tried restarting the computer, even using a system restore point.  No Matter what, whenever I double click a window, it opens in a new window, but if I use the navigation pane, or if I highlight a window and click the open button at the top left, it opens in the same window.  This is very very very annoying, because just navigating my harddrive, I might end up with 20 windows open to reach just 1 file.
    Does anyone know what's wrong?  or how I can fix this? 

    I was experiencing this same issue on my laptop and spent several frustrating hours of searching in vain for a solution. I tried most of the same fixes mentioned here with no success (re-registering DLL's, running the system file checker [sfc /scannow],
    turning off the navigation pane, performing virus scans, etc). After almost giving up, I discovered that I only experienced this behavior when I accessed Explorer from the shortcut which was pinned to my taskbar. When I opened the "Computer" shortcut
    on my desktop, I was able to open individual folders without having new windows open each time. I suspect that this is related to the new design/function of the taskbar in Windows 7. To get the results I wanted, I opted to revert to the "classic" style
    taskbar seen in Windows Vista (AKA the "Quicklaunch" toolbar) by following the instructions here:
    http://www.howtogeek.com/howto/windows-7/add-the-quick-launch-bar-to-the-taskbar-in-windows-7/
    Then, I simply added a new shortcut to "Computer" in the new Quicklaunch toolbar and, "Voila!" - problem solved. Oddly enough, I don't experience the same behavior on my desktop PC which is also running Windows 7. Ain't Microshaft grand?!? (a-hem)

  • Open all documents in the same window ?

    How in Reader 9 can I configure it to open all documents in the same window instead of as individual windows?
    Thanks

    Bug report sent to Adobe:
    ******BUG******
    Concise problem statement:
    MDI removed from Reader 9
    Steps to reproduce bug:
    1. Open more than one document.
    2. Look at taskbar overflowing.
    3.
    Results: Customer is pissed off.
    Expected results: Happy customer.
    Steps to make customer happy: Get your heads out of your ***, and make MDI not just an option, but the DEFAULT. Who the hell thought going back to Windows 3.0 SDI interface technology was a good idea? Please post his/her name, and whoever approved that decision's name publically, because a) they will (or should) be looking for a new job since they just got fired, and b) I don't want to make the mistake of hiring them. I mean seriously. I thought what I was reading on the web was a hoax. I had to check snopes.com to be sure. Do you guys not have a random drug testing policy? For that matter, do you not realize that when a person, that you're trusting to make important decisions that affect millions of people, is sitting at their desk drooling on themselves and can't get out more than a single syllable word, that maybe, just maybe, they're not the person you should have in that position? Is this a product line wide decision? Should I look at scrapping all of my other Adobe / Macromedia products and upgrading to those that support 15 year old technology? Are you going to turn into another Symantec? Hey, lets buy take over great companies with great products, turn the product lines into crap, and then discontinue and abandon them. Seriously, what should we expect for Reader 10.0? Are you going to be upgrading to a console application? Please, please, please for 11.0 can we have it be phosphorous green too? I think Im going to go back to my bottle of wine now

  • Can I set Firefox to open a page link in the same window (not a new tab) so I can just go back to the page instead of having to close the window?

    When I am on some pages, clicking on a article/picture link opens a new tab instead of continuing in the same window. By staying in the same window, I can back click on my mouse and continue on with other reading/links on the original page without manually having to move the mouse and click to close the tab. For example: on news pages, if I click on a financial article, a new tab opens with that linked article on the website's financial site. If I keep going back to the original page w/o closing tabs, I end up with too many tabs open.

    yeah, instead of using multiple windows, you can use multiple tabs inside one window. That way, you can browse multiple websites at once without having to flick back and forth between multiple windows.
    To open tabs of the websites you want to browse, just right-hand click on whatever website you want to visit (For example a site from your bookmarks or a site from a Google search result) and select 'open link in tab'.

  • The link open in the same window - Label based menu

    Hi All,
    I'm using Xcelsius 2008.  I add a Selector Component "Selector complonenet > Label based menu". I setup 6 Lable and each one link to a URL. When clicking the label on the generated SWF report, the link opened in a new window.
    So i'd like to know if the link can open in the same window (not pop-up a window and open in it)?I tried to setup it in properties, but it seems there is no way to do this.
    Could I get your guide how to do that? Thank you so much.

    Hello
    I would like to know one thing before answring the question how did you link with an url with the label based menu.
    Did you used the opendocument syntax or what did you used.
    Another method is why donf you use the URL button and map according to your requirement. place the url button on the menu item and change the properties to tranperancy to 0%.
    Thanks
    Santhosh V
    Edited by: Santhosh Vudarla on Nov 19, 2010 12:05 PM

Maybe you are looking for

  • HT4437 i want to air play and apple tv in one device. Is that possible

    I am finding it all a little confusing.  I like the functionality of the airport express but wonder if the apple tv device allows the same with music and also adds the option to display on the tv? I currently use an ethernet connection to link my SON

  • Standard ALV Report default  print parameters

    Hi, We recently upgraded to ECC6. In some of the ALV reports for example F.35  (Credit Master Sheet) default print parameter has wider column specifications (X_65_255) as against earlier version (X_65_132). It might be due to flexibility in increasin

  • PO with Total Price amount calculated is incorrect at the time of printing.

    Hi Experts, I have one PO with Total Price amount calculated is incorrect at the time of printing. When my  user took the first print out the PO shows the incorrect Total amount. After 10 mins my user taken the printout again,that time it shows the T

  • My memory is 4gb for my macbook pro what is ram??

    My memory is 4gb for my macbook pro what is ram??

  • SAP BPM

    I am working as a SQL SERVER developer. I want to continue my career as Business Analyst. When I was searching for some BPM (Business Process Management) materials, I came across this SAP BPM. Can someone give me a basic idea regarding this "What is