Enhancement in FM ACC_DOCUMENT_CREATE  ECC Version 4.7

Hello,
I want to do enactment in the FM ACC_DOCUMENT_CREATE, My client system SAP is of version ECC 4.7.
Could you please tell me how I can do enhancement .
Regards
Sachin

Answered

Similar Messages

  • Key functional differences between SAP ECC Version 6.0 and SAP Version 4.6

    Hi Forum,
    As we are currently updgqrading to SAP ECC Version 6.0 from SAP Version 4.6, could someone please identify what are the new functionalities are being offred in SAP ECC 6.0.
    Please let me know or guide me in a right direction - my email address is [email protected] or simply reply to the forum.
    Thank you
    Yogesh

    Dear Yogesh,
    Please go through Upgrade info @ service.sap.com.
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/43/6880cbb88f297ee10000000a422035/frameset.htm
    http://solutionbrowser.erp.sap.fmpmedia.com/
    Major difference is ECC6 is netwear product having WASJAVA+ABAP
    secondly support unicode apart from this we have other diff. you can get fom master guide from service.sap.com/instguides
    For installing ECC 6.0 you required a solution manager key.With out solutionmanager key you cannot install ECC6.0.
    For ECC 6.0 is called netweaver component here you have ABAP+JAVA stack.
    ECC6.0 supports UNCODE.
    For installing 4.6 you don't required solution manager key.It only having ABAP stack.
    4.6C supports NONUNICODE.
    Hope this would add some more info.
    Regards,
    Naveen.

  • Issue in sending the email with XL attachment in ECC version

    Hi,
    I have an issue with sending the email with XL attachment. My program is sending a mail to the receiver with XLS as attachment. Recently we have migrated from 4.6B to ECC version. Same code was worked in 4.6B.But it is not working in ECC version.When i try to open the attachment, i get a Dialog Box with the following message
    "The file is not in a recognizable format.
    1. if you know the file is from another program whih is incompatible with Microsoft excel,click cancel,then open this file in its original application
    2.If you suspect the file is damaged, click help for more information about solving theproblem.
    3.if you still want to see what text is contained in the file, click OK.Then click the text import wizard. "
    when i click OK, the excel sheet is opening with all required data.
    Can anyone kindly tell me why this is happening.
    I am also attaching part of the coding related to this requirement.
    *&      Form  BUILD_XLS_DATA_TABLE
          text
    -->  p1        text
    <--  p2        text
    FORM build_xls_data_table.
      DATA: w_total(13),
      w_clabs(13),
      w_cinsm(13),
      w_ceinm(13),
      w_cretm(13),
      w_cspem(13),
      w_cumlm(13),
      w_exp_date(8),
      w_v_totalp(13),
      w_min_rem(8),
      w_ersda(10),
      w_hsdat(10),
      w_vfdat(10),
      w_ship_date(10),
      w_plnmg(13),
       w_mhdrz(4).
      CLEAR: w_total, w_clabs, w_cinsm, w_ceinm, w_cspem, w_exp_date,
      w_v_totalp, w_min_rem, w_ersda, w_hsdat, w_vfdat, w_ship_date,
      w_plnmg, w_mhdrz.
      w_total = it_batch1-total.
      w_clabs = it_batch1-clabs.
      w_cinsm = it_batch1-cinsm.
      w_ceinm = it_batch1-ceinm.
      w_cspem = it_batch1-cspem.
      w_cumlm = it_batch1-cumlm.
      w_cretm = it_batch1-cretm.
      w_exp_date = it_batch1-exp_date.
      w_v_totalp = it_batch1-v_totalp.
      w_min_rem = it_batch1-min_rem.
      w_plnmg = it_batch1-plnmg.
      w_mhdrz = it_batch1-mhdrz.
      CONCATENATE it_batch1-ersda6(2) it_batch1-ersda4(2)
                  it_batch1-ersda+0(4) INTO w_ersda SEPARATED BY '.'.
      CONCATENATE it_batch1-hsdat6(2) it_batch1-hsdat4(2)
                  it_batch1-hsdat+0(4) INTO w_hsdat SEPARATED BY '.'.
      CONCATENATE it_batch1-vfdat6(2) it_batch1-vfdat4(2)
                  it_batch1-vfdat+0(4) INTO w_vfdat SEPARATED BY '.'.
      CONCATENATE it_batch1-ship_date6(2) it_batch1-ship_date4(2)
                  it_batch1-ship_date+0(4) INTO w_ship_date SEPARATED BY '.'
      CONCATENATE
      it_batch1-werks it_batch1-mtart it_batch1-matnr it_batch1-maktg
    it_batch1-prdha it_batch1-prctr it_batch1-ktext  it_batch1-dispo
      it_batch1-charg it_batch1-lgort it_batch1-herkl w_clabs
      w_cinsm w_ceinm w_cretm w_cspem
      w_cumlm w_total  it_batch1-meins  it_batch1-v_spr_unit
      w_v_totalp it_batch1-waers w_plnmg  it_batch1-meins
      w_ersda w_hsdat w_vfdat  w_exp_date
       w_ship_date  w_mhdrz  w_min_rem it_batch1-zlifer
       it_batch1-doknr it_batch1-dokar it_batch1-doktl  it_batch1-dokvr
               INTO L_STRING SEPARATED BY CON_TAB.
                  INTO l_string SEPARATED BY cl_abap_char_utilities=>horizontal_tab.
      WHILE l_string <> space.
        CALL FUNCTION 'TEXT_SPLIT'
          EXPORTING
            length       = 255
            text         = l_string
            as_character = 'X'
          IMPORTING
            line         = it_attach
            rest         = l_string.
        IF l_string = space.
       CONCATENATE IT_ATTACH CON_CRET INTO IT_ATTACH.
          CONCATENATE it_attach cl_abap_char_utilities=>cr_lf INTO it_attach.
          APPEND it_attach.
          CLEAR it_attach.
        ELSE.
          APPEND it_attach.
          CLEAR it_attach.
        ENDIF.
      ENDWHILE.
    move l_string to it_attach .
    CONCATENATE it_attach cl_abap_char_utilities=>cr_lf INTO it_attach.
    APPEND it_attach.
    CLEAR it_attach.
    ENDFORM.                    " BUILD_XLS_DATA_TABLE
    *&      Form  SEND_FILE_AS_EMAIL_ATTACHMENT
          text
    -->  p1        text
    <--  p2        text
    FORM send_file_as_email_attachment.
      DATA:w_length TYPE i.
      DATA:  w_cnt TYPE i,
              w_sent_all(1) TYPE c,
              w_doc_data LIKE sodocchgi1,
              gd_error    TYPE sy-subrc,
              gd_reciever TYPE sy-subrc,
              t_attachment LIKE solisti1 OCCURS 0 WITH HEADER LINE.
    Fill the document data.
      w_doc_data-doc_size = 1.
    Populate the subject/generic message attributes
    w_doc_data-obj_langu = sy-langu.
    w_doc_data-obj_name  = 'SAPRPT'.
    w_doc_data-obj_descr = text-034 .
    w_doc_data-sensitivty = 'F'.
    Fill the document data and get size of attachment
      CLEAR w_doc_data.
    DESCRIBE TABLE it_attach LINES w_cnt.
      DESCRIBE TABLE it_message LINES w_cnt.
      READ TABLE it_message INDEX w_cnt.
    w_length = STRLEN( it_attach ).
      w_doc_data-doc_size =
         ( w_cnt - 1 ) * 255 + STRLEN( it_message ).
      w_doc_data-obj_langu  = sy-langu.
    w_doc_data-obj_name   = 'SAPRPT'.
      w_doc_data-obj_descr  = text-034.
      w_doc_data-sensitivty = 'F'.
      CLEAR t_attachment.
      REFRESH t_attachment.
      t_attachment[] = it_attach[].
    describe the body of the message
      CLEAR t_packing_list.
      REFRESH t_packing_list.
      t_packing_list-transf_bin = space.
      t_packing_list-head_start = 1.
      t_packing_list-head_num = 0.
      t_packing_list-body_start = 1.
    ***Start of changes by 501507008 on 29.01.2009
      t_packing_list-obj_descr  = 'MAIL BODY'.
    ***End of changes by 501507008 on 29.01.2009
      DESCRIBE TABLE it_message LINES t_packing_list-body_num.
      t_packing_list-doc_type = 'RAW'.
      APPEND t_packing_list.
    Create attachment notification
      t_packing_list-transf_bin = 'X'.
      t_packing_list-head_start = 1.
      t_packing_list-head_num   = 1.
      t_packing_list-body_start = 1.
      DESCRIBE TABLE t_attachment LINES t_packing_list-body_num.
      t_packing_list-doc_type   =  'XLS'.
      t_packing_list-obj_descr  =  text-034.
      t_packing_list-obj_name   =  'filename'.
      t_packing_list-doc_size   =  t_packing_list-body_num * 255.
      APPEND t_packing_list.
    Add the recipients email address
      CLEAR t_receivers.
      REFRESH t_receivers.
      LOOP AT it_adr6.
        t_receivers-receiver = it_adr6-smtp_addr.
        t_receivers-rec_type = 'U'.
        t_receivers-com_type = 'INT'.
        t_receivers-notif_del = 'X'.
        t_receivers-notif_ndel = 'X'.
        APPEND t_receivers.
      ENDLOOP.
    CALL FUNCTION 'SO_DOCUMENT_SEND_API1'
       EXPORTING
         document_data              = w_doc_data
         put_in_outbox              = 'X'
         sender_address             = ' '
         sender_address_type        = ' '
         commit_work                = 'X'
       IMPORTING
         sent_to_all                = w_sent_all
       TABLES
         packing_list               = t_packing_list
         contents_bin               = t_attachment
         contents_txt               = it_message
         receivers                  = t_receivers
       EXCEPTIONS
         too_many_receivers         = 1
         document_not_sent          = 2
         document_type_not_exist    = 3
         operation_no_authorization = 4
         parameter_error            = 5
         x_error                    = 6
         enqueue_error              = 7
         OTHERS                     = 8.
      CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
        EXPORTING
          document_data                    = w_doc_data
         put_in_outbox                    = 'X'
      commit_work                      = ' '
    IMPORTING
      sent_to_all                      =
      new_object_id                    =
    tables
            packing_list               = t_packing_list
            contents_bin               = t_attachment
            contents_txt               = it_message
            receivers                  = t_receivers
      contents_hex                     =
      object_para                      =
      object_parb                      =
       exceptions
         too_many_receivers               = 1
         document_not_sent                = 2
         document_type_not_exist          = 3
         operation_no_authorization       = 4
       parameter_error                  = 5
       x_error                          = 6
       enqueue_error                    = 7
       OTHERS                           = 8.
      IF sy-subrc <> 0.
      ENDIF.
    ENDFORM.                    " SEND_FILE_AS_EMAIL_ATTACHMENT

    Hi,
    could you tell me which opeion should i select in SCOT under INT node. I have tried with diffrent options. but no luck.
    SAPscript/Smart Forms  - No Conversion
    ABAP List                     - No Conversion
    Business Object/Link     - No Conversion
    RAW Text                     - No Conversion

  • EXPORT statement in ABAP-Ecc version

    I used EXPORT FLAG TO MEMORY ID 'MB51_FLAG'. in Ecc version.
    when i do EPC check, i am getting error in Obsolete statments like..
    EXPORT var_1 ... var_n TO MEMORY ... is not supported in the OO context. Use
    EXPORT name_1 from var_1 ... name_n from var_n TO MEMORY ... instead . . . .
    Can anyone tell me how to implement it Plz ...?

    Hi,
    Instead of this:
    EXPORT FLAG TO MEMORY ID 'MB51_FLAG'.
    Use the very similar syntax:
    EXPORT name1 = FLAG TO MEMORY ID 'MB51_FLAG'.
    OR
    EXPORT name1 FROM FLAG TO MEMORY ID 'MB51_FLAG'.
    Then when you need to do the corresponding IMPORT you use the same syntax.  Here's one simple example to demonstrate:
    REPORT  ztest_jrg.
    TYPES: ty_ctype TYPE c LENGTH 20.
    DATA: l_test TYPE ty_ctype.
    PARAMETERS: p_test TYPE ty_ctype.
    EXPORT ptst = p_test TO MEMORY ID 'ZTEST'.
    IMPORT ptst = l_test FROM MEMORY ID 'ZTEST'.
    WRITE: /1 l_test.
    Best Regards,
    Jamie

  • Euro exchange rate in sap 6.00 ecc version

    dear all,
    We are recently implementing sap in our company.we are following sap 6.00 ecc version. we have taken E.rate types B for selling , G for buying , M for average.
    But for EURO it is asking for type EURX only.but I want to define buying and selling rates for EURO also.can anybody tell how to define buying and selling for EURO also.

    Hi,
    nevertheless you will always do the postings in M. If you want to post to use G or B you have to put in the rate type manually. That means you can maintain the KNVV-KURST manually with another course type.
    to your problem. It is also possible to use the EURX. And in special cases like KNVV-KURST you can choose the exchange rate G or B manually. The document in this case will be posted later with G or B. KNVV is only an example
    Please check. But it should work.
    Best regards
    Volker

  • For CRM 5.0 what is the ECC version supported

    Hi,
    Can any one help on this
    For CRM 5.0 what is the ECC version supported?

    ECC 5.0 onwards,
    lower versions can also be integrated using some plug-ins
    hope this helps
    additional info:
    SAP ECC 6.0 and subsequent releases will automatically contain all integration interfaces that so far have been contained in the SAP R/3 Plug-In and that ensured the technical integration with other SAP Components.
    Customers who run SAP R/3 4.6C, SAP R/3 Enterprise 47x100 and 47x200, and SAP ECC 5.0 will receive additional integration interfaces in a Support Package for PI 2004.1. The delivery of this Support Package will be synchronized with that of mySAP Business Suite. The 2005 delivery is in November as part of Support Package 10. Information about the delievery from 2006 onwards are take place here
    This rule applies only for customers with a SAP R/3 Plug-In release PI 2004.1. Customers with PI 2003.1 or older must first upgrade to PI 2004.1 or SAP ECC 6.0.
    No new interfaces will be provided for integration between new SAP component releases and SAP R/3 3.1I to 4.6B.
    Message was edited by: RH

  • Security Guide for Enhancement Pack 4 for ECC 6.0

    Hello,
    I am trying to analyse the impact of applying Enhancement pack 4 for ECC 6.0, Can someone help me find any security guides for it.
    It is an existing system and few additional modules are being implemented.
    Kind Regards.

    Hello,
    We have applied EHP4 on an exisiting(running) ECC 6.0 System. Can someone help me find answers to below queries
    a) What is  the SAP standard process to start with Security bit.
    b) Do we need to run SU25 steps. If yes, which one of them.
    c) Since the purpose of applying EHP4 was to activate few set of new business functionalities, we intend to affect the existing security design at the minimal. What is the best approach for this.
    Kind Regards,
    Abdul

  • Is import & export working in ECC version?

    i had one program. In which Export and Import is not working
    properly in ECC 6.0 version where as 4.6C working fine.
    If i commented the Import & Export than only it is working fine. Is there any other procedure OR how to use
    import and export in ECC version. Please advise me it is very
    urgent.
    Edited by: jagan ravula on Jan 29, 2008 8:00 AM

    Hi,
    To import from txt, look this:
    REPORT ZTXTTOTABLE .
    DATA: p_file TYPE string value 'C:\teste.txt',
    BEGIN OF TI_table OCCURS 0,
    COD(5) TYPE C,
    NAME(40),
    END OF TI_table,
    a(2).
    PARAMETERS: sel_file(128) TYPE c
    default 'C:\teste.txt' OBLIGATORY LOWER CASE.
    p_file = sel_file.
    CALL FUNCTION 'GUI_UPLOAD'
    EXPORTING
    filename = p_file
    TABLES
    data_tab = ti_table[].
    format color COL_TOTAL INTENSIFIED ON.
    loop at ti_table.
    write: / sy-vline, ti_table-cod, at 10 sy-vline, ti_table-name,
    at 60 sy-vline.
    endloop.
    write: / sy-uline(60).
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR sel_file.
    CALL FUNCTION 'WS_FILENAME_GET'
    EXPORTING
    def_filename = ''
    def_path = 'C:\'
    mask = ',Documentos de texto (*.txt), *.txt.'
    mode = ''
    IMPORTING
    filename = p_file
    EXCEPTIONS
    inv_winsys = 1
    no_batch = 2
    selection_cancel = 3
    selection_error = 4
    OTHERS = 5.
    find '.txt' IN p_file.
    if sy-subrc 0.
    concatenate p_file '.txt' into sel_file.
    else.
    sel_file = p_file.
    endif.
    top-of-page.
    format color COL_HEADING INTENSIFIED ON.
    uline (60).
    write: / sy-vline, 'COD', at 10 sy-vline, 'NAME', at 60 sy-vline.
    write: / sy-uline(60).
    to export to txt try it:
    *& Report ZTABLETOTXT *
    REPORT ZTABLETOTXT .
    TABLES: spfli.
    DATA: ti_spfli LIKE STANDARD TABLE OF spfli WITH HEADER LINE,
    p_file TYPE string value 'C:\spfli.txt'.
    PARAMETERS: sel_file(128) TYPE c
    default 'C:\spfli.txt' OBLIGATORY LOWER CASE.
    SELECT * FROM spfli INTO TABLE ti_spfli.
    p_file = sel_file.
    CALL FUNCTION 'GUI_DOWNLOAD'
    EXPORTING
    FILENAME = p_file
    TABLES
    DATA_TAB = ti_spfli[].
    IF SY-SUBRC = 0.
    MESSAGE I398(00) WITH 'Arquivo criado com sucesso!'.
    else.
    MESSAGE E398(00) WITH 'Ocorreu um erro!'.
    ENDIF.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR sel_file.
    CALL FUNCTION 'WS_FILENAME_GET'
    EXPORTING
    def_filename = ''
    def_path = 'C:\'
    mask = ',Documentos de texto (*.txt), *.txt.'
    mode = ''
    IMPORTING
    filename = p_file
    EXCEPTIONS
    inv_winsys = 1
    no_batch = 2
    selection_cancel = 3
    selection_error = 4
    OTHERS = 5.
    find '.txt' IN p_file.
    if sy-subrc 0.
    concatenate p_file '.txt' into sel_file.
    else.
    sel_file = p_file.
    endif.
    go through these links
    exporting internal table to memory variable
    http://www.sts.tu-harburg.de/teaching/sap_r3/ABAP4/export01.htm
    Reward Points if found helpfull..
    Cheers,
    Chandra Sekhar.

  • PROBELM WITH TYPE X  VALUE '20' IN CONCATENATE STATEMENT in ECC version

    Hi EXPERTS,
             I am working in ECC 6.0 version.
             PROBELM WITH TYPE X  VALUE '20' IN CONCATENATE STATEMENT in ECC           version
             C_DEL     TYPE X VALUE '09' having solution --C_DEL TYPE C VALUE CL_ABAP_CHAR_UTILITIES=>HORIZONTAL_TAB,
             If  C_DEL     TYPE X VALUE '20'   what was the solution in ECC version.
             Please let me know. I am awaiting for ur answers
    <b><REMOVED BY MODERATOR></b>
    Message was edited by:
            Alvaro Tejada Galindo

    Hi
    welcome to SDN forum
    move that X field to a char field and use in concatenation
    CONCATENATE works only with CHAR fields
    Regards
    Anji

  • What is the difference in 4.0, 4.6 and ECC versions of SAP?

    Hi
    What is the difference in 4.0, 4.6 and ECC versions of SAP?
    Thanks

    SAP R/3 is basic ERP that every one keeps talking about which has got different versions ike 3.1, 4.0, 4.6, 4.7. The latest one in this is the ECC which again has got two versions in the market - ECC 5.0 and ECC 6.0.
    NetWeaver is the techology stack which gives other solutions that work with R/3 and also provide a technology platform for the ERP to work.
    EP - Enterprise portal is a part of the NetWeaver stack and can be used to provide web interface for the user apart from the standard protal functionalities.
    You can find more details of NetWeaver here
    http://help.sap.com/content/documentation/netweaver/index.htm
    and also check these..
    Re: R/3 Enterprise v mySAP ERP 2003 v ECC 5.0 v mySAP ERP 2004
    Technical difference between 4.7 and ECC 5.0
    difference between sapr/3 4.7 and sapr/3 ecc 5.0
    Differences b/n 4.6c,4.7 and ECC 5.0
    http://help.sap.com/saphelp_47x200/helpdata/en/12/9d78d6d8f74043a32e82be87e433b7/frameset.htm

  • SAP ECC Version 6

    Dear SAP Experts,
    I have never worked on SAP ECC version 6 nor on 5. Could you please give your opinion,your experiences, your tips to the below:
    - Leading GAAP for Common Chart of Accounts
    - Handling Parallel GAAPs
    - Handling Parallel Ledgers
    -FICO Real Time Integration.
    All in relation to version 6.
    Thanks in advance for your time and advise.
    Regards
    Suresh

    Hello Suresh...
    Can you please send those documentation to my mail id too.... I was lacking with this real time exposure... If you are having any sort of information regarding real time scenarios please let me receive Suresh...
    Thanks in Advance...
    [email protected]
    Hope someone will surely help me in this regard...
    Byee..
    Take Care

  • Data migration between different ECC versions

    Is there a way to migrate data between two different ECC versions?
    I know that there are differences between the tables and therefore TDMS transports are not possible. But is there another way to get master data from one version (6.0 EHP 3) to another one (6.0 EHP 4)? For example a tool that can prepare the exported data for the import in a higher version?
    thx

    That's indeed the most feasible option we have on the table right now. Although we have a lot of Z-fields and would need to transfer them with LSMW.
    The ZMATMAS has only been built for outbound...

  • Wht  r the advantages of New debugger in the ECC versions

    Hi,
      What r the advantages of the New debugger in the ECC verssions.
    Thanks,
    Srik

    Hi,
    In ther ECC versions in the program menu there are 2 buttons for: set/delete session breakpoint and set/delete External break point.
    Refer to this thread
    http://help.sap.com/saphelp_47x200/helpdata/en/c6/617ca9e68c11d2b2ab080009b43351/content.htm
    Debugging
    Check these documents.
    http://www.cba.nau.edu/haney-j/CIS497/Assignments/Debugging.doc
    http://help.sap.com/saphelp_nw04/helpdata/en/5a/4ed93f130f9215e10000000a155106/frameset.htm
    http://help.sap.com/saphelp_47x200/helpdata/en/c6/617ca9e68c11d2b2ab080009b43351/content.htm
    http://www.cba.nau.edu/haney-j/CIS497/Assignments/Debugging.doc
    http://help.sap.com/saphelp_erp2005/helpdata/en/b3/d322540c3beb4ba53795784eebb680/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/84/1f624f4505144199e3d570cf7a9225/frameset.htm
    http://help.sap.com/saphelp_bw30b/helpdata/en/c6/617ca9e68c11d2b2ab080009b43351/content.htm
    http://help.sap.com/saphelp_erp2005/helpdata/en/b3/d322540c3beb4ba53795784eebb680/frameset.htm
    ABAP Debugging
    http://www.saplinks.net/index.php?option=com_content&task=view&id=24&Itemid=34
    Look at the SAP help link below
    http://help.sap.com/saphelp_nw2004s/helpdata/en/c6/617ca9e68c11d2b2ab080009b43351/content.htm
    reward if useful
    regards,
    ANJI

  • What's new in  SAP ECC version(Technically)

    Hi ALL,
    iam and ABAPer new to SAP ECC version.
    can u post me th document related to SAP ECC version (what are the technical changes in ECC& Syntax change in ECC)
    thank u

    Hi,
    Welcome to SDN!
    In SE38, click the blue icon (Information) with the "I" in it.
    Click "New Features in ABAP".
    There should be a subfolder there which says "ABAP Changes by Release".
    There is also a very good document from Thomas Jung here in the SDN
    that contain a lot of hardcopies of the changes.
    /people/thomas.jung3/blog/2005/05/15/abap-46c-to-640-delta-training
    Also, check the following threads:
    Re: ABAP Changes for release ECC 5.0
    Re: Technical difference between 4.7 and ECC 5.0
    best regards,
    Thangesh

  • How can I know the ECC version on my SAP

    Hello,
    My partner suggested me to change the ECC version to one upper to 5.0, but I don´t know what my version is, How can I know that?
    What is the prerequirement that I need to install an upper version of ECC?
    Thanks.

    "SAP R/3 Enterprise" is "SAP R/3 Enterprise 4.7"
    short excursion to "SAP release versions" (starting at 4.6):
    SAP R/3 4.6C
    SAP R/3 Enterprise 4.7 (Extensions 110)
    SAP R/3 Enterprise 4.7 (Extensions 200)
    SAP ECC 5.0
    SAP ERP 6.0 (formerly known as SAP ECC 6.0)
    next release roundabout 2010 available
    so, starting form your release you can upgrade to the next relese in the line: SAP ECC 5.0 or to the current release (SAP ERP 6.0)
    kr, achim

Maybe you are looking for

  • How to avoid blank lines in smartforms?

    Hi all, I am using an INCLUDE TEXT in a smartform. The problem is it is priniting with the blank lines entered in the standard text. I couldn't find any option for avoiding these blank lines using the respective smartstyles. Is there any option to av

  • When am i entitled to have my macbook exchanged for a new one?

    I bought my Macbook PRO 17 inch last Sept4, 2007 in hongkong. July 8, 2008, it froze. A portion of the screen displayed a pixellated image and all the proggrams, including the Tiger OS froze. after i hardbooted, it worked. but in the next 20 minutes

  • TimeMachine backing up to Buffalo LinkStation

    Hi there, I'm considering upgrading to Leopard primarily because of the Time Machine, but I'm not certain I would be able to use it as I'm envisioning it. I have a Buffalo LinkStation NAS drive, is it possible to configure Time Machine to use it as a

  • S order

    HI, How I can check the deleted sales order,Please give me the T-code for that. Thanks, Rash.

  • AR - Due amount for the particular Invoice on particulardate

    Hi, I want to know, how we can know for particular invoice, what is the due Item (Amount) on particular day. Example: Invoice: Posting date: 01/06/2009 Due Date:30/06/2009 Amount: 100 Payment Term: 2 % 30 Days, Net 45 Days. When I am posting payment