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

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

  • 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.

  • 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

  • Recommended upgrade method from ECC5 to ECC6 for lowest production downtime

    Hello everybody,
    I've been looking through multiple documents concerning a system upgrade and I am still unable to figure out the recommended method for upgrading a system with minimum downtime.
    My scenario requires that tests as rigid as possible will be performed and that development will be halted for the shortest time possible , therefore development must be continued after the initial upgrade.
    We are currently debating the required way to do this - what should be done with the change requests that currently reside in the DEV system, in which steps the incomptabilities are fixed and so on.
    I've decided that I'll share my thoughts with you and maybe you guros will be able to point out mistakes in the methodology.
    1. ECC 5 Production System is copied aside, lets call this system EPC
    2. Change requests from DEV ECC5 are copied to this EPC System.
    3. EPC  system is upgraded to ECC6.
    4. Bugs and incomptabilities such as unicode incomptabilities are fixed and merged in a change request
    This ends the preperation step and in my opinion is sort of a preperation step.
    During the whole preparation step, which to my estimate could take at least one month, development in the original system must be continued, so this is my main trouble.
    What is the recommended procedure from here?
    I assume that another production must be done on the day of the actual upgrade start, then the fixes from the previous preperation system are copied to this actual ECC6 Production, but I am rather lost as far as it goes to having an ECC6 Dev with most current change requests.
    I would appreciate any hints and help,
    thanks in advance,
    Eli.

    Ok, your idea of having a production copy for development and tests is a good upgrade strategy, we have done this twice due high quantity of developments and configuragion changes but I don´t see why you wrote " copy change requests from DEV to EPC " your whole configuration, programs, etc, are already in EPC once you copy the system.
    In this scenario every change made in DEV ECC 5.0 must be also replicated and tested in EPC 6.0 because you cannot use the change requests from 5.0 in 6.0 once in productive upgrade, let me list the global steps:
    1.- Homogeneous system copy from PRD to EPC, you will get a working test platform
    2.- Upgrade EPC to 6.0
    3.- Developers and functionals will do all respective changes and generate chage requests.
    Once EPC is ready
    4.- Upgrade DEV system to 6.0 transport change requests created in EPC to upgraded DEV, from this point you should only do emergency changes using Q&A system.
    5.- Upgrade Q&A system, transport change requests from DEV, no changes are permited from now until PRD is upgraded.
    6.- Do all tests very carefully
    7.- Upgrade PRD transport change requests
    Then you are ready. the downtime can be tune trough EPC, DEV and Q&A systems so you can determine what you shoud do to assure the shortest method.
    I recomend you to use the downtime minimized upgrade method and from every upgrade take a deep look at the upgrade report generated after the whole process is completed.

  • 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

  • Error while ORDERS05 IDoc transfer from R3 - PI - SNC

    Hi Friends,
    I am facing error in PI SXMB_MONI for ORDERS05 IDoc transfer from R3 - PI - SNC.
    I have done all the configuration setup in Integration Directory for the Scenario, I am able to successfully send the IDOC for PO from R3 to PI but faced the following Error in PI.
    <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    - <!--  Message Split According to Receiver List
      -->
    - <SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="">
      <SAP:Category>XIServer</SAP:Category>
      <SAP:Code area="INTERNAL">PARTY_SERVICE</SAP:Code>
      <SAP:P1 />
      <SAP:P2 />
      <SAP:P3 />
      <SAP:P4 />
      <SAP:AdditionalText />
      *<SAP:Stack>Party and service not defined</SAP:Stack>*
      <SAP:Retry>M</SAP:Retry>
      </SAP:Error>
    Also I am unable to Configure Sender/Receiver ID in PI > SXMB_ADMIN > Configuration, as while defining Sender/Receiver  unable to add the Interface for Sender(ORDERS.ORDERS05)/Reciever(ReplenishmentOrderNotificatio_Out) although I am able to see the same in Integration Repository.
    Also In Main message(Part of the message) as shown below, I am able to see Vendor in PARTY Element of xml message for which I have created the PO
    <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    - <!--  Message Split According to Receiver List
      -->
    - <SOAP:Envelope xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SAP="http://sap.com/xi/XI/Message/30">
    - <SOAP:Header>
    - <SAP:Main xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" xmlns:wsu="http://www.docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" versionMajor="003" versionMinor="000" SOAP:mustUnderstand="1" wsu:Id="wsuid-main-92ABE13F5C59AB7FE10000000A1551F7">
      <SAP:MessageClass>ApplicationMessage</SAP:MessageClass>
      <SAP:ProcessingMode>asynchronous</SAP:ProcessingMode>
      <SAP:MessageId>0050568F-24A0-1DDD-B9F5-3F6DD541FF93</SAP:MessageId>
      <SAP:TimeSent>2009-01-21T10:55:20Z</SAP:TimeSent>
    - <SAP:Sender>
      <SAP:Service>SAPECC6</SAP:Service>
      <SAP:Interface namespace="urn:sap-com:document:sap:idoc:messages">ORDERS.ORDERS05</SAP:Interface>
      </SAP:Sender>
    - <SAP:Receiver>
      <SAP:Party agency="SAPECC6" scheme="ALE#LI#LF">0000000006</SAP:Party>
      <SAP:Service />
      <SAP:Interface namespace="urn:sap-com:document:sap:idoc:messages">ORDERS.ORDERS05</SAP:Interface>
      <SAP:Mapping notRequired="Y" />
      </SAP:Receiver>
    Please Suggest the steps needs to be done for resolving the Issue.
    Thanks all...
    Regards,
    Nitin
    Edited by: Nitin Patil on Jan 21, 2009 12:18 PM

    Hi Nitin,
       I completed the configuraiton but the PO came in PI successfully but stuck in PI with error
    <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    - <!--  Call Adapter
      -->
    - <SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="">
      <SAP:Category>XIAdapter</SAP:Category>
      <SAP:Code area="PLAINHTTP_ADAPTER">ATTRIBUTE_SERVER</SAP:Code>
      <SAP:P1>500</SAP:P1>
      <SAP:P2>Internal Server Error</SAP:P2>
      <SAP:P3>Error during parsing of SOAP header</SAP:P3>
      <SAP:P4 />
      <SAP:AdditionalText />
      <SAP:Stack>HTTP server code 500 reason Internal Server Error explanation Error during parsing of SOAP header</SAP:Stack>
      <SAP:Retry>M</SAP:Retry>
      </SAP:Error>
    can you please help what is the problem , I am not able to find out.
    Thanks,
    Menaga

  • Problem IDOC to File scenario:  No service for system SAPIDC, clnt in ID

    in IDOC to File scenario, when IDOCis triggered from R/3 to XI, it gives error in SM58 transaction 
    "No service for system SAPIDC, client 800 in Integration Directory"

    In a scenario, i have a BPM which has a transformation step which contains a mutimapping ...means 2 messages mapped to 1 messgaes, here in the mapping i m using an UDF and written code to extract the file name from dynamic configuration.....
    the problem is ...the same BPM contains another transformation step which contains a message mapping (which is not multi mapping), and here the code (UDF) works to fetch the file name...
    the code is all correct....and it looks like
    DynamicConfiguration conf = (DynamicConfiguration)
    container.getTransformationParameters().get(StreamTransformationConstants.DYNAMIC_CONFIGURATION);
    DynamicConfigurationKey key = DynamicConfigurationKey.create("http://sap.com/xi/XI/System/File","FileName");
    String sourceFileName = conf.get(key);
    if (sourceFileName == null ){
         sourceFileName = "ErrorFile.xml";}
    return  sourceFileName;

  • Extension Idoc for ORDERS05..

    Hi,
    I want to add one field (VBAK-FAKSK) as an extension idoc to ORDERS05 Basic idoc type.
    My problem is in this Basic type (ORDRES05) under which segment, i have to add this field (VBAK-FAKSK).
    Can one help this problem would be great appreciable.
    Best rgds,
    srihari.V.

    VBAK is the header data table for the Order.
    E1EDK01 is the Main header Segment for ORDERS05 Idoc, so I think it shold go into that segment.
    Refer this link for more help:
    http://help.sap.com/saphelp_erp2005/helpdata/en/dc/6b7d6243d711d1893e0000e8323c4f/frameset.htm
    Regards,
    Ravi

  • Problem with uploading data from excel using BDC for tcode f-02

    Hi All,
    I am uploading data from excel using BDC for tcode f-02. The problem here is, while recording, the values of some fields are recording twice. I dont know why it's happening so. But if I run my abap program, I have to give those fields twice in my excel sheet. Otherwise data does not upload. But it is not the feasible way. We must give those fields once in excel. Please tell me, how I can solve the issue.
    With regards,
    Rosaline.

    Hi,
      in BDC each and every action is recording. If your press enter in same screen that also recorded once aging may be this is your case repeating field values will appear. we can solve the problem for repeat fields like below.
    suppose in your excel having repeated field X1 X2 X3 the X2 contains repeated field X3 means delete the X3 field.
    Now In your itab having X1 and X2 fields. While in the LOOP the ITAB pass the X2 field to repeated the fields.
    LOOP at ITAB to WA.
    CLEAR bdcdata_wa.
    bdcdata_wa-fnam = 'BDC_CURSOR'.
    bdcdata_wa-fval = 'RM08M-EBELN'.
    APPEND bdcdata_wa TO bdcdata_tab.
    CLEAR bdcdata_wa.
    bdcdata_wa-fnam = 'INVFO-BLDAT'.
    bdcdata_wa-fval = wa-X2." 1st time pass the X2 fields
    APPEND bdcdata_wa TO bdcdata_tab.
    CLEAR bdcdata_wa.
    bdcdata_wa-fnam = 'INVFO-BLDAT'.
    bdcdata_wa-fval = wa-X2." pass the same value to repeated field
    APPEND bdcdata_wa TO bdcdata_tab.
    Endloop.
    Hope you can understand.
    Regards,
    Dhina..

  • HT1338 PLEASE HELP ME I AM FACING A PROBLEM My name is Ameer. I watch youtube videos from ipad2 ( safari ) today for my first time, when i run a video and i want to pause it, i touch the screen where the video is playing to reach the pause botton that is

    PLEASE HELP ME I AM FACING A PROBLEM
    My name is Ameer.
    I watch youtube videos from ipad2 ( safari )
    today for my first time, when i run a video and i want to pause it, i touch the screen where the video is playing to reach the pause botton that is located on a bar under the video which appears when i touch the screen. Today every time i touch the screen nothing happens and i cannt pause the video nor adjusting its quality.
    So plese help me fixing this problem as soon as posible.
    Regards

    Same problem on my ipad mini, running ios 6.0.2.
    A bit more info:
    -tried using YouTube in Safari on another ipad. Worked fine.
    Tried reboot (sleep + home buttons for 15 seconds). Didn't fix.
    -tried logging out of my YouTube account, thinking the problem was tied to my settings. Didn't fix.
    -tried uninstalling all apps I downloaded since the last time YouTube worked properly. Didn't fix.
    -tried watching a video in desktop mode. Can tap video screen to bring up pause okay in that mode.
    There are work arounds, but the thing I want to know is why YouTube doesn't work in Safari as of a couple of days ago, and is it indicative of another more serious problem with my ipad.

  • Process code for IDOC Output from MIRO

    Hi,
    We need to find the Process code for IDOC output to assign Output type in ECC. We need the IDOC output to some other system like PR while doing the invoice Posting (Transaction code MIRO). We tried Using process code SD09 for the IDOC with IDOC Type INVOIC02. In SD09 we are getting error (Update terminated) when we trigger the output while saving in MIRO transaction.
    Further we understand that process code SD09 is used for SD billing and Invoice process.
    We need your help in
    1.      getting the correct process code for the IDOC generation for Invoice posting thru MIRO.
    2.      If we need to configure one process code, let me know the correct function module for the same.  
    Please Note, we need this as Output Idoc from Invoice Posting MM (MIRO).

    Hi Shankar,
    Thanks for quick for reply. We have tested this process code with IDoc type - GSVERF03 and message type - GSVERF. It worked for us for MIRO transaction.
    we are testing with IDoc type INVOIC02.
    once again thanks for sharing the process code.
    Regards,
    Brahma

  • Steps to configure BPM report from Solman 7.00 for productive system ECC6.0

    Hi all,
    Please given me the steps to configure Buisness process Monitoring reports from Solman 7.0 for productive system( ECC6.0, windows & database oracle 10.2),
    I wanted to create the Reports of  monitoring the buisness.
    Regards,
    Akash Basis consultant.

    Thanks for replying Volker von Gloeden,
    This thread is my first one in SDN & I am very glad that someone has given the answer ,
    I will take a look for solution you have provided & will inform you.
    Thanks again.

  • Outlook Web Access is currently unavailable. If the problem continues, contact technical support for your organization and tell them the following: No Client Access servers of the appropriate version can be accessed from the Internet

    Good Morning,
         We are getting this error 
    Outlook Web Access is currently unavailable. If the problem continues, contact technical support for your organization and tell them the following: No Client Access servers
    of the appropriate version can be accessed from the Internet
    We installed a new Exchange 2007 CAS on Windows 2008R2. Got rid of old CAS on Exchange 2007. Now seeing this error. Does anyone have an idea??

    Hi,
    If the issue persists, I recommend you install Exchange 2007 SP3 RU7 and check the result. Also, ensure that Exchange 2010 SP2 RU1 or later version is installed. Old Exchange version may lead to the CAS-to-CAS proxy incompatibility.
    What's more, here are some helpful blogs for your reference.
    Exchange 2010 SP2 RU1 and CAS-to-CAS Proxy Incompatibility
    http://blogs.technet.com/b/exchange/archive/2012/02/17/exchange-2010-sp2-ru1-and-cas-to-cas-proxy-incompatibility.aspx
    OWA Coexistence With Legacy Versions
    http://blogs.technet.com/b/sjimmie/archive/2010/07/09/owa-coexistence-with-legacy-versions.aspx
    Hope this can be helpful to you.
    Best regards,
    Amy Wang
    TechNet Community Support

Maybe you are looking for

  • Kisight:- If I Don't Have or Want to Use My iSight What Can I Use ?

    kisight:- If I Don't Have or Want to Use My iSight What Can I Use ? Or What Cameras are available for Macs ? This question used to come up for Macs that did not have Internal Cameras and the User did not have an External iSight. Since the advent of I

  • Dbms_Sql in forms 9i

    We are migrating forms from forms6i to 9i In forms 6i they are using the below code. l_cursor := dbms_sql.open_cursor; dbms_sql.parse(l_cursor, l_stmt,2); l_result := dbms_sql.execute(l_cursor); dbms_sql.close_cursor(l_cursor); In forms9i this is giv

  • Problem with Mac Office Password Protection

    I'm running Mac OS X 10.7.5 with MS Word for Mac 12.3.5 and MS Excel for Mac 12.3.5.  I created a Word (.docx) and an Excel (.xlsx) document on my Mac at home, both with password protection.  I uploaded the documents onto Google Drive.  I was able to

  • Integration between Lightroom and Photoshop broken

    It will almost inevitably turn out that I'm missing something glaringly obvious, but since upgrading to Lightroom 5.5 and Photoshop CC 2014, my photos are losing their LR adjustments when sent to PS. I'm no longer asked how I want the RAW files rende

  • Monitor and printer colours not matching!

    Hi, when I print, the colours do not match my monitor! Using CS6.