Set margin using

Hi All,
i want to use set margin statement for my exicutable program output.. my output  list should maintain 5 characters left margin
how to code.
pls suggest me.
thanx
Rams

http://help.sap.com/saphelp_nw04s/helpdata/en/43/578dd44e3a30b4e10000000a11466f/frameset.htm
https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes/sdn_oss_boj_erq/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333233303332333033343334%7D.do

Similar Messages

  • Setting margins using format and document

    I am using Appleworks 6.2.9 with OS 10.6.8.  I tried to change the margins on a document by going to format then document on the drop down menu as I have down a million times before.  This time when I tried to enter .75 for the top and bottom margins, a message popped up which said it was in invalid #.   I also tried .5, 1, .33.    None of these worked.  They have all worked in the past.
    What form does the # need to be in to be able to change the margin width at the top, bottom, and sides?  Nothing I entered worked.
    Thanks!

    There are a lot of things that don't work in Snow Leopard as they used to in earlier versions of OS X. The only thing to do to get all of the functionality of AppleWorks is to use an earlier version of OS X, perhaps Tiger, 10.4.11.

  • How do I set margins in Numbers, where did page set up go?

    Since I have upgraded to Mavrick, everything has changed in Pages and Numbers, the main reason I left Microsoft was because of the constantly changing software with each update.  The Inspector is gone and in Numbers the left hand column listing all my tables has disappeared/changed to a row which I have to continuously scroll through.  Arrrrgh!  Is there any way to get that back?  Also . . .   Can anyone tell me where I can find the Page set up or set margins in Numbers? 

    Hi 'cat,
    It appears te main push behind the latest 'upgrade'to the iWork applications was to provide compatibility/similarity between the iOS versions and the Mac versions. A lot of features were lost in the change, some of which have made theri way back into Numbers 3, etc., others that are scheduled to be brought back, and still others for which there's been no indication.
    Inspector functions are now handled via the formatting button (paint brush), as well as the button bar that appears when a cell is selected.
    With the greater focus on iOS, features pertaining to printing to paper have been largely forgotten. There's no way I'm aware of to set document margins in  Numbers 3.
    The features you mention are still available in Numbers 2.3, which will, if you had it installed earlier, still be on your Mac. You'll find it in a folder named iWork '09, located in the Applications folder.
    Any document you've opened in and saved from Numbers 3 will need to be re-opened in N3 and Exported as a Numbers '09 document before it can be opened in Numbers '09, and may be missing some features not supported in Numbers 3.
    While its probably not a long-term solution, returnng to Numbers '09 may provide an interim fix while waiting for N3 to get the updates you need.
    Meantime, add your voice to the rest requesting the reinstatement of any features you consider essential. Use the Provide Numbers Feedback item in the Numbers menu to make your request.
    Regards,
    Barry

  • Set margins when printing

    I have problems to set the margins for printing..
    I set margins in this way:
    when I start the printing process I do:
            PrinterJob job = PrinterJob.getPrinterJob();
            final Stamp canvas = new Stamp();
            job.setPrintable(canvas);
            MediaPrintableArea area = new MediaPrintableArea(10, 10, 170, 255, MediaPrintableArea.MM);
            HashPrintRequestAttributeSet aset = new HashPrintRequestAttributeSet();
            aset.add(area);
            if (job.printDialog()) { // chiede conferma definitiva
                try {
                    job.print(aset);
                } catch (PrinterException ex) {
                    Logger.getLogger(Stampa_Try_For_PreciseLocation.class.getName()).log(Level.SEVERE, null, ex);
            }in the canvas class I try to read the margins :
    public int print(Graphics g, PageFormat pageFormat, int pageIndex) {
            if (pageIndex >= 1) {
                return Printable.NO_SUCH_PAGE;
            Graphics2D g2 = (Graphics2D) g;
            g2.translate(pageFormat.getImageableX(), pageFormat.getImageableY());
            AffineTransform at = new AffineTransform();
            at.scale(pageFormat.getImageableWidth(), pageFormat.getImageableHeight());
            g2.transform(at);
            double pageWidth = pageFormat.getWidth();
            double pageHeight = pageFormat.getHeight();
            double pageSpUsedX = pageFormat.getImageableX();
            double pageSpUsedY = pageFormat.getImageableY();
            double pageSpUsedWidth = pageFormat.getImageableWidth();
            double pageSpUsedHeight = pageFormat.getImageableHeight();
            System.out.print("larghezza pg = " + pageWidth);
            System.out.println(" ; altezza pg = " + pageHeight);
            System.out.print ("area usabile X = " + pageSpUsedX);
            System.out.println(" ; area usabile Y = " + pageSpUsedY);
            System.out.print("area usabile larghezza  = " + pageSpUsedWidth);
            System.out.println("  ; area usabile altezza = " + pageSpUsedHeight);
            g2.drawString("x as", (float)pageSpUsedX                         , (float)pageSpUsedY);
            g2.drawString("x ad", (float)pageSpUsedX + (float)pageSpUsedWidth, (float)pageSpUsedY);
            g2.drawString("x bs", (float)pageSpUsedX                         , (float)pageSpUsedY + (float)pageSpUsedHeight);
            g2.drawString("x bd", (float)pageSpUsedX+ (float)pageSpUsedWidth , (float)pageSpUsedY + (float)pageSpUsedHeight);
                    return Printable.PAGE_EXISTS;
        }But the result is not what I expected to be....
    I am working at a program that have to print 'something' on paper's labels
    placed in a normal sheet format A4.
    and for this purpose it is very important to have the contrlo where the letters are wrote..
    I don't know what it is wrong and I need some help..
    thank you in advance..
    regards
    tomyMrsangelo

    hi Andre,
    thank you to answering me,
    I tried with your code but still I have not the control that I would have printing.
    Perhaps I misunderstand the role and the means of the parameters used for set the printable
    area.......
    For example.. when I set the margins in this way:
    MediaPrintableArea area = new MediaPrintableArea(10, 10, 170, 255, MediaPrintableArea.MM);
    I expect to have one area printable with the shape of a rectangle that, on a sheet of
    paper A4 format, begin in the corner up to left in the point (5, 10) and have a horizontal size
    of 180 millimeters and a vertical size of 265 millimeters.
    But this is not happen..., I measured the horizontal side in 150 millimeters (instead 170) and
    the vertical size in 248 millimeters (instead 255)....
    Measuring the coords of the corner on top to left, I got (5, 13) and not (10, 10).
    .....I tried with other values of parameters and never I got the exact values that I expected to have.
    Having to print labels glued on a paper sheet - A4 format,
    *I need to be sure that when the statement
    g2.drawString("x", 0, 0);
    is executed
    The character x is wrote, on the paper, at the point 10, 10. *
    Perhaps
    g2.drawString("+", 0, 0);
    is not the right operation to get this target..... ????
    Regards
    tonyMrsangelo

  • E-studio 282 sets margins on top of the document

    Hi there,
    For 3 days now I am trying to pring a PDF document no whole a4 page. The problem is that the printer always sets margins on top of the document - moving it down by the value of margin.
    That way the document wit a size of A4 starts printing about 0,5cm from tol with couses that it gets on the bottom (outside of a paper sheet).
    I tried the same dacument on other printers and it prints out fine.
    Another thing i tried was setting (in e-studio) the top and bottom margins while printing.
    It just causes 'cutting' top/bottom fragment of document.
    Also I tried to mess around with e-studio282 settings and the
    "Print Properties>Finishing>Use custom margins..."
    Doesnt allow me to set value lower than 0.5cm.
    Is there any way to solve my issue?

    Hi StishMa
    I doubt someone here would be able to provide a solution to your printing issue because in this forum you can find Toshiba enthusiasts who share the experience especially about the notebooks, consumer products like HDDs and multimedia (TV devices).
    But I recommend you to check the user manual page 236 Setting the print options area:
    http://www.eid.toshiba.com.au/customers/c_es281c/Manuals/pdf/Printing%20Guide.pdf

  • How set margin/padding top to combobox selected value

    Hi,
    Again I am facing new problem with combobox component, i need to set margin/padding top to combobox selected data using external AS file.
    I have tried the code --> combo_box.setStyle("marginTop", 5); and also used similar styles but its not working.
    Need your suggestions and help.
    Thanks.

    Hi,
    i strongly urge you to read some book about CSS and forget using deprecated HTML tags like FONT.
    Why am i saying that?
    Well, you don't want to change a page template or a report definition every time the user complains about the size of a font or the space between lines, do you?
    CSS is all about presenting the page the way you want, setting margins, spaces, fonts and so on.
    You should focus on the content, the data, leaving the task of formatting to one or more CSS stylesheet linked in the HTML header.
    I recommend reading some articles first, at least to have a general idea of mainstream techniques:
    http://www.alistapart.com/articles/goingtoprint/
    http://webdesign.about.com/cs/css/a/aa042103a.htm
    Or you can google around searching for "css formatting printer friendly" to get a bunch of pages.
    Flavio
    http://oraclequirks.blogspot.com

  • SETTING MARGIN IN THE MAIL APP

    Hi
    Can somebody help me please ?
    I'm trying to set an inch vertical margin using the mail app on my MacBook Pro
    But I dont know how to set this.
    I'm using mountain lion
    Please can someone guide me through the steps. As the margin is so close to the left hand side that I keep having to use the space bar to align the email I am writing.
    Also how do you set the size of the lettering (font)  so its stays on the size I choose because it keeps going back to the size I DONT want to use as it is too small
    Many thanks. & hope somebody can help.

    I go to th menu and select window but no change the new mail box stays on top and I still can not get to my in box.

  • Hi. I am using the iPhone 4S and when I'm searching for places using Google it does not automatically detect my location. How do I change this? FYI...under settings i have it set at "Use new precise locations from my device."

    Hi. I am using the iPhone 4S and when I'm searching for places using Google it does not automatically detect my location. How do I change this? FYI...under settings i have it set at "Use new precise locations from my device."

    If you are missing using google maps - try the Nokia map app called "here"

  • I want to set up my Epson printer using an airport and RR router. It was previously set up using a different router through HTC but same printer. How do I do this?

    I want to set up my Epson printer using an Airport and RR router. The same Mac Book and printer was formerly set up using a HTC router. How do I reset computer so it communicates with printer?

    http://support.apple.com/kb/HT3771
    Mac 101: Printing (Mac OS X v10.6)

  • My new ipad was set up using the wrong apple id.  How do i change it to the correct ID so that my iTunes recognizes it as the main device?

    Help!  My new iPad Air was set up using my parents apple ID and iTunes account.  How do i change it to my own ID and iTunes so that it is recognized as the main device?

    Settings > iTunes & App Store > Sign Out.
    Sign in with the correct ID.
    JGreenzang wrote:
    so that it is recognized as the main device?
    There is no such thing.  Please explain what is really meant by the above statement.

  • I have moved to uk from ireland and bought new iphone, set up using my existing Apple ID account and profile but won't let me buy install or update apps??

    I have moved to uk from ireland and bought new iphone, set up using my existing Apple ID account and profile but won't let me buy install or update apps??
    Can anyone advise me on what I need to do?
    My existing account is linked to ireland as my bank account details are there, does this make a difference?
    Please help!

    Until you get a UK bank account and credit card, buy and redeem UK iTunes gift cards for use in the iTunes and Mac App Stores. But you need to switch your region/country to the UK store in your account information, as you can't use UK iTunes gift cards in the Irish stores, the gift cards are country specific.

  • I re-set password using specific user ID but when I put new password in it does not say incorrect password  it just spins and spins never accepting it.  What is the problem?

    I re-set password using specific user ID but when I put new password in it does not say incorrect password  it just spins and spins never accepting it.  What is the problem?

    Update on my problem connecting in Itunes with my Airport Express. Not sure if anything I tried made a difference
    but I finally got the Pop up window saying this device requires a Password. I entered the password and I can once again use the Airport Express as a remote speaker.

  • How to Set and Use a global variable within a session?

    Dear All,
    I'm new to jsp, and would like to ask how to set and use a global variable within a session?
    Thanks in advance.
    Regards,
    Cecil

    With session.setAttribute("name",object) you can store a Attribute in the session object.
    with session.getAttribute("name") you can get it.
    That's it.
    Regards,
    Geri

  • How does one install non-English character sets for use with the "find" function in Acrabat Pro 11?

    I have pdf files in European languages and want to be able to enter non-English characters in the "find" function. How does one install other character sets for use with Acrobat Pro XI?

    Have you tried applying the update by going to Help>Updates within Photoshop Lightroom?  The update should be using the same licensing?  Did you perhaps customize the installation location?  Finally which operating system are you using?

  • Conversions between character sets when using exp and imp utilities

    I use EE8ISO8859P2 character set on my server,
    when exporting database with NLS_LANG not set
    then conversion should be done between
    EE8ISO8859P2 and US7ASCII charsets, so some
    characters not present in US7ASCII should not be
    successfully converted.
    But when I import such a dump, all characters not
    present in US7ASCII charset are imported to the database.
    I thought that some characters should be lost when
    doing such a conversions, can someone tell me why is it not so?

    Not exactly. If the import is done with the same DB character set, then no matter how it has been exported. Conversion (corruption) may happen if the destination DB has a different character set. See this example :
    [ora102 work db102]$ echo $NLS_LANG
    AMERICAN_AMERICA.WE8ISO8859P15
    [ora102 work db102]$ sqlplus test/test
    SQL*Plus: Release 10.2.0.1.0 - Production on Tue Jul 25 14:47:01 2006
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
    With the Partitioning, OLAP and Data Mining options
    TEST@db102 SQL> create table test(col1 varchar2(1));
    Table created.
    TEST@db102 SQL> insert into test values(chr(166));
    1 row created.
    TEST@db102 SQL> select * from test;
    C
    ¦
    TEST@db102 SQL> exit
    Disconnected from Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
    With the Partitioning, OLAP and Data Mining options
    [ora102 work db102]$ export NLS_LANG=AMERICAN_AMERICA.EE8ISO8859P2
    [ora102 work db102]$ sqlplus test/test
    SQL*Plus: Release 10.2.0.1.0 - Production on Tue Jul 25 14:47:55 2006
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
    With the Partitioning, OLAP and Data Mining options
    TEST@db102 SQL> select col1, dump(col1) from test;
    C
    DUMP(COL1)
    ©
    Typ=1 Len=1: 166
    TEST@db102 SQL> exit
    Disconnected from Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
    With the Partitioning, OLAP and Data Mining options
    [ora102 work db102]$ echo $NLS_LANG
    AMERICAN_AMERICA.EE8ISO8859P2
    [ora102 work db102]$ exp test/test file=test.dmp tables=test
    Export: Release 10.2.0.1.0 - Production on Tue Jul 25 14:48:47 2006
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
    With the Partitioning, OLAP and Data Mining options
    Export done in EE8ISO8859P2 character set and AL16UTF16 NCHAR character set
    server uses WE8ISO8859P15 character set (possible charset conversion)
    About to export specified tables via Conventional Path ...
    . . exporting table                           TEST          1 rows exported
    Export terminated successfully without warnings.
    [ora102 work db102]$ sqlplus test/test
    SQL*Plus: Release 10.2.0.1.0 - Production on Tue Jul 25 14:48:56 2006
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
    With the Partitioning, OLAP and Data Mining options
    TEST@db102 SQL> drop table test purge;
    Table dropped.
    TEST@db102 SQL> exit
    Disconnected from Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
    With the Partitioning, OLAP and Data Mining options
    [ora102 work db102]$ imp test/test file=test.dmp
    Import: Release 10.2.0.1.0 - Production on Tue Jul 25 14:49:15 2006
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
    With the Partitioning, OLAP and Data Mining options
    Export file created by EXPORT:V10.02.01 via conventional path
    import done in EE8ISO8859P2 character set and AL16UTF16 NCHAR character set
    import server uses WE8ISO8859P15 character set (possible charset conversion)
    . importing TEST's objects into TEST
    . importing TEST's objects into TEST
    . . importing table                         "TEST"          1 rows imported
    Import terminated successfully without warnings.
    [ora102 work db102]$ export NLS_LANG=AMERICAN_AMERICA.WE8ISO8859P15
    [ora102 work db102]$ sqlplus test/test
    SQL*Plus: Release 10.2.0.1.0 - Production on Tue Jul 25 14:49:34 2006
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
    With the Partitioning, OLAP and Data Mining options
    TEST@db102 SQL> select col1, dump(col1) from test;
    C
    DUMP(COL1)
    ¦
    Typ=1 Len=1: 166
    TEST@db102 SQL>

Maybe you are looking for

  • Error While Saving Appraisal Template into Customizing Request

    Dear Experts, I am getting an error message while trying to save any changes in 'Appraisal Catalog'. And when I am transporting it to QAS. Please let me know how to rectify this error... Error Message: Table HRPAD605 is not part of the Customizing ob

  • Errors in jserv.log

    Hi, for the moment when we click on E_BUSINESS or OAM link on home page of Oracle applications we have http 404 error The requested URL /oa_servlets/AppsLogin was not found on this server In jserv.log we have [[09/11/2007 15:37:29:146 CET] Repository

  • WebDynpro ABAP + Team viewer integration

    Hi All, I have webDynPro ABAP application and a Enterprise Portal 6.0 SP2 with MSS package 6.0 installed on it. As you know there is a teamviewer iview on the left frame of portal and when you click on one person in the team viewer list and event is

  • High resolution imageDraw-ing

    Hi, I make 2D arrays that I display with g2d.drawImage. The thing is that these 2D arrays can be quite a bit smaller than the no. of screen pixels (especially in the x/horizontal direction), and I end up with a very blocky image on the screen. So wha

  • Looooong Time To Repair Permissions

    Brand new machine so I'm just learning it. Repair Permissions first reviews the Permissions Data Base. This takes 4 1/5 minutes by the clock. That seems a very long time. Is it normal? Then, it takes 2 min to repair even though it found nothing to re