SAP Upgrade No-UNICODE to *UNICODE

Hi all,
This is our enviroment:
OS: Windows 2000
DB: Oracle 9.2.0.7.0
SAP Kernel 46D
SAP_BASIS Release: 46B
<b>NON UNICODE System</b>
We will go to upgrade our SAP System to:
SAP R/3 Enterprise Core 4.70 Extension Set 2.00 Support Release 1
We recieved this <b>upgrade package</b> (Big White Box) from SAP:
SAP R/3 Enterprise 4.7x2.00 SR1(<b>Incl. UNICODE</b>) not for IDES
My doubt is:
<b>*UNCODE</b> does mean that is only for UNICODE Upgrades?
Should i ask to SAP for a upgrade package like this:
SAP R/3 Enterprise 4.7x2.00 SR1(<b>Incl. <b>NON</b> UNICODE</b>) not for IDES
Maybe it only mean that, as an option after the upgrade you <b>could</b> convert your system to unicode, only if you want or need.
Please some tips!
Best Regards,
Desiree Cardenas

Hi Desiree,
If you goto www.sap.com/swdc and navigate to
1. Entry by Application Group
2. Installations and Upgrades
3. SAP Application Components
4. SAP R/3 Enterprise
5. SAP R/3 Enterprise 47x200
6. Upgrade
7. Windows Server
8. Oracle
it will show all the DVDs/CDs that may be required for the upgrade.  Since none of the media descriptions actually differentiate between Unicode and Non-Unicode, then I expect the package you received is good for either type of upgrade.
Than Martens

Similar Messages

  • Frequently faced errors in Unicode while SAP Upgrade

    Hi Gusy,
    I am going work on Unicode upgarde project, can any one share Frequently faced errors in Unicode while SAP Upgrade.
    Thanks,
    Gourisankar.

    Hi
    MESSAGEG@3      
    Replace variable declaration of type X with appropriate value from method cl_abap_char_utilities
    i.e.      CONSTANTS:      con_tab TYPE x VALUE '09',
                   con_cret TYPE x VALUE '0D'.
    would be replaced with
         CONSTANTS:      con_tab TYPE c value cl_abap_char_utilities=>HORIZONTAL_TAB,
                   con_cret TYPE c value cl_abap_char_utilities=>CR_LF.
    *UPLO      *
    Upload/ws_upload and download/ws_download are obsolete, since they are not Unicode enabled. Replace
    with appropriate methods from cl_gui_frontend_services. Please also note that the data types of the various
    parameters will also probably also need changing for the new method calls but the code below demonstrates
    how to do this. I_TABLE is the original table and IT_UCTABLE is the converted table.
    i.e. Function module u2018WS_DOWNLOADu2019
      CALL FUNCTION 'WS_DOWNLOAD'
          EXPORTING
               FILENAME                = p_file
               FILETYPE                = 'ASC'
             MODE                    = ' '
           TABLES
                DATA_TAB                = i_table
          EXCEPTIONS
    would be replaced with
    data: gd_file type string.
    types: t_uctable like line of i_table.
    data:  it_uctable type standard table of t_uctable.
      gd_file = p_file.
      it_uctable[] = i_table[].
      CALL METHOD cl_gui_frontend_services=>gui_download
      EXPORTING
        filename = gd_file
        filetype = 'ASC' " DAT,WK1
        Append   = ' '   "if mode = A then this would be X
      CHANGING
        data_tab = it_uctable
      EXCEPTIONS
        OTHERS   = 1.
    Function module u2018DOWNLOADu2019
          CALL FUNCTION 'DOWNLOAD'
            EXPORTING
              filename = p_file
              filetype = 'WK1'
            TABLES
              data_tab = i_table.
    would be replaced with
    data: gd_file type string.
    DATA: ld_filename TYPE string,
          ld_path TYPE string,
          ld_fullpath TYPE string,
          ld_result TYPE i.
    types: t_uctable like line of i_table.
    data:  it_uctable type standard table of t_uctable.
      gd_file = p_file.
      shift gd_file RIGHT DELETING TRAILING '\'.
      shift gd_file RIGHT DELETING TRAILING '/'.
      shift gd_file left DELETING LEADING space.
      CALL METHOD cl_gui_frontend_services=>file_save_dialog
        EXPORTING
          DEFAULT_EXTENSION = 'WK1'
          default_file_name = gd_file
          INITIAL_DIRECTORY = gd_file
        CHANGING
          filename          = ld_filename
          path              = ld_path
          fullpath          = ld_fullpath
          user_action       = ld_result.
      check ld_result eq 0.
      gd_file = ld_fullpath.
      gd_file = p_file.
      it_uctable[] = i_table[].
      CALL METHOD cl_gui_frontend_services=>gui_download
      EXPORTING
        filename = gd_file
        filetype = 'ASC' " DAT,WK1
        Append   = ' '   "if mode = A then this would be X
      CHANGING
        data_tab = it_uctable
      EXCEPTIONS
        OTHERS   = 1.
    Or in circumstances where you need to add field texts to the first line of the file you could use the
    GUI_DOWNLOAD function module:
    DATA: BEGIN OF fields_tab OCCURS 0,
            f1(50),
          END   OF fields_tab.
    fields_tab-f1 = 'field1 text'.
    APPEND fields_tab.
    fields_tab-f1 = 'field2 text'.
    APPEND fields_tab.
    fields_tab-f1 = 'field3 text'.
    APPEND fields_tab.
      CALL FUNCTION 'GUI_DOWNLOAD'
        EXPORTING
          filename                = i_filename
          filetype                = 'DAT'
        IMPORTING
          filelength              = filelen
        TABLES
          data_tab                = itab
          fieldnames              = fields_tab
        EXCEPTIONS
    Note: u2018ws_uploadu2019 and u2018uploadu2019 would be the same as above but would use the
    cl_gui_frontend_services=>gui_upload method call instead:
    CALL METHOD cl_gui_frontend_services=>gui_upload
      EXPORTING
        filename = gd_file
        filetype = 'ASC' " DAT,WK1
        Append   = ' '
      CHANGING
        data_tab = it_uctable
      EXCEPTIONS
        OTHERS   = 1.
    OPEN 004      
    Add u2018ENCODINGu2019 addition to statement
    i.e.      OPEN DATASET G_DATAFILE for OUTPUT IN TEXT MODE.
    would be replaced with
         OPEN DATASET G_DATAFILE for OUTPUT IN TEXT MODE ENCODING NON-UNICODE.
    OPEN 002      
    IN..Mode is expected within open dataset command.
    i.e.      OPEN DATASET wfilepath FOR OUTPUT.
    would be replaced with
         OPEN DATASET wfilepath FOR OUTPUT IN TEXT MODE ENCODING NON-UNICODE.
    Or      OPEN DATASET wfilepath FOR OUTPUT IN BINARY MODE.
    OPEN 001      
    FOR INPUT, FOR OUTPUT, FOR APPENDING or FOR UPDATE expected!
    i.e.      OPEN DATASET wfilepath FOR OUTPUT.
    would be replaced with
         OPEN FOR OUTPUT DATASET wfilepath FOR OUTPUT IN TEXT MODE.
    DESCIBE002      
    THE DESCRIBE LENGTH can only be used with the IN BYTE or IN CHARACTER MODE
    i.e.      describe field e_text length line_length.
    would be replaced with
         describe field e_text length line_length IN CHARACTER MODE.
    ASSIGN 019      
    The statement u2018ASSIGN PATH+PATHLENGTH TO
    .u2019 Returns the following error message:
    "You cannot use ASSIGN f+offset. Always use an explicit length (or '*')".
    i.e.      ASSIGN PATH+PATHLENGTH TO
    would be replaced with
         ASSIGN PATH+PATHLENGTH(2) TO
    . u201Creplace 2 with the length of the field
    MESSAGEG!2      
    Itab/structure and u201C u201C  are not mutually convertible in a Unicode program
    i.e.      G_SHOW_LIST = SPACE.
    would be replaced with
         Clear: G_SHOW_LIST.
    Or       G_SHOW_LIST-field1 = space.
         G_SHOW_LIST-field2 = space.
                             u2026etc
    *MESSAGEG!3      *
    var and var  are not comparable in a Unicode program
    Example      Data: VAR like tabix.
    was replaced with
              Data: VAR type sy-tabix.

  • Upgrade 4.6C to ECC 6.0; Unicode - non-Unicode -- Unicode

    Hi,
    My client has a R/3 4.6c UNICODE, he wants to upgrade to ECC6.0 UNICODE.
    According to a SAP document, to upgrade, I upgrade directly to ECC 6.0 NON_UNICODE then convert the system to ECC 6.0 UNICODE.
    I'm wonder why Unicode -> non-Unicode --> Unicode.
    Regards,
    Toan Do

    "4.6C is not a unicode system ,ecc6.0 is an unicode system."
    Actually, ECC 6.0 only has to be unicode if you are a new installation.  If you are upgrading from a non-unicode system, you can upgrade to a non-unicode ECC 6.0 system, this is fully supported by SAP.
    However, it is recommended that you perform the upgrade and unicode conversion at the same time. SAP is going to force us to unicod some day anyway.
    We have just completed a technical upgrade from 4.7 to ECC 6 non-unicode, and now we are looking at a unicode conversion project.  It would have added time to the original upgrade project, but it would have been worth it.
    T

  • Gettin data from SAP R/3 4.7 unicode sys to SAP ERP non-unicode sys via RFC

    We are trying to get data from SAP R/3 4.7 unicode sys to SAP ERP non-unicode sys via RFC. We are reading field from the database via FM and this field got converted by SAP standard Method (CL_ABAP_CONTAINER_UTILITIES=>fill_CONTAINER_C) from structure. When reading this field from ERP sys and converted back to structure using SAP standard Method the value is un-accurate, and different(blank) giving values.
    How, if the data originally was a char or numeric it works fine, but not for decimal.
    best regards,
    Abu-Qaht

    I have a range fields with different type of ranges, am saving these to the database by converting them to a string via the same method. I got the same problem so I tried to convert the string to xstring using function “SCMS_STRING_TO_XSTRING”, before send it to the other system, but the function raised an exception: CX_SY_CONVERSION_CODEPAGE

  • SAP WEB AS 6.20 unicode installation question

    I am trying to install SAP WEB AS 6.2 unicode version on SAPDB 7.3 on windows 2000 . I get the following error when i try to install the database instance after the succesfully installing the Central instance.
    INFO 2004-10-11 22:22:50
    'C:\51018821/NT/I386/sdbinst.exe  -I C:\sapdb\data -i C:\sapdb\programs -d C:\sapdb\<SID>\DB -b' returned with '0'.
    ERROR 2004-10-11 22:22:51
    MOS-01082  File system node C:\sapdb\programs\pgm\sapni.dll with type NODE does not exist.
    ERROR 2004-10-11 22:22:51
    MOS-01105  Processing of one or more file system node operations of table   Content of table: tADA_Files  Row[0]    NodeName="C:\sapdb\programs\pgm\sapni.dll" NodeTarget="C:\SAPinst12\sapni.dll" OpMode="COPY"  failed.
    ERROR 2004-10-11 22:22:52
    FJS-00012  Error when executing script.
    When I checked, there is no directory 'C:\sapdb\programs\' created at all.
    The XMOD.log file says
    Execute Command : c:\sapdb\indep_prog/pgm/dbmcli.exe -d <SID> dbm_version INSTROOT
    Execute Session Command : exit
    Error! Connection failed to node (local) for database <SID>: dbmsrv not found
    What does this mean and what do I have to do to correct it ?

    Hello Venkatesh,
    could you please tell me which exact SAP DB version you want to install? That's important in this case, because within version 7.3 there's a switch (from a certain Build level) of the SAP DB Installer (used by the sdbinst program).
    Additionally, please send me installation protocol of sdbinst, located in the directory C:\sapdb\data\wrk. The name of the file will look something like this:
    SAPDB<Installationtype>-<Date>-Time.log
    Kind regards,
    Roland

  • How to check for Unicode/Non-Unicode SAP?

    Hi All,
    Please let me know how can I check whether an SAP system is a Unicode/Non-Unicode from SAP GUI?
    Thanks in advance,
    Adarsh

    Hi,
    You can check under menu :
    System -> Status -> SAP System Data -> Unicode System -> Yes/ No

  • SAP upgrade - questions for report painter and query

    Hi Experts,
    I have two quwstions of SAP upgrade.
    My requirement is: SAP upgrade from 4.6B to ECC 6.0 with non-unicode.
    1.Does SAP upgrade influence the report painter? If influence, could you tell me what should I do for this case.
    2. We have so many queries (SQ01) in our system and many of them haven't been run for a long time. we need a tool to get the runtimes of queries in a certain durition.
    For example: From 2008/01/01 to 2008/03/31,I want to know how many queries had been run/ query name/ runtimes of each query.
    Best regards,

    > 1.Does SAP upgrade influence the report painter? If influence, could you tell me what should I do for this case.
    You can check
    Note 1155524 - ReportWriter: Upgrade Issues ECC6.0 -Common Customer Issues
    > 2. We have so many queries (SQ01) in our system and many of them haven't been run for a long time. we need a tool to get the runtimes of queries in a certain durition.
    Such a tool was RBE (Reverse Business Engineer) - which is out of support.
    You can try to get that information from ST03. If that is not enough there's no other way than booking an SLO service to find out the queries that have not been used (http://service.sap.com/slo).
    Markus

  • Put Together A Data Archiving Strategy And Execute It Before Embarking On Sap Upgrade

    A significant amount is invested by organizations in a SAP upgrade project. However few really know that data archiving before embarking on SAP upgrade yields significant benefits not only from a cost standpoint but also due to reduction in complexity during an upgrade. This article not only describes why this is a best practice  but also details what benefits accrue to organizations as a result of data archiving before SAP upgrade. Avaali is a specialist in the area of Enterprise Information Management.  Our consultants come with significant global experience implementing projects for the worlds largest corporations.
    Archiving before Upgrade
    It is recommended to undertake archiving before upgrading your SAP system in order to reduce the volume of transaction data that is migrated to the new system. This results in shorter upgrade projects and therefore less upgrade effort and costs. More importantly production downtime and the risks associated with the upgrade will be significantly reduced. Storage cost is another important consideration: database size typically increases by 5% to 10% with each new SAP software release – and by as much as 30% if a Unicode conversion is required. Archiving reduces the overall database size, so typically no additional storage costs are incurred when upgrading.
    It is also important to ensure that data in the SAP system is cleaned before your embark on an upgrade. Most organizations tend to accumulate messy and unwanted data such as old material codes, technical data and subsequent posting data. Cleaning your data beforehand smoothens the upgrade process, ensure you only have what you need in the new version and helps reduce project duration. Consider archiving or even purging if needed to achieve this. Make full use of the upgrade and enjoy a new, more powerful and leaner system with enhanced functionality that can take your business to the next level.
    Archiving also yields Long-term Cost Savings
    By implementing SAP Data Archiving before your upgrade project you will also put in place a long term Archiving Strategy and Policy that will help you generate on-going cost savings for your organization. In addition to moving data from the production SAP database to less costly storage devices, archived data is also compressed by a factor of five relative to the space it would take up in the production database. Compression dramatically reduces space consumption on the archive storage media and based on average customer experience, can reduce hardware requirements by as much as 80% or 90%. In addition, backup time, administration time and associated costs are cut in half. Storing data on less costly long-term storage media reduces total cost of ownership while providing users with full, transparent access to archived information.

    Maybe this article can help; it uses XML for structural change flexiblity: http://www.oracle.com/technetwork/oramag/2006/06-jul/o46xml-097640.html

  • SAP Upgrade and Integration

    Hello All
    i'm a new employee and i have been chosen to be the integration team leader in the SAP Upgrade project resources.
    this project is about
    *Upgrading the SAP from ECC 5 to ERP 6
    Unicode which is unable the SAP to work with the other characters.
    *upgrading the Oracle
    I need your help????
    i want to know what should i put in my mind and what kind of question should be asked in this sitiuation. because i'm a new employee and being the integration team leader is like a challenge for me.
    Please give me your help

    Hi,
    First you should read Upgrade Master guide. Check guides on http://service.sap.com/erp-ehp.
    Thanks
    Sunny

  • Re : The Migration of Non Unicode to Unicode System

    What are the areas must be check once we shift from non Unicode to Unicode system

    Hi,
    check this threads and the links in it:
    SAP Best Practice For Unicode Upgrades - NetWeaver 2004s
    Regards
    Andreas

  • SAP Upgrade ORA-00905: missing keyword

    Dear experts,
    we have a very urgent SAP upgrade case,
    From SAP R/3 470 SR1 110 to ECC 6 EHP4 SPS09
    source system have three languages ZH EN DE,it's a
    non-unicode system,before SAP upgrade,From rscpinst, i delete language
    German and change contry code to CN,
    (China). Then there is only code page 8400,T-code: I18N check ok,now we have
    a error during upgrade,i was already replace the kernel to 385 version(640_Rel Non-unicode,TP and R3trans alreay the latest version) repeat the SHADOW_IMPORT_UPG1 step but still fail,log result as follow,the SAPKLZHSR1EHP4ERP6F8.GS1 has incomplete conversion
    but the previous log file I.E SAPKLZHSR1EHP4ERP6F7.GS1 also have incomplete conversion but no ORA-00905,we only have codepage 8400 and Non-unicode but why the log mention 4103 it's a Unicode code page,thanks a lot!
    SHDUPGIMP1.ELG
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    SHADOW IMPORT ERRORS and RETURN CODE in SAPKLZHSR1EHP4ERP6F8.GS1
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    2EETW000 SQL error 905 occured: ORA-00905: missing keyword
    2EETW000 SQL error 905 occured: ORA-00905: missing keyword
    1 ETP111 exit code           : "8"
    SAPKLZHSR1EHP4ERP6F8.GS1
    4 ETW000  22 entries for RSMPTEXTS~ imported (SAPLMCB2                                1*).
    4 ETW000   1 entry for TLIBT~ updated  (1MCB2).
    3WETW000 language = '1', converted from codepage 4103 to codepage 8400, incomplete conversion due to invalid chars: '41004e0041004c005900530045005f00440055005200430048004600dc004800520045004e0020002000200020002000200020002000200020002000' -> 'ANALYSE_DURCHF#HREN           '
    4 ETW000   0 entries from FUNCT~ (1ANALYSE_DURCHF#HREN           %) deleted.
    3WETW000 language = '1', converted from codepage 4103 to codepage 8400, incomplete conversion due to invalid chars: '41004e0041004c005900530045005f00440055005200430048004600dc004800520045004e0020002000200020002000200020002000200020002000' -> 'ANALYSE_DURCHF#HREN           '
    4 ETW000   0 entries from FUNCT~ (1ANALYSE_DURCHF#HREN           %) deleted.
    3WETW000 language = '1', converted from codepage 4103 to codepage 8400, incomplete conversion due to invalid chars: '41004e0041004c005900530045005f00440055005200430048004600dc004800520045004e0020002000200020002000200020002000200020002000' -> 'ANALYSE_DURCHF#HREN           '
    4 ETW000   0 entries from FUNCT~ (1ANALYSE_DURCHF#HREN           %) deleted.
    3WETW000 language = '1', converted from codepage 4103 to codepage 8400, incomplete conversion due to invalid chars: '41004e0041004c005900530045005f00440055005200430048004600dc004800520045004e0020002000200020002000200020002000200020002000' -> 'ANALYSE_DURCHF#HREN           '
    4 ETW000   0 entries from TFTIT~ (1ANALYSE_DURCHF#HREN           ) deleted.
    3WETW000 language = '1', converted from codepage 4103 to codepage 8400, incomplete conversion due to invalid chars: '41004e0041004c005900530045005f00440055005200430048004600dc004800520045004e0020002000200020002000200020002000200020002000' -> 'ANALYSE_DURCHF#HREN           '
    4 ETW000   0 entries from TFTIT~ (1ANALYSE_DURCHF#HREN           ) deleted.
    3WETW000 language = '1', converted from codepage 4103 to codepage 8400, incomplete conversion due to invalid chars: '41004e0041004c005900530045005f00440055005200430048004600dc004800520045004e0020002000200020002000200020002000200020002000' -> 'ANALYSE_DURCHF#HREN           '
    4 ETW000   0 entries from TFTIT~ (1ANALYSE_DURCHF#HREN           ) deleted.
    4 ETW000  [     dev trc,00000]  Wed Sep  7 10:41:04 2011                                             815387003  1338.120210
    4 ETW000  [     dev trc,00000]     OCIStmtExecute() failed with -1=OCI_ERROR                              10  1338.120220
    4 ETW000  [     dev trc,00000]     SQL error 905:                                                          6  1338.120226
    4 ETW000  [    dbsloci.,00000]  *** ERROR => Error 905 in stmt_fetch() from oci_execute_stmt(), orpc=0
    4 ETW000                                                                                12  1338.120238
    4 ETW000  [    dbsloci.,00000]  *** ERROR => ORA-905 occurred when executing SQL stmt (parse error offset=110)
    4 ETW000                                                                                9  1338.120247
    4 ETW000  [     dev trc,00000]  sc_p=0x140f618,no=67,idc_p=(nil),con=0,act=1,slen=149,smax=256,#vars=4,stmt=0x1783c10,table=
    4 ETW000                                                                                17  1338.120264
    4 ETW000  [     dev trc,00000]  SELECT ID,OBJECT,LANGU,TYP,VERSION FROM "DOKIL~" WHERE (LANGU IN ( :A0 )) AND ID = :A1 AND OBJECT BE\
    4 ETW000                                                                                9  1338.120273
    4 ETW000  [     dev trc,00000]  TWEEN :A2 ANALYSE#_DURCHF#REN           % :A3 #?;                         5  1338.120278
    4 ETW000  [     dev trc,00000]  sc_p=0x140f618,no=67,idc_p=(nil),con=0,act=1,slen=149,smax=256,#vars=4,stmt=0x1783c10,table=
    4 ETW000                                                                                11  1338.120289
    4 ETW000  [     dev trc,00000]  Dumping DBSL stmt. cache:                                                  5  1338.120294
    4 ETW000  [     dev trc,00000]  prep=0,lit=0,nsql=1,lobret=0,xop=1,dbcnt=0,upsh=(nil),stmtp=0x1784758,rtc=0
    4 ETW000                                                                                29  1338.120323
    4 ETW000  [     dev trc,00000]  IN : cols=4,rmax=1,xcnt=0,rpc=0,rowi=0,rtot=0,upto=4294967295,rsize=28,vmax=32,bound=1,iobuf_p=0x1493510,vda_p=0x1784db0
    4 ETW000                                                                                10  1338.120333
    4 ETW000  [     dev trc,00000]       lobs=0,lmax=0,lpcnt=0,larr=(nil),lcurr_p=(nil),rret=0                 6  1338.120339
    4 ETW000  [     dev trc,00000]  SELECT ID,OBJECT,LANGU,TYP,VERSION FROM "DOKIL~" WHERE (LANGU IN ( :A0 )) AND ID = :A1 AND OBJECT BE\
    4 ETW000                                                                                7  1338.120346
    4 ETW000  [     dev trc,00000]  TWEEN :A2 ANALYSE#_DURCHF#REN           % :A3 #?;                         5  1338.120351
    4 ETW000  [    dbds    ,00596]  ***LOG BY2=>sql error 905        performing FET        [dbds#2 @ 596]
    4 ETW000                                                                                14  1338.120365
    4 ETW000  [    dbds    ,00596]  ***LOG BY0=>ORA-00905: missing keyword [dbds#2 @ 596]                      6  1338.120371
    2EETW000 SQL error 905 occured: ORA-00905: missing keyword
    4 ETW000   0 entries from FUNCT~ (1MCB_GRAPHIC_DAILY             %) deleted.
    4 ETW000   0 entries from FUNCT~ (%MCB_GRAPHIC_DAILY             %) deleted.
    4 ETW000   0 entries from TFTIT~ (1MCB_GRAPHIC_DAILY             ) deleted.
    4 ETW000   0 entries from TFTIT~ (%MCB_GRAPHIC_DAILY             ) deleted.
    SAPKLZHSR1EHP4ERP6F7.GS1
    4 ETW000   1 entry for LDBNT~ imported (1FTI_TR_PL_CF        *).
    4 ETW000   0 d /   1 i /   0 u /   0 =   0% ucf LDBT~
    4 ETW000   1 entry for LDBT~ imported (1FTI_TR_PL_CF).
    4 ETW000   1 entry for TRDIRT~ inserted (SAPDBFTI_TR_POSITIONS                   1*).
    3WETW000 some text was mutilated during conversion from unicode to ascii in language '1'. This is the result: 'SP_JOTC          ###############'
    3WETW000 language = '1', converted from codepage 4103 to codepage 8400, incomplete conversion due to invalid chars: '530050005f004a004f005400430020002000200020002000200020002000200020003a571659a44e13664d881f75a74ec1542000200020002000200020002000' -> 'SP_JOTC          ###############'
    4 ETW000 REPOT1SAPDBFTI_TR_POSITIONS                    A replaced.
    4 ETW000   0 entries from D020T~ (SAPDBFTI_TR_POSITIONS                   %) deleted.
    4 ETW000   0 entries from D021T~ (SAPDBFTI_TR_POSITIONS                   %) deleted.
    4 ETW000   0 entries from TRDIRT~ (DBFTI_TR_POSITIONSFXXX                  1%) deleted.
    4 ETW000   0 entries from TRDIRT~ (DBFTI_TR_POSITIONSNXXX                  1%) deleted.
    4 ETW000   0 entries from TRDIRT~ (DBFTI_TR_POSITIONSN001                  1%) deleted.
    4 ETW000   0 entries from TRDIRT~ (DBFTI_TR_POSITIONSSEL                   1%) deleted.
    4 ETW000   0 entries from TRDIRT~ (DBFTI_TR_POSITIONSSXXX                  1%) deleted.
    4 ETW000   0 entries from TRDIRT~ (DBFTI_TR_POSITIONSTOP                   1%) deleted.
    SAPup.ECO
    Phase SHADOW_IMPORT_UPG1:
    BLOCKED SIGNALS: ''
    SAPup> Starting subprocess 2865 at 20110907101845
    ENV: DIR_LIBRARY=/usr/sap/upgrade/upg_dir/abap/exenew
    ENV: LD_LIBRARY_PATH=/usr/sap/upgrade/upg_dir/abap/exenew:/usr/sap/upgrade/upg_dir/jvm/jre/lib/amd64/server:/usr/sap/upgrade/upg_dir/jvm/jre/lib/amd64:/usr/sap/upgrade/upg_dir/jvm/jre/../lib/amd64:/usr/sap/GS1/SYS/exe/run:/oracle/GS1/102_64/lib
    ENV: NLS_LANG=AMERICAN_AMERICA.WE8DEC
    ENV: ORACLE_BASE=/oracle
    ENV: ORACLE_HOME=/oracle/GS1/102_64
    ENV: ORACLE_PSRV=GS1
    ENV: ORACLE_SID=GS1
    ENV: ORA_NLS33=/oracle/client/92x_64/ocommon/nls/admin/data
    ENV: PATH=/usr/sap/upgrade/upg_dir/abap/exenew:/oracle/GS1/102_64/bin:.:/home/gs1adm:/usr/sap/GS1/SYS/exe/run:/opt/gcc295/bin:/opt/gnome/bin:/usr/games:/usr/bin/X11:/usr/local/bin:/bin:/usr/bin:/usr/X11R6/bin:/usr/global_lx/bin:/usr/global/bin
    ENV: SAPSYSTEMNAME=GS1
    ENV: auth_shadow_upgrade=0
    ENV: dbms_type=ORA
    ENV: dbs_ora_schema=SAPDAT
    ENV: dbs_ora_tnsname=GS1
    EXECUTING /usr/sap/upgrade/upg_dir/abap/exenew/tp (/usr/sap/upgrade/upg_dir/abap/exenew/tp) pf=/usr/sap/upgrade/upg_dir/abap/bin/SHDUPGIMP1.TPP put GS1
    This is /usr/sap/upgrade/upg_dir/abap/exenew/tp version 376.03.38 (release 701)
    This is /usr/sap/upgrade/upg_dir/abap/exenew/R3trans version 6.14 (release 701 - 03.06.11 - 17:57:00).
    2EETW000 SQL error 905 occured: ORA-00905: missing keyword
    2EETW000 SQL error 905 occured: ORA-00905: missing keyword
    /usr/sap/upgrade/upg_dir/abap/exenew/R3trans finished (0008).
    ERROR: stopping on error 8 during SHADOW IMPORT
    Warning: Parameter INTERRUPT is no longer used.
    Warning: Parameter DAYLIGHT_SHUTDOWN is no longer used.
    Warning: Parameter WITH_TACOB is no longer used.
    Warning: Parameter IMPDP_BY_EVENT is no longer used.
    Warning: Parameter INTERRUPT is no longer used.
    Warning: Parameter DAYLIGHT_SHUTDOWN is no longer used.
    Warning: Parameter WITH_TACOB is no longer used.
    Warning: Parameter IMPDP_BY_EVENT is no longer used.
    Warning: Parameter DBCONFPATH is no longer used.
    stopping on error 8 during SHADOW IMPORT
    tp returncode summary:
    TOOLS: Highest return code of single steps was: 8
    WARNS: Highest tp internal warning was: 0118
    tp finished with return code: 8
    meaning:
      A tool used by tp produced errors
    Process with ID 2865 terminated with status 8
    B.R
    Lance.
    Edited by: Yen on Sep 7, 2011 8:11 AM

    Hello,
    Following upg master was used -
    51036889_1 BS 7 SR1 Upgrade Master 1/2
    51036889_2 BS 7 SR1 Upgrade Master 2/2
    And the kernel dvd used was NUC -
    51036767_4 BS 7 SR1 Kernel 7.01
    After successful upgrade to ecc6 EhP4, Unicode conversion was done later with UC kernel DVD (during IMPORT)
    Thanks

  • SAP Upgrade project

    Hi Experts,
    I need some inputs to do SAP upgrade from 4.& to ECC 6.0.
    Generally the steps involved in the Upgrade project?
    What is the role of ABAPer in Upgrade project?
    What us the role og Functional consultant in project?
    How the configuration kind of stuff take care?
    Can anyone send me the best document to understand the process..?
    Regards,
    Sekhar.J

    Hi,
    Upgrade Overview
    The objective on SAP Technical version upgrade would be to bring in enhanced SAP functionality while retaining the custom development in the original system. The enhanced functionality is not necessarily implemented during the upgrade. The upgraded system is tested for all the functional scenarios existing in the original system and the custom objects are tested for its functioning as in the original system.
    Upgrade project consists of 5 phases:
    1.     Project Preparation
    2.     Blueprinting
    3.     Realization
    4.     Production Preparation
    5.     Go Live & Support
    ABAPer Role
    a) Syntax Correction
    b) Upgrade Correction (Replacement of obsolete statement)
    c) BDC Program correction
    d) BDC to BAPI conversion
    e) Unicode testing using UCCHECK transaction
    Functional consultant role
    Unit Testing
    Test Scripts preparations for Changes
    Regards
    Praneeth

  • SAP upgrade methodology

    Hi,
    We are planning to upgrade our SAP 4.6 R/3 system to ECC 6.0.
    The system landscape is:
    DEV -
    > QA (Quality)  -
    > PRD (Production)
    I would like to know which is the best approach to follow to upgrade all the 3 systems. Should we first upgrade the DEV system, then move the transports to QA and then subsequently to PRD????
    Any guidance is really appreciated.
    Regards,
    Raghavendra.

    Hello Rghavendra,
    Should be helpful to prepare your upgrade BEFORE proceeding :
    Upgrade Master Guides => Links in the SAP Service Marketplace:
    General:
    https://service.sap.com/instguides
    SAP ERP:
    https://service.sap.com/erp-inst
    http://service.sap.com/upgrade.
    http://sdn.sap.com --> Upgrade
    Refer to the Wiki section - https://wiki.sdn.sap.com/wiki/display/ERP6/SAPERP6.0+Upgrade
    you can some information on Upgrades....
    Documentation on upgradation:
    http://help.sap.com/saphelp_nw04s/helpdata/en/08/5741c24ae611d1894f0000e829fbbd/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/16/4b3c88170e11d6999d00508b6b8b11/frameset.htm
    http://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/f0f9f37c-be11-2a10-3baf-d5d7de5fb78d
    http://www.sdn.sap.com/irj/sdn/wiki?path=/display/unicode/system%2blandscape%2bconversion
    http://www.sdn.sap.com/irj/sdn/wiki?path=/display/unicode/project%2bplanning%2b-%2bmdmp%2bsystem
    http://www.sdn.sap.com/irj/sdn/wiki?path=/display/unicode/communication%2binterfaces
    SAP Upgrade guide:
    http://www.thespot4sap.com/upgrade_guide_v2.pdf#search=%22upGRADE%20STEPS%20-%20SAP%22
    From ABAP's perspective, the following link helps you:
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/5ac31178-0701-0010-469a-b4d7fa2721ca
    For technical upgrade inputs:
    http://www.sdn.sap.com/irj/sdn/wiki?path=/display/profile/2007/05/07/upgradeFROMR3TOmySAPERP-PARTII&
    http://wiki.sdn.sap.com/wiki/display/profile/UPGRADEFROMR3TOmySAPERP-PARTIII
    http://help.sap.com/saphelp_nw2004s/helpdata/en/c8/61ec66e33611d1954b0000e82de14a/content.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/2e/6d66617d9011d396b60000e82de14a/content.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/2e/6d66647d9011d396b60000e82de14a/content.htm
    Rgds,
    Zulain

  • Regarding non-unicode to unicode conversion in mapping

    In our project we have Pi system which is installed as unicode system.
    But the SAP systems at the sender side is unicode and most of them are non-unicode systems.
    We have a doubt regarding the challenges that we need to face in PI mapping with reference to unicode and non unicode conversion.
    Is it possible for us to Map the RFCs of non-unicode SAP system at sender side with the help of graphical mapping?
    Any conversion we need to do?
    Thanks & Regards,
    sasi
    Edited by: sasitharan on Jan 6, 2009 4:25 PM

    Thanks a lot for your replys.
    In our customer lanscape they have following SAP R/3 vsesions 4.0B,4.5B.4.6B,4.6C,ECC 5.0,ECC 6.0
    so how this unicode , non unicode settings varies with respect to versions?
    Is it resembles same with respect to all the version?
    Thanks & Regards,
    Sasi

  • From non-unicode to Unicode

    I want to read texts in a Unicode SolMan 7 sps20  system that were already saved in a non-Unicode SolMan 3.2 system. When, i tried to open docin solar01, i have a message :"No document opened". Any idea?!

    Hi Puneet,
    You can convert non-unicode single code page systems to unicode for all SAP Applications and SAP NetWeaver systems. Of SAP NetWeaver you can only convert SAP NetWeaver AS (ABAP) and SAP NetWeaver BI to unicode as all other SAP NetWeaver solutions are unicode only anyway. For the SAP Applications please note that only certain releases can be converted to unicode. For SAP R/3, you have to be at release SAP R/3 Enterprise extension set 2.00 before you can convert to unicode.
    The other major restriction is that most but not all databases support unicode - the major exception being Informix.
    Also it should be pointed out that you can do a conversion in place and therefore do not need to do an application migration (it is simply an export with conversion and a reload into the new database).
    Al the requirements and conversion steps are covered in conversion guides found on the service marketplace. http://service.sap.com/unicode@sap ->  Unicode Library -> Unicode Conversion Library
    I hope this helps,
    Mike.

  • Transports from none Unicode to Unicode system. Possible?

    Hello,
    is it possible to transports from none Unicode to Unicode system?
    Any experience?
    Any links?
    Best regards.

    Hi,
    We ahve upgraded to unicode but never transporetd from non unicode to unicode...
    Non unicode to unicode is ok but vice versa might be will not work.
    reagrds
    Gopal

Maybe you are looking for

  • Connect Cintiq 12wx to my MacBook Pro 17

    What kind of cable do I need to make this connection?  MacBook is only one year old.

  • TCP Sequence number in Java domain

    Hi, Trying to get a platform unique number I thought about a combination between IP address and the local machine TCP sequence number. Is there a way in Java to get the TCP sequence number? Thanks, -Michael

  • Aggregated phase in phase out profile

    I am facing one issue while running forecasting for phase in phase out profile at aggregated or base pack level. I have a scenario in which consider base pack level is "A" and under this bas pack are product codes "B", "C" & "D" I have assigned phase

  • Uninstalling an application in Creative Cloud

    How can I uninstall the Adobe Premiere Pro CS6 in my Creative Cloud? The Premiere Pro application is in my computer but the configuration doesn't want to work, so I want to uninstall it and then, reinstall it.

  • Does Verizon iPad work in india?

    Does a Verizon version ipad2 work in india?