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.

Similar Messages

  • Moving Transport Set from 9.0.4 to 10.1.2.0.0 environment

    Hi,
    I am moving transport set from 9.0.4 environment to 10.1.2.0.0 environment.
    But when I import it on 10.1.2.0.0 environment I get the compatibility error,
    I am using imp.sh to import. Following error occurs when I try to import:
    Checking for Portal Version Compatibility...
    Error: Source and Target Portals are of different versions
    Cannot proceed with Import
    Could any one let me know, Is there any way to move the transport set from old version to the new one. Apart from upgrading the old one.
    -Santosh

    Santosh,
    No, sorry but there isn't a supported way of doing this.
    Oracle Portal only allows you to use the Portal Export / Import between the same level of patching. Trying possible workarounds will lead you in an unsupported state.
    The only way as you've said is to upgrade your older version to the same level of the newly installed version, ie, bring your 9.0.4 to 10.1.2.0.x.
    Metalink Note:263995.1 - Master Note for OracleAS Portal Export / Import Issues may help you.
    I hope it helps...
    Cheers,
    Pedro.

  • 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

  • IDOC Problem From 46C To ECC6 For ORDERS05

    Hello
    I am trying to generate 46C version ORDERS05 basic type from ECC6 700 version.
    Within WE20(Partner Profiles) I have set the Seg. release in IDOC type to 46C to generate the old 46C segment. When I run my test again the IDOC that was generated is still version 700.
    Thanks for the help.
    Joe

    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

  • Transporting BAPI from ECC5 to ECC6 - FM definition isn't avail at target

    Hi
    I have a BAPI developed in ECC5 System - ZBAPI_TEST, under a function group - ZFG_TEST within a package - ZPKG_TEST.
    All these objects are assigned to the same TR number.
    I have released, generated Co/Data Files and moved these TR (Co/Data Files)  to ECC 6 System.
    The associated structures are available in ECC6 System - where the Function Module name is present - BUT NO SOURCE CODE!!!
    Is there any special rules we need to follow while transporting a BAPI from one system to other?
    Thx
    Rich

    Please check if the the two includes also have activated and moved or not.
    if yes try a re transport.

  • 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

  • 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

  • Migration of BDC logs created in 46c to ECC6

    Hi SDNers,
    After upgrading to ECC6, we realize that BDC logs created in 46c version are not available in ECC6. I would like to know if there is a program to copy these BDC logs from 46c to ECC6 version.
    Thanks in advace for your help
    Best Regards,
    Leo

    During upgrade we have used the following program to do this : RSBDCLCH
    Result is not exactly the same, the program will convert the old BDC logs to new Temse logs that can be viewed via SP01.
    BDC logs are located on a filesystem not in the database.
    Prerequisite : You still need to old filesystem from the 46C release.
    Hope this can help.
    Wim

  • Can I run Mac App Store programs from an external drive?

    I have a 13" MacBook Air (128); but I have tons of programs that I have purchased from the Mac App Store, especially large training video programs. Even though I don't have a shortage of drive space yet, I certainly could find myself in that position if I keep ALL my programs and data on the flash drive. I really don't need to keep all these on my main drive; but I would like to be able to run one when I need it. Is there any problem with moving the program from APPLICATIONS to an external drive and running it from there? Should I leave the support files & folders (preference & application support) on the flash drive?
    THANKS.

    Thanks for your help on this.
    The MacBook Air is a joy; but the limited drive space is the only caveat. I really should have spent the extra money on the 256 gb flash drive; but at the time I was in the mood to go minimalist. Unfortunately that doesn't work well for me.
    I have already moved all my music to iTunes Match and moved the backups to the external drive. I also keep most of my archive data on the 3 tb external drive. It's mostly those training video programs which are about a gig each that I want to move to the external drive ... ones I would not use that often ... so it's nice to know I can do that.
    THANKS AGAIN.

  • Error while uploading Transport request from SAP ECC6.0 EHP4 to SAP ECC 5.0

    Hi friends,
    Error while uploading transport request to the transport directory,
    we downloaded the transport request from one sap system which have a set of developments(contains screen programs)
    for example downloaded all co files and data files
    control file: K900470.SAD and Data file: R900470.SAP from transport directory.
    we are trying to upload the transport to another Sap system
    we have
    Uploaded the controlling file K900470.sad to the location  /usr/sap/transpad/cofiles/
    Uploaded the controlling file R900470.sad to the location  /usr/sap/transpad/data/
    we tried to add in the import queues using TCODE: STMS and trying to import.
    During import we get the below error:
    HALT: unknown dynpro format: d021s_length() returned 0 Please contact the SAP support.
    End with rc : 16
    Please help me on this
    We are trying to copy from ECC 6.0 EHP4 to SAP 5.0 and SAP 4.7EE
    Thanks & Regards
    Murali Papana

    Did you see that you tried to transport to an older release!! You should have expected such a result.
    Before doing such a thing, you should have looked at SAP notes to see SAP recommendations, if any. And you're lucky, there are ones: [Note 1090842 - Composite note: Transport across several releases|http://service.sap.com/sap/support/notes/1090842]. You need to know that ECC6 corresponds to SAP Basis 7.0, and ECC5 corresponds to SAP Basis 6.40.

  • Moving transport from Lower ERP Version to Higher ERP Version?

    Hi All,
    I got a quick question regrads to Transporting object frpm ERP 6.0 SP 13 and ERP Ehp 4.0 SP 3.
    Currently, We went Go-live with ERP 6.0 with SP13, as part of Release 1 Landsape.
    ECD ---> ECQ --> ECP
    For release 2, which is starting in few months, we are planning to Build a Project Landscape seprate from Support landsacpe.
    ECD --> ECQ
       |                  -
    >     ECP
    E2D --> E2Q
    2 = Release 2 SID name
    Our Support landscape will be on ERP 6.0 with SP 13
    and Project landscape we wanted upgrade to ERP 6.0 ehp 4.0 with SP 03. To keep the landscape consistent, whatever work we do on ECD (R1 lanscape), we would like to import to R2 E2D as well, so when we Go-Live with R2 implementation, then our DEV and QA systems will be consitent.
    My Question would, can I move/transport object from R1 (lower ERP version) to R2 (higher ERP version)?
    My answer is BIG-NO, since version and objects are differenent, all transport will fail.
    I want to hear what you Experts say about this?
    Thanks in Advance
    Kumar
    Can you
    Edited by: Kumar Subramaniam on Jun 5, 2009 7:25 AM

    Hi,
    As per your query it can be moved but you will face some issue in this, there are two type of trandport 1. workbench 2. customizing. If you want to move customizing then your abaper will check this will be transport, but workbench will have some issue due to variotion of verion. But you transport this in your new dev server and do the configuration again in new dev serve then test in your qac. The job is very tipical but its posible.
    Anil

  • Error using SHIFT statement when migrating program from R/3 4.7 to ECC6.0

    Hello Experts,
    The SHIFT statement is giving following error in ECC6.0 but the same is warning in R/3 4.7.
    "Floating point variable can not be used with SHIFT statement.".
    Statement is - SHIFT itab-f1 by 5 places where f1 is a floting point field.
    We passed the value in string variable and used in the SHIFT statement. It is removing the error but not giving the result same as in R/3 4.7.
    Please let me know how to solve this.
    Thanks and Regards,
    Rahul

    Hello,
    Thanks for the reply.
    We don't know why was this code written. We are just moving the object from R/3 4.7 to ECC 6.0 and fixing the errors.
    Could you please let me know "What it means to SHIFT a floating point variable by some spaces"? .
    This i am asking because SHIFT RIGHT generally means to shif the value to the right by some spaces i.e. inserting space at the starting.
    But in case of floating point it change the value itself. If you can tell me then i can find an alternative solution to get the same result.
    Thanks and Regards,
    Rahul

  • Transporting variants from development client to testing client(ECC6.0)

    Can we use the report RSTRANSP for transporting variants(data for testing purposes) for a standard program from development client to testing client?
    Thanks & Regards,
    Savitha

    Hi,
    Follow like this.
    In SE38, give ur program name.... select the variant radio button & click on diaply button & then press F4 for variant field & choose the variant u want to transport...
    Then goto Utilities --> transport request . now execute the report select ur variant name & click on continue button .. now it will ask for the CR number ...assign it to the particular CR number & Release &  Import in the Quality Server.
    Reward Poitns if it is Useful.
    Thanks,
    Manjunath MS

  • How can I stop my Air from moving my programs that I leave open to other windows where I didn't leave them?

    How can I stop my Air from moving my programs that I leave open to other windows where I didn't leave them?

    Try toggling this preference (circled):

  • Moving to new from old (dead) MacPro-best way to xfer programs

    I see two options-
    Either boot from the new disk, and use Migration Assistant to move programs from my old boot HD installed in another bay. Will this work? Will Migration Assistant see the other internal MacPro HD's. And how do I assure that the MacPro will boot from my new boot disk, rather than trying to boot from the old one?
    Second possibility-take out the new boot disk, and put my old MacPro boot disk (with up to date ML installed) in bay 1, and put the new MacPro boot disk in another bay. Will the MacPro preferentially boot from a boot image in bay 1 over the other bays? Then I and use Carbon Copy to make a clone of my old (slower/smaller) HD on the new bigger/faster one. Then install that in bay 1.
    Will either (or both) of these techniques work? I would think the first is preferable if it will work since it will give me a clean OS install.
    I am trying to avoid reinstalling my applications if possible...

    Clone so you have a backup.
    Use Migration Assistant.
    A clean OS is ideal.
    A new Mac can sometimes have an OS build that is later than that publiclly available.
    As long as you keep a copy of the working system and leave it untouched, you are fine.
    Move all the non system data off to another drive too.
    Consider a Samsung 840 120 or 240GB SSD for the system.
    No reinstall whether you use CCC or MA as long as they are compatible.
    You realize you never mention the model of this new Mac Pro?
    10..6.8 with its Rosetta works on any Mac Pro also.

Maybe you are looking for

  • Force Natural key on a column

    I know the definition of a Natural Key but I don't know how to apply it for a column. For a primary key we have a syntax like "CREATE TABLE Persons P_Id int NOT NULL PRIMARY KEY)" Do we have anything similar for Natural Key?? Thanks in advance. svk

  • TS2446 i am tryingto download my old purchases and it still is saying apple id is locked due to security reasons

    i just restored my ipod 4th gen to factory i tried to sign in with apple ID and they said its the wrong id and password so i reset pasword and tried to download old purchases with new password and it states that it is disabled why is this happening a

  • IPod Touch 3G randomly stops working, WON'T restore (due to 1603 error)

    I was listening to my iPod Touch when I paused it for a moment & when I went to press play, the Apple logo came on followed by the iTunes logo and the USB port. I've never restored it before so I read that when that image shows up, you restore it on

  • Extract all the data grids in one click

    Hi All, I need to download all the data forms that i have in the system. We have a fat hierarchy and i'm looking for a short way to extract all the data grids without extracting from every folder in the hierarchy separately. I don't care about the ty

  • Hard drive losing space rapidly.

    I've noticed my hard drive filling up early today when i randomly opened the "get info" and watch my drive fill up by a few bytes every 30 seconds or so. Throughout the day I've lost about 30 MB of space on my hard drive. I don't know what's going on