Redirect EP to a different backend environment

Does any have the documentation to show the steps required to redirect a Java Stacked EP 7.0 system running ESS/MSS where the security is provided on the backend ABAP ECC environment?
Is the only thing to really change the JCO configuration?
Vincent

Three things to change typically for ESS and MSS:
1. JCo Destinations
2. System Aliases for the system object created through System Administration - System Configuration - System Landscape
3. UWL configuration to point to the new system
If you are using ABAP system as the UME data source, and if you need to switch it, you will have to change the corresponding UME configuration as well.
Thanks,
Shanti

Similar Messages

  • How to work with two different backend with same MI Server and war file

    Hi All,
    We have a requirement that we need to work with one Middleware for two backends. For that we had to copy MAM30 sync bo's to zsync BO'S with the name ZMAM30. Now both sync BO'S will point to different backends.
    I have a standard war file which was working well with standards sync bo's. Now to work on zsync bo's what all the changes do I have to do in the standard war file(code).
    As per my knowledge we have a file called "syncbonamelist.properties" which maps the sync bo keys. Also there is another file called "mapping.xml" file which maps the package name with BO name.
    Can any body please tell me, are there any other files needed to be change like "meRepMeta.xml", other than any existing code like java objects are also needed to be changed.
    Your help in this regard is highly appreciable.
    Regards
    Murthy

    Hi Murthy,
    I try to get my head around the question:WHY?
    The reason for my question is, that this influences the answer!
    Because of several reasons it is NOT possible to handle MAM and zMAM Bos at the SAME TIME on the SAME MACHINE in the way you describe it - and it makes no sence to do so at all! But anyway......
    Lets say you have two backends, cause you have two different areas of the company. But both want to use the same MI server - but the client should be independend.
    So you need two apps. One uses the MAM BOs and the second one uses the zMAMBos.
    If this is the case, dev should be straight forward I think and you solution should work already......... so I ask myself, what is the problem you have? Do you get an error?
    - First create a new MEREPMETA-XML with just the zMAMBOs instead of the MAM BOs.
    - Change the two files you mentioned above.
    This should be all then.
    If you have a look into the implementation for MAM001Impl for example, there you find a line like:
         private static final String SYNC_BO_NAME
              = ResourceBundle.getBundle("com.sap.mbs.mam.bo.impl.syncbonamelist").getString("MAM30_040");
    This takes the name from the properties file and maps it to the real BO. So changing the name in the property file to
    MAM30_040 = zMAM30_040
    will result in MAM uses the zMAM BOs.
    Be aware: after you place the WAR file in the WEBAPPS folder and do a restart to deploy the file, you need to do a data reset to make sure the new MEREPMETA.XML is read.
    AND: two apps! one for MAM and one for zMAM BOs. One APP is not possible! Cause if you have something like that in the properties file:
    MAM30_040 = MAM30_040
    MAM30_040 = zMAM30_040
    if will only take the first reading.
    But I think this is clear to you anyway
    Regards,
    Oliver

  • How to Call Same Adaptive RFC across different Backend R/3 Systems

    Hi Everyone,
    I have been troubled for the last 3 or 4 days on how I should develop Web DynPro code to call the same RFC on different backend R/3 systems.  Don't really want to maintain my own Jco connects within a SAP Connector project and I don't really want to import 3 or 4 of the same models.  Can someone please inform what is the best approach?
    Thanks.

    Hi Glen,
    There is one other way of doing this which needs a bit of data maintenance.
    The webdynpro app will connect to one R/3 backend. In the same R/3 create RFC destinations to all others backends where the RFC's needs to be called. Create a table where u maintain for what value which backend system should be called. Add rfc_dest as an import paramter in all the RFCs in the backend system where the webdynpro app is connected and call those systems using RFC destinations.
    For e.g. you have one HR system and multiple FI systems based on Company codes.
    Connect your webdynpro app to the HR system. Create a table in the HR system which will contain data like given below
    CoCode                        RFC Destination
    1000                             RFCDEST1
    2000                             RFCDEST1
    In the RFC's in HR system add both CoCode and RFC Destination as additional input parameters. From the front end u can pass different values and call the same RFC's from different systems.
    Regards
    Prakash

  • How to transfer the coherence cache t to a different network/environment?

    Hi,
    I have a requirement where in i need to import/export cache from one network into a different network/environment all together keeping the cache data intact. How do i achieve this from Coherence side? I am using distributed cache scheme.
    Regards,
    Radhika

    You could serialize to a file the content of the cache then read it back at the other end.  The cache dump usually does not take much time even for GB sized caches.  The import usually takes more time.
    Here is sample code to serialize the content of a cache.  Ideally you should use POF to have already compacted data.
    Export:
         public void exportCache(String cacheName, File file) throws Exception {
              WrapperBufferOutput wrappedBufferOutput = null;
              try {
                   NamedCache cache = CacheFactory.getCache(cacheName);
                   FileOutputStream fileOutputStream = new FileOutputStream(file);
                   BufferedOutputStream bufferedOutputStream = new BufferedOutputStream(fileOutputStream, 1024 * 1024);
                   DataOutputStream dataOutputStream = new DataOutputStream(bufferedOutputStream);
                   wrappedBufferOutput = new WrapperBufferOutput(dataOutputStream);
                   ConfigurablePofContext pofContext = (ConfigurablePofContext) cache.getCacheService().getSerializer();
                        for (Object o : cache.entrySet()) {
                             pofContext.serialize(wrappedBufferOutput, ((Map.Entry) o).getValue());
              } finally {
                   if (wrappedBufferOutput != null) {
                        wrappedBufferOutput.close();
             timer.print();
    Here is sample code to deserialize the content of a cache store on a file:
    Import:
    public void importCache(String cacheName, File file) throws Exception {
              WrapperBufferInput wrappedBufferInput = null;
              try {
                   NamedCache cache = CacheFactory.getCache(cacheName);
                   FileInputStream fileInputStream = new FileInputStream(file);
                   BufferedInputStream bufferedInputStream = new BufferedInputStream(fileInputStream, 1024 * 1024);
                   DataInputStream dataInputStream = new DataInputStream(bufferedInputStream);
                   wrappedBufferInput = new WrapperBufferInput(dataInputStream);
                   ConfigurablePofContext pofContext = (ConfigurablePofContext) cache.getCacheService().getSerializer();
                   while (wrappedBufferInput.available() > 0) {
                        ImportableObject o = (ImportableObject) pofContext.deserialize(wrappedBufferInput);
                        cache.put(o.getObjectKey(), o);
              } finally {
                   if (wrappedBufferInput != null) {
                        wrappedBufferInput.close();
    Here we assume that cache entries implement ImportableObject interface which has the getObjectKey() method.  This make it easy to figure out the key of the entry without knowing its real type.

  • How does one redirect installation to a different disc drive?

    How does one redirect installation to a different disc drive?

    Hi space needle,
    Thank you for posting on the Adobe forums, please help us with the information listed below for further assistance on this.
    1) which Application are you trying to install?
    2) Operating System you are working on
    3) Method of installation (customized or the standard installation)
    Thanks,
    Vikrantt Singh

  • Since the latest update for firefox, if I choose a link from a google search, it gets redirected to a totally different search engine

    If I type in a search into Google and select ANY of the links highlighted in blue, I get redirected to a totally different web search engine. This has never happened prior to the latest update of Firefox.

    Which search engine is it redirecting to?

  • Can I redirect to a completely different web container?

    Hi all
    How can I redirect from a Servlet to a completely different web container. For example let's say I have MyServlet running on machine A, and according to a parameter in the request, I would like to redirect to host B (to another location).
    I tried to use RequestDispatcher.forward, but it uses a relative location (even if I added the absolute URL, like http://hostb:port/new_location).
    Can I redirect to another container?
    thanks,

    Do you need to send the data to the second site as well? That's where you will run into problems.

  • Redirect user to a different Page based on number of  Liquid output result

    I want to redirect the user to a different page based on the number of results. I have some multi-account users and single account user in my secure zone. I want single account users to be sent to a different page, while multiple account user should be shown their accounts and they user can now click the account he/she wants to access. This is my code:
    {module_data resource="customers" fields="company, email1"  where="\{'company':\{'$contains':'{{this.globals.user.email}}'\}\}" skip="0" limit="500"  version="v3" collection="companyXtra" template=""}
    {module_webapps id="21927" filter="all" collection="companyAccess" template=""}
    {% for item in companyAccess.items -%}
    {% assign counter = {{forloop.length}} -%}
    {% if globals.user.email = item.email and counter = 1 -%}
    <script>
    window.location.replace("/single-account-user.html");
    </script>
    <a class="w-inline-block szone-navlinks multiplecoy" href="{{item.url}}">
        <div class="szone-holder">
          <div class="szone-narrate addenrolee">{{item.name}}</div>
        </div>
      </a>
    {% else %}
    <p><a href="{{item.url}}">{{item.name}}</a></p>
    {% endif %}
    {% endfor %}
    </div>
    Please what I'm doing wrongly. Can someone kindly assist. Thanks.

    Hi Liam I have since been reviewing my query using the BC API Discovery which has been a good guide for me. But the result is just displaying the core customer's company, though the other company has a default email/email1 as the core customer.
    This is my new query:
    {module_data resource="customers" version="v3" fields="company" skip="0" limit="10" where="\{'email1.value':\{'$contains':'{{globals.user.email}}'\}\}" order="id" collection="myData"}
    <pre>{{myData|json}}</pre>
    This is the json:
      "moduleName": "data",
      "moduleDescriptor": {
      "templatePath": null,
      "parameters": "resource=\"customers\",version=\"v3\",fields=\"company\",skip=\"0\",limit=\"10\",where=\ "\\{'email1.value':\\{'$contains':'[email protected]'\\}\\}\",order=\"id\",collection=\"myData\"",
      "apiEndpoint": "/api/v3/data",
      "objectType": "-1",
      "objectId": "-1",
      "adminUrl": ""
      "items": [
      "company": "The vivove company Limited"
      "totalItemsCount": 1,
      "skip": 0,
      "limit": 10,
      "params": {
      "resource": "customers",
      "version": "v3",
      "fields": "company",
      "skip": "0",
      "limit": "10",
      "where": "\{'email1.value':\{'$contains':'[email protected]'\}\}",
      "order": "id",
      "collection": "myData"
    I expected to see two companies. This is screenshot of my the companies in the CRM:
    Screenshot by Lightshot
    Screenshot by Lightshot
    Thanks. most appreciated.

  • Multiple ESS's in one Portal connected to different backend systems?

    Hi,
    We have two backend systems installed.
    We have one portal.
    We want to create a second copy of the ESS Portal content connected to the the second backend.
    Datawise this is not a problem.
    But what about the JCo's and the Homepage Framework?
    The WebDympro application seems to look for two specific JCo (for example SAP_R3_HumanResources and ...MetaData) and then both copies of ESS want to use this. Is it not possible to have each copy of ESS use it own JCo's and connect to its own backend system for the Homepage Frameworks?
    Thanks,
    Adriaan

    Adriaan,
    Its NOT possible to even talk to different clients in same backend system because you cannot duplicate the JCos and while creating them you need to specify the system and client details.
    Also it uses a system alias which also has to be unique.
    Per my knowledge one portal instance can talk to only backend client and to talk to another backend / client you will need to create a new instance within the Portal.
    This [help|http://help.sap.com/saphelp_nw2004s/helpdata/en/82/76a2406546ba15e10000000a1550b0/frameset.htm] talks sometihng on multiple backend support. I am not much aware about it but see if it helps you.
    Chintan

  • Redirect http requests to different servers based on URL

    You can use a reverse proxy to do this, but if you have a single IIS box in a DMZ you can also use IIS ARR (Application Routing Request) to do this for you.
    https://knowledge.safe.com/articles/How_To/Using-IIS-and-ARR-as-a-reverse-proxy
    You may find better articles if you look, but it is easy enough to do.

    Hi,
    We have an internet connection (with a single IP address) where I need to share access to different internal servers based on the requested URL.
    I.e.:
    http://url1.domain.com -> webserver1
    http://url2.domain.com -> webserver2
    etc.
    It's http traffic only (no https).
    How do I accomplish this? I assume some kind of proxy server-thing that all requests go to? It should be on the Windows platform as we don't want to introduce a Linux "black-box" that noone knows anything about in a production environment.
    Thanks for any ideas and/or suggestions :) 
    This topic first appeared in the Spiceworks Community

  • Windows Explorer Displays Redirected Folders as a Different Name

    Hi Guys,
    Windows 2008 and Windows 2008 R2 has this new feature where it displays folders in which you have ownership of as "Documents" or "Start Menu" for Folder Redirection.
    This only renames it when browsing it through Windows Explorer (explorer.exe).  If you browse the folders through a command prompt using DIR, it will display the correct name... %username%.
    I think Microsoft did this to make it more user friendly, but HOW DO I TURN IT OFF its annoying!
    I wrote this program in visual basic that takes ownership of a folder, Grants Administrators, SYSTEM and %username% full control.  It grabs %username% from the folder name as ususally with redirection the folder in which the data is redirected to =
    %username%.  After setting the permissions correctly the program then gives ownership BACK to the user.
    Anyway upon running my little application... look what explorer did.  I had Ownership of the folder for a split second before the application gave ownership back.  Because of this when I opened up the folder Explorer populated many of the
    folders as "Application Data" when they should be displayed as %username%.
    Even though the user now has ownership of the folders now, it still displays them as Application Data!  If I log into the file server as another user account, it displays them correctly.  Explorer is caching this meta data under the users
    profile somewhere.
    There is NO information on this on the internet.  Can someone at Microsoft give me some information to turn this functionality of explorer.exe off or tell me where this meta data is stored so I can blow it away without having to re-create the entire
    profile?
    Clint Boessen MCSE, MCITP: Messaging
    Perth, Western Australia
    Blog: http://clintboessen.blogspot.com/

    All,
    We have numerous customers running W2K8 SP & R2 environments, none of which have reported this issue. Oddly enough though we have recently provisioned a W2K8 R2 remote desktop
    host farm for a custom who has a w2k3 R2 environment.
    We performed all the pre requisites to host the farm in the W2K3 R2 domain, and added the GPO structure to one of the W2K8 R2 servers as you cannot make remote desktop GPO’s
    with W2K3 R2 GPO’s.
    User do not have profile or home directory paths defined in AD
    Profile and home folder paths are defined in the GPO
    Folder redirection is enabled for Documents and Application Data
    BEHAVIOR:
    To start with when users logged onto the RD Farm they had their home folder path correctly set and the folder names in the root of the share was correct.
    \\server\share\username1\ect
    Then after 3 months we noticed that users home folder path was no longer being created with the %username% structure and looked like this
    \\server\share\my documents\ect
    The profile and application data folder redirection is working 
    as expected by creating a folder with the username.
    The document folder redirection is not working correctly.
    CONFIGURATION:
    Set path for Remote Desktop Services Roaming User Profile
    Enabled
    Profile path
    \\SERVER\profileshare\
    Specify the path in the form,
    \\Computername\Sharename
    Set Remote Desktop Services User Home Directory
    Enabled
    Location:
    On the Network
    Home Dir Root Path:
    \\SERVER\homeshare\
    If home path is on the network, specify drive letter for the mapped drive.
    Drive Letter
    U:
    Current GPO Settings:
    AppData(Roaming)hide
    Setting: Basic (Redirect everyone's folder to the same location)hide
    Path:
    \\SERVER\SHARE1\%USERNAME%\AppData\Roaming
    Documentshide
    Setting: Basic (Redirect everyone's folder to the same location)hide
    Path: %HOMESHARE%%HOMEPATH%
    ISSUE:
    When enumerating via windows explorer on the Windows 2003 R2 or Windows 2008 R2 servers you see some document folders with
    the correct %username% name, but mostly they are all enumerating as My Documents.
    If you open a command prompt on the W2K3 R2 server and perform a DIR you will see a list of %username% folders correctly.
    CONCLUTION:
    I am going to dig deeper into file/folder level attribute flags set by default when creating folders by windows 2008, as I feel there is a problem with windows 2008 Server creating
    data in a windows 2003 R2 server ntfs folder structure. I am aware NTFS has been upgraded and the version used in 2003 is not the same as 2008 and above.
    If I find a solution I will update this ticket

  • Maintaining different no ranges for different backend system

    Hi
    Our SRM system is connected to 2 backend systems.
    Requirement is to maintain shopping cart nos differently for each system.Should I create a new transaction type SH1 and SH2 and maintain the R/3 nos there OR
    Is there any other option

    hi,
      Pls see the foll threads:
    Can we have two Shopping cart  transaction type?
    basic transaction type doubt
    BR,
    Disha.
    Pls reward points for useful answers.

  • Dynamically connecting WD Application to different backends

    Hi,
    A single WebDynpro Application running in the portal needs to be connected to different Clients in the backend system depending on the current logged user.
    As I found out, the standard JCO Connections can be overwritten by URL parameter overwriting.
    But for this I need different iViews in the portal connected to the same WebDynpro application but with different JCO Connections.
    Is it possible to have one iView which does this?
    Regards
    MK

    Hi MK,
    You should create the JCO Connections manually in your WebDynpro Application.
    The overhead is that you then need to manually close them as well when not in use.
    Check this tutorial.
    http://help.sap.com/saphelp_erp2005/helpdata/en/d2/561106b8b3bc449f890cddfdc8d3e2/frameset.htm
    Regards,
    Shubham

  • How to get one crystal report to work with two different backends?

    We have a software that can work with either SQL2008 or Visual Fox Pro backend.  We are trying to compile One Crystal report that will work with either of the two backends.  How to you make sure that your Crystal Report is compiled so that it will work with both backends?
    Right now my reports were originally created using the SQL2008 backend and are retaining the DBO reference in the statement, which then will not allow the Crystal report to work with the VFP backend.

    You can write your data sets as a command using hand coded SQL. As long as "dbo" is the only schema used in your SQL Server database, you don't need to specify it in the SQL. SQL Server will automatically assume the dbo.
    The 2nd thing... The SQL needs to be 100% compatible with both SQL Server 2008 AND VFP.  This will limit the list available functions to those that are common to both platforms AND work exactly the same in both platforms.
    The other part is to make sure you are using an ODBC type connection instead of OLD/DB. That way all of the connection properties are set on the local machine and the report is simply looking for the System DSN name.
    HTH,
    Jason

  • Can a WLC redirect HTTPS traffic in a CWA environment

    Hi Guys.
    Regarding with ISE, CWA and WLC, I 'm seeing that when you connect to the SSID and open your navigator, if the URL is an HTTPS URL the traffic is not redirected to the ISE Portal using CWA. I though that the WebAuth Proxy Redirection Port option of the WLC only works when It has the portal (LWA) but not in CWA.
    I only found information about the redirection of the traffic when is a HTTP connection (port 80).
    Is it possible to redirect HTTPS traffic in a CWA deployment??, most of my users use Google Chrome and, in some scenarios, any search using Gooogle is in HTTPS mode and the captive portal is not shown.
    Thanks.
    Best regards.

    No, the WLC is not able to redirect HTTPS pages.
    You can however add other ports(other than 80) that can be redirected incase of proxy etc.
    HTH,
    Steve
    Please remember to rate useful posts, and mark questions as answered

Maybe you are looking for

  • Soma de dias em Data do Documento

    Boa tarde a todos! Estou com o seguinte problema: Possuo um campo definido pelo usuário no qual desejo adicionar a seguinte consulta formatada: SELECT +10 O problema ocorre quando essa conta supera 30 / 31 dias! No SQL, funciona normalmente, e o mês

  • Front-end and Database upgrade

    Hi SDN, We have recently upgraded Oracle database to 10.g.2.1 on our BW 3.5 server, used as a sandbox. We are having HTTP related problems. Running any web app gives us the following message: System error in program SAPLRSDM_F4 and form RSD_CHA_GET_V

  • Outlook 2013 crashes when adding an event using an emailed ics file.

    I use Outlook 2013, Hotmail and an Android phone to manage my calendar, with Outlook 2013 and Android synching to the Outlook.com account. Scenario 1: 1. Receive meeting requests with attached ics files from an Apple Mac user 2. Drag ics file attachm

  • FM for costting

    Hi all, pls post me the FM to get only RAW material cost of FG material. not include man, machine and other cost. Best Regards Nazar

  • Detect changed fileds in form

    Hi all, I want to build a "history" function in my Apex appliaction. My idea is to record all changes in a existing record, in a new table, but I'm having some trouble to find the best way to do this. I figured it out this way: After the user edit th