Virsa CC 5.2  Backend sync - No destination system

I have installed Virsa CC 5.2, I am trying to complete the post installation steps as mentioned in the guide as:
Config tab -> Backend Sync -> Rule Sync
But no destination system exists in the drop down list.
There is only one system configured. Also, would like to know if any extra RFC/JCo is required apart from the ones mentioned in the guide to get this functionality working.
This is Urgent

Did you have a look at the guidance provided in [SAP Best Practices for GRC Access Control 5.2|http://help.sap.com/bp_grcv152/GRC_US/HTML/index.htm]? Leveraging the key learnings and proven implementation know-how of SAP GRC customers and partners, the new SAP Best Practices provide SAP GRC Access Control customers with common out-of-the-box business processes and scenarios, pre-configuration settings and support, methodologies and documentation.
All capabilities of GRC Access Control are covered. That certainly includes compliant user provisioning aka AE.
SAP Best Practices for GRC Access Control provide a standardized approach to implement GRC Access Control. The result is a fully working Access Control implementation that ascertains early project success. The [Quick Guide|http://help.sap.com/bp_grcv152/BBLibrary/Documentation/GRC_Quick_Guide_EN_US.doc] provides introductory information for consultants.

Similar Messages

  • Portal application connecting backend SAP R/3 system

    Hi All,
               I am developing one portal application through NWDS. It's JSPDYNPage component.The applications functionality is basicaly is to connect it to backend SAP R/3 system & fetch some data in aparticular table & display that data in a tableview format on one JSP& also when i click any row of the tableview then details of that row should get displayed on the next JSP. So i reached till develpoing a code that connnects to Backend SAP R/3.(Basicaly coding of connection part is done). Now i need to test this code, to check whether it is fine or not? NWDS doesnt give nay error, not compile also or not runtime error also. It simply shows the output as a blank page, where it is supposed to display one line of text in textview(i coded this in my JSP).But as i said it displays a blank page. i tried to debug the application , but debugging also not worked.I performed the debugging twice in right way. The code was not debugged, it run the same way as it normally runs when debugging is off & shown the blank page. I also have done all the the settings or prerequisites for debugging properly. I am stuck at this point now.search many documents , but no relevant help has been received. Can anyonehlep me with this. i am putting below the code for JSP, JSPDYNPAGE component as well as portalapp.xml. Can anyone guide me with this, whhere i am making mistake? what should i change in this?
    JSPDYNPAGE code
    package com.lti.portal;
    //import java.util.ArrayList;
    import com.sapportals.htmlb.*;
    import com.sapportals.htmlb.enum.*;
    import com.sapportals.htmlb.event.*;
    import com.sapportals.htmlb.page.*;
    import com.sapportals.portal.htmlb.page.*;
    import com.sapportals.portal.prt.component.*;
    import java.util.ArrayList;
    import com.sap.mw.jco.IFunctionTemplate;
    import com.sap.mw.jco.JCO;
    import com.sun.corba.se.internal.core.Response;
    public class Connection_R3 extends PageProcessorComponent {
    public DynPage getPage(){
    return new Connection_R3DynPage();
    public static class Connection_R3DynPage extends JSPDynPage{
    private Conn_R3 myBean = null;
    public JCO.Client mConnection;
    public JCO.Repository mRepository;
    public ArrayList al = new ArrayList();
    public String output;
    public String Ans;
    public static String BEAN_KEY="myBean";
    public void doInitialization(){
    IPortalComponentRequest request =(IPortalComponentRequest) this.getRequest();
    IPortalComponentContext context = request.getComponentContext();
    IPortalComponentProfile profile = context.getProfile();
    //create & initialize the bean.
    Conn_R3 test_bean= new Conn_R3();
    test_bean.setans("3");
    // put the bean into application context.
    context.putValue(BEAN_KEY,test_bean);
    conn();
    //IPortalComponentResponse res = (IPortalComponentResponse)this.getResponse();
    //for(int i=0;i<al.size();i++)
    //res.write(" "+al.get(i).toString());
    public void doProcessAfterInput() throws PageException {
    public void doProcessBeforeOutput() throws PageException {
    this.setJspName("Connection_R3.jsp");
    public ArrayList conn() {
    IPortalComponentRequest request =(IPortalComponentRequest) this.getRequest();
    IPortalComponentContext context = request.getComponentContext();
    IPortalComponentProfile profile = context.getProfile();
    Conn_R3 sample_bean = new Conn_R3();
    sample_bean.setans("5");
    //context.putValue(BEAN_KEY, sample_bean);
    //r3-accessing
    //connect_to_r3();
    try {
    // Change the logon information to your own system/user
    mConnection = JCO.createClient("800", // SAP client
    "********", // userid
    "******", // password
    null, // language
    "*******", // application server host name
    "**"); // system number
    mConnection.connect();
    //System.out.println(mConnection.getAttributes());
    mRepository = new JCO.Repository("ABC", mConnection);
    } catch (Exception ex) {
    ex.printStackTrace();
    System.exit(1);
    JCO.Function function = null;
    JCO.Table codes = null;
    try {
    function = this.createFunction("ZSAMPLE");
    if (function == null) {
    System.out.println("ZSAMPLE" + " not found in SAP.");
    System.exit(1);
    String num1 = "7";
    String num2 = "9";
    //String ans;
    function.getImportParameterList().setValue(num1,"My_import");
    function.getImportParameterList().setValue(num2, "My_Import");
    mConnection.execute(function);
    Object name =function.getExportParameterList().getValue(Ans);
    output=name.toString();
    sample_bean.setans(output);
    //sample_bean.setans(output)
    //al.add(name);
    //store values into strings
    //pushing of values we get from r3 into awt
    } catch (Exception ex) {
    ex.printStackTrace();
    System.exit(1);
    disconnect_r3();
    return al;
    public void connect_to_r3() {
    public JCO.Function createFunction(String name) throws Exception {
    try {
    IFunctionTemplate ft =
    mRepository.getFunctionTemplate(name.toUpperCase());
    if (ft == null)
    return null;
    return ft.getFunction();
    } catch (Exception ex) {
    throw new Exception("Problem retrieving JCO.Function object.");
    public void disconnect_r3() {
    mConnection.disconnect();
    //**********************<b>Code for BEAN</b>****************************
    package com.lti.portal;
    import java.io.Serializable;
    public class Conn_R3 implements Serializable {
    public String answer;
    public void setans(String a)
    answer=a;
    public String getans()
    return answer;
    ///////////////////////<b>Code for JSP</b>*****************************
    ><%@ taglib uri= "tagLib" prefix= "hbj" %>
    <jsp:useBean id="myBean" scope="application" class="com.lti.portal.Conn_R3" />
    <hbj:content id="myContext" >
    <hbj:page title="PageTitle">
    <hbj:form id="myFormId" >
    <hbj:textView
    id="Welcome_message"
    text="<%=myBean.getans()%>"
    design="STANDARD" >
    </hbj:textView>
    </hbj:form>
    </hbj:page>
    </hbj:content>
    /////////////////////////////////<b>Portalapp.xml</b>*****************************************
    application>
      <application-config>
        <property name="PrivateSharingReference" value="com.sap.portal.htmlb"/>
      </application-config>
      <components>
        <component name="Address_comp">
          <component-config>
            <property name="ClassName" value="com.lti.portal.Address_comp"/>
          </component-config>
          <component-profile>
          <property name="tagLib" value="/SERVICE/htmlb/taglib/htmlb.tld"/>
          </component-profile>
        </component>
      </components>
      <services/>
    </application>

    Hi,
       Do onething, please refer this <a href="http://www.i-barile.it/SDN/JCoTutorial.pdf">JCo Tutorial</a> as well as <a href="http://www.apentia-forum.de/viewtopic.php?t=1962&sid=9ac1506bdb153c14edaf891300bfde25">Link</a> also.
    Regards,
    Venkatesh. K
    /* Points are Welcome */

  • Idoc status green but data not posted correctly to destination system.

    Hi,
    Can anyone help me out with idoc problem that I am facing.
    The problem has come out with outbound idoc.
    The status of the idoc is green when it has been sent but the objects that has been sent with that idoc are not getting posted in the destination system.Some of them are posted correctly but some of them are not.
    What may be the reason behind this.
    Regards,
    Rachana.

    Good morning
    What was the resolution here? We are siitng with the same problem, but IDoc's are correct, but data packet not processed.
    Thanks, have  a nice day
    Cj

  • Copy Organisational Structure to Destination System

    Hello Expert,
    could anyone please let me know how I can copy the assigend OM - Structure to the personal no?
    My settings in the step: "Transfer selection criteria"
    Objecttype: P
    Objectid: 123456
    Evalutation Path:P-S-C-O
    Additiona evaluation path:
    P-S-O-O
    Rootoptions:
    Without new root.
    Could anyone please give me a helping hand?
    The Data Transfer works fine, but I could not find any org unit in my destination system.
    The personal no is assigned to the org - unit ID 6000000 in the sender system.
    If I run transaktion ppose i am not able to find the org unit.
    The OM in my destination system is completely empty.
    Is it necessary to create a new root object initialy????
    Thanks a lot
    Marco

    Hello Marco,
    In activity 'Transfer Selection Criteria'  for PD selection, what are delete options  and target options you have selected?
    In Target Options, if you select Transfer 1:1 without change( must be in range), then all the object would be transferred correctly.
    OR
    If you don't  follow the above selection, then you should take care that all the objects are transferred by involving the required infotypes or objects for transfer.
    Also you can select 'Delete selected tables for given objects' in the Delete options to take care of it.
    Regards,
    Prasanth

  • How to create a backend administrator content management system?

    How to create a backend administrator content management system using SQLyog515 and JSP only.
    Can give suggestions?
    Thanks,
    JSPnewbie*
    Message was edited by:
    Liting_JSPnewbie

    Have a look at Perch
    Perch - The really little content management system (CMS) - Perch
    It requires a php/mysql database to run but the tables and set up are all automated through the Perch set up files - you just need a server that runs php/mysql. It works on the same principals as the one Ben suggested but its a lot cheaper for a one off site - however if you intend to build more CMS driven sites the one Ben suggested might be more financially viable in the long run.
    The nice thing about Perch CMS is it fits in with your workflow unlike Wordpress/Joomla where you have to jump through hoops to change anything.
    Plus I think you can take Perch for a spin before buying (or at least you could when I was exploring CMSs) - you can't with Power CMS. I never investigated Power CMS beacuse I would not buy something before trying it. It looks good but it might be a bit dated as it doesnt seem to be in continuous develoment. Perch is in a constant state of development and the guys are working to make it better on a daily basis.

  • IDOC not reaching destination system

    Hello,
      I am trying to send DOCMAS type IDOC from one SAP sys to another SAP sys.The IDOC has the status 03 (The IDoc was sent to an SAP system or an external program via a transactional RFC) but i dont see the IDOC in the target sys.
    Please let me know what could have gone wrong.
    Thanks,
    Rakesh.

    Hello Rakesh More ,
    First let us know how you corrected the previous error???. What was wrong?
    Then talk about the  next issue.
    If you maintain properly the Inbound IDOC partner profile this error should not come. Make sure you  have the below things set-up properly:-
    1) In the inbound IDOC in the destination system there should be a partner receiver in the IDOC control data. Make sure you have maintained the partner profile for that partner and for the partner type as well.
    2) For the partner make sure you have maintained the proper inbound mesaage type and process code properly.
    Thanks,
    Greetson
    Edited by: Greetson Shunmugasundaram on Aug 1, 2011 9:47 PM

  • Can't access dot mac sync options in system preferences

    Hi,
    I noticed that my iMac (G5 - 10.5) was slowing down horribly. In the Activity Monitor it turned out that the dotmacsyncclient was using up 80-90% CPU. Syncing did work. When I wanted to check to .Mac setting I couldn't get into the Sync page. System Pref just crashed.
    So I decided to delete all the sync settings from the Library (SyncServ). After a reboot the system seems to works just fine. The syncclient doesn't use up the cPU anymore so that's good.
    But I still cannot access the .Mac sync options. System Prefs keep crashing. So not I cannot reset my sycing preferences!
    Anyone has any idea how to solve this?
    Thanks!
    Marco

    Well, it's nice to know that I'm not alone in this issue too. This started cropping up after the last major update to Leopard. I cannot reset .Mac sync services either in System Preferences or through the icon in the uppper right hand bar of the screen. Each time gets me a spinning beach ball which hangs the system and causes me to do a Force Quit.
    Force Quit always shows it to be a non-responsive program. All other aspects are fine. I've even gone into iSync and reset the preferences there with no apparent change. I have no ideas on this one and have been searching for an answer myself - hopefully someone (or Apple) will have one...crash logs are not giving me anything to point to either...

  • Destination system cannot be used for classic qRFC by activating integration models

    Hi All,
    I am trying to connect ECC Release 702 to SAP TM 8.0 but by activating integration models(CFM2) i got following runtime error:
    Error analysis
        Short text of error message:
        Destination TMCLNT100 cannot be used for classic qRFC
        Long text of error message:
        Technical information about the message:
        Message class....... "SR"
        Number.............. 320
        Variable 1.......... "TMCLNT100"
        Variable 2.......... " "
        Variable 3.......... " "
        Variable 4.......... " "
    any one has idea how to solve that?
    Thanks a lot!
    Kind regards
    RW

    RW,
    I am definitely not an expert on SAP Transportation Management.  However, maybe your destination system has been set up as bgRFC instead of qRFC?
    bgRFC (Background Remote Function Call) - Connectivity - SAP Library
    Best Regards,
    DB49

  • SAP PCo 2.1 - Error Retrieving destination systems

    Hi All,
    I've configured source and destination systems successfully in PCo Mgmt console and created an agent instance.
    While creating notification under agent instance, I'm getting an error - "Error retrieving destination systems \[key not valid for use in specified state\]".
    Can anyone guide over this error ?
    Thanks and Regards,
    Sumit.

    Hi Tony,
    From your error description, I suspect that the management console is starting without administrative priviledges. Can you check and make sure you are starting the management console with administrator rights?
    You may also want to take a look at the PCo Security Guide available at [http://help.sap.com].
    Kind Regards,
    Diana Hoppe
    Edited by: Diana Hoppe on May 23, 2011 8:21 AM

  • How to sync or backup System Preferences

    I have an iMac with Yosemite now, but come from a Windows environment. In Windows 8 or higher, there is a profile sync feature included, which syncs every single System Preferences setting (such as keyboard layout, time zone, display settings, sharing settings, sound settings, power settings). It is synced over internet on the cloud (via the Microsoft account), and it means that when getting a new or second or third PC, all settings would be set within seconds or minutes after installing the OS.
    I have now spent an hour to set my settings in System Preferences but am getting another Mac soon. How can these settings be replicated without me having to enter them manually. It "seems" that these profile settings are NOT part of iCloud (couldn't find any reference to it) and that you can't simply "back them up". Is this correct? Are there other ways?
    When using Time Machine, do these settings get backed up and can they easily be restored to a DIFFERENT Mac, WITHOUT restoring anything else (so no files, documents or apps)?
    So we're talking about copying System Preferences from one Mac to a different Mac (not on the same Mac).

    Hi fredz85,
    Thank you for using Apple Support Communities.
    From your post I understand that when you have a new Mac, you just want to transfer over your computer settings from your previous Mac.  You can accomplish this by backing up your original Mac with Time Machine, and then using Migration Assistant to restore just your computer settings to your new Mac.  To learn more about this process, take a look at the article linked to below.
    OS X Yosemite: Transfer your info from a computer or storage device
    Cheers,
    Alex H.

  • FI Doc does not create CO Document in destination system

    We have implemented CFM on ECC6 which is posting a FI Doc to a destination FI System which is on 4.7. The FI document gets created successfully but the CO Document is not created. CO and PCA is active in the Destination system.
    Can anyone please tell me what can be the reason of the same.
    FI IDoc FIDCC1, FIDCCH, CODCMT posted to Destination System.

    Hi,
    look here http://help.sap.com/saphelp_nw04/helpdata/en/0b/2a620b507d11d18ee90000e8366fc2/frameset.htm
    and oss note 114814
    hope that helps
    Andreas

  • Turbo wont sync with uconnect system, other phones will work (samsung S5 and Apple iPhone 6) but this one wont

    Phone book  will not sync with Uconnect system, Uconnect website states that it will sync, have tried other phones such as Samsung S5 and Apple Iphone 6 Plus but the Turbo will down Down the phone book

    Jeez, the keyboard lags behind so much and the keys seem offset

  • I have a previously installed app's mobileme sync pref. still in my mobileme sync list in system prefs. Any suggestions on how to remove this?

    I have a previously installed app's mobileme sync pref(com.panic.transmit.Favorites) still in my mobileme sync list in system prefs. Any suggestions on how to remove this?

    Thanks again for the idea. I just tried it and it didn't work... sort of. iTunes is syncing the photos because I can see that it's optimizing them and syncing them without crashing. Then it says that my iPhone sync is complete and I can safely remove iPhone. But again, when I go into the Camera/Photos app nothing. When I bring up the camera and then touch the the little double square icon on the bottom left the only thing that comes up is a title at the top that says Camera Roll. Then in the middle of the screen is a big icon of a camera and the words No Photos under that. There's no way for me to go to a list of my iPhoto albums. UGH! What's up with this?

  • CCC or Disk Utility to clone a Mac HD of one new iMac to another, over ThunderBolt, we are getting I/O errors. Even though the clone fails, the destination  system does boot and log in, however, the logins take a very very very long time.

    When using CCC (Carbon Cophy Cloner) or Disk Utility to clone a Mac HD of one new iMac to another, over ThunderBolt, we are getting I/O errors. Even though the clone fails, the destination  system does boot and log in, however, the logins take a very very very long time.
    Thoughts.
    Edit: Already ran Disk Utility. Also reinstalled a fresh OS on top of the cloned OS and it seemed to remedy the problem. Then, cloned to next machine in the row of the lab. Same problem.

    OK, by that I assume that you used Disk Utility to repair the subject disk and it reported "The volume (name) appears to be OK" in green.
    Also verify you followed the instructions here: http://help.bombich.com/kb/usage-scenarios/i-want-to-clone-my-entire-hard-drive- to-a-new-hard-drive-or-a-new-machine
    If so, the Thunderbolt connection begins to look suspicious.
    Reinstalling OS X subsequent to the "clone" operation may be an acceptable workaround but you should not have had the I/O errors you describe, nor should the login times (subsequent to the initial login, that is) be unacceptably long. It calls into question the integrity of all the information that was transferrred.
    I'll try to attract the attention of a CCC expert who will likely provide more competent assistance. You can also try the Bombich support site: http://help.bombich.com

  • Syncing Up Mail systems

    My e-mail is thru Cox Communications. Depending on the situation, my MAC will attempt to send e-mail thru the MAC Mail....and fail ("The certificate for this server is invalid"). Is there a means to sync up (?) my MAC e-mail so when it wants to send it via MAC it can and when it wants to send it via Cox it can also?
    Thanks,
    Bob

    I would also like to sync with two systems: one *at home*, on my Mac, and another *at work*, with Outlook on a PC.
    However *I just want to sync the calendars and the addresses*.
    And this does not working properly. Each time I change from one computer to the other, it is like the computer discovers a new iPhone. I have to set again the parameters in iTune and I am always asked to either replace the data from the iPhone or to merge them. I select this later solution of course. Then I always find again the discarded appointments, double addresses ... I often also find two times the same address (or phone numbers, …) for one contact, maybe when I modified it either on the iPhone or on the computer.
    I would also like two have to calendars: one private, synchronised between my iPhone and my home computer only and one professional one that synchronises with my iPhone and both my computers: the one at home and the one at work. This does also not work, because if I deselect manually one of this calendar in iTune in order not to synchronise it, iTune will discard it from the iPhone and not from the computer ...
    Does somebody have found any work around?
    Thank you for any support or idea!!!

Maybe you are looking for