Converting all to upper case

Hi,
Am loading from a flat file. I need to convert all the data into upper case before loading.
Can some one help me out with this. Where and how?
Thanks.

you'll have to do that for each single object; depending on how many fields you have you may change your flat file or do that during start routine.
LOOP AT DATA_PACKAGE.
   TRANSLATE DATA_PACKAGE-FIELD1 TO UPPER CASE.
   TRANSLATE DATA_PACKAGE-FIELDN TO UPPER CASE.
   MODIFY DATA_PACKAGE.
ENDLOOP.
hope this helps...
Olivier.

Similar Messages

  • HT1918 my name on sent emails is all in upper case letters followed by my email address how do i change my name that in upper case letters

    When I send a email from my from my ipad or iphone my name in the "From" part of the email is all in upper case letters.
    looks like this.........From: LESLEY BERRY <.................>
    I would like it to look like.......From:    .Lesley Berry <..............>
    Thanks

    Log in at icloud.com, go into Mail, choose Preferences from the Cog menu at the top-right, click Accounts, then your account. Enter the name you want on outgoing mails into the Full Name field.

  • How to Convert Item to Upper Case

    Hi,
    How do you force a text Item to Upper case before saving
    Regards

    see if this thread answers your question: {thread:id=972854}

  • Editable ALV: Entered Values are not Converted to Upper Case

    Hi Experts,
    I'm getting stuck with this one...
    Fieldcat-lowercase is initial
    Associated domain is NOT "lower case"
    New values entered by user are not converted automatically to upper case and - in result - chek result of lower case value is "invalid"
    Must conversion be done manually?
    Thanks for your help!
    carsten

    1. You may not press enter key after the input data,
    2. You may get it field's fieldcat references different type. For exam x field like abc-f1. f1 type char 10.But your fieldcat dont use abc-f1 field.
      DEFINE BFCAT.
        CLEAR SFCAT.
        SFCAT-FIELDNAME = &1.
        SFCAT-TABNAME   = 'GT_ITAB_BUF'.    SFCAT-SELTEXT_S = &2.
        SFCAT-SELTEXT_M = &2.
        SFCAT-SELTEXT_L = &2.
        SFCAT-COL_POS   = COLPOS.
        SFCAT-REF_FIELDNAME = &3.
        SFCAT-REF_TABNAME = &4.   
        SFCAT-OUTPUTLEN = &5.
        SFCAT-NO_OUT = &6.
        COLPOS = COLPOS + 1.
        APPEND SFCAT TO TFCAT.
      END-OF-DEFINITION.
      COLPOS = 0.
      BFCAT 'ONRNO'       ''  'ONRNO'       'ZONR_DATA01_S01' '' ''.

  • Web template with Upper case

    hi guys I have a scenario that I wanted my project description to be upper case, so I went to transfer rules and converted the info object description to upper case, now when I go to my report and click selection all the project desciption shows in upper case.
    what i want is the selection criteria to force itself to be upper case,
    For e.g.
    If the user enters lower case it would still search upper case (as the data is now all converted to upper case)
    The variable is query designer, can this be done in the query designer or web template and if this cant be done ?

    used a customer excit variable and whatever the user enter convert it to upper case for search in query designer.

  • How can I define that the value of a column should always be in UPPER case

    Hi,
    I want to make sure that the value in a column is always in UPPER case.
    Can we give this condition while creating or altering a table.
    A trigger can do it easily, but I was wondering if we could define a column to have values with upper case all the time, independent of what values are inserted. I mean if we give a lower case value in the insert statement, it should be converted automatically to upper case & stored.
    I want something like
    Alter table MY_TABLE Modify ( col1_upper varchar2(25) default UPPER(Col1_upper));
    But the above statement does not work as it references the col of the table.
    Thanks
    Sunil

    Well, you can put a check constraint on to prevent someone from putting lowercase data in:
    alter table my_table add constraint my_table_check_upper check (col1_upper = upper(col1_upper));However, I know of no way to modify the data being inserted/updated in a table without a trigger.
    Richard

  • Calling Function Module for upper case to lower case in Transformation

    Hi all,
    We have the data load happening everyday for the Account Receivables data. The DSO activation is failing because of the invalid characters. It gives the messages as below
    "Value 'bdmg0808dm' (hex. '620064006D006700300038003000380064006D00') of characteristic ZINVNUM contains invalid characters"
    We understood that the character ZINVNUM is maintained only for uppercase letter wherein the lower case check box is not ticked. We have a function module which is build within BI which can be used to permit non permitted characters including space. Just want to know how can I call this function module in a transformation and which is the best option to call the function module(start routine/end routine).
    Regards
    Vijay

    You can use statement in end routine to convert text to upper case. No need of calling any function module. Just loop through records of RESULT_PACKAGE and for that particular field convert text using below statement.
    LOOP AT RESULT_PACKAGE.
    TRANSLATE RESULT_PACAKGE-/BIC/ZNAME TO UPPER CASE.
    ENDLOOP.
    Edited by: ABHIJIT TEMBHEKAR on Nov 14, 2008 2:22 PM

  • Force Upper Case - Field Validation

    I have seen a post regarding forcing upper case only on Account Name or any other text field but I am still having trouble with the exact syntax. Has anyone had any success in doing this? Any help would be apreciated...Thanks

    Hi,
    Not sure what is the problem you face. The above throws error even if it finds one small character letter in the Account Name which means forces all as upper case. I assume that is what you are looking for
    -- Venky CRMIT

  • SQL keywords. lower or upper case?

    Hi all!
    The plsql parser does any special treatment to sql keywords, e.g, transform all to upper case, before doing internal processing? Same question for SQL scripts/querys!
    Thanks,
    Rui Rodrigues

    Even if there is I'm quite sure any redundant select sysdate/user from dual will outperform all yoctoseconds you'll get.
    The other factor for peformance to use some conventions of course is not to flood shared pool with statements that differ just in case and/or spaces for example:
    SQL> select user from dual;
    USER
    SYS
    SQL> select USER from dual;
    USER
    SYS
    SQL> SELECT user FROM dual;
    USER
    SYS
    SQL> select SQL_TEXT, SQL_ID, ADDRESS, HASH_VALUE from v$sql
      2  where upper(sql_text) = 'SELECT USER FROM DUAL';
    SQL_TEXT
    SQL_ID        ADDRESS  HASH_VALUE
    select USER from dual
    658001za01gf9 68351148 3556818377
    SELECT user FROM dual
    9rwkva5jwdkfj 6BA2CBE8 1673972177
    select user from dual
    ahc9t761kxw30 6BAD3E70 2200891488Gints Plivna
    http://www.gplivna.eu

  • More on counting upper case characters

    (*This relates to a recent question I posted about counting upper case characters in a string. dev_sleidy responded with an applescript approach that works, but at 6 lines I was hoping for more compact code. So I played around with a one-line command line approach that so far seems reliable (tell me if you find it isn't). However, there are a couple peculiarities which I would like to understand. I know, I know, I should just shut up and use it. But I must be part cat and need to be killed.
    The code that appears to work:*)
    set T to "MY GraNd QuestioN A"
    set UCcount to do shell script "echo " & quoted form of T & " | tr -d [[:space:]] | tr -d [:lower:] | wc -m"
    (*The peculiarities:
    1) If I substitute >>sed 's/ //g'<< for >>tr -d [[:space:]]<<, the result always seems to be one count high. (Same thing appears to happen when executed in Terminal.) Why?
    2) When using regular expressions the format [[:class:]] has always worked for me, as it does for "space" in the code above. But for the second tr -d pipe (above code) those outside brackets mess everything up, and single brackets work fine. Same thing happens with both [[:lower:]] and [[:upper:]] but doesn't seem to happen when executed in Terminal. Why? Are there rules for bracketing character classes (I've seen different versions)?
    Or is all this a UNIX forum question?*)

    Hello
    Honestly I don't understand why such result is returned by CODE1.
    Its prototype [1] tested here works as expected.
    But I noticed CODE2 may return wrong result, for its prototype [2] actually returns wrong result with MacPerl 5.6.1r2 under OS9.1 when input string is read from file insead of being given as string literal. I didn't test that possibility. Sorry for that. Please disregard CODE2, for I think CODE1 will be enough.
    (The wrong result is caused by the fact that 'Ç' encoded in UTF-8 is counted as 2 chararcters by length function if it is read from file due to certain limitation of MacPerl 5.6.1r2. I don't know whether that applies to recent Perl under OSX.)
    [1]
    use utf8;
    while (<>){
    s/[^[:upper:]]//g;
    } continue {
    print;
    [2]
    use utf8;
    local $/;
    while (<>){
    s/[^[:upper:]]//g;
    print length;
    Re. your original question about peculiarities.
    As for 1), I think it is because 'echo' is adding trailing \n and "sed 's/ //g'" won't remove it. Try "sed 's/[[:space:]]//g'"  instead. Indeed "sed 's/[^[:upper:]]//g' will remove all non-upper case letters at once, I guess.
    As for 2), I think it is because 'tr' actually does not process regexp. Its character class support is based upon POSIX but the usage is different from regexp, i.e. [:class:] in 'tr', while [[:class:]] in proper regexp. Meanwhile, I think, the regexp syntax, [[:class:]], in 'tr' argument works in Terminal because in Terminal, 'bash' processes the regexp in its parameter expansion (path name expansion, in this case) and 'tr' receives the expanded result as its argument.
    cf.
    http://developer.apple.com/documentation/Darwin/Reference/ManPages/man1/tr.1.htm l
    http://developer.apple.com/documentation/Darwin/Reference/ManPages/man1/bash.1.h tml
    Hope this may be of some help,
    H

  • Rfcnpass converts passwords to all upper case

    All,
    I am trying to synchronize my passwords on my SAP systems by using rfcnpass which is delivered in the RFCSDK. I am using the latest 7.1 version. This worked great until we upgraded our SAP systems to 7.0. Now when I run rfcnpass it changes the password to what I enter, but it converts it to all upper case. Does anyone know how to get by this issue ?
    Sean

    Julius Bussche wrote:
    Synchronizing passwords is pre-destined to cause problems - either because they do grow out of sync anyway, or the systems' policies differ or because your weakest common password rule is dictating the security level to the strongest system and when you get hacked you will not know where it came from (if you notice at all...).
    I fully agree - also stated in [SAP note 376856|https://service.sap.com/sap/support/notes/376856].

  • I was in a Pages Doc and inadvertently had the Caps Lock on. How Can I change all the text I typed from Upper Case to Lower Case?

    I was in a Pages Doc and inadvertently had the Caps Lock on. How Can I change all the text I typed from Upper Case to Lower Case?

    Several protocols may be used.
    Here I describe two of them.
    (1) the one which I use : install and use the "Convert to Lowercase" service available in the free WordService
    (2) copy your text, paste in TextEdit and enter the Edit menu.
    I guess that you will recognize the items in your English menu.
    I apologize but I don't know the English items.
    Yvan KOENIG (VALLAURIS, France) jeudi 16 février 2012
    iMac 21”5, i7, 2.8 GHz, 12 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.3
    My Box account  is : http://www.box.com/s/00qnssoyeq2xvc22ra4k

  • Converting mixed case table name to upper case

    I am migrating data from Access to Oracle and new tables and columns being created are in mixed case is there a way to convert all tablename or column name automatically.
    Also does the migration workbench handle the memo fields currently defined in my oracle database.

    If you want tables and columns to be created in Upper Case then make sure the Create ANSI-Compliance Names checkbox is unchecked in the options section.
    1.Open Workbench.
    2.Tools -> Options
    Memo fields are migrated to CLOB fields in Oracle.

  • To convert the values in the column from upper case to Camel Case.

    Hi All,
    I have requirement to convert the column values(Data in the Columns) from upper case to camel case in pivot table view.
    For Eg:
    I have
    Table Name:Billing_Transaction
    under Billing_Transaction table i Have column Comment_Text
    Data in Comment_Text Column is
    INSERT,
    EXPORT,
    AMEND
    How i will change these values in to Insert,Export,Amend.(Camel Case condition)
    I want only the first letter of a word to be in caps and others to be in smaller case.
    Thanks,
    Chitra Subramani.

    Hi Aravind,
    Thanks for immediate response.your query is helpful.But i need to satisfy another condition in my requirement by using same formula.
    "REPLACE(UPPER(SUBSTRING(BILLING_TRANSACTION.BILLING_TRANSACTION_DESC FROM 1 FOR 1)) || lower(substring(BILLING_TRANSACTION.BILLING_TRANSACTION_DESC FROM 2)), '_', ' ')"
    above query satisfying Camil case and replacing '_' with ' '(space)......but inthis query i want add another condition to satisfy camil case for word which comes after '_'
    for example:
    DECLINE_IMPORT
    above query satisfying 2 conditions to convert above data into
    "Decline import"
    But in my requirement for word 'import' also it should come in camil case condition like
    "Decline Import"
    Thanks & Regards,
    Chitra
    Edited by: user6371773 on Apr 25, 2011 6:29 AM

  • Converting lower case to upper case data of flat file

    Hi All,
    I have a requirement purche order creation by using bapi function module.My requirement is  when I am uploading the flat file and if flat file  contains the data in lower case then before passing it to the function module i want to convert it in to Upper case. please tell me how can I do this.
    its very urgent.
    Regards,
    Amit.

    hi,
    Use translate statement ..
    DATA letters(3) TYPE C.
    MOVE 'abc' TO letters.
    TRANSLATE letters TO UPPER CASE.
    write : letters.
    Also refer
    /people/alvaro.tejadagalindo/blog/2006/12/21/does-abap-lacks-of-string-processing
    Regards,
    Santosh

Maybe you are looking for

  • HP monitor 2009m goes black on a reandom basis.

    HP monitor 2009m goes black on a reandom basis.  Starting in safe mode (as recommended) OK once but not every time.  What is causing the problem and how does the problem get fixed? Sorb1

  • IMovie HD, iPhoto 08/09 - Photos import, render and then disappear.

    *Software Overview* • iMovie HD • iPhoto 08, and iPhoto 09 • Mac OS 10.5.6 and Mac OS 10.5.7 • Network Home Accounts from Mac OS Server 10.5.5 *The Issue* • Dragging photos from the Media Browser into iMovie HD. • Each photo imports, renders and then

  • ICE produces invalid code

    Having defined two editable and one repeating regions in a page, I ran it through the W3C validator which reported this and similar errors: "Attribute "ice:repeating" is not a valid attribute", all errors generated by the ICE divs. I searched through

  • Web dyn pro screen design(view design)

    Hi guys i find it extremely tough managing the UI inside the views, i having to take so many layout designs(matrix , row etc ) and give blank(invisible) UI etc to put what i want where i want, it was a ton easier with ABAP , i think i'm looking at it

  • Satellite M70-WiFi connection just with WEP or WPA

    Hi, I have the Satellite M70-164 with an Intel PRO set wifi adapter 2200BG with the latest driver. My problem is that I can only connect to networks with security (with WEP or WPA), when I try to connect to "open" wifi networks the computer never est