Function chat between two versions of Portal

Hi experts,
i would like to know if it´s possible to create a chat between two different versions of EP. (example: EP 6 and EP 7). I´m looking for the information but i cann´t find anything about it.
Thanks a lot!!!
L

Hi
Go through these links
https://www.sdn.sap.com/irj/sdn/thread?threadID=456691&tstart=30
http://www.collaborate.com/publication/newsletter/nl0502.html
Reward me..

Similar Messages

  • Difference in the display/rendering between two 7.4 portal systems

    Hi everyone,
    At this moment we are faced with a difference in the display/rendering between two 7.4 portal systems (see red area’s in screenshots). Both systems are green field installations.
    At our LAB system with EP-BASIS 1000.7.40.7.0.20140421205300 and EP-RUNTIME 1000.7.40.7.0.20140414131600 the portal is rendered as follows:
    Our development system DEV is based on EP-BASIS 1000.7.40.8.7.20141217073700 and EP-RUNTIME 1000.7.40.8.13.20150106224500. The portal is displayed as follows:
    Both portal systems use the standard SAP Gold Reflection theme.
    The expectation was that the DEV portal would have the same view as the LAB portal. Unfortunately, it appears that the DEV portal falls back to the older standard SAP Tradeshow theme when displaying (for example) the Portal Content Studio or the UWL. Different stylesheets (CSS) are loaded. There is no unified rendering and in our opinion this is not correct.
    SCN provides much information about the various rendering problems that exists in the use of Internet Explorer in combination with the SAP Portal. However, it is unclear to us where to start with the analysis of this problem.
    Answers / suggestions to the following questions will be highly appreciated:
    Is it correct that the portal by default should make use of UR when the SAP Gold Reflection theme is used?
    Is the difference of rendering caused by the difference in the versions of the EP BASIS / EP RUNTIME? (DEV portal has higher SP/patch level than LAB);
    How to investigate this issue further and finally solve it?
    Thanks in advance!
    Kind regards, Allan

    Hi Allan
    I hope you are well and many thanks for using the SAP Discussion Forums .
    Ok firstly in relation to this particular query, you can find additional information in the following documentation SAP Note:1852400 - UI theme designer (main note) .
    Regarding the GOLD Reflection theme from a general perspective this is supported only alongside the UFP framework.
    SAP Gold Reflection supports only Unified Rendering Lightspeed
    In relation to your two other queries. Could you kindly clarify which particular version of IE you are presently running and also if compability mode is presently enabled/disabled?
    Reference Documentation Look & Feel, Framework Pages and Portal Navigation
    http://scn.sap.com/docs/DOC-23058
    Kindly update me as per your findings.
    Kind Regards
    Troy Cronin - Enterprise Portal Support Engineer
    Follow - Troy Cronin

  • How to compare between two versions of template project???

    Dear All,
    We are doing some cleanup activity in our solution manager system. For this actually we have created the replica of this project from production system to a sandbox system. We can do the cleanup of this project and can transport this new project to our production system and can move on.
    But the pbm we are facing now is, how do we bring in the data captured or added to the production system after we have copied it to the sandbox system?
    Can anybody throw in some light into this issue?
    We tried the option of creating different version for the template and using the sa_project_upgrade transaction to compare between two versions of the template using "Current Version in Project" option. Not sure whether this will work out.
    {{We thought that if we try in this way, we can find the difference between the two versions of the template project, and from there, might be we can bring in the new changes into our new project manually. We do agree that this is not the right approach.}}
    But the end result we got was like we got the information regarding where all there is the difference between the current version in the template project to that of the original(in our case it checked against BPR as we selected the scenarios from BPR for this template). But what we expected was a difference between two versions of the template.
    Pls help. Pls make a try to help. Any thoughts in this direction will help us to move forward.
    Any info will be suitably rewarded.
    best regards,
    Krishna.

    Hi Andreas,
    Thanks a lot for your immediate reply.
    I too had that doubt that my appraoch will not work. But wanted to get confirmation that it will not work. Also wanted to know about any other approach. Thank you for providing me with some alternative approach.
    I tried the option suggested by you. But while running the comparison report for the newly copied project with the option "New Version of Original", I am getting the below error. I do agree that this approach should work. But for some reason I am getting the below error. Can you pls look into the same and help me out.
    Internal error
    Message no. AI_COMPARE006
    Diagnosis
    An unexpected error has occurred in:
               program CL_SA_PROJECT_UPGRADE_ONLINE==CP
               include CL_SA_PROJECT_UPGRADE_ONLINE==CM002
               line                                                  102
    Procedure
    Restart the transaction. If the problem persists, check if a SAP note is existing for this problem. If not please send a message to the SAP hotline.
    Thanks a lot in advance.
    best regards,
    Krishna.

  • How to update a package between two versions

    I have a package that has two versions, for example: app_1.0 and app_2.0. How can I update the app_2.0 to a system that already installed the app_1.0. I want to overwrite the app_2.0 to the app_1.0 instead of installing another instance of app_2.0.
    Any reply is appreciated. Thanks.

    CityCat wrote:
    Hi - i bought my MAC in Australia…
    There's your problem, try turning it upside down.
    May I suggest a work around.
    I don't know why you want to put a space between the numbers and the percentage sign as that is not standard practice, but:
    +Select last number and % > Inspector > Text > Text > Spacing > Character > drag to the right+
    Peter

  • Symbol pollution between two versions of a library

    I am having problems with a library that is calling a function defined within itself from a different version of the library.
    My company has a core library (let's call it libcore) that handles abstracting across platforms a number of common, low-level functions. At some point in our history, we decided to start supporting Unicode for a toolkit used by third party developers. To accomplish this, we took our old library, redefined uses of char * to a custom string type and conditionally compiled the library to create a version that took in char *'s and a version that took in wchar_t *'s.
    So, we have libcoreA.so and libcoreU.so. Our third party app loads the Unicode version of our library which dynamically loads a list of file format libraries which all depend on the Ascii version of our library. In this process, the file format libraries call a string copy function from libcoreA which is supposed to call a string length function from libcoreA.
    However, in the call stack for a crash, we see:
    [1] custom_strlen (from libcoreU) <-- Bad symbol! No biscuit!
    [2] custom_strdup (from libcoreA)
    [3] file_format_lib_setup (from file format library)
    [4] init_format_list (from libcoreU)
    [5] get_list_of_formats (from application)
    All of these libraries are compiled with "-Bgroup -z defs" to avoid confusion. Usually, when we leave this out, it doesn't even run or it makes a mistake during a call from one library into another, but I've never seen this happen before with the Ascii lib trying to call a function within itself.
    The top level application isn't compiled with "-Bgroup -z defs" because it can't be. (It's a MainWin compiled COM app and is always going to be missing mainwin_init. I don't even want to go there.) However, in the past, this has never caused a problem. The application links with libcoreU and then later dynamically loads and initializes libcoreA on its own. The obvious question is, "What have you changed?" Unfortunately, I don't know what has changed that could cause this.
    Any suggestions? This problem is driving me mad because I can't figure out a way to debug it. Applications that load either the Ascii OR the Unicode libs don't have problems. Applications that load both suddenly do with this release.

    You know, I think it sometimes takes making a fool of yourself publicly to finally catch your errors. I have a problem in my make file that was making the Ascii version of the library compile without "-Bgroup -z defs".
    Ignore this thread.

  • Functionality comparition between trial version and licensed version

    I downloaded "Sun Java System Application Server Standard Edition 7", it is trial download. Could somebody tell me if this trial download functionally equivalent to the licensed version.
    After 60 days installation, Can I still use it, and how ?
    thanks

    Hi Zhen,
    Refer http://docs.sun.com/source/817-2161-10/trFAQs.html
    -Amol

  • Moving a project between two versions of FCP- Home and College

    Hope someone can help. We're editing a project on an iMac at home, and a G5 at college. Our iMac is running FCP 5, the college ones are still on FCP 4. If we open the saved files, from an external HD, that we have been working on in college, we cannot then open those files in college again. We don't have version 4 to install on our machine, and the college won't buy version 5. Is there any way artound this problem, or do we have to work on the project in sections, then assemble the final peice on the iMac? We can get advice and help in college, and we need our teacher to help us with certain sections, so we need to be able to open up the project in college too, after we've worked on it at home.
    Any help would be greatly appreciated.

    Yeah, no XML in version 4.0 - it was introduced in 4.1 (which, unlike the upgrade from 5.0.x to 5.1, is simply a download from Apple, if the school will let you update).
    In terms of what version of XML you should use:
    Version 1 for FCP 4.1 to 4.5 (aka FCP HD)
    Version 2 for FCP 5.0.0 to FCP 5.1.1
    Version 3 for FCP 5.1.2 to 5.1.4
    (Version 4 for FCP 6.0)

  • Bonjour Chat between Computers on 10.3 and 10.4

    Is there any way to chat between two computers on the same network that aren't using the same version of OS X? Such as one using 10.4 and another using 10.3?
    Dean

    Hi,
    Yes it will work.
    The clincher is if you have changed the Mac's default workgroup.
    This is the Subnet name. It is set in Directory Access in Applications/Utilities.
    Select the SMB line.
    Hit Configure (Unlock padlock first if required)
    The default is actually WORKGROUP on Macs. It is MSHOME on PCs.
    Next thing to check is is the Mac Firewall On ?
    If so this needs to have the iChat Bonjour/Rendezvous option enabled at least. I would recommend setting all the iChat ports in a separate setting any way as even the Bonjour/Rendezvous setting does not include port 5353 which is also needed for connections through s routing device.
    See http://www.ralphjohnsuk.dsl.pipex.com/page4.html#_ports
    3:21 PM Saturday; November 11, 2006

  • Best Practice for WSDL Generate Proxy Class for Web Service with Two Versions

    Dear All
    Thank you in advance for you help.
    I would like to generate proxy classes for same function but with two versions.
    Old version web service (v23.2) is used for stable modules in a project which is not going to modify.
    However, enhancement is added in new version web service (v24) and is going to use in any future modules.
    For example,
    wsdl.exe -o="TestProxy.cs" -l:CS -n:Test -sharetypes https://community.workday.com/custom/developer/API/Notification/v23.2/Notification.wsdl https://community.workday.com/custom/developer/API/Notification/v24.0/Notification.wsdl
    It generates similar classes with an '1' added at the end of the class name.
    ublic partial class Event_TargetObjectType {
    private Event_TargetObjectIDType[] idField;
    public partial class Event_TargetObjectType1 {
    private Event_TargetObjectIDType1[] idField; ...}
    Since the function inside some class is the same, is it possible for WSDL.exe to generate proxy classes automatically that if the class is the same, then generate one class only (sameFunction())  but if it detects the class is different, then add '1'
    to the end of class name (differentFunction() and differentFunction1())
    i.e.
    public class sameFunction()
    public class differentFunction()
    private int a;}
    public class differentFunction1()
    { private int b;
    Best Regards
    mintssoul

    Hi  mintssoul,
      As per this case, I have shared corresponding details below :
    1.As far as I know, WCF doesn’t support method overloading directly
    2.Because WSDL doesn’t support method overloading (not OOPs).
    3.WCF generates WSDL which specifies the location of the service and the operation or methods the service exposes.
    4.WCF use Document/Literal WSDL Style : Microsoft proposed this standard where the soap body element will contain the web method name.
    5.By default all the WCF services conform to the document literal standard where the soap body should include the method name.
    6.but you can differ the method in the same manually by using Name attribute like below 
    For example:
        [OperationContract(Name="Integers")]
        int Display(int a,int b)
        [OperationContract(Name="Doubles")]
    double Display(double a,double b)
    7. Or I suggest you that can use svcutil to map multiple namespaces for generating wcf service proxies .
        for more information about this, refer here :
    http://stackoverflow.com/questions/1103686/use-svcutil-to-map-multiple-namespaces-for-generating-wcf-service-proxies

  • How to check differences between two bpel jar files

    Hi,
    Can some one please suggest, how to check the differences between two versions of a BPEL process jar files.
    Thanks in advance!

    Hi,
    Try this,
    SELECT   cons.owner AS child_owner, cons.table_name AS child_table,
             cons.constraint_name constaint_name,
             cons.constraint_type constraint_type, col.owner parent_owner,
             col.table_name parent_table, col.column_name column_name
        FROM dba_cons_columns col, dba_constraints cons
       WHERE cons.r_owner = col.owner
         AND cons.r_constraint_name = col.constraint_name
         AND col.owner = 'MY_USER'
    ORDER BY child_table;Thanks,
    Shankar

  • Two versions of Robo on one machine

    I have RoboInfo 5 and RoboHelp 7 installed on my computer.
    RoboInfo publishes to RoboEngine on Win 2000 server. RoboHelp 7
    publishes to RoboHelp 7 Server on Windows 2003 server.
    I recently upgraded to a newer computer. We re-installed
    RoboHelp and then later installed RoboInfo again. Since doing this,
    I'm not able to publish our RoboHelp projects. The server crashed,
    and so far we haven't been able to get it going again.
    Don't know if it had anything to do with re-installing the
    software, but I think I remember reading somewhere in the forums
    about conflicts that can arise between two versions of Robo on the
    same machine. Is this a possibility, and is it recommended that
    they be installed on different machines?
    It is interesting that now in my RoboHelp projects folder,
    the .xpj project icons show the RoboInfo icon, not the RH7 icon
    (and RoboInfo was installed last).

    There can be conflicts between different versions but you had
    both working OK before. I think the problem here is the order in
    which you installed them.
    As with most software that permits multiple versions to run,
    the installation procedure is earliest first.

  • Pass Values between two Function Modules RFC in Portal

    I need to pass values ​​between 2 FM RFC.
    I have an implicit enhancement in HRMSS_RFC_EP_READ_GENERALDATA RFC function module.
    PERNR LIKE  PSKEY-PERNR
    ENHANCEMENT 1  Z_ESS_EXPORT_PERNR.    "active version
      EXPORT pernr to memory id 'PMK'.
      set parameter id 'PMK' field pernr.
    ENDENHANCEMENT.
    On the other hand an RFC function module that has the code:
            pmk    LIKE PSKEY-PERNR,
            pmk_2  LIKE PSKEY-PERNR.
      get parameter id 'PMK' field pmk.
      IMPORT pmk_2 FROM MEMORY ID 'PMK'.
    When the execution is done in development environment, the modules function at the level of R3, the "get parameter id" works only if the debbuger is classic, otherwise not work. The Import to memory id never works.
    In the environment of quality, r3 do not work any of the 2 sentences. If run from portal (which is as it should be) does not work.
    Thanks if anyone can help me get the problem. Both function modules are executed at the portal.
    Regards
    Edited by: Daynet1840 on Feb 15, 2012 2:02 AM

    When the execution is directly in r3, in development environment or quality, does the set / get parameter id. Export / Import memory id not work.
    But if the FM are called from the portal, does not the set / get parameter id.
    I tried changing the sentence as I indicated harishkumar.dy still not working.
    Madhu: They're in different function groups, one is standard and the other not.
    Regards
    Edited by: Daynet1840 on Feb 15, 2012 3:08 PM
    Edited by: Daynet1840 on Feb 15, 2012 3:11 PM

  • How to create a chat between portals

    Hi,
    I would like to know if it's possible to create a chat (into Collaboration) between two portals. For example, to communicate a portal from Spain with another portal in EEUU.
    if so, how could I create it? Do I need federate portals for it?
    Thanks in advance,
    Samantha.

    Activate the collaboration launch pad and do the following ...you should have the chat session working.....
    Instant Messenger
    In order to be able to use the Real-Time Collaboration functions (sending instant messages or sharing applications), you must activate the RTC Session Manager after installing Collaboration.
    To activate the RTC Session Manager, perform the following steps:
    1.     Go to the default framework page.
    Enterprise Portal     Portal Content  ® Portal Users ® Standard Portal Users ® Default Framework Page.
    2.     Double-click Default Framework Page.
    3.     Select the Tool Area iView checkbox and choose Open.
    4.     Choose Show All in the Property Editor drop list menu.
    5.     Expand the Enable Real-Time Collaboration properties. 
    6.     Select Yes radio button.
    7.     Choose Save.
    8.     Choose Close.
    9.     Choose F5 to refresh your portal screen.
    Two synchronous collaboration service providers are included with the initial installation of the Collaboration for SAP Enterprise Portal. The initially installed synchronous collaboration service providers are:
    •     Real Time Collaboration (SAP RTC), which provides application sharing.
    •     WebEx, which provides the WebEx meeting center service.
    Upon installation of Collaboration for SAP Enterprise Portal, synchronous collaboration services are not activated. You must activate synchronous collaboration service types before they can be used.
    10.     Review the list of activated service types.
    Go to System Administration &#61664; System Configuration &#61664; Knowledge Management &#61664; Collaboration &#61664; Synchronous Collaboration Services &#61664; Activated Service Types
    11.     Choose New button.
    12.     Check the RTC_ApplicationSharing checkbox.
    value points if this helps you !!

  • Functional and technical comparisons between JDE version A 7.3 and A 9.3

    Hi,
    We need to convert the modules already written/designed in JDE v A 7.3 to JDE v 9.3.
    So I need to discuss with you people the functional/technical comparisons between these two versions.
    I have gone through these links to know something:
    http://www.teamcain.com/media-center/blog/oracle%E2%80%99s-jd-edwards-enterpriseone-91-and-jd-edwards-world-a93-%E2%80%93-exciting-news-ora-0
    http://www.oracle.com/us/products/applications/jd-edwards-world/jde-world-a9-3-1596334.html
    Kindly advise on it.
    Thanks,

    Windows on Intel Macs
    There are presently several alternatives for running Windows on Intel Macs.
    1. Install the Apple Boot Camp software.  Purchase Windows XP w/Service Pak2, Vista, or Windows 7.  Follow instructions in the Boot Camp documentation on installation of Boot Camp, creating Driver CD, and installing Windows.  Boot Camp enables you to boot the computer into OS X or Windows.
    2. Parallels Desktop for Mac and Windows XP, Vista Business, Vista Ultimate, or Windows 7.  Parallels is software virtualization that enables running Windows concurrently with OS X.
    3. VM Fusionand Windows XP, Vista Business, Vista Ultimate, or Windows 7.  VM Fusion is software virtualization that enables running Windows concurrently with OS X.
    4. CrossOver which enables running many Windows applications without having to install Windows.  The Windows applications can run concurrently with OS X.
    5. VirtualBox is a new Open Source freeware virtual machine such as VM Fusion and Parallels that was developed by Solaris.  It is not as fully developed for the Mac as Parallels and VM Fusion.
    Note that Parallels and VM Fusion can also run other operating systems such as Linux, Unix, OS/2, Solaris, etc.  There are performance differences between dual-boot systems and virtualization.  The latter tend to be a little slower (not much) and do not provide the video performance of the dual-boot system. See MacTech.com's Virtualization Benchmarking for comparisons of Boot Camp, Parallels, and VM Fusion. Boot Camp is only available with Leopard or Snow Leopard. Except for Crossover and a couple of similar alternatives like DarWine you must have a valid installer disc for Windows.
    You must also have an internal optical drive for installing Windows. Windows cannot be installed from an external optical drive.

  • Federated portal network to set a chat between different portals

    Hi,
    We need to set a chat between <b>two different portals</b> (each portal is placed in a different geographical location). Our doubt is if it's possible create the chat using a federated portal network.
    We think if we create the chat in the producer portal (enabling collaboration launch pad, instant messaging, etc. etc.) and after we use <b>remote content copy</b>, a user from the consumer portal can access to chat configured in the producer using producer's iViews and collaboration services.
    Is this scenario possible? Do we have to use remote role assigment instead of remote content copy?
    Thanks in advance,
    Samantha.

    There are two discussions going on same topic, we are heading nowhere, please take a part.
    How to create a chat between portals
    /thread/436045 [original link is broken]
    Regards,
    Nitin

Maybe you are looking for