How to remove spaces after description.

hi all,
i need to supress spaces after writing material description and i want to keep comma after description.
but it displays comma after field length (i e after  40 chars).But i need to keep comma after description it self.
example like this.
GR Number- 4900000400,
Batch Number-            ,
Material number- P0001016,
Material description- Returnable Pallet,
Vendor:            ,
GR Date: 16.02.2010 ;
Not Like this...
GR Number- 4900000400 ,
Batch Number-            ,
Material number- P0001016           ,
Material description- Returnable Pallet                        ,
Vendor:            ,
GR Date: 16.02.2010 ;
after  posting message the comma comes after desc in both the cases...but it wont in SAP
Appriciate your help.

Hi,
   Use condense statement.
Regards,
Srini.

Similar Messages

  • How to remove space after paragrph in pages on ipad

    Can't figure out how to remove space after each paragraph in Pages for Ipad

    Settings > General > International > Region Format
    Set it to your country to format numbers and dates in the way your country does.

  • How do I remove space after paragraph?

    Does Robohelp have the "Remove Space after paragraph" button for reducing the space between lines, like the one in Word?

    In HTML the space after is controlled by the style in your CSS file. You need to edit the style in the Style Editor.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • How to remove space from a variable in a smartform

    Hi,
    I have a problem in displaying a variable in a smartform..The variable shows some blank space that preceeds the data.
    for eg:,
    variable =        18.000.
    How to remove space before 18.000?

    To remove the decimal places for quantity and rate/quantity , use the syntax to restrict the number of digits after decimal places. The syntax is
    &symbol(.N)&
    where N is number of decimal places.
    Since you dont want decimals use &symbol(.0)&
    For the other case it depends on how the currency is represented , any way try using the syntex &symbol(T)&
    Please give me reward point If it is useful
    Thanks
    Murali Poli

  • How to remove space below text?

    In the screenshot below, how to remove space below text? I simply added a text box using the type tool and I get that extra space bellow the letter "B" that I don't need. I want to remove that space to center the letter within the octogon.
    Thanks!

    You might consider giving the letter a negative baseline shift and aligning it to centre.
    That way you can adjust it so that its anchor point coincides with the centre of the hexagon.
    Like this:
    Another thing: You may find it easier working with type if you hide bounding boxes.

  • How to remove space below the table in smartforms

    how to remove space below the table in smartforms

    maintain a loop counter for item say count
    and in text editer write
    if count > 6
      new-page.
    endif.

  • How to remove zero after decimal point.

    hi friends
    how to remove the zero after decimal points.
    example :
    123.450 -- if print only 123.45
    45.600  - 45.6
    any body help me.
    thanks
    pauldhama

    go through this example
    it may help u
    DATA: T(14) VALUE ' abcdefghij',
    STRING LIKE T,
    STR(6) VALUE 'ghijkl'.
    STRING = T.
    WRITE STRING.
    SHIFT STRING LEFT DELETING LEADING SPACE (or use 0 to detete 0).
    WRITE / STRING.
    STRING = T.
    SHIFT STRING RIGHT DELETING TRAILING STR or 0.
    WRITE / STRING.
    Output:
        abcdefghij
    abcdefghij
            abcdef

  • How to remove spaces at selection screen coming from logical database

    Hi Experties,
    When we hide some selection from the logical database.  The spaces still occupied and this make our selection screen looks awkward.
    How to remove the spaces left by hidden selection ?
    Regards
    Nislina

    Hi,
    I came across your un-answered question while searching for a solution on the similer problem. Though I couldn't fine a solution on SDN, but figured out one myself. Thought its a good idea to share it.
    AT SELECTION-SCREEN OUTPUT.
      LOOP AT SCREEN.
        IF screen-group4 = '003'.
          screen-active = 0.
          MODIFY SCREEN.
        ENDIF.
      ENDLOOP.
    Here screen-group4 contains the sequence number of the select-options field starting from 000 onwards.
    You may like to assign points and close the question.
    Kind Regards,
    Khalid Mustafa

  • How to remove Space

    Hi  group,
    I have one string with length 15 ,sometimes I am getting this fields with in between sapces and hyphen(-) ,how to remove these spaces and hyphen using JAVA in UDF.
    Can any suggest

    So is what you want some thing like pass all the numeric values in the 15 character long string..is it ?
    if yes please use this code in UDF...
    int len = input.length();
    String output = "";
    for(int i = 0; i < len; i++){
      if(Character.isDigit(input.charAt(i))){
        output+= input.charAt(i);
    return output;
    Thanks,

  • How to remove space before value in Excel

    Hi,
    Have to send mail with Excel attachment.
    for that SO_DOCUMENT_SEND_API1is using.
    Just concatenating data to Contentents_BIN Structure with cl_abap_char_utilities=>cr_lf to get record by record.
    But i'm getting space in seoncd record first cell along with value.same things for next records aswell.
    How to remove that space in excel attachment?

    Hi,
    Is the value right aligned? If you pass any whole number or decimal number values to the excel sheet, it will be displayed in right aligned format in excel sheet. What is the type of the value that you are passing to the excel sheet.
    Thanks & Regards
    Rocky

  • Help :how to remove spaces in string

    could any body please help me in removing spaces from string suppose i have written vivek chhabra and i want to remove spaces in this string and want a string vivekchhabra then how this could be done
    anybody help me please
    vivek

    String string = "Hello - This is a test!";
    String result = string.replaceAll(" ", "");
    System.out.println(result);This code results the following output:
    Hello-Thisisatest!

  • How to remove errors after running sapf190

    Hi everyone
    Can anyone please guide me what procedure do i have to follow if i found differences in one of the gls after running the report sapf190. The report shows me difference in one of the Gls with debit index, debit master not matching credit index and credit total master not matching. But the programme dont tells me how to remove this error. Your kind help will be really appreciated.
    Regards

    RESOLVED

  • How to remove spaces

    Assignee: cf_supp Status: Open, In Progress, Reopened, Test Deployment Pending, Production Deployment Pending, Ready for QA, Bus Analysis, Ready for Development and Deployment Complete Sorted by: Created descending, then Key descending
    the above is the paragraph that i am displaying in table from query but i am not able to remove spaces in between , i tried with trim and also with replace functions.
    Any help in this
    Thanks in advance

    the above is the paragraph that i am displaying in table from query but
    i am not able to remove spaces in between , i tried with trim and also
    with replace functions.
    There's always the old trick of continually applying a replacement function until you're done. It just might be of help here. I assume you will want to stop when there is only a single space between the words.
    <!--- variable to simulate a paragraph containing arbitrary space characters --->
    <cfsavecontent variable="paragraph">
    Assignee: cf_supp Status: Open, In Progress,
               Reopened,             Test Deployment Pending,   Production
                Deployment Pending,    Ready for QA, Bus
         Analysis, Ready for Development and Deployment
    Complete Sorted by: Created descending,              then Key descending
    </cfsavecontent>
    <p>
    <strong>Paragraph before:</strong>
    <pre><cfoutput>#paragraph#</cfoutput></pre>
    </p>
    <!--- Replace whitespace characters like linefeed, carriage-return, tab, space, etc., with a single space --->
    <cfset paragraph = REreplace(paragraph,"[[:space:]]", " ", "all")>
    <cfloop condition="true">
        <cfset old_paragraph = paragraph>   
        <!--- Replace two adjoining spaces with a single space --->
        <cfset paragraph = replace(paragraph,"  ", " ", "all")>
        <!--- Continue till there is no more replacement --->
        <cfif compareNoCase(old_paragraph, paragraph) is 0>
        <cfbreak>
        </cfif>
    </cfloop>
    <p>
    <strong>Paragraph after:</strong>
    <pre><cfoutput>#paragraph#</cfoutput></pre>
    </p>

  • How to remove space from satrting

    help me please
    i have 16 digit field ,  so in output i have only 5 digit and left  11 digit is comming blank
    so please tell me how to reduse space form starting
    my field is coming like this   -- Rs:            78,999.00 
    so i want to reduse space between Rs and amount
    thanks

    you can either use condense statement
    condense <field name>.
    You can also use the following function module.
    CALL FUNCTION 'CONVERSION_EXIT_ALPHA_OUTPUT'
      EXPORTING
        INPUT         = <FIELD NAME>
    IMPORTING
       OUTPUT        = <FIELD NAME>.

  • How to remove modules after installation

    Hi;
    Picture this please, u are making r11 installation and while u are making installation on Lisence Produts step you click Finance,Logistic etc.. modules and then you complite your installation wihtout any problem.
    After installation functional person comes and start to make their setup on EBS for all modules which is installed... After sometimes they notice The client doesnt need Logistic module, client side give wrong information about modules and person who made installation of EBS click Logistic wiht client wrong information.
    The question is:
    1. We can remove modules after installation?
    2. Is it better way to make new installation (Imagine fonctional is already work more than 2 months,if we make new instalaltion its mean we lose 2 months)
    3. If we can remove it can affect other module setups?
    Thanks for advice
    Regards
    Helios

    Hi,
    1. We can remove modules after installation?No.
    2. Is it better way to make new installation (Imagine fonctional is already work more than 2 months,if we make new instalaltion its mean we lose 2 months)It would be making a fresh installation or restoring from a backup to a point before this module was licensed.
    3. If we can remove it can affect other module setups?There is no direct and supported way to achieve this. However, you may log a SR and see if Oracle can help about this.
    Regards,
    Hussein

Maybe you are looking for

  • Request offering- how can I change the template

    I am trying to edit a request offering. I created a new template with different activates and wanted to apply that template to existing request offering. However, I can edit every field except change the template which is grey out. It is a same behav

  • Another Car Stereo Question.

    I know many of you guys still have problem connecting iphone to car stereo and there's no clear solution for this issue. But,i'm still posting the question about this. O.k. Here's thing. I've been connecting 2nd gen nano to Alpine Car stereo using Au

  • HEY GIVE ME SOME HELP !!!!!!!!!!!!!!!!

    Hey I try the java but NoClassDefFoundError. Which is it? Hurry!!!!!!

  • File Attachment assign in QM notification

    Dear all, Can we attach any document to QM notification type Q1? I want to attach photographs via D.M.S to the QM Notification. kindly advice. Regards, NKS

  • Perl-script  Net::SMTP and iMS. How To? :(

    How to configure iMS to send mail with Perl-script using Net::SMTP module? Script and iMS must run in different hosts.