Right-justified for amount in sap scipt

Hi,
good morning guys.
I dev the sap script for cust.statment. every thing is fine.  i need to show the amounts like
10000.00
  2000.90
    100.00
20000.00
but now iam getting the amt the differnt positions. i used the Right-justified &symbol(r)& but no use. and i used the &symbol(c)&
no use. iam not getting the right way.
my paragraph format  and tab postion *** like below
first tab : 2.55 cm left ,
second  : 5.10cm left,
third: 6.50cm,left,
fourth: 9.0cm,left,
fivth:10.0cm,left,
sixth:12.50 cm,DECIMAL
seventh:13.50cm,DECIMLA
eighth: 16.50cm, LEFT
ninth: 18.00CM,DECIMLA
plz can any one tell me how to over come thisprob
regards
chandu

Hi Chandu,
Please use Right tab position in your paragraph format. In your paragraph format all tab position are from left.
Regards,
Chandra K

Similar Messages

  • Output Format for Amount in SAP Script PO

    Hi,
    In my Standard SAP Script PO Form 'MEDRUCK', all amount values are getting printed in the form 1.234.567,89 but I want them to be in the Form 1,234,567.89 .
    For doing this I have gone in T-Code SU3 and set the default decimal notation as
    X 1,234,567.89 . 
    I have also tried by giving the command
    /: SET COUNTRY 'IN'
    But still the amounts in the ouput format is coming in the same way 1.234.567,89 .
    If anyone has faced similar situation, plz tell how to change the output format of amount in SAP Script.
    Thanks and Regards,
    Nitin Gupta

    I have tried using SU3 but it's not worknig. Is their any other method also of which maybe I am not aware of?

  • FW: Caret Location Right Justified for LI when using HTMLEditorKit

    It appears that when using the HTMLEditorKit and inserting any sort of list
    item (ordered list or unordered list) into a view (while in edit mode), the
    caret is initially *---------| right justified with respect to the bullet
    image. If the identical html is loaded all at once however the caret is *-|
    left justified with respect to the bullet image. Is this a bug in
    HTMLEditorKit?

    Sure it is. In this special case IBM's JDK does a better job (at least under Linux).
    Generally I'm totally disappointed by the whole HTML package. I've been trying to implement a really primitive WYSIWIG-HTML-editor which understands <p>, <ul>, <h1> <b>, <i> and <a href>. It is a nightmare!
    - Dynamically modifying the document's structure (e.g., by making a <li> out of a <p>) works more or less, but you have absolutely no control over caret movement, and different JDK's make it differently!
    - The HTMLDocument inserts crude "extra-tags" (e.g., those <p-implied>'s. You never know exactly the structure of your document, and after a long debugging session you notice that the HTMLDocument was bluntly inserting yet another artificial element you did not specify. No docs at all what's going on.
    - It is nearly unbelievable how complicated so simple things like
    are internally modelled.
    - Frankly spoken: The whole document model sucks. Has to be harmonized with XML, DOM, JDOM, and all those nice new technologies where Java does a good job (unless you need a GUI...)
    If anybody has an idea to make it properly -> pls let me know
    thx
    Karl

  • Styled Text right justify for numbers

    I have a Sytled Text element in my UI that I use to store numbers and i would like to right justify the column so that the values line up properly. I'm using 11.5.10.

    i see it gets rendered this way
    <td class="x11 x50">
    < span ...... 10.0 </span>

  • SAP ABAP -- Is it the right choice for entering into SAP Technology

    Hi
    I have 4 years experience in JAVA/J2EE. But I am planning to switch my career now to SAP. I am planning for doing course in SAP ABAP.
    Please anyone suggest me if SAP ABAP would be a right choice. And how is the demand in SAP ABAP at present.
    Can I explore myself in SAP ABAP at this point.
    Best Regards
    Ranjan

    Just out of curiosity - why switch to SAP in the first place?
    Yes, if you are good at programming, then yes ABAP is the way to go. But please remember that while searching for jobs you will still be considered a fresher - in ABAP. You JAVA background has very little - if not zero - significance when it comes to experience.
    Of course you can go ahead and explore the ABAP world. You can download the trial version from the site and start pulling a few levers to see if you are comfortable.
    pk

  • Right path for sap hana

    Is this a right track for a fresher to get into SAP HANA?
    I am sap abap consultant and have interest to learn sap hana...
    According to me,I wanted to first learn sap bi through a small or local institute and the n go for sap hana training from Sap bangalore center
    Is this the right track for me?
    SAP ABAP--->>SAP BI--->>>SAP HANA.
    Can anyone guide me about how much experience will be sufficient to gain sap hana?

    If you do not have knowledge on SAP BW, BO, BI then also you can learn (career) in HANA. SAP pointed HANA as the in Memory DB as same as the place where all applications going to run in future. If you’re a person known to Database Concepts and having basic Knowledge of SQL will help you to learn SAP HANA at ease.
    Since you are an ABAP Consultant the knowledge of ABAP will help you in understanding the business logic implementation. Do not think that ABAP is going to get wind up, it is getting powered by HANA with Smarter, Lighter and Faster that is called ABAP for SAP HANA. Good Career you find while learning HANA with ABAP. Chances of earning $80000 - $160000
    Learning HANA Modeling is easy when you have knowledge of BW if not, you will get to it on the class.
    You will get to know Business Objects concepts at the time of HANA ideas on Reporting, if you are known to it then you will find your way on HANA Reporting.
    SAP Business Intelligence the DW operational tool which helps you to understand implementation ideas from Business Warehouse on HANA viewpoint. If you are not going to work on BW on HANA it is not necessary to learn SAP BI.
    So it is not necessary learning SAP BI Before going to SAP HANA but Choose the Platform on which you have planned since there are various types of HANA Certification. If you have still doubts  look into these words http://scn.sap.com/docs/DOC-39531 for better concepts or talk to top trainers for direct interactions at http://techjobs.sulekha.com/sap-hana-training

  • How to do Right Justified in the mappin

    Hi friends,
    Can you help me to do the right justified for example 39.56- this should right side not from left. this field length is 11. infront of this 39.56 should be blank spaceses paded. how to do this
    please help me
    Thanks
    ramidi

    Ramidi,
    Create simple UDF. Let say my input parameter name is "abc" . Write the below code in it
    StringBuffer pad= new StringBuffer();
    String ret_string="";
    int add=0;
    int trunc=0;
    if(abc.length()<=11)
    add =11-abc.length();
    if(abc.length()>11)
    ret_string =abc.substring(0,11);
    else
    for(int i=0;i<add;i++)
    pad.append(" ");
    ret_string = pad.toString()""abc;
    return""ret_string"";
    Hope it helps!!!
    Best regards,
    raj.

  • Struggling with Comma for an amount in sap script

    Hi Experts
    I am strugling with comma for an amount in sap script .
    For ex: 1234.56  and i need 1,234.56
    I tried  system->userprofile->owndata->Default(Tab)->Decima Notation 1,234,567..89(Selected)
    and i did use /:Edit Mask Field name  but i am not getting comma.
    Thanks & Regards
    Reddy

    Hello,
    In the driver program, assign the amount to a variable of type P and use that variable to display in the script. You will get the commas.
    Vikranth

  • DW Right-justifying the index for one site only

    Dreamweaver has suddenly started showing the directory for one of my sites as right-justified:
    Does anyone know how I can get this back to left-justified?
    Thanks
    Steve

    toonbone23 wrote:
    ...Adobe who know exactly what causes this. Don't they ever visit the forum?.
    Steve
    I'm not sure they do!
    This is a user forum.  I htink if you want an answer to your question, you might like to consder raising a support ticket.  I come here quite a bit, and I have never noticed anyone ever having the same thing happen to them.
    Martin

  • Weird character 'u00A4' display  at output of  ADOBE form in SAP for amount

    When display pattern for amount field is set for ADOBE form in SAP, output displays ' ¤ '.
    All display patterns shows '$' at the begining, but when output is generated it displays '¤'.
    Advice me how to eliminate this. (or)
    Is there a way to hide this character.

    I am not saying this is your problem BUT I was troubled for quite a while by having unprintable characters imbedded within text fields.  It turns out that Ctrl V character was being embedded within text by user.
    So I suggest that you view the data while in debug and do it in hex.  This was the only way I was able to see that I had a problem with the text itself.  Then I was able to add logic to filter for these errors.

  • Is it the right time for me to get SAP SD Certification?

    Greetings everyone!!!
    For the past few days, I have been thinking alot about taking my career to a new step and get SAP SD certification.
    But before venturing further into it, let me briefly explain about my Background.
    I am a marketing Post Graduate and an MBA with an Experience of 10 months in the field of Sales and Business Development, in the Wellness Industry. (I have attached my curriculum vitae for you all to study and help me in selecting the right path)
    As of now, I think of two possible ways of going about the SAP Certification. (Since I have more or less decided to do it anyway)
    1. To get more experience in the domain and then get the certification
    2. To get the certification right away
    I should also declare this before hand that i have no hands on experience with any of the ERP software in practice today. But i do know little bit about Tally. And, if I have to get that before taking us SAP Certification, then that would mean searching for a new job and working in the new job for some time to get to know the basics.
    Also, after visiting the SAP Academy in my city, they offered me two options -
    a) ILT (Instructor Led Training)
    b) E Learning
    I wanted to know if there will be a vast difference between the learning outcome from these two, and which one should i prefer joining. Its just that, If i go for the ILT, I will have to quit my job, where as on the other hand, I can pursue the course without leaving the job, but within 200 Hrs of Campus E Learning.
    Also, considering my background, is Sales and Distribution the correct module for me or should i consider doing any other course.
    Apart from all the above, is there ANYTHING ELSE i am missing?
    Kindly show me the light.
    Thanks and Regards,
    Vedansh

    Hi Vwdansh,
    generally SD modules are taken by MBA or related professionals because of having a domain knowledge in Sales and Distribution area, so your choice is good, however there are some more functional module exits in SAP which can be taken as an career option like CRM etc, for details about the major SAP functional module you can search on Google on in SCN.
    When it comes to taking a training , you can opt for weekends classes as it is a suitable option for a working proffessional, the concern is that while having a online training , you may face some problem in which online suggestion will not provide you any fruitful meanings as your learnings, so a classroom training should be prefferable.
    As you have working experiences so i will suggest you to take training from any authorised training center, ask the councellor that you wants weekends classes so that your present work will not get interrupted.
    Finally, SD module is a right choice for you but once you should search some more major module that may suits you, because in SD there are so many people already working, but its not the case with CRM.
    If you have any further query, please revert.

  • Right justify in sap script

    Hi all
    I had a paragraph in left alignment  sap script , But in this paragraph one field I want to make right justify..
    How to do this?
    Plz help me

    Hi Velter,,
    I checked it well...
    i have following fields to print..
    ZEILE, MATNR ,CHARG, KOSTL, LGORT, MENGE ,MEINS, maktx,
    and format is like:
    item  matrial     batch  costcen.  sto. 
            mat desc.                          qty Un
    zeile   matnr      charg    kostl   lgort
              maktx                                menge   meins
    and in this format I want to display menge and meins fields in right alingment ,
    Plz help me...
    I gave tab like
    1 cm left
    4 cm right
    5 cm left
    in paragraph p1.
    Plz help me....

  • Negative Sign in the front for amount

    Hi Friends,
    i am facing problem in negative sign
    while using fm : cloi_put_sign_in_front which accepts char variable.
    In my report amount type is char15 and here negative sign appears after using this fm but when i download this data in one other char structure DATA: BEGIN OF itab_proextract OCCURS 0,
            line(502) TYPE c,
          END OF itab_proextract.
    Amount is right justified always..but afterusing this amount gets displayed in left due to this my other variable which are getting downloded after amount comes as concatenated for ex...
    Before :
    00102384NALCUS/406FED      00AX          4.26-         5126.84-
    After
    00102384NALCUS/406FED      00AX-4.26           -5126.84
    Please help me....

    Hi,
      You can reer to the following links:
    negative sign in front.
    negative sign before amount in report display(urgent)
    or
    try this code
    data : l_amt(15) value '435.46-'.
    CALL FUNCTION 'CLOI_PUT_SIGN_IN_FRONT'
           CHANGING
                VALUE = l_amt.
    write : l_amt.
    or
    you can try this :
    DATA : BEGIN OF IG_DOWNLOAD OCCURS 0,
    F1(4),
    F2(4),
    F3 TYPE DMBTR,
    F4 TYPE I,
    F5 TYPE NETPR,
    F6,
    END OF IG_DOWNLOAD.
    DATA : BEGIN OF IG_DOWNLOAD1 OCCURS 0,
    F1(4),
    F2(4),
    F3(16),
    F4 TYPE I,
    F5(16),
    F6,
    END OF IG_DOWNLOAD1.
    DATA : VALUE(16).
    IG_DOWNLOAD-F1 = 'AAAA'.
    IG_DOWNLOAD-F2 = 'BBBB'.
    IG_DOWNLOAD-F3 = '-3.86'.
    IG_DOWNLOAD-F4 = 1.
    IG_DOWNLOAD-F5 = '4.58-'.
    IG_DOWNLOAD-F6 = 'A'.
    APPEND IG_DOWNLOAD.
    CLEAR IG_DOWNLOAD.
    LOOP AT IG_DOWNLOAD.
    MOVE-CORRESPONDING IG_DOWNLOAD TO IG_DOWNLOAD1.
    VALUE = IG_DOWNLOAD-F3.
    CALL FUNCTION 'CLOI_PUT_SIGN_IN_FRONT'
    CHANGING
    VALUE = VALUE.
    IG_DOWNLOAD1-F3 = VALUE.
    VALUE = IG_DOWNLOAD-F5.
    CALL FUNCTION 'CLOI_PUT_SIGN_IN_FRONT'
    CHANGING
    VALUE = VALUE.
    IG_DOWNLOAD1-F5 = VALUE.
    APPEND IG_DOWNLOAD1.
    CLEAR IG_DOWNLOAD1.
    ENDLOOP.
    CALL FUNCTION 'GUI_DOWNLOAD'
    EXPORTING
    FILENAME = 'C:\A1.xls'
    FILETYPE = 'ASC'
    WRITE_FIELD_SEPARATOR = 'X'
    TABLES
    DATA_TAB = IG_DOWNLOAD1.
    Thank You.
    Regads,
    Dhanalakshmi L

  • Can we create Debit note for Vendors in SAP system?

    Hi,
    Can we create Debit note for Vendors in SAP system?
    If yes, then how do we go about the whole thing , can someone please explain?
    Thanks,
    Chintan.

    Hi Chintan
    If i get it right u r asking for <b>DEBIT memo</b>
    There is no concept of debit memo in SAP
    and If u want to debit vendors accounts for Overcharging in PO u can pass credit Memo in MIRO which in turn will debit vendors account by that amount
    Steps to pass credit memo are as follows
    Trnx Code MIRO
    Enter invoice date
    Select Credit memo from Transaction dropdown
    Give PO number in PO reference
    Enter Amount and Qty for credit memo
    Select tax code if required
    Rest same like miro
    Save MIRO
    Vishal..

  • Requesting advise for career in SAP SD

    Greetings Expert,
           I am Thanraaj. My educational qualification is MBA Marketing and B.Tech Automobile engineering. I have an experience of 9 months in sales [ retail sales - ICICI securities ltd.]. I have resigned my job now.
           I am interested in doing SAP and so i consulted a SAP Authorized partner at Chennai. They are recommending me to do SAP SD module. The module duration is 25 days with a fee of 3.6 lac's. They are assuring for 100% placements too.
          My concerns are;
    1. Am I really eligible for doing the SAP SD module?  Is my experience enough?
    2. After doing this module and getting certified, what is the possibility of getting placed as a fresher in SAP SD with 9 months of experience in sales?
    Kindly, assist me to take a right decision.
    Thanks in advance,..
    Message was edited by: Colleen Lee - changing title to remove the air of impatience!

    Is my experience enough?
    Honestly, not enough to become as a SD Functional Consultant
    They are assuring for 100% placements too.
    Almost all training centers will give this promise because they dont want to lose the amount what you are going to pay.  But at the end of your training, they will tell that if any suitable opening comes, will let you know by email.  For this, you need to continuously follow up with them.  If I am correct, statistics says hardly 1% of the student get placement through their training centers.  Of course, there are certain IT firms who employ SAP freshers, give basic training to handle tickets and put you in some project.  For this, you are prepared to give an undertaking for couple of years.  If you ask me which one to choose whether SD or CRM, I would prefer SD since it has wide opening globally than CRM.
    G. Lakshmipathi

Maybe you are looking for