Convert '000' char to '00' char

Hi all,
in my BDC Program, I have problem with WRBTR field, im my file has amout field(WRBTR) 3 decimal like '8567.000' but i want
to convert '8567.00' in my BDC program. i have tried with it_item-WRBTR type decimals 2, but does not work.... is there any idea for that?? might be i use with shift alignment but i dont know how to use...........
can you help me......
thanks in advance
zeni

Hi,
Did you try declaring the variable as :
data:  w_var1 type p decimals 2.
data:  w_var2 type wrbtr.
Now move the variable with decimal 3 to this variable and it will have only 2 decimals.
w_var1 = w_var2.
Regards,
Subramanian

Similar Messages

  • How can i convert a char[] to String?

    Hi all!,
    What would be the easiest way to convert a char[] to a String? Im trying to set the text of a JTextArea which takes a String as an arguement but i have a character arry that if filled from a FileReader. Any suggestions?
    Thanks.

    The easiest way would be new String(charArray). There's a version of the constructor in the String class that take a char array

  • Reg: convertion of char format to RAW.

    hii all,
              I am trying to convert the char data of length 22 to RAW16(output length 32) in the below manner.
      data : ip type char22,
             op type RAW16.
      field-symbols: <ptr_y> type RAW16.
      assign ip to <ptr_y> casting.
      move <ptr_y> to op.
      write : op.
    am i doing the correct way,for converting? bcos i am not getting the output that is requried.
    help me in this regards.
    with regards,
    sandeep akella.

    Hi,
    Uninterpreted byte stringis RAW. Fields of type RAW may have only a maximum length of 255 in tables.
    Declare as String variable and move in to this variable.
    Regards
    Md.MahaboobKhan

  • How can I convert a char to element? urgent !!!

    I have a String put into an charArray. now I want to convert this char to an Element-Type. Whats the right way ???
    thanks a lot for help

    private String htmlTagFilter(String htf)There is absolutely no way to get 'attributes' starting with the above method declaration. String doesn't have that information and nothing you do to it will get it.
    Now maybe the value of the string has text which describes an attribute. But if that is the case then you are going to have to go looking for it. That means parsing the string to find pieces and then extract it.
    getAttributes()-Method from class javax.swing.text. There is no such class. I would guess you are referring to javax.swing.text.Element and its method getAttributes().
    However that method returns an AttributeSet which is an interface. So to create your own AttributeSet you are going to have to know in great detail what exactly goes into that before you can parse a string and create it.
    I will go out on a limb here and suggest that you don't really want to parse that String. You are trying to achieve an objective and got off on this tangent. And if you explain how you got the string and what you want to do with it, maybe some one could explain how to do what you want.

  • Convertion from Char to Hex

    Hi Experts,
    I have a requirement to convert char type to Hex type.
    I have two structures. one is Character type and other is hex type like below.
    data: v_hex(300) type h,
            v_char(300) type c.
    When we move v_char(300) to v_char(300), it is working fine in 4.6 system.
    But it is giving unicode error in ECC 6.0. So i have changed the statement to v_hex = v_char.
    There is no syntax error but it is not converting the same.
    Please post your replies. Thanks in advance.

    REPORT  ZSRK_039                                .
    DATA: V_HEX(300) TYPE X,
          V_CHAR(300) TYPE C.
    V_CHAR = 'Test'.
    PERFORM CHAR_TO_HEX_CONV USING V_CHAR
                             CHANGING V_HEX.
    WRITE : / V_HEX.
    *&      Form  CHAR_TO_HEX_CONV
          text
         -->P_V_CHAR  text
         <--P_V_HEX  text
    FORM CHAR_TO_HEX_CONV  USING    CH TYPE C
                           CHANGING CH1 TYPE X.
      FIELD-SYMBOLS : <FS_TR> TYPE X.
      ASSIGN CH TO <FS_TR> CASTING TYPE X .
      CH1 = <FS_TR>.
    ENDFORM.                    " CHAR_TO_HEX_CONV

  • Check a convertion from CHAR TO NUMC

    Hi,
    I import a flatfile into a structure that contains only CHAR-fields. Then I make a TRY-CATCH construct for every field in P,I,F,N..-datatypes to check if the data is correct.
    P,I,F raise a CONVERT-Exception that i can handle.
    A move to N-field raise no exception but put a wrong values to the N-field.
    Example:
    Charfield contains ' 1  1 0000', N-field is '110000'.
    A compare in the program like
    IF C-Field <> N-Field raise a exception that can't be catched by TRY-Catch.
    How can i check if the field is correct?
    Anybody understand me and have an idea?
    Regards,
    Stefan

    Hi Christian and Rich,
    thank you for your fast reply.
    I've written one TRY method that has a import-parameter with TYPE ANY and a import-parameter for the target field.
    The target field can be everything like P,I,F,N,C,D.
    The method checks if the value can be converted into the target field and avoid a shortdump, when the flatfile contains bad data.
    So I have to get the type by
    cl_abap_typedescr=>describe_by_data
    and then make your suggested Conatins-only-check if it is a
    cl_abap_typedescr=>typekind_num
    Thanks,
    Stefan

  • Convert from CHAR to HEXA

    Hi Experts ,
    i am working  in Upgradation project. In one of the program i  came   across  Moving  Char  value to Hexa value. More over , the char(  CHAR(1)  )   value is passing dynamically to Hex.
    Is there any function module to solve this issue. i got  CHAR_HEX_CONVERSION  but it is not working.
    Thank you.
    Regards,
    Kiran.

    Hello,
    Does the method CONVERT of class CL_ABAP_CONV_IN_CE help ?
    A few links which might interest you :
    [Conversion xstring to string|Conversion xstring to string]
    [http://help.sap.com/saphelp_nw70/helpdata/en/ba/78d3c747b24546ab1c1499a054d8a5/content.htm|http://help.sap.com/saphelp_nw70/helpdata/en/ba/78d3c747b24546ab1c1499a054d8a5/content.htm]
    BR,
    Suhas
    Edited by: Suhas Saha on Jan 21, 2010 5:41 PM

  • Convert from char to int

    hey
    I've an input string ("1234")
    What i need to do is to fill a matrix 2*2 with the input string.
    I thought about running over the string, and by str.charAt(ind) to get a needed charters, but the question is ho do i convert charAt result to int?
    tanx

    igalep132 wrote:
    hey
    I've an input string ("1234")
    What i need to do is to fill a matrix 2*2 with the input string.
    I thought about running over the string, and by str.charAt(ind) to get a needed charters, but the question is ho do i convert charAt result to int?
    tanxThat's kinda vague. Do you mean convert '1' into the integer value 1 or convert '1' into the ASCII integer value of 49?
    Here's how to do the first:
    String one = "8";
    String two = "3";
    String numbers = "0123456789";
    int oneInt = numbers.indexOf(one);
    int twoInt = numbers.indexOf(two);
    System.out.println("oneInt = " + oneInt);
    System.out.println("twoInt = " + twoInt);If you meant the latter then ...
    char c = 'c';
    int cInt = (int)c;

  • Convert from char* to unsigned char*

    Hi, I try compile example from: http://download-uk.oracle.com/docs/cd/B19306_01/appdev.102/b14294/relational.htm#i1000940
    in Visual C++ and I have problem with:
    const string userName = "SCOTT";
    because string is defined as unsigned char* and "SCOTT" is char*, is any function to convert from type char* to type unsigned char* ?

    I'm apologize for this stupid question, answer is very easy:
    const string userName = (const unsigned char*) "SCOTT";

  • Need you help !!! -- Convertion from Char to Date

    Dear experts:
    I am new to abap and here is one thing need your help:
    Currently I have a char type field defined in the source table, after I retrive this field into my work area, I need to convert it to Date type and then calculate the last day of this date.
    for example: WA_TEST-CHAR = '20100801'. This value in orignal ECC table is char type.
    Then How can I convert this value to a date type, and calculate its last day?
    My expected result is "20100731".
    BTW, does anybody know how to convert a date type field to a number type field like To_number() or something?. If I need to get the period between 2 different date, how can I get this?
    Any post will be appreciate and thank you all in advance!
    Best Regards
    Tim
    Moderator message: sorry, date conversion and date calculation are very basic and FAQs, please search for available answers, also read ABAP online documentation.
    locked by: Thomas Zloch on Aug 23, 2010 9:56 AM

    Hi,
    For your question:
    BTW, does anybody know how to convert a date type field to a number type field like To_number() or something?. If I need to get the period between 2 different date, how can I get this?
    use this FM FIMA_DAYS_AND_MONTHS_AND_YEARS.
    regards,

  • Convert to char

    How do I convert String to Char?
    String testString;
    testString = "A";
    Char testChar;
    ???

    Let me take your hand:String testString;
    testString = "A";
    char testChar;
    // here comes the solution
    // are you ready for it?
    testChar = testString.charAt (0);

  • Converting a char input to uppercase

    hello,
    what code would i use to convert the input of a char from the user to uppercase
    thanks in advance

    char someChar;
    someChar = whatever_method_you_use_to_get_the_input_char();
    someChar = Character.toUpperCase(someChar);or
    char someChar = Character.toUpperCase(whatever_method_you_use_to_get_the_input_char());Probably you should post questions like this on the New To Java forum.

  • Convert utf8 char in a NSString

    Hi to all! I recieve from my server a XML file. I use NSXMLParser to retrieve attributes and values. The problem is this: i've many utf8 encoded char in many attributes, and i recieve them in NSStrings.
    //in - (void)parser:(NSXMLParser *)parser didStartElement:(NSString *)elementName namespaceURI:(NSString *)namespaceURI qualifiedName:(NSString *)qName attributes:(NSDictionary *)attributeDict DELEGATE
    NSString *myAttribute = [[NSString alloc] initWithString:[attributeDict valueForKey:@"attribute"]];
    The NSString at key "attribute" can contain UTF8 char as ò and similar.
    How can i decode them to obtain a NSString with ò instead of ò and so on?

    I understood that you helped me, I will need to use
    parseInt to convert the string to number...No.
    Assuming you've got the "15:00" part, say in a String called timeStr, you'd just pass that to dateFormat.parse(timeStr)
    but I
    need to know where in the String are my numbers...
    isn't it? How may I do this? Well, that depends.
    What's your logic for finding it manually? Is it the first occurrence of any numerical digit in the string? Is it at a known, fixed character index? Some other logic?

  • Converting the char into date format?

    Hi!!! Guru's
       i am using std DS of SD 2LIS_11_VAITM, in that the date fields are in the the char format, so i wann show the difference of the to dates in Days into the report, can any body put some light on this thread.
    wil assign pts for sure
    thanks in adv
    mohan

    Hello,
    I think u can achieve this at query level.
    You can try variable with replacement path . In your scenario you will have to have 2 variables one for ex. 0SHIPDATE and another one for ex. 0GIDATE .
    After that create formula ( Number of days ) of subtraction on this two variables .
    Gimme ur mail-id , i will forward a doc on this if u want...
    Regards,
    SRIKANTH
    Message was edited by:
            KANTH SRI

  • Int convert to char

    So each char has an integer value representing that char for example a=97 . Now if I have 97 and I want an a, how do I get it?

    Geez, that simple huh? Silly me. Thanx.

Maybe you are looking for