Upgrade from 46C to ECC6.0

Hello All.
I'm upgrading a 4.6C SAP release to ECC 6.0
OS: Windows 2003 EE - 32bit
DB: DB2 UDB 8 FP10
The upgrade procedure hangs in the phase PARMVNT_XCNV with the following error:
3 ETP379X12:52:48: activating Nametab "TPRI_PAR":
2 ETP399   >> Name of inactive nametab to read  : DDXTT~
2 ETP399   >> Format of inactive nametab to read: 5.0
3 ETP355Xstatements:
3 ETP399 ALTER TABLE "TPRI_PAR"
3 ETP399 ALTER COLUMN "PARAMLIST" set data type SAPDB6VARCHAR(000512)
3 ETP399 
2WETP000 12:52:48: Retcode 1: error in DDL statement for "TPRI_PAR                      " - repeat
2EETP345 12:53:00: Retcode 1: SQL-error "-104-SQL0104N  An unexpected token "data_type" was found f
2EETP345 ollowing "TYPE".  Expected tokens may include:  "VARCHAR".  SQLSTATE=42601" in DDL stateme
2EETP345 nt for "TPRI_PAR                      "
2 ETP399  -
DB-ROLLBACK() -
2EETP334 12:53:00: error in DDL, nametab for "TPRI_PAR" not activated
Any one can help?
Thanks Everybody,
Marco

Hi Frank.
We encounter the same issue during the upgrade phase PARCONV_UPG:
3 ETP379X20:19:11: activating Nametab "TERRF":
2 ETP399   >> Name of inactive nametab to read  : DDXTT
2 ETP399   >> Format of inactive nametab to read: 5.0
3 ETP355Xstatements:
3 ETP399 ALTER TABLE "TERRF"
3 ETP399 ALTER COLUMN "DATA" set data type SAPDB6VARCHAR(001700)
3 ETP399 
2WETP000 20:19:11: Retcode 1: error in DDL statement for "TERRF                         " - repeat
2EETP345 20:19:23: Retcode 1: SQL-error "-104-SQL0104N  An unexpected token "data_type" was found f
2EETP345 ollowing "TYPE".  Expected tokens may include:  "VARCHAR".  SQLSTATE=42601" in DDL stateme
2EETP345 nt for "TERRF                         "
2 ETP399  -
DB-ROLLBACK() -
2EETP334 20:19:23: <b>error in DDL, nametab for "TERRF" not activated</b>
3 ETP379X20:19:23: activating Nametab "VZFZE":
3 ETP355Xstatements:
3 ETP399 ALTER TABLE "VZFZE"
3 ETP399 ALTER COLUMN "XVAR700" set data type SAPDB6VARCHAR(001000)
3 ETP399 
2WETP000 20:19:23: Retcode 1: error in DDL statement for "VZFZE                         " - repeat
2EETP345 20:19:35: Retcode 1: SQL-error "-104-SQL0104N  An unexpected token "data_type" was found f
2EETP345 ollowing "TYPE".  Expected tokens may include:  "VARCHAR".  SQLSTATE=42601" in DDL stateme
2EETP345 nt for "VZFZE                         "
2 ETP399  -
DB-ROLLBACK() -
2EETP334 20:19:35: <b>error in DDL, nametab for "VZFZE" not activated</b>
2 ETP301 -
Regards,
Marco

Similar Messages

  • Upgrade from 46c to ECC6.0 : Java or Java-AddIn ?

    Hello
    Can you explain me what is the difference between Java and Java-AddIn as proposed in evaluation phsae of an upgrade from 46c to ECC6.0?
    Thank You.

    Hi Alain,
    But if we implement a JavaAddin solution today, do you think it will be possible to create a Java instance later to create a Portal solution ?
    If you implement a java addin today then you can use later for portal solution.
    Regards,
    Anil

  • Problem with FIELD SYMBOL upgrading from 46c to ECC6.0

    Hi people... i'm having big trouble making an upgrade from 4.6c to ECC6.0 with this portion of code of Z's programm.
    In the line
    ASSIGN (w_field) TO <fs_field>.
    i don't see any assigment, so <fs_field> remains empty, when enters into firts IF conditions it is TRUE, then go into second IF condition, it is FALSE, and finally assing
    <fs_field> = '/'.
    , at this point i have a DUMP telling me MOVE_TO_LIT_NOTALLOWED_NODATA
    I'm try any way of definition, assigment, but always i have a DUMP.
    Someone can give a hand with this issue!
    Thanks in advance!!!
    This is the full code from the FORM with the problem.
    *       FORM GRABA                                        *
    *  -->  VALUE(P_TABLE)                                  *
    FORM graba USING value(p_table) TYPE c.
      DATA:
        w_field(60),
        w_dd03l  TYPE dd03l.
      FIELD-SYMBOLS <fs_field>.
      CLEAR w_flag.
      CASE p_table.
        WHEN 'BGR00'.
          d_bgr00-group  = w_batin.
          d_bgr00-mandt  = sy-mandt.
          d_bgr00-usnam  = sy-uname.
          d_bgr00-xkeep  = 'X'.
          d_bgr00-nodata = '/'.
          d_bgr00-stype = 0.
          TRANSFER d_bgr00 TO w_fname.
        WHEN 'BBKPF'.
          LOOP AT gt_dd03l INTO w_dd03l WHERE tabname EQ p_table.
            CONCATENATE
                'd_'
                w_dd03l-tabname
                w_dd03l-fieldname
              INTO w_field.
            ASSIGN (w_field) TO <fs_field>.
            IF <fs_field> IS INITIAL OR <fs_field> EQ '/'.
              IF w_dd03l-fieldname EQ 'TBNAM'.
                <fs_field> = p_table.
              ELSE.
                <fs_field> = '/'.
              ENDIF.
            ELSE.
              w_flag = 'X'.
            ENDIF.
          ENDLOOP.
          TRANSFER d_bbkpf TO w_fname.
        WHEN 'BBSEG'.
          LOOP AT gt_dd03l INTO w_dd03l WHERE tabname EQ p_table.
            CONCATENATE
                'd_'
                w_dd03l-tabname
                w_dd03l-fieldname
              INTO w_field.
            ASSIGN (w_field) TO <fs_field>.
            IF <fs_field> IS INITIAL OR <fs_field> EQ '/'.
              IF w_dd03l-fieldname EQ 'TBNAM'.
                <fs_field> = p_table.
              ELSE.
                <fs_field> = '/'.
              ENDIF.
            ELSE.
              w_flag = 'X'.
            ENDIF.
          ENDLOOP.
          TRANSFER d_bbseg TO w_fname.
      ENDCASE.
    ENDFORM.
    Edited by: Matt on Dec 15, 2008 5:03 PM - Made subject more informative

    Gentlemen:
    The problem around this statement:
    ASSIGN (w_field) TO <fs_field>
    is explained as follows:
    1. In ABAP language, there are two ways for assigning a new value to a field-symbol.
    - Sentence: ASSIGN (values) TO <my_field_symbol>.
      In this case, the <my_field_symbol> receives from (w_field) the data type and value content of this variable. So, we keep that a FSymbol is assigned and, at the same time, receives an initial value.
    - Sentence: <my_field_symbol> = '/' or <my_field_symbol> = my_var.
      In this way, we only pass the content of the variable next to = sign. But before this, the field-symbol must had been assigned (using ASSIGN statement), in another case, the compiler raises an exception.
    Following the example of Federico... I think he tried to assign a field like this (please, supose the program imports the structure of a database table with a standard function, into a internal table which is looped by the work area w_field ):
    - If w_field contains 'BKPF-WERKS', so sentence ASSIGN will affect the field symbol, passing to this the data type and current content of table field BKPF-WERKS.
    - If w_field contains 'BKPF-.INCLUDE': *the column .INCLUDE obviously is not associated with a data type... so our statement ASSIGN... TO... never pass any data type or value to our field-symbol. So that, this field is never initialized properly, and when inmmediately you try to execute something like this: <my_field_symbol> = '/', the game (program) is over.. XD
    I hope this post was helpful for anyone...
    Best Regards!!
    RRG
    ABAPer(u) - EVOLution

  • Moving/Transporting programs from 46c to ECC6

    Guys,
    For our upgrade we will start with a ECC6 system from scratch.  The questions are - is there a tool to transport ABAP programs/functions from 46C to ECC6?  Or in your experience it is better to manually do a download from 46C then manually upload to ECC6?
    Thanks for your input.
    Yan Guan.

    Hi Yan,
    If you are upgrading an existing 46C system to ECC 6.0 then the Z and Y programs  in the system will be there even after your upgrade.
    We will start with a brand new ECC system from scratch
    means you are creating a system for the first time as ECC 6.0 ?. Then if there is transport path between your 46C sytem and ECC 6.0 sytem, you can transport the objects. Otherwise go for download/upload option. But I think creating a transport path is the better option.
    Regards,
    Soumya.

  • Upgrade from 46C to ERP 2005

    Can you help me with some questions?
    We are going to upgrade from 46C to 6.0 and we have questions.
    1. How much do we expect the database to grow when we 
       change the format?.
    2. What are the minimum requirements of the workstations
       with the new version?
    3. How the change of EBCDIC to ASCII can affect of Disck
       load?.
    4. What percentage grow the data, when this is changed to
       ASCII?
    5. How the changed to ASCII affect the server.?
    6. Is necessary grow in memory and CPU?
    7. Is possible install several application server Intel
       with the AS/400 Data base, once the changed to ASCII?
    8. Is affected the performance of the system is we
       installing hard disk of 30GB with hard disk of 70GB?
    9. What is the impact if we made the upgrade with Unicode
       or No Unicode?

    Hi,
    Detailed info can be found at
    https://service.sap.com//upgrade
    and
    https://service.sap.com/instguides
    Eddy
    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!

  • Error in upgrade from 46c to ecc 6.0

    hi experts,
    we are facing an error at the time of upgrade from 46c to ecc 6.0 in the phase JOB_RSUPGAIMEXE.
    did anyone face this error anytime during upgrade on windows plotform?
    Please let us know your comments..
    regards
    raghu

    Hello,
    Can you please look in the /put/log directory and copy the error from the appropriate log file. You should find a log file with a name similar the to upgrade phase that is causing the error.
    Thanks
    N.P.C

  • Upgrade from ecc5 to ecc6 old  data like  PRD640_1 is still there

    Dear All,
    we have resent   upgrade from ecc5 to ecc6 and i have some quires regarding the datafile.
    In  sapdata1 -4 i see  all old  data like  PRD640_1 i still there .Please suggest it is ok or it should not be there in the sapdata.
    in db02 tablespace
    PSAPEL701D
    PSAPEL701I
    PSAPPRD
    PSAPPRD640
    PSAPPRD701
    PSAPPRDUSR
    PSAPTEMP
    PSAPUNDO
    PSAPUNDO2
    SYSAUX
    SYSTEM
    There is once more thing when i am extend the table from brtools for
    BR*Tools main menu  2 - Space management  1 = Extend tablespace  3 ~ Tablespace name (tablespace) ... []
    1 - BRSPACE profile (profile) ...... [initPRD.sap]
    2 - Database user/password (user) .. [/]
    3 ~ Tablespace name (tablespace) ... [PSAPPRDUSR]
    4 - Confirmation mode (confirm) .... [yes]
    5 - Scrolling line count (scroll) .. [20]
    6 - Message language (language) .... [E]
    7 - BRSPACE command line (command) . [-p initPRD.sap -s 20 -l E -f tsextend -t
    PSAPPRDUSR]
    c
    c
    Options for extension of tablespace PSAPPRDUSR (1. file)
    1 * Last added file name (lastfile) ....... [L:\ORACLE\PRD\SAPDATA4\PRDUSR_4\PR
    DUSR.DATA4]
    2 * Last added file size in MB (lastsize) . [460]
    3 - New file to be added (file) ........... [L:\oracle\PRD\sapdata4\prdusr_5\pr
    dusr.data5]
    4 # Raw disk / link target (rawlink) ...... []
    5 - Size of the new file in MB (size) ..... [460]
    6 - File autoextend mode (autoextend) ..... [yes]
    7 - Maximum file size in MB (maxsize) ..... [500]
    8 - File increment size in MB (incrsize) .. [20]
    9 - SQL command (command) ................. [alter tablespace PSAPPRDUSR add da
    tafile 'L:\oracle\PRD\sapdata4\prdusr_5\prdusr.data5' size 460M autoextend on ne
    xt 20M maxsize 500M]
    BR0259I Program execution will be continued...
    BR1049W Not enough free space in L:\oracle\PRD\sapdata4\prdusr_5 for total maxim
    um size of all database files of tablespace PSAPPRD located on this disk volume,
    missing at least 741702.647 MB
    BR1049W Not enough free space in L:\oracle\PRD\sapdata4\prdusr_5 for total maxim
    um size of all database files of tablespace PSAPPRD640 located on this disk volu
    me, missing at least 137942.647 MB
    BR1049W Not enough free space in L:\oracle\PRD\sapdata4\prdusr_5 for total maxim
    um size of all database files of tablespace PSAPPRDUSR located on this disk volu
    me, missing at least 13522.647 MB
    BR0668I Warnings or errors occurred - you can continue to ignore them or go back
    to repeat the last action
    Please suggest what is right configuration and how to sol ther error in brtools.
    Regards,
    Kumar

    Hello Kumar9,
    if I understoon correctly your last reply, you have doubts if PSAPPRD640 should exist at all, correct?
    Please do the following:
    1) Check any object assigned to this tablespace PSAPPRD640
    2) If any object occupied to PSAPPRD640 then reorganise to new tablespace
      If any object not occupied to PSAPPRD640 then check the table entry
       a)TAORA for tablespace PSAPPRD640(if exist delete)
       b)IAORA for tablespace PSAPPRD640(if exist delete)
    3) If above done then drop the tablespace through BRTools.
    Best regards,
    Tomas Black

  • Open dataset for input don't work after upgrade from 46C to 47

    We did an upgrade from 46C to 47, after that all the Z programs that have the sentence "open dataset for input" alwas send a sy-subrc = 8, the curios things is that the sentece "open dataset for output" works ok.
    Please I need help to solve this?
    En example of code.
    PARAMETERS: P_ARCHF(60) OBLIGATORY DEFAULT
                'C:\20050900.txt' LOWER CASE.
    OPEN DATASET P_ARCHF FOR INPUT IN TEXT MODE.
    IF SY-SUBRC <> 0. MESSAGE i001 WITH ARCHIVO. stop. endif.

    Well, it's telling you that the datset doesn't exist. From the help in 4.7:
    OPEN DATASET
    Addition 1a
    ... FOR INPUT
    Effect
    OPEN ... FOR INPUT opens the file in read mode.
    If the file does not exist, OPEN ... FOR INPUT fails with Return Code SY-SUBRC = 8.
    Note
    If OPEN DATASET is not executed in a Unicode program and if the user has write authorization for the file, the file is opened in read and write mode. Otherwise, it is only opened in read mode.
    Rob

  • Upgrade from 46C to ECC600 terminates in phase SHADOW_IMPORT_INC

    The upgrade of our develoment/test system terminates in phase
    SHADOW_IMPORT_INC. We got the message 27 errors detected and 3
    activities have been aborted.
    Below you'll find the entries as they are in log file SHDALLIMP.ELG.
      LIST OF ERRORS AND RETURN CODES  *******
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    SHADOW IMPORT ERRORS and RETURN CODE in SAPKA70007.DV0
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    2EETW000 sap_dext called with msgnr "1":
    2EETW000 -
    db call info -
    2EETW000 function:   db_report_interface_ext
    2EETW000 fcode:      TOUCH_REPORT
    2EETW000 tabname:    SOURCE
    2EETW000 len:        40
    2EETW000 key:        CL_AC_BADI_MNT_BRF============CP       
    2EETW000 retcode:    1
    2EETW125 SQL error "208" during "" access: "[208] Invalid object name 'D010SINF~'.
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    SHADOW IMPORT ERRORS and RETURN CODE in SAPKAAA700.DV0
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1 ETP111 exit code           : "0"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    SHADOW IMPORT ERRORS and RETURN CODE in SAPKB70007.DV0
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    2EETW000 sap_dext called with msgnr "1":
    2EETW000 -
    db call info -
    2EETW000 function:   db_report_interface_ext
    2EETW000 fcode:      TOUCH_REPORT
    2EETW000 tabname:    SOURCE
    2EETW000 len:        40
    2EETW000 key:        CLUR_NW5_FACTORY==============CP       
    2EETW000 retcode:    1
    2EETW125 SQL error "208" during "" access: "[208] Invalid object name 'D010SINF~'.
    1 ETP111 exit code           : "12"
    In this log file (shadow) table D010SINF~ is mentioned.
    I have looked in SQL Enterprise Manager and can't find this table.
    We are upgrading from release 46C to ECC6.0
    We are running on Windows 2003 Server with SQL Server 2000 SP4 patch 2040
    Anybody any clue how to solve this?.
    Thanks in advance.
    Kind regards,
    Dave Arends

    Hi Michael,
    I did use the latest r3trans (patch 86), tp.exe (patch 86) and dbmssslib (patch81). But in the meantime there were new patches of r3trans and dbmssslib. Both version 87. Now it is working.
    Thanks.
    Kind regards,
    Dave Arends

  • Upgrade from 46C to ECC 6

    Hello:
    We are planning to begin technical upgrade in SAP, from 46C to ECC 6.0.
    I have the next landscape:
    -Current SAP (CS): SAP 46C with Oracle 8.1.7 and Solaris 8
    -New Server (NS): Without SAP, 40% more of capacity, with Oracle 10.2 and Solaris 10 already installed.
    We want to install SAP ECC 6.0 in NS and get the data from CS.
    Which is the best and easy way to do this? SAP manuals are quite generic. I have two ideas but I would like your comments:
    1st way
    1. Homogeneous copy of CS
    2. I install ECC 6.0 in NS with the option to import data generated in 1. (is this possible??)
    3. Finish installation and aditional configurations. I begin to test.
    2nd way
    1. Homogeneous copy of CS
    2. I install 4.6C in NS with the option to import data generated in step 1. (Not sure if 4.6C will accept Solaris 10 and Oracle 10.2).
    3. I suppose I don't need to reconfigure after installation and import.
    4. I do necessary tests. At this point I would have 46C on the new versions of Solaris and Oracle.
    5. I begin the SAP upgrade to ECC 6.0 in NS
    6. .... The remaining processes indicated by SAP
    Thanks for your attention.

    > -Current SAP (CS): SAP 46C with Oracle 8.1.7 and Solaris 8
    > -New Server (NS): Without SAP, 40% more of capacity, with Oracle 10.2 and Solaris 10 already installed.
    The database software is usually installed during the run of sapinst/R3setup, not before. You may run into problems if you pre-install Oracle (environment, necessary database options not set etc.)
    The easiest way would be do to a system copy.
    I would then
    - install the latest Oracle instantclient
    - install the latest kernel 46D_EX2 kernel
    Markus

  • Short dump in MIGO and VL02N when upgrading from 46C to ECC 6.0

    Hello,
    We are doing an upgrade from R/3 46C to ECC 6.0 and we face a shortdump in trx MIGO (upon saving the document).
    DBIF_RSQL_INVALID_REQUEST
    a BKPF_INSERT in program SAPLF005
    The same shortdump happens when doing a Goods Issue on the SD side.
    Looking at the program, this is not modyfied so I guess it is a standard SAP error.
    OSS however, up to know did not respond to my message and there does not seem to be a SAP Note on this issue!
    Anyone had this problem before. How did they solve it.
    Thanks for any reply,
    Aart

    Posted in another forum

  • Upgrade from 46c to ECC 6.0 new components support package

    dear experts,
    we have upgraded our test system from 46C to ECC 6.0
    before upgrade in 46C we have support packages components
    SAP_BASIS 46C
    SAP_ABAP 46C
    SAP_APPL 46C
    SAP_HR
    PI 2003_1_46C
    SAP_NOTES 46C
    ST-A/PI 01B_R3_46C
    ST-PI 2005_1_46C
    after upgrade to ECC 6.0 we found
    SAP_ABA 700 0006
    SAP_BASIS 700 0006
    ST-PI 2005_1_700 0001
    PI_BASIS 2005_1_700 0006
    SAP_BW 700 0006
    SAP_AP 700 0003
    SAP_HR 600 0003
    SAP_APPL 600 0003
    EA-IPPE 400 0003
    EA-HR 600 0003
    EA-GLTRADE 600 0003
    EA-PS 600 0003
    EA-RETAIL 600 0003
    EA-FINSERV 600 0003
    EA-DFPS 600 0003
    EA-APPL 600 0003
    FINBASIS 600 0003
    ECC-DIMP 600 0003
    ERECRUIT 600 0003
    FI-CA 600 0003
    FI-CAX 600 0003
    INSURANCE 600 0003
    IS-CWM 600 0003
    IS-H 600 0003
    IS-M 600 0003
    IS-OIL 600 0003
    IS-PS-CA 600 0003
    IS-UT 600 0003
    LSOFE 600 0003
    SEM-BW 600 0003
    we are planning to apply SPS 06. Is it mandatory we have to apply
    all the support packages in SPS 06.
    we are confused as we dont use IS-OIL,EA-,ERECUIT,INSURANCE,FI-
    please suggest which support packages we have apply relating to the
    functionality we have in 46C
    regards
    Raghu

    Hi,
    you have to apply the same type of packages as before.
    All other are included in ECC, but if you don't use the special services and applications (for example IS Oil or stuff like this), there is no need to apply all these packages.
    SAP_ABA 700 0006
    SAP_BASIS 700 0006
    ST-PI 2005_1_700 0001
    PI_BASIS 2005_1_700 0006
    SAP_AP 700 0003
    SAP_HR 600 0003
    SAP_APPL 600 0003
    should be enough
    Regards
    Timm

  • Upgrading from 46C to ECC 7.0

    Guys,
    My company is going to upgrade R/3 46C to ECC 7.0 later this year.  From the development (ABAP programs, any ABAP objects) standpoint, any suggestions on preparation, or what can be done in our current 46C environment to ensure a smooth transition from 46C to ECC (unicode, obsolete ABAP syntax, etc)?  Also any idea and recommendation on planning the upgrade, as well as things to watch out for are welcome.
    Thanks,
    Yan.

    First ECC 7.0 does not exist, so you will be upgrading to ECC 6.0.  And yes, you can start by doing a start for any calls to WS_UPLOAD and WS_DOWNLOAD.  You will need to change these calls to call the GUI_UPLOAD or GUI_DOWLOAD function modules.
    Other syntax issues will need to be handled after the upgrade, like using the ECODING extension on all OPEN DATASET statements.
    Regards,
    Rich Heilman

  • Upgrade from 46C to ECC 6.0

    Hi All,
    We are upgrading from 4.6C to ECC 6.0.I have downloaded all the SOFTWARE from Service market place except ORACLE 10.2 which I am not able to locate it.
    Do I need to order ORALCE UPGRADE CDS from SAP? or is there any way to find out on the service market place...
    Would appreciate If any of you can throw some light in this regard...
    Thanks in Advance,
    Johnny.

    Of course the DVDs are available for download.
    I do not know your OS, but you can follow this path:
    http://service.sap.com/installations
    Entry by Application Group ( you should also have it available in "My Company's Application Components" )
    From here there are several ways. For example:
    SAP NetWeaver
    SAP NETWEAVER
    SAP NETWEAVER 2004S
    Installation and Upgrade
    Your OS
    ORACLE
    You get a list including oracle 10g

  • Upgrade From 46B to ECC6 SR3 - XPRAS_UPG errors

    Hello,
    I ugrade a system from 46B to ECC6 SR3.
    Windows 2003 SP1 32bits / MSSQL 2000 SP4.
    During the XPRAS_UPG phase, i have an error in the post-import method RS_SHIP_AFTER_IMPORT for the transport SAPK700ZH1.
    The log is the RDDEXECL job log:
    Job started                                                    
    Step 001 started (program RDDEXECL, variant , user ID DDIC)    
    All DB buffers of application server xxx were synchronized
    Incorrect input for activating transported shadow IPacks       
    Job cancelled after system exception ERROR_MESSAGE             
    Have you already encountered this problem?
    Thanks,
    Alexandre

    The problem is solved.
    It was due to an empty entry in table rsbasidoc.
    Alex

Maybe you are looking for

  • Copy from a closed A/R invoice to a A/R Credit Memo.

    Hello Forum, I have a closed A/R invoice that is paid up. Now, if the customer returns that  item, I would create an A/R Credit Memo and pull up from the above A/R Invoice. However, SAP B1 8.8 does not allow copy from a closed A/R invoice. In that co

  • I can't create pdf/x-1a from my word doc with acrobat x?

    I just bought acrobat x to convert a book to pdf from Word and I can't get it to print.  All my setting work until I select pdf/x-1a(acrobat 5 compatable).  I previously was using a trial version of acrobat XI and I could swear that the conversion wa

  • 1099 vendors report!!!!!!!!

    Hi Gurus HI, We are on ECC 6.0. We would like to generate the following report in SAP: 1). S_P00_07000134 - Generic Withholding Tax Reporting When we run these transaction, we get error that no data is selected. Can anyone throw light on what we are

  • Group by another table

    not sure how to accomplish this i have 2 tables shown below i need to do a group by on the type in tab1 based on what num is in tab2. so the results of my output should look like Type sum(val) A 40 B 10 C 10 tab1 Type start end A 0000 1200 B 1201 160

  • Obaccess.dll causes link error on hot deploy

    I'm doing web services development with AccessServerSDK 10G, Glassfish v3, on windows XP using Eclipse. It works fine except whenever I change my code and eclipse attempts to hot deploy the application, the following error occurs and the deploy bombs