HOW TO USE CL_ABAP_CHAR_UTILITIES.............FOR THIS PROBLEM

Hi all,
wants to convert this structure for UNICODE ..
  DATA: GDF_DAT01(1) TYPE C,
        GDF_DAT02(1) TYPE X VALUE '1C',
        GDF_WORK(1)  TYPE C,
        GDF_DAT11(1) TYPE C,
        GDF_DAT12(1) TYPE X VALUE '1B'.
thanks.

Hi,
        Try to declare the variable as shown below:
CLASS cl_abap_char_utilities DEFINITION LOAD.
CLASS cl_abap_char_utilities DEFINITION LOAD.               "+C0002
DATA: BEGIN OF g_cell,
        menge(12) TYPE c,                   "Open qty
       sep1  TYPE x VALUE '09',            "TAB character "-C0002
         sep1  TYPE c VALUE cl_abap_char_utilities=>horizontal_tab,
         fixkz TYPE c,                       "Firming indicator
       sep2  TYPE x VALUE '09',            "TAB character "-C0002
         sep2  TYPE c VALUE cl_abap_char_utilities=>horizontal_tab,
           END OF g_cell.
Please reward points if it solves your query.

Similar Messages

  • Apple Logo and Progress Bar Stuck 1 out of 5 while Restoring my iPhone 5 to iOS8. How can i Do for This Problem. Sometime iTunes say An Unknown error occured (error -14)

    Apple Logo and Progress Bar Stuck 1 out of 5 while Restoring my iPhone 5 to iOS8. How can i Do for This Problem. Sometime iTunes say An Unknown error occured (error -14) iTunes Version is 11.4

    The error that you are seeing has to do with your Internet connection. Try disabling your anti-virus software and connect the iPhone again and try to restore. See this support document for help. http://support.apple.com/kb/HT1808

  • How to use decode for this

    Hi All
    I have one table called agreementproductkey and some columns namely Agreementproductid, keytext, fliename etc.
    There is some condition if agreement product id in not null and keytext field and fileaname field is null then i need to display the value as "NO FILE"
    This what i tried
    select decode(keytext || ' | ' || filename,null,'No File',keytext || filename) display_value, id return_value
    from agreementproductkey
    where agreementproductid = 3173
    But i didnt get the NO FILE when key text field and filename field is null for this agreementproductid.
    Thanks & Regards
    Srikkanth.M

    Hi Srikkanth,
    In the decode part, you have concatenated keytext and filename using '|' due to which it will never evaluate to null, and hence 'NOFILE' will never be displayed. CASE is a better option instead of DECODE.
    SQL> CREATE TABLE t (agreementid NUMBER, keytext VARCHAR2(10), filename VARCHAR2(10));
    Table created
    SQL> INSERT INTO t VALUES (123, 'ABC', 'ABCFile');
    1 row inserted
    SQL> INSERT INTO t VALUES (123, NULL, 'XYZFile');
    1 row inserted
    SQL> INSERT INTO t VALUES (123, 'PQR', NULL);
    1 row inserted
    SQL> INSERT INTO t VALUES (123, NULL, NULL);
    1 row inserted
    SQL> SELECT agreementid, keytext, filename,
      2         DECODE(agreementid, NULL, 'AGREEMENT NULL', DECODE(keytext || filename, NULL, 'NO FILE', 'FILE PRESENT'))
      3    FROM t;
    AGREEMENTID KEYTEXT    FILENAME   DECODE(AGREEMENTID,NULL,'AGREE
            123 ABC        ABCFile    FILE PRESENT
            123            XYZFile    FILE PRESENT
            123 PQR                   FILE PRESENT
            123                       NO FILE
    SQL> Regards
    Ameya

  • Best way to use JAXB for this problem?

    I have an input XML which is very large and complicated. It comes with it's own schema
    I only need to extract a few parts of the data contained in that XML, scattered throughout the document. I care not about most of the XML file but I do care about performance and overhead so would like to perform a Special Ops mission where I go in without anyone noticing, grab the data I need, and get out before the thing becomes a mess.
    Can I do this simply with JAXB?
    If so, what is the best approach, from a high level perspective?
    I am totally new to JAXB.

    I agree with gimbal2 because, as far as I can see, jaxb is intended for "mapping" a xml tree to a very similar structure of classes.
    When you say that your xml is complex I assume that it has many nesting levels. This means many jaxb classes (say about one-per-level) ... in order to retrieve few elements.
    An Xpath approach requires only one line of code per element.
    I usually use the library dom4j for this kind of job.
    bye

  • How to use REGEXP_REPLACE for this scenario?

    Oracle 10G Enterprise edition
    Hi all,
    Is it possible to use REGEXP_REPLACE for multiple replaces for the give text?
    For eg.
    select replace(replace('My oracle','o','O'),'M','m') from dual
    my Oracle
    Can we do this in a single regular expresion replace or suggest me any ideas?
    Thanks all
    R

    This could be a solution
    Processing ...
    select s as string
    from (
              with reps as (
                   select 'aaa' as src, 'AAA' as dst from dual
                   union all
                   select 'bbb' as src, 'BBB' as dst from dual
              ), strings as (
                   select ' bbb a sample string aaa' as string from dual
              select *
              from reps
                   cross join strings
              model
                   partition by ( string )
                   dimension by (row_number() over(partition by string order by src ) idx)
                   measures (string as s,src,dst)
                   rules (
                        s[any] order by idx desc = replace(presentv(s[cv()+1],s[cv()+1],s[cv()]),src[cv()],dst[cv()])
    where idx = 1
    Query finished, retrieving results...
             STRING         
    BBB a sample string AAA Bye Alessandro

  • How to use to_date for this case?

    Hi,
    I bind parameters in java code.
    The param type in java is Timestamp and the data type in table is date.
    Here is the sql section printted in log:
    2004-08-01 10:00:00.0 <= table.datetime
    Why there is a ".0" after second?
    And how to use to_date to convert "2004-08-01 10:00:00.0"?
    Thanks!

    Hi,
    Here are a few possibilities
    SQL> select cast(timestamp '2004-08-01 10:00:00.0' as date) from dual;
    CAST(TIMESTAMP'2004
    2004-08-01 10:00:00
    SQL> select to_date('2004-08-01 10:00:00.0','YYYY-MM-DD HH24:MI:SS".0"') from dual;
    TO_DATE('2004-08-01
    2004-08-01 10:00:00
    SQL> select to_date(substr('2004-08-01 10:00:00.0',1,19), 'YYYY-MM-DD HH24:MI:SS') from dual;
    TO_DATE(SUBSTR('200
    2004-08-01 10:00:00

  • How to use case for this query.

    I have this table name Employee.
    columns..
    EmpId,
    EmpType,
    Joining date,
    Resigning date
    Now in EmpType either it can be 'P' OR 'C'
    so i want to check if the EmpTYpe is 'P' then joiningdate should not be null
    and if the EmpType is 'C' then Resigning date should not be null.
    Then only want those records from employee.
    Please help.

    978172 wrote:
    I have this table name Employee.
    columns..
    EmpId,
    EmpType,
    Joining date,
    Resigning date
    Now in EmpType either it can be 'P' OR 'C'
    so i want to check if the EmpTYpe is 'P' then joiningdate should not be null
    and if the EmpType is 'C' then Resigning date should not be null.
    Then only want those records from employee.
    Please help.
    -- EmpId, EmpType, Joining date, Resigning date
    select * from Employee
    where (EmpType = 'P' and JoiningDate IS NULL) OR (EmpType = 'C' and ResigningDate IS NULL);

  • How to use MERGE for this scenario?

    I am using oracle 10G and i need a help on using MERGE statement based on a condition.
    I have no values in table test_tab. So the below MERGE should insert the value, but it is not inserting the record. Please corret me if anything wrong with the below Query.
    MERGE INTO test_tab t
       USING (SELECT NO
                FROM test_tab) s
       ON (s.NO = 1)
       WHEN MATCHED THEN
          UPDATE
             SET t.str = 'EXIST'
       WHEN NOT MATCHED THEN
          INSERT (t.NO, t.str)
          VALUES (1, 'NOT_EXIST');

    MERGE INTO test_tab t
       USING  test_tab s
       on (t.no = 1 )
       WHEN MATCHED THEN
          UPDATE
             SET t.str = 'EXIST'
       WHEN NOT MATCHED THEN
          INSERT (t.NO, t.str)
          VALUES (1, 'NOT_EXIST');

  • How to use parathesis for OR and AND OPERATOR...

    oracle 10g
    Hi
    Guys please help how to use parathesis for this below query its giving same output values for all my similar queries
    select count(balance) from balanace_tb
    where kk_code in(111,112,113)
    or
    kk_code in(111,1124,115,116) and sec_id in(50,51,52,53)
    or
    kk_code in(100,164,215,161) and sec_id in(53,51,52,59)
    or
    kk_code not in(100,164,215,162,134) and sec_id in(53,51,52,59)
    or
    kk_code in(100,164,215,16) and sec_id in(53,51,52,59)
    and
    open_date=20130331

    I assume you're looking for something like this?
    select count(balance) from balanace_tb
    where (   kk_code in(111,112,113)
           or (kk_code in(111,1124,115,116) and sec_id in(50,51,52,53))
           or (kk_code in(100,164,215,161) and sec_id in(53,51,52,59))
           or (kk_code not in(100,164,215,162,134) and sec_id in(53,51,52,59))
           or (kk_code in(100,164,215,16) and sec_id in(53,51,52,59))
    and open_date=20130331
    If not, please post some example data, the expected output from that data, and the logic you are expecting to use, as well as posting your database version.
    Re: 2. How do I ask a question on the forums?

  • I've searched to no avail for this problem. Similar posts but none that tell me what to do. I can't add or delete any bookmarks on my iPad 2 running the newest iOS. I know how it's suppose to work, it just isn't working!

    I've searched to no avail for this problem. Similar posts but none that tell me what to do. I can't add or delete any bookmarks on my iPad 2 running the newest iOS. I know how it's suppose to work, it just isn't working!
    It started after the major update to iOS 7.
    I can't believe that this is so hard to do. It's just not letting me. I can add a bookmark to the home screen just fine, just not in a bookmarks folder anywhere I try.
    I've used Apple products since 2001 and have always loved how intuitive they are. But the Safari browser since iOS 7 has been the worst I've experienced. At least right in the beginning after that update.
    I'd really appreciate any help that doesn't just tell me how it's suppose to work...I know that.
    My iPad 4 is not affected with the problem and works as it should.

    To delete, tap "Edit" (tap to enlarge image)

  • I can't connect my personal hotspot using wifi,I can able to find my iphone4 but it's just showing obtaing ip adress ??wat can I do for this problem??

    I can't connect my personal hotspot using wifi,I can able to find my iphone4 but it's just showing obtaing ip adress ??wat can I do for this problem??

    Hey there arunvdi,
    It sounds like you are unable to connect to the Wi-Fi created by your Personal Hotspot. I recommend these troubleshooting steps from the article named:
    iOS: Troubleshooting Personal Hotspot
    http://support.apple.com/kb/ts2756
    Try disabling and reenabling Personal Hotspot from Settings > Personal Hotspot or Settings > General > Cellular > Personal Hotspot.
    Reset network settings by tapping Settings > General > Reset > Reset Network Settings.
    Wi-Fi troubleshooting
    If you encounter an issue using Personal Hotspot with other Wi-Fi devices, try the following:
    Turn Personal Hotspot off.
    Verify Wi-Fi is on in Settings > Wi-Fi.
    Turn Personal Hotspot back on.
    If another device is unable to join your Wi-Fi network, ensure that the user enters the Wi-Fi password correctly. If the device cannot see your Wi-Fi network, verify your device name.
    Note: Windows may not properly display a device name that uses non-ASCII characters.
    Verify how many devices are currently using your Personal Hotspot. Depending on your wireless carrier and, the maximum number of Wi-Fi connections may be limited to three at one time.
    If the other device still cannot connect, try turning Wi-Fi off and on again on the device. Verify that your device can see other Wi-Fi networks.
    Note: If you see an "Unable to Join" or timeout error when trying to connect a device using Wi-Fi, ensure that you remain on the Personal Hotspot screen until the first device connects. After a device has connected, you can leave the Personal Hotspot screen and use your phone normally. Your device will automatically stop broadcasting using Wi-Fi if you put your device to sleep or after 90 seconds elapse with no devices connected using Wi-Fi. You can start broadcasting your Wi-Fi network again by tapping Settings > Personal Hotspot.
    If none of the previous steps resolves your issue, restore the iPhone.
    Thank you for using Apple Support Communities.
    Regards,
    Sterling

  • I am leaglley blind I use a 5 inch window at the top of my screen to see what I am typing. This version does not let me see what I am typing because the window drops down about 1 to 2 inches, obscuring what I am typing. Is there a fix for this problem?

    If there is no fix for this problem, how do I go back to the previous version?

    laderamacguy took a look at it and added a black shape over the tab. he suggested i use a different template next time, such as the black template.

  • Have downloaded 5s iPhone. Instructions for activating iCloud gives wrong email address to verify account. How can I get around this problem and get my phone set up with iCloud

    Have downloaded 5s iPhone. Instructions for activating iCloud gives wrong email address to verify account. How can I get around this problem and get my phone set up with iCloud

    elhoseny wrote:
    ... Instructions for activating iCloud gives wrong email address to verify account..
    The Apple ID and Password that was Originally used to Activate the iDevice is required
    If you do not have that information you will not be able to use the Device.
    Activation Lock in iOS 7  >  http://support.apple.com/kb/HT5818

  • Using QuB for this database problem

    Hi, I have a problem of trying to list links on a website I am creating and if I am correct, I need to link 2 tables on the database. I was trying to use QuB for this but am tearing my hair out.
    Here is my problem:
    I have a list of links on a website and each one belongs to a category for eg:
    Category: Biomass
    Comapny Name: AN Other
    WebLink: http:abc.com
    Now how can I show all the Biomass links together under the one heading and all the others under their own heading eg, Windpower, Boilers etc.
    Can I use QuB for this?
    The tables I have are:
    Table 1:
    id
    Category
    Table 2:
    id
    Category
    Client
    Weblink
    That's it, hope I haven;t confused everyone, because I'm confused enough!
    Thanks in advance.

    Unfortunately, this is a common problem with serialization : If an obj which does not implement Serializable is a non-transient member of an object that is Serialized, Java throws a NotSerializableException.
    Therefore, you have to walk through the chain of objs to make each one of them serializable, which is not always practical.
    Below is a link that presents a solution to this problem, by using a SerializableAdapter (using the Adapter design pattern) :
    http://www.javageeks.com/Papers/SerializableAdapter/SerializableAdapter.html

  • I am using photoshop cc 2014.2 And when I use save for Web it gives me a dialog box that says it is using Latin characters I've never seen this before. Does anyone have an answer for this problem or do I need to go back to the older version of Photoshop.

    I'm using Photoshop cc 2014.21 I you save for Web and dialog box comes up that says that Photoshop is using Latin characters and that servers cannot recognize Latin characters in webpages and you may have trouble viewing these pages does anyone have an answer for this problem?

    What Firefox version is currently installed on the computer?
    You can find the full version of the current current Firefox release (37.0.2) in all languages and all operating systems here:
    *https://www.mozilla.org/en-US/firefox/all/
    If you have a very old Firefox version then you could consider to uninstall that version to clean up existing registry keys (especial the uninstall key).
    Make sure NOT to remove "personal data" when you uninstall Firefox, because that will remove all profile folders and you lose personal data like bookmarks and passwords including data in profiles created by other Firefox versions.
    Check the Firefox program folder and remove the Firefox program folder if there are still files left in it.
    *(32 bit Windows) "C:\Program Files\Mozilla Firefox\"
    *(64 bit Windows) "C:\Program Files (x86)\Mozilla Firefox\"
    It is important to delete the Firefox program folder to remove all the files and make sure that there are no problems with files that were leftover after uninstalling.
    *http://kb.mozillazine.org/Uninstalling_Firefox
    Your bookmarks and other personal data are stored in the Firefox profile folder and won't be affected by an uninstall and (re)install, but make sure NOT to remove personal data when you uninstall Firefox as that will remove all Firefox profile folders and you lose your personal data.
    *http://kb.mozillazine.org/Profile_folder_-_Firefox
    *http://kb.mozillazine.org/Profile_backup
    *http://kb.mozillazine.org/Standard_diagnostic_-_Firefox#Clean_reinstall

  • HT4484 i used to have an app store and lost it and i created a new one and i can not update the iphoto app because it was updated with the old account, is there a solution for this problem?

    i used to have an app store and lost it and i created a new one and i can not update the iphoto app on my macbook pro because it was updated with the old account, is there a solution for this problem?

    Content and Apple IDs -
    Content is forever tied to the Apple ID that bought it. Apple does not transfer content from one Apple ID to another. Apple does not merge Apple IDs. You will never be able to access your content bought with one Apple ID with a new Apple ID.

Maybe you are looking for

  • Search - doesn't find the word entered, doesn't link to the word entered

    Hi all, Using TCS2 on Windows 7 64-bit - linked FM file to RH. Generating WebHelp (primary layout). The SEARCH functionality in RH doesn't seem to work terribly well and I'm wondering if I'm just missing something. For example: I have chapters about

  • Missing workflow types in CUP

    Hi Experts, I am missing the workflow types. That is the workflow type CUP , mitigation control etc is not visible. Even the workflow type column is missing in request type. I have already imported the inital files AE_init_clean_and_insert_data.xml A

  • Movies and videos not appearing on iPhone.

    I have an odd problem with movies (both those made by me and those purchased via iTunes) not appearing on my iPhone 3GS after syncing, even though they used to. All of the options in iTunes are set correctly for syncing. The strange thing is this: I

  • Customer LC

    Hi, We are issuing customer our invoice with Letter of Credit. Customer sign this lc as acceptence of invoice. We discount this lc from bank. At the end of the credit period of lc we pay the amount to the bank. How I can map this process with SD Modu

  • My MacBook screen will not turn off when closed.

    I replaced the screen on my 13.3 MacBook, but now when I close the it, the screen does not enter sleep mode like it is supposed to (the Apple logo is still lit, and light can be seen inside the laptop. Also when it is closed, and music is playing- th