Can we make ABAP programs Unicode enable after  SAP sys is converted to uni

Hello Experts,
Can we convert the Non Unicode ABAP programs to Unicode after upgrading non unicode SAP system to Unicode?
Is there any serious problem?
If Non Unicode SAP is upgraded to Unicode without converting all non unicode ABAP programs to Unicode.
Thanks in advance.
Hari

Hi
There is no need of correcting the programs from Non unicode to Unicode
After migrating the system from non Unicode to Unicode you have to run certain Notes (which will be done by Basis) to take care of this.
<b>Reward points for useful Answers</b>
Regards
Anji

Similar Messages

  • Can we make ABAP program as executable  file

    Hi All,
    I have query related to abap program.
    <b>Can we make ABAP program as .exe file or .bat file.</b>.
    <b>If yes then what is the procedure to do the same.</b>
    I would really appreciate if anyone can suggest something on this.
    Regards
    Prabhat

    No you can not.  Why?  Because ABAP is a proprietary language developed by SAP which only runs in the ABAP runtime environment.
    Regards,
    Rich Heilman
    PS.
    Put yourself on the SDN world map (http://sdn.idizaai.be/sdn_world/sdn_world.html) and earn 25 points.
    Spread the wor(l)d!
    Message was edited by: Rich Heilman

  • Can you make core center automatically close after being called on startup?

    Can you make core center automatically close after being called on startup so it can set cpu fan speed to a slower fixed speed then exit?
    If core center really cant do such a simple task then can speedfan or another program?

    Quote from: bassmadrigal on 13-July-05, 07:42:36
    Why don't you want them running. Speedfan has a very small footprint.
    Just seems unnecesary seeming as it does its task as soon as it runs and its changes then stay applied. Speed fan is probably better but core center takes 10mb.
    Quote from: syar2003 on 13-July-05, 07:57:02
    You dont have to have it running to set a user specified fan rpm .
    Once it's set it is stored in the corecell/cmos chip on the motherboard .(until a cmos reset) .
    So to answer your question .
    There is no need to have it autostarted at each boot ...
    Thats how i have used it .
    Only reason to have it running is with MSI's "CnQ" control of the fan , varies with the load of the processor
    Thats strange for me the speed resets to default as soon as I restart my pc (about when the bios engages which is however tangibly after the graphics card fan revves up to its full speed). Depending on the temperature of the proccessor it goes to 3300rpm (less than 42c) or 4500rpm (too loud for ~45c IMO and MSIs "cool&quiet" option seems to agree, it doesn't even set it as high as 3300rpm)

  • How can I make the ipod stop itself after playing one song?

    How can I make the ipod stop itself after playing one song?

    When playing a song, are the controls at the top of the screen there? (Genius, Shuffle, Loop?)
    If not, tap the center of the page once to expose them
    now keep tapping the circle on the left part of the exposed controls untill a one (1) appears...

  • Can i make a program for calender

    can i make a program for calender actually i have to run a calender logic and select the date and modify them with some value.
    I just need to ask is there any function module that runs a  calender logic by picking the input date .
    Eg if i put a input date say  03.04.2005 the program then automatically run for all the date of that month and year, i mean i can get  the all the dates for that month and year...
    Please help

    Hi Mave ,
    If you want an internal table with the dates of the month
    just try this -- . Instead of sy-datum you can pass any date and see the output .
    parameters Pdate like sy-datum.
    data : begin of itab occurs 0 ,
           date like sy-datum,
           end of itab.
    Data Month(2) type N.
    itab-date = pdate.
    itab-date+6(02) = 01.
    month = itab+4(2).
    do .
    if itab+4(2) NE month.
    exit.
    endif.
    append itab  .
    itab-date = itab-date + 1.
    enddo.
    loop at itab.
    write :/ itab-date.
    endloop.

  • Where does an abap program get stored after save?

    Where does an abap program get stored after save? ...plzz tell
    Edited by: Alvaro Tejada Galindo on Feb 18, 2008 11:28 AM

    this program download the code to presentation server
    Analyse this code.
    CHECK IT IN DEBUGGING
    REPORT zdownload_source MESSAGE-ID zabap.
    TABLES: trdir.
    SELECT-OPTIONS: repo FOR trdir-name.
    PARAMETERS: path(60) TYPE c DEFAULT 'C:\programs\'.
    DATA: BEGIN OF tabsource OCCURS 10,
          source(72) TYPE c,
          END OF tabsource.
    DATA: BEGIN OF tabtext OCCURS 50,
          tab LIKE textpool      ,
          END OF tabtext.
    DATA: BEGIN OF tabrdir OCCURS 100,
          rdir LIKE trdir,
          END OF tabrdir.
    DATA: filename LIKE rlgrap-filename,
          mode TYPE c VALUE ' ',
          rdirrows TYPE i,
          sourcerows TYPE i,
          rc TYPE i,
          length TYPE i.
    FIELD-SYMBOLS: <p>.
    DATA: ok TYPE i VALUE 0,
          fail TYPE i VALUE 1.
    AT SELECTION-SCREEN.
      DATA: i TYPE i.
      DESCRIBE TABLE repo LINES i.
      IF i <= 0.
        SET CURSOR FIELD repo.
        MESSAGE i001 WITH 'se message class'.
      ENDIF.
    START-OF-SELECTION.
      CONDENSE path NO-GAPS.
      length = strlen( path ).
      SUBTRACT 1 FROM length.
      ASSIGN path+length(1) TO <p>.
      IF <p> <> '\'.
        ADD 1 TO length.
        ASSIGN path+length TO <p>.
        <p> = '\'.
      ENDIF.
      SELECT * FROM trdir
              INTO TABLE tabrdir
              WHERE name IN repo.
      DESCRIBE TABLE tabrdir LINES rdirrows.
      CHECK rdirrows > 0.
      LOOP AT tabrdir.
        MOVE tabrdir TO trdir.
        PERFORM download_sourse USING rc.
        CHECK rc = ok.
    *    PERFORM download_textpool USING rc.
      ENDLOOP.
      write :/ sy-dbcnt , ' number of programs downloaded'.
    *&      Form  download_sourse
    *       text
    *      -->P_RC  text
    FORM download_sourse USING  rc.
      rc = fail.
      CLEAR: tabsource, filename.
      REFRESH: tabsource.
      READ REPORT trdir-name INTO tabsource.
      DESCRIBE TABLE tabsource LINES sourcerows.
      CHECK sourcerows > 0.
      CALL FUNCTION 'STRING_CONCATENATE_3'
        EXPORTING
          string1         = PATH
          string2         = TRDIR-NAME
          string3         = '.ABA'
       IMPORTING
         string          = FILENAME
       EXCEPTIONS
         too_small       = 1
    *   OTHERS          = 2
      IF sy-subrc <> 0.
    WRITE: 'AAAA'.
      ENDIF.
      CONDENSE filename NO-GAPS.
      PERFORM download TABLES tabsource USING filename rc.
    ENDFORM.                    " download_sourse
    *&      Form  download_textpool
    *       text
    *      -->P_RC  text
    FORM download_textpool USING    p_rc.
      rc = fail.
      CLEAR: tabtext, filename.
      REFRESH: tabtext.
      READ TEXTPOOL trdir-name INTO tabtext LANGUAGE sy-langu.
      DESCRIBE TABLE tabtext LINES sourcerows.
      CHECK sourcerows > 0.
      CALL FUNCTION 'STRING_CONCATENATE_3'
        EXPORTING
          string1         = path
          string2         = trdir-name
          string3         = '.TXT'
       IMPORTING
         string          = filename
       EXCEPTIONS
         too_small       = 1
    *   OTHERS          = 2
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      PERFORM download TABLES tabtext USING filename rc.
    ENDFORM.                    " download_textpool
    *&      Form  download
    *       text
    *      -->P_TABTEXT  text
    *      -->P_FILENAME  text
    *      -->P_RC  text
    FORM download TABLES   tabtext
                          USING filename
                           rc.
      rc = fail.
      CALL FUNCTION 'WS_DOWNLOAD'
       EXPORTING
    *     BIN_FILESIZE                  = ' '
    *     CODEPAGE                      = ' '
         FILENAME                      = filename
         FILETYPE                      = 'ASC'
         MODE                          = 'MODE'
    *     WK1_N_FORMAT                  = ' '
    *     WK1_N_SIZE                    = ' '
    *     WK1_T_FORMAT                  = ' '
    *     WK1_T_SIZE                    = ' '
    *     COL_SELECT                    = ' '
    *     COL_SELECTMASK                = ' '
    *     NO_AUTH_CHECK                 = ' '
    *   IMPORTING
    *     FILELENGTH                    =
        TABLES
          data_tab                      = TABTEXT
    *     FIELDNAMES                    =
    *   EXCEPTIONS
    *     FILE_OPEN_ERROR               = 1
    *     FILE_WRITE_ERROR              = 2
    *     INVALID_FILESIZE              = 3
    *     INVALID_TYPE                  = 4
    *     NO_BATCH                      = 5
    *     UNKNOWN_ERROR                 = 6
    *     INVALID_TABLE_WIDTH           = 7
    *     GUI_REFUSE_FILETRANSFER       = 8
    *     CUSTOMER_ERROR                = 9
    *     OTHERS                        = 10
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      IF sy-subrc <> 0.
        WRITE: / sy-subrc, ' message declare '.
      ENDIF.
      rc = sy-subrc.
    ENDFORM.                    " download
    regards.
    santhosh reddy
    <REMOVED BY MODERATOR>
    Edited by: Santhosh Reddy on Feb 13, 2008 6:48 PM
    Edited by: Alvaro Tejada Galindo on Feb 18, 2008 12:00 PM

  • Can i make a program to make keyboard and mouse idle  for 10 seconds?

    can i make a program to make keyboard and mouse idle or not responding for 10 seconds?
    please how can i do that

    874557 wrote:
    no i don't think at all ..That much is obvious. Though I expect you meant to say +"No, I don't think *so* at all"+ - in which case you'd be wrong.
    ..i think some one is rudeYes, we (now) know you are, thanks to Darryl's pointers.
    See also How To Ask Questions The Smart Way - On Not Reacting Like A Loser. In fact, read the entire document.

  • How can I make my wireless keyboard "discoverable" after replacing the batteries?

    How can I make my wireless keyboard "discoverable" after replacing the batteries? Bluetooth keyboard setup said my  "keyboard is not connected" when I turned it on today.....assuming the problem was batteries, I replaced them.

    I've got it working now.....

  • How can I make my program Run forever?

    I would like to know how can I make my program execute some method while the GUI still open. I have something like this.
      public static void main(String args[]) {
        System.out.println("****************************");
        System.out.println("    PACKET READER CONSOLE   ");
        System.out.println("****************************");
        IPDetector window = new IPDetector(); // IPDetector is the JFrame
        window.setTitle("IPDetector Analyzer");
        window.pack();
        window.show();
        PortListener pl = new PortListener();// Is my portlistener class
        PacketReader c = new PacketReader();
        while(JFrame still open){// I dont know how to put a statemente here
          pl.start();// this method reads from a port and returns a string
          String cc = pl.data;// gets the string from the port listener
          while(!cc.equals("")){
            c.portWriter(cc);// writes the string into a file
      }I want that my portlistener keeps reading all the time, and if is something in the socket information.
    Should I use a thread? Any ideas? thanks.
    Chris

    I still not understanding how to make it thread. My main class is this one IPDetector. and it looks like this.
    public class IPDetector extends JFrame {
      // Declaration of the instance variables
      private static ArrayofDisplay  ad = new ArrayofDisplay();
      private ArrayofCreators database = new ArrayofCreators();
      JLabel sourceLabel;//etc..
      public IPDetector() {
        IPDetectorLayout customLayout = new IPDetectorLayout();
        getContentPane().setFont(new Font("Helvetica", Font.PLAIN, 12));
        getContentPane().setLayout(customLayout);
        sourceLabel = new JLabel("Source IP Add.");
        getContentPane().add(sourceLabel); 
        addWindowListener(new WindowAdapter() {
          public void windowClosing(WindowEvent e) {
            System.exit(0);
      // I get confused here...
      private boolean alive; // Do I need to declared here?
      public void setAlive(boolean val) { // This one also?
        alive = val;
      // IPDetector Methods...
      public void displayCaller(ArrayofDisplay aD){  }
      public void setAndReplace(String text)  {    }
      public void refresh(){ }
      public boolean action(Event evt, Object arg){ }
      //etc...
      public static void main(String args[]) {
        System.out.println("***********************************************");
        IPDetector window = new IPDetector();
        window.setTitle("IPDetector");
        window.pack();
        window.show();
        PortListener pl = new PortListener();
        PacketReader c = new PacketReader();
        while (alive) {// Is this correct here?
          pl.start();
          String cc = pl.data;
          while(!cc.equals("")){
            c.portWriter(cc);
            window.refresh();
            cc = "";
    class IPDetectorLayout implements LayoutManager {
      public IPDetectorLayout() {  }
      public void addLayoutComponent(String name, Component comp) {  }
      public void layoutContainer(Container parent) {  }
    }

  • How can I make my Introduction_mc automatically disappear after 10 Seconds and load Home_mc?

    Hi,
    How can I make my Introduction_mc automatically disappear after 10 Seconds and load Home_mc (automatically)? I don't want user to change by himself this Introduction page. It should be done automatically.
    What is the procedure and code to achieve it, please?
    Thanks.

    Hi,
    I gues you are using AS2.0, then use setInterval, in AS3.0 user Timer Class.
    AS2.0
    var interval:Number = setInterval(doThis,10000);//in milliseconds
    function doThis():Void{
    //do something;
    AS3.0
    var timer:Timer = new Timer(10000, 1);
    timer.addEventListener(TimerEvent.TIMER_COMPLETE, onTimerCompleteHandler, false, 0, true )
    function onTimerCompleteHandler(event:TimerEvent):void{
    //do something;
    For details: http://blogs.adobe.com/pdehaan/2006/07/using_the_timer_class_in_actio.html
    Warm Regards
    Deepanjan Das
    http://deepanjandas.wordpress.com

  • How can i make simple program to match colors ?(photos taken by camera)

    how can i make simple program to match colors ?(photos taken by camera)

    Hi khaledyr,
    use a "random number" and compare for ">0.5" to get a (1 or 0) signal
    What exactly are you searching for?
    - Hints for choosing hardware?
    - How to output voltage or relais signals?
    - Help on using DAQ(mx)?
    - Help on generating (boolean) waveforms?
    Message Edited by GerdW on 04-16-2010 08:15 AM
    Best regards,
    GerdW
    CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
    Kudos are welcome

  • Can I make media sharing always enable when wifi is off?

    Hi all,
    Can I make media sharing always enable when wifi is off?
    or can i make media sharing automatically enable when wifi is on?
    By the way my device curve 9220 OS 7.1
    Thanks for your answer ^^

    Duane wrote:
    In Sharing I have 'Printer Sharing' turned ON
    In Print & Fax I have 'Share this printer' checked
    If you are describing the settings in System Preferences on your iMac, you need to turn those OFF. Your current setup has the iMac acting as the print server.
    Instead you want to rely on the Time Capsule to do the printer sharing. You would configure that using AirPort Utility.
    Thanks Duane, that bit of information did the trick. All I had to do was turn printer sharing off in sys prefs and it now works the way I thought it should work.
    Once again thanks so much for the help.

  • Hi Experts.. How to make scripts & SmartFrom Unicode enable

    Hi Experts..
    How to make Scripts & Smart From Unicode enable? i know for scripts we need to check with driver program & 
    For smart from we need to check the generated function module. Correct me if am wrong. 
    I wanna to know how to make layouts & from Unicode conversion....or enable??
    Thanks In Advance
    Santosh.S
    Points for sure ...

    Hi Donghai,
    Have you tried using the command
    CHAIN ENDCHAIN.
    Try displaying the message for te field you wish to within CHAIN and ENDCHAIN which will allow you to enter the data in the field even after the error message is displayed.
    Caution: Mention all the field names in CHAIN and ENDCHAIN which you want to be open for enterin the values into it.
    Thanks and Regards,
    Kunjal Patel

  • How can I make Photoshop Elements import files after it gives incorrect error code?

    I had 17,000 photos on my hard drive well organized in folders before installing Photoshop Elements 11 today. I was able to get it to import only 467 into the catalog. I tried browsing, searching, selecting files and no matter what I did to bring inthe remainders (including trying to bring in folders with only 60-80 in each, moving files into new folders, etc.) and still can't see them in the organizer view. It allows me to highlight the folders or highlight the photo jpg files separately, says it is getting media, but then comes back with message that "files are not in correct format or are in the catalog" but they ARE in normal format jpeg, can view in other programs, and they are NOT visible in the catalog. Very frustrating, especially after wasting hours downloading the program from Amazon Marketplace - took hours, then had errors and had to redo twice. Running WIN 7 on 6 month old Sony computer with 8 GB RAM and quad processors. Thanks for any help.

    You should try posting in the PhotoShop Elements forum, especially if no one else here has a better suggestion to offer.  It is possible someone else has encountered the same problem and you could search there to see.  If you post there and you do have an error message, you should include the details of that error message.
    http://forums.adobe.com/community/photoshop_elements

  • How can i make my printer BT enabled?

    Hi,
    i have a powerbook with BT, and i thought it would be nice to connect between my pb and my printer (canon i960) wirelessly. so, i bought an Iogear print adapter for bluetooth (GBP301) hoping that it would make my printer BT enabled. i plugged the adapter to my printer and i tried to set it up using the BT setup assistant>select device type>Printer, but it has some problem. the setup assistant can find the printer, although when i tried to select the printer, it says "driver not installed", and doesn't let me go any further. the driver for this printer, however, is already installed in my pb, so when i connect the printer directly to my pb using a usb cable, i can print. Can anyone help me with this problem? thanks!!!

    As a general rule, 'universal' WiFi and Bluetooth printer adapters do not seem to work well with Mac OS X and printers.
    I suspect it is all OSs, not just OS X. I have a PowerBook, an evil Windows laptop, and a second even more evil Windows laptop from work.
    We have both a HP 7410 and a Canon Pixima, both of which claim to support Bluetooth.
    I foolishly bought two generic USB-Bluetooth adaptors, and my PowerBook has built-in Bluetooth.
    So far I have been unable to get either printer to work with any of the computers. I studied the HP 7410 manual extensively and concluded that they have instructions for connecting the printer to a cell phone or a camera via bluetooth, but the concept of connecting the printer to a computer is not discussed.
    Thge HP 7410 does show up in the PowerBook's list of available devices, so I know it is there and communication has been established. So far there does not appear to be a suitable driver available for either the HP or the Canon.
    Being a complete tightwad, I am not about to spend the exhorbitant amounts HP or Canon wants for their Bluetooth adaptors. I suspect that even if I did buy the adaptors, the lack of a suitable driver would still make it not work.

Maybe you are looking for

  • Filling table field on basis of selected value

    Hello, The model has a form (Quotation header) and a table (Quotation lines). In the header I have the Default Engine , which is a push button [(layout)|http://img410.imageshack.us/img410/3998/quotation1ff6.jpg]. On click displays a pop-up with list

  • Workflow - workitem forwarding

    Hello, Any idea what is the reason for upgraded ECC 6.0 system the following error: user XXXXX is not a dialog user: it is not possible to forward Message Class: WL No. 263 whenever I tried to forward wokitem from one user to another; I chekced XXXXX

  • Loading XML data in Utilities

    I need to load some XML data into a staging table. I am using this navigation path... Home>Utilities>Data Load/Unload>Load>Load XML Data The staging table is setup with the columns in the XML file. I am receiving this error when I attempt to load the

  • ISight Camera Won't Work stuck on since new update

    I just did the recent update to Skype 7.7 and now after a video call the camera stays on but will not work in any other application. I found a solution to get it to work for one more call i have to shut down and unplug the computer wait 15 sec. then

  • RH_TYPE_STRUC_HELP the same sy-subrc for no selection and cancel

    Hi, I use FM "RH_TYPE_STRUC_HELP" and it puts me the same result to sy-subrc  for [no items selected] and [cancel] - sy-subrc = 2. When I have a few item selected in org.tree I can not deselect them. (I can do it in range options only). Maybe someone