GRC AC 5.3 RAR: Change system connector entry

Just a tip:
I had a problem after upgrading from RAR 5.2 where the previous connector entry wasn't named the same as it is in the SLD, so I had to change the connector.  We have a lot of information in our RAR system, so I didn't want to clean the database and start over, I just wanted to change the name of the connector.  Therefore, I used the following SQL query to rename it across the whole application.  You can input the RENAMED SYSTEM to whatever you want your rename to be, and of course input the SID of the system for the database schema.  This is for SQL Server 2005, but you can adapt it to your flavor.
update SAP<SID>DB.VIRSA_CC_ACTRULE set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_ACTUSAGE set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_ACTVL set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_ALLASTRUN set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_ALLISTDTL set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_ALTCDLOG set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_ANLACT set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_ANLPRM set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_AUTHMAP set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_CRACT set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_CRACTT set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_CRACTVL set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_CRPRM set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_CRPRMVL set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_CRPROF set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_CRPROFT set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_CRROLE set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_CRROLET set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_CRROLEVL set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_DATAEXD set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_EXLOBJ set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_FLDMAP set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_FUNCACT set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_FUNCPRM set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_FUNCSYS set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_GENACT set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_GENOBJ set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_GENOBJT set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_GENPRM set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_GENUSR set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_GPRMLIST set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_LASTRUN set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_LSYSGRP set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_LSYSGRP set LVSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_MGALERTS set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_MGCRTR set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_MGMTBU set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_MGMTTOT set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_MGRISKD set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_MGRISKS set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_MITRPT set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_MTGENOBJ set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_MTGENOBJH set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_ORAEXT set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_ORGUSERS set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_PRMRULE set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_PRMVL set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_ROLEVL set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_SCHEDFORK set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_SUPP_DET set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_SUPP_HDR set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_SUPP_TEXT set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_SYSCRACT set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_SYSCRACT set PVSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_SYSHMAP set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_SYSRULE set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_SYSSAPOBJ set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_SYSTEM set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_SYSTEMC set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_SYSTEMT set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_SYSUSR set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_TEXTKEY set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_USRMAP set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_XSRULEMAP set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_XSRULEMAP set PVSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_XSRULEMAP set LVSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_XSYSGRP set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_XSYSGRP set XVSYSKEY = 'RENAMED SYSTEM'

Just a tip:
I had a problem after upgrading from RAR 5.2 where the previous connector entry wasn't named the same as it is in the SLD, so I had to change the connector.  We have a lot of information in our RAR system, so I didn't want to clean the database and start over, I just wanted to change the name of the connector.  Therefore, I used the following SQL query to rename it across the whole application.  You can input the RENAMED SYSTEM to whatever you want your rename to be, and of course input the SID of the system for the database schema.  This is for SQL Server 2005, but you can adapt it to your flavor.
update SAP<SID>DB.VIRSA_CC_ACTRULE set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_ACTUSAGE set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_ACTVL set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_ALLASTRUN set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_ALLISTDTL set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_ALTCDLOG set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_ANLACT set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_ANLPRM set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_AUTHMAP set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_CRACT set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_CRACTT set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_CRACTVL set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_CRPRM set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_CRPRMVL set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_CRPROF set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_CRPROFT set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_CRROLE set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_CRROLET set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_CRROLEVL set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_DATAEXD set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_EXLOBJ set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_FLDMAP set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_FUNCACT set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_FUNCPRM set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_FUNCSYS set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_GENACT set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_GENOBJ set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_GENOBJT set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_GENPRM set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_GENUSR set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_GPRMLIST set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_LASTRUN set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_LSYSGRP set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_LSYSGRP set LVSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_MGALERTS set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_MGCRTR set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_MGMTBU set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_MGMTTOT set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_MGRISKD set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_MGRISKS set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_MITRPT set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_MTGENOBJ set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_MTGENOBJH set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_ORAEXT set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_ORGUSERS set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_PRMRULE set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_PRMVL set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_ROLEVL set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_SCHEDFORK set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_SUPP_DET set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_SUPP_HDR set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_SUPP_TEXT set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_SYSCRACT set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_SYSCRACT set PVSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_SYSHMAP set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_SYSRULE set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_SYSSAPOBJ set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_SYSTEM set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_SYSTEMC set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_SYSTEMT set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_SYSUSR set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_TEXTKEY set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_USRMAP set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_XSRULEMAP set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_XSRULEMAP set PVSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_XSRULEMAP set LVSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_XSYSGRP set VSYSKEY = 'RENAMED SYSTEM'
update SAP<SID>DB.VIRSA_CC_XSYSGRP set XVSYSKEY = 'RENAMED SYSTEM'

Similar Messages

  • SAP GRC AC 5.3 RAR Background jobs are cancelled

    Hi Experts,
    we have newly implemented theS AP GRC AC 5.3 RAR  Help me in troubleshooting the Background jobs cancellation in SAP GRC AC5.3 RAR.. we have reported this issue to customersupport they asked us to upgrade the front end  patch level to Sp15, even we upgraded still i have the same problem.. later we upgraded the backend patch  according to the SAP Note. still the problem is not resolved.
    Latest recommendation they are asking us to uninstall the SMD agent.. and also my java control.exe is showing yellow color
    help me how to resolve the issue.??
    Edited by: n.s.k mohan on May 10, 2011 6:21 AM

    Hi,
    Could you please first change RAR log settings to Java logger then take a restart of the system. After that log for your background will start coming in RAR. Then schedule the job if it fails then paste background job log here.
    Also, in future, please raise GRC related issue in GRC forum so that you can get more replies.
    Thanks
    Sunny

  • Running Analysis in GRC AC 5.3  - RAR

    Hi,
    Can anyone let me know how to resolve the issue.
    When i run the Risk Analysis in GRC AC 5.3 - RAR
    Informer>Risk Analysis> Role Analysis--> Execute
    This is the error message it gives:-
    *VIRSAHR_01: Cannot execute BAPI RoleList: Error connecting using JCO.Client: null: Could not create JCOClientConnection for logical System: VIRSAHR_01_MODEL - Model: class com.virsa.cc.modelvirsahr_01.BAPI_VIRSAHR_01. Please assure that you have configured the RFC connections and/or logical system name properly for this model!: Error while obtaining JCO connection.: Failed to resolve JCO destination name 'VIRSAHR_01_MODEL' in the SLD. No such JCO destination is defined in the SLD. *
    Please indicate what could be the possible solution for it.
    Thanks in advance.
    Nazeer

    HI ,
    Why dont you check the SLD is running fine or not.These are the steps to be followed ,
    Check out the URL : http:
    <localhost>:50000/sld
    When you enter the sld screen then click on administration and there you will see whether sld server is running or not.If it is stopped then start.
    Then check whether in visual administrator check for sld data supplier under server node under services node.There on the top there will be a button as trigger sld data supplier .We should get a succesul message.
    In the Jco connections click on test option one should get a test message succeful.To see the JCo connections path launch j2ee home page URL : http:
    <localhost>:50000/.After that click on web dynpro then on content administrator and then maintain JCo connections.There check out the JCo connections.IF the JCo connections are not working fine then check out the RFC 'c configured in the backend system are testing successfully.
    SLD_UC
    SLD_NUC
    LCRSAPRFC
    SAPSLDAPI
    If u still face any problem plz let me know.

  • Problem: Accessing BAPI using SAP System Connector and setting SELOPT_TAB

    Hi,
    I am trying to use the SAP System Connector (based on JCA) to connect to a BAPI and do a search for a customer with EP SP15. (Using BAPI_CUSTOMER_FIND).
    I established the connection and can set simple input parameters, however I didn't find a way for setting the SELOPT_TAB in the IInteraction instance.
    This is what the table should contain:
    Table SELOPT_TAB
    Field Content
    COMP_CODE SPACE
    TABNAME KNA1
    FIELDNAME NAME1
    FIELDVALUE Ma*
    Here the import parameter:
    IMPORT-Parameter
    MAX_CNT 100
    PL_HOLD X
    And here the code for the IInteraction without the SELOPT_TAB that I want to include.
    // Get the Interaction interface for executing the command
    IInteraction ix = connection.createInteractionEx();
    IInteractionSpec ixspec = ix.getInteractionSpec();
    String functionName = "BAPI_CUSTOMER_FIND";
    ixspec.setPropertyValue("Name", functionName);
    String function_out = "RESULT_TAB";
    RecordFactory rf = ix.getRecordFactory();
    MappedRecord input = rf.createMappedRecord("input");
    // put function input parameters
    input.put("MAX_CNT", "100");
    input.put("PL_HOLD", "X");
    MappedRecord output = (MappedRecord) ix.execute(ixspec, input);
    Does anybody know how to set the SELOPT_TABLE as input parameter?
    Any help would be appreciated.
    Regards, Andy

    Maybe your application isn´t run in x84
    #Go to properties of your project ->Build -> changed platform target of "Any CPU" to "x86"
    #Copy these libraries from our 32-bit environment :
    *SAP.Connector.dll
    *SAP.Conector.Rfc.dll
    *librfc32.dll
    *msvcp71.dll
    *msvcr71.dll
    In 64 bits environment:
    1. librfc32.dll to C:WINDOWSsystem
    2. msvcp71.dll to C:WINDOWSsystem32
    3. msvcp71.dll and  msvcr71.dll to C:WINDOWSSysWOW64
    4. SAP.Connector.dll and SAP.Conector.Rfc.dll to C:WINDOWSassembly (DRAG)

  • GRC AC 5.3 - RAR Parameters

    Hello,
    I have the following 8 queries related to GRC AC 5.3 RAR parameters
    When I go into RAR -> Configuration -> Miscellaneous, I see the following entries.
    Maximum Display Lines For Print Preview 
    This parameter specifies the maximum number of lines to be displayed in print preview mode; the default value is 500
    1- What is the Print Preview of the lines for? Can I make it 10000 instead of 500. Is there a performance impact?
    Background Job Spool File Location 
    This parameter specifies the location where the background job spool files are stored Note: You need to restart the server
    2- Why do I need the Background Job Spool File location? Is it when I use Default Logger parameter as SAP Logger? Currently we are using the Default Logger parameter as Java Logger
    Alert Log File Name and Location 
    This parameter specifies the location where the action usage purged data files are stored
    3- Whey do I need this Alert Log file parameter for? I mean how is the Alert Log file generated in RAR 5.3
    SAP Application Server Location 
    Enter SAP application server location here
    4- Why do I need SAP Application Server Location, when I have installed SAP GRC 5.3 on standalone SAP JAVA Stack?
    FTP Site Location 
    Enter FTP site location here
    5- What should the FTP site location be given as? Should I give a fully qualified domain for a particular host for the FTP of above RAR background job log files and RAR Alert log files?
    6- Do we have the background job log files FTP into another host, if Default Logger parameter is chosen as SAP Logger?
    FTP Site User Name 
    Enter FTP site User Name here
    7- What is the best practice for specifying a FTP User? I mean what is the username normally given in RAR environment?
    8- Is there any OSS Note, SAP Help URL which  describes about RAR parameters in detail?
    Thanks,
    Haleem

    Hi,
    > Maximum Display Lines For Print Preview 
    >  This parameter specifies the maximum number of lines to be displayed in print preview mode; the default value is 500
    >
    > 1- What is the Print Preview of the lines for? Can I make it 10000 instead of 500. Is there a performance impact?

    You should used 500 only.
    > Background Job Spool File Location 
    > This parameter specifies the location where the background job spool files are stored Note: You need to restart the server
    >
    > 2- Why do I need the Background Job Spool File location? Is it when I use Default Logger parameter as SAP Logger? >Currently we are using the Default Logger parameter as Java Logger

    No, background job spool file location is something different from logger. Background spool file location is the location where
    spool file of your background job will be generated.
    Diferent between Java Logger and SAP Logger is that if you choose SAP Logger then log file of your RAR will be generated in NWA. But if you will choose as Java Logger then log file will be generated as separate file as ccappcomp.<n>.log which you will see in CC debugger.
    > Alert Log File Name and Location 
    > This parameter specifies the location where the action usage purged data files are stored

    > 3- Whey do I need this Alert Log file parameter for? I mean how is the Alert Log file generated in RAR 5.3
    >
    check below link:
    Compliance Calibrator Alert Generation Issue
    > SAP Application Server Location 
    >  Enter SAP application server location here

    > 4- Why do I need SAP Application Server Location, when I have installed SAP GRC 5.3 on standalone SAP JAVA Stack?
    >
    > FTP Site Location 
    >  Enter FTP site location here
    >
    > 5- What should the FTP site location be given as? Should I give a fully qualified domain for a particular host for the FTP of above RAR background job log files and RAR Alert log files?
    > 6- Do we have the background job log files FTP into another host, if Default Logger parameter is chosen as SAP Logger?
    >
    > FTP Site User Name 
    >  Enter FTP site User Name here
    >
    > 7- What is the best practice for specifying a FTP User? I mean what is the username normally given in RAR environment?
    The following new reports can have long runtimes:
    - User Authorization Count
    - Role Authorization Count
    - List Expired and Expiring Roles for Users
    - For that reason These jobs run on ABAP side and produce a spool file. An icon is displayed on the front-end for the jobs that complete. (If you run jobs on all systems and it finishes on one system before another the icon will display for the finished system first)
    - The report directory on the SAP Enterprise Resource Planning (ERP) application servers. This is the temporary storage location for spool files generated by these background jobs.
    - The same directory name is used for all SAP backend systems.
    - The location, user name, and password for FTP of security reports generated by backend SAP ERP systems.
    > 8- Is there any OSS Note, SAP Help URL which  describes about RAR parameters in detail?
    Note 1121978 - Recommended settings to improve peformance risk analysis
    Check below link for performance optimization of RAR:
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/90aa3190-8386-2b10-c4ba-ced67322ea6d?quicklink=index&overridelayout=true
    Thanks
    Sunny

  • How to change system time through java program

    Hi
    I want to know, how to change system time through java program.
    give me a idia with example.
    Thanks

    There isn't any core Java API for this. Use JNI or call an external process with Runtime.exec().
    ~

  • How to change system time on Cisco MeetingPlace Express Server

    How to change system time on Cisco MeetingPlace Express Server
    Model MCS-7825-I4

    Hi Vijay,
    As per the install guide for MPX 1.x as well as 2.x "Caution! Be sure you enter the correct date and time. You must reinstall the Cisco Unified MeetingPlace Express operating system and application if you need to change the date or time of your server in the future."
    http://docwiki.cisco.com/wiki/Cisco_Unified_MeetingPlace_Express,_Release_2.x_--_Configuring_the_Cisco_Unified_MeetingPlace_Express_Server#Configuring_the_Cisco_Unified_MeetingPlace_Express_Server
    http://www.cisco.com/c/en/us/td/docs/voice_ip_comm/meetingplace_express/1_2/english/installation/guide/iug/mpxinst3.html
    HTH
    Manish

  • How to change system password in weblogic 8.1 ?

    Hi,
    Will you shed some lights on the steps of changing system password ? In weblogic console, I changed the password in Security->User and also in the remote start tab of admin server. When re-starting admin server, got this error : <Jun 17, 2005 1:36:59 PM PDT> <Critical> <Security> <l0065073> <doris811_admin> <main> <<WLS Kernel>> <> <BEA-090052> <Server installed as Windows NT service with incorrect password for user admin; The password may have been changed since the server was installed as a Windows NT Service. Contact the Windows NT system administrator.>. Any help is appreciated.
    Jessie

    I ran the installservice with the new password and received following errors when starting the service :
    Program Error : beasvc.exe has generated errors and will be closed by Windows....
    Microsoft Management Console : Could not start the beasvc doris_doris_admin service on local computer, Error 1067: The process terminated unexpectedly
    Should I change password in weblogic console
    security->user prior to re-install service with the new password ?
    Any help is greatly appreciated.
    Jessie

  • How do I enable all sound files wav,MP3 on windows 7 64-bit change system sounds

    How do I enable all sound files wav,MP3 on windows 7 64-bit change system sounds it will only give me the option to choose wav?

    Windows 7 uses .wav (wave) files for the sound events. The default folder that Windows 7 uses to store the sound files in is located at C:\Windows\Media.
    You cannot use a MP3 file but there are lots of (WAV to MP3 converters) available on internet which can help you to convert MP3 to wav  serving your purpose of changing system sound. 
    //Click on Kudos and Accept as Solution if my reply was helpful and answered your question//
    I am an HP employee!!

  • FM for changing system status in Service Notification

    Hi all,
    I have a tough situation here.
    To change the system status in service notification, the system use "IQS4_CHANGE_STAT_NOTIFICATION".
    CALL FUNCTION 'IQS4_CHANGE_STAT_NOTIFICATION'
      EXPORTING
        i_qmnum                  =
        i_vrgng                  =
        I_CHECK_ONLY             = ' '
        I_SPRAS                  = SY-LANGU
        I_BEZDT                  = SY-DATUM
        I_BEZUR                  = SY-UZEIT
        I_POST                   = 'X'
        I_COMMIT                 = ' '
        I_WAIT                   = ' '
        I_REFRESH_COMPLETE       = 'X'
      IMPORTING
        E_VIQMEL                 =
        E_STTXT                  =
        E_ASTXT                  =
      TABLES
        RETURN                   =
    2 main fields are required; i_qmnum and i_vrgng.
    I am able to provide i_qmnum (as this is the service notification number that i need to change).
    However, i_vrgng is a field in table (TC33-VRGNG). The values in the table does not make sense to me.
    Example. To change the status to NOPR (Put in progress), the FM uses PPM2 or PPM6 for i_vrgng. If we take a look at the table TC33, it doesn't indicate in anyway how NOPR is related to PMM2 or PMM6.
    Is there a guideline (ie, to change status to OSTS, i use a certain value in TC33-VRGNG to run the FM)?
    Please see BAPI_SERVNOT_POSTPONE & BAPI_SERVNOT_PUTINPROGRESS for a clearer picture of what I'm saying.
    Thanks,
    Earl

    Please try using FM STATUS_CHANGE_INTERN for changing System Status as i was not able to find any link between status and the field provided in FM in ur post.
    This FM directly changes system status of any object.But this FM requires System Status Value not Text.
    NOPR, NOCO etc are system texts.The main table for system status  is TJ02T which will give u the status value for the status text.
    For eg NOPR status text will have status value as 'I0070'.
    Reward Points if useful
    Edited by: Pratyasha Shishodia on Mar 14, 2008 11:07 AM

  • Sun Java System Connector for Microsoft Outlook 7.3 Update 1

    Good Day,
    Could somebody please advise me where I can download:
    Sun Java System Connector for Microsoft Outlook 7.3 Update 1
    Thanks,
    Gilbert

    Gilbert_Gerber wrote:
    I thought it is suppose to be part of Sun Java Communications Suite 6 update1?You can download it from the following location:
    http://wikis.sun.com/display/CommSuite6U1/Get+the+Software
    Select the Download Link => Platform: Windows
    Regards,
    Shane.

  • How do I change system settings so that users are not required to enter the mac's admin pw in order to join a wifi network?

    how do I change system settings so that users are not required to enter the mac's admin pw in order to join a wifi network?
    Right now my macbook pro requires an admin password before connecting to a new wifi network. In other words when a user that is not an admin tries to connect to a new wifi network the pop up displays indicating that it is locked and an admin password is required.
    Is there a way to remove this restriction so that a non admin can connect to wifi without the mac's admin password.

    You can enable / disable this option in System Preferences:
    System Preferences > Network > Wi-Fi > Advanced > Wi-Fi tab > Require administrator authorization to: Change networks

  • How to change the Connector + Mapping

    Hi,
    i have a mapping with a database link. I cloned the mapping from production to development. I change the connector. So the name of the db-link is on production prd@... on development dev@... How can i change the db link in the mapping. So that he changed the db-linkname?
    thanks a lot

    Ola Wolle,
    Did you deploy the db-links in the connector...?
    Within youre mapping you should not need to change anything.
    Of course you can do it by changing settings in sources en targets when configuring your mapping...
    Within every single table you can add db-links and schema's
    btw: we use to do the same with database links (naming them dev_dblink, prod_dblink). But pretty soon it became quite messy. Right now we use universal names so we don't need to make changes on this level...
    Regards
    Moscowic

  • Change system folders name in mavericks

    Hi all, there is a way to change the system folder name in Mavericks as described in this article? http://www.macworld.com/article/1046866/renamesystemfolders.html
    Thank you

    Hi,
    Just in case someone search for this argument.
    I wanted to change system folders name because some folders wasn't translated in my language in OSx (it's a long story the "why").
    Now I just find a solutions in this article: http://www.cnet.com/news/home-and-system-directory-names-not-translating-in-os-x /
    So I'm happy to say "thank you touch command"
    Thanks again,
    br
    fulvio

  • Urgent : Changing System Parametes

    Hello,
    How do we change system parameters in 6i reports during run time or at the beginning of the report design?
    Regards,
    Dinesh.

    Hi;
    please check below which could be helpful for your issue:
    Oracle Reports 6i Setup Guide for Oracle Applications 11i [ID 189708.1]
    http://www.stoneedge.com/help/OM_DOC/sys_parameter/Reports_System_Parameters_.html
    Regard
    Helios

Maybe you are looking for