Changing MASS Functions in RAR

Hi Gurus,
I would like to know how to change systems in functions? We have around 165 functions created in RAR and all actions in functions assigned to Physical Systems, now we decided to change all those function (Actions) from physical system to logical systems. When I go to change function it is not allowing me to change the system and itu2019s grayed out. I know that we have to click on add button and select the system and action, description and status. But we have many actions in each function and it is very time taking process. Is that any other way I can change all functions? I would also like to know what are the other things that I have take care of when changing functions from physical systems to logical systems? Do I need to change any thing in Permissions Tab also?
Thanks

Hi ,
You can do following  :
1.Go to rule architect - utilities - and export rule will all check box selected .
Also on top you can see source system (as your physical system ) .In destination name system give Logical system name .
Now export .
Open file in excel and verify that in system tab its showing logical system
Now again go back to  rule architect - utilities and import the rules . Select from two below option as per your requirement .
Thanks & Regards
Asheesh

Similar Messages

  • Mass Change of Functional Locations - error message "Objekt PM_MASS.....

    Hi Experts,
    We have activated autorization object I_MASS - to make it possible to carry out Mass Change on Functional Locations.
    The  menu patch are now visible - but I get error message "Objekt PM_MASS_TECH_OBJECTS is not maintained"
    How is that done in SLG0 - any one have experience?

    Hi Pete
    Thanks for helping
    Best Regards
    Keld

  • Exclude object functionality in RAR

    Hi All
    While using the Exclude objects functionality in RAR.....is there any further configuration setting need to be checked/changed....coz while doing ROLE LEVEL analysis in RAR, it is still analysing the Role which is already excluded...
    Thanks
    Abhijeet

    Hi Abhijeet,
    Did you make the RAR configuration correctly?
    Please Goto -> RAR-> Configuration -> Default Values
    Here you will get,
    Exclude Locked Users
    Exclude Expired Users
    Exclude Mitigated Risks
    You can make these configuration to YES so that these will be excluded at the time of Risk analysis.
    Please let me know if it is satisfies your question
    Thanks,
    Sudip.

  • Change of functionality in deleting songs from iCloud/iTunes Match with the 11.0.2 version of iTunes?

    I updated to iTunes 11.0.2 and this version brought a change of wording regarding deleting songs from iCloud/iTunes Match, and I'd like to know if there are any changes in functionality to match the change in wording:
    With version 11.0.2, when I try to delete any song (uploaded, matched or purchased) I'm presented with a pop-up dialog box that asks me if I'm sure and also gives me a "Also hide this song from iCloud?" option.
    In prior iTunes versions the pop-up dialog box would ask instead "Also delete this song from iCloud?".
    Has the functionality changed? If so, what's the difference in functionality between 11.0.2 and previous versions? If the functionality of deleting songs has changed, how do I delete an uploaded song from both my local library and iCloud/iTunes Match?

    I am having the same issue- pelase could anyone help? Mods?

  • Dynamically changing the functions in a menu based on the user (in SSHR)

    Dear All,
    I have a requirement to change the functions in a menu dynamically.
    For Ex: An employee is allowed to apply Advance only in the first one month of his/her joining. I created it as an EIT and attached the function, to the menu. Now, i want to remove it automatically from the menu if his/her term in the company crossed one month.
    Can any one tell me how to automatically disable it after one month.
    Thanks and Regards
    Raj
    Edited by: SuperStar_Krishna on Jul 5, 2010 12:22 AM

    The following code should do it. In this example, MyCellRenderer is the renderer class implementing TableCellRenderer, used for displaying combo box.
    TableCellRenderer renderer= new MyCellRenderer();
    (JComboBox)renderer.addActionListener(new ActionListener(){
        public void actionPerformed(ActionEvent e) {
            //Your event handling goes here
    });

  • What do you mean by changing a Function Group in upgradation projects

    Hi ABAPers,
    I am new to upgradation project will any one help me in understanding the concepts like.
    1) what do you mean by changing a Function Group in upgradation projects
    2) what is the relation b/w the Maintenance view and function group
    3) what happens when we regenerate the table maintenance in se11
    4) how can i restore the changes that have done to FG after regenerating
    5) Suggest me is there any Tcode or procedure to see the code in Remote system (like how we compare the versions of remote system)
    Could you please help me ..
    Any relevant docs you can send it to  [email protected]
    Thanks in advance..

    Hello Smriti,
              Exploding a BOM means to display all the components and sub-components for a BOM in a particular transaction (eg) VA01,CO01,ME22N etc..
    You can use the SAP FM's depend on the Functionality:
    CS_BOM_EXPLOSION               General BOM explosion
    CS_BOM_EXPLOSION_EQUI          BOM explosion - initial screen: equipment
    CS_BOM_EXPLOSION_MAT           BOM explosion (old version); as of 3.0, use CS_BOM_EXPL_MAT_V2
    CS_BOM_EXPL_EQU_V2             BOM explosion for equipment
    CS_BOM_EXPL_KND_V1             BOM explosion for material
    CS_BOM_EXPL_MAT_V2             BOM explosion for material
    CS_BOM_EXPL_PSP_V1
    CS_BOM_EXPL_TPL_V1             BOM explosion for functional location
    CSS7                           Explode BOM (Document)
    CS_BOM_EXPL_DOC_V1             BOM explosion: document sub-assemblies
    CS_BOM_EXPL_GNRL2_V1           General BOM explosion: document sub-assemblies
    CSSO
    CS_SO_MODE_BOM_EXPLOSION
    As per Garet in response to your question better talk to the Functional team to get the better underatanding for your requirement.
    Check the below link for more details on BOM:
    http://sap-img.com/sap-sd/what-is-bom-referring-to-sap-sd.htm
    Thanks,
    Greetson

  • How do you change a function to a procedure

    I have written a function which works fine in Oracle, but our .NET developer is struggling to call the function from the web client. Apparently .NET isn't great for working with Oracle functions and needs me to change my function to a procedure. Is it possible to change a function (which is designed to return a value) to a procedure (which is designed to 'do something')?
    FUNCTION get_user_basket_item_count (
    p_usr_id IN VARCHAR2,
    p_basket_id IN VARCHAR2 DEFAULT NULL
    RETURN NUMBER
    IS
    v_count_result NUMBER (38);
    BEGIN
    IF p_basket_id IS NOT NULL
    THEN --return specified basket count
    SELECT COUNT (oubi.ID)
    INTO v_count_result
    FROM ol_user_baskets oub, ol_user_basket_items oubi
    WHERE oub.ID = oubi.bas_id
    AND oub.usr_id = pA_usr_id
    AND oub.ID = p_basket_id;
    ELSE --return default basket count
    SELECT COUNT (oubi.ID)
    INTO v_count_result
    FROM ol_user_baskets oub, ol_user_basket_items oubi
    WHERE oub.ID = oubi.bas_id
    AND oub.usr_id = p_usr_id
    AND default_basket = 'Y';
    END IF;
    RETURN NVL (v_count_result, 0);
    END get_user_basket_item_count;
    The .NET developer has told me i will need to add an 'OUT' parameter. Any ideas?
    Cheers
    David

    PROCEDURE get_user_basket_item_count (
    p_usr_id IN VARCHAR2,
    p_basket_id IN VARCHAR2 DEFAULT NULL
    P_count_result OUT NUMBER
    IS
    v_count_result NUMBER (38);
    BEGIN
    IF p_basket_id IS NOT NULL
    THEN --return specified basket count
    SELECT COUNT (oubi.ID)
    INTO v_count_result
    FROM ol_user_baskets oub, ol_user_basket_items oubi
    WHERE oub.ID = oubi.bas_id
    AND oub.usr_id = pA_usr_id
    AND oub.ID = p_basket_id;
    ELSE --return default basket count
    SELECT COUNT (oubi.ID)
    INTO v_count_result
    FROM ol_user_baskets oub, ol_user_basket_items oubi
    WHERE oub.ID = oubi.bas_id
    AND oub.usr_id = p_usr_id
    AND default_basket = 'Y';
    END IF;
    p_count_result= v_count_result;
    END get_user_basket_item_count;

  • How to create the change document functionality for a dependent objects?

    May I please know how to create the change document functionality for a dependent objects?
    I have done it follow the same process as for business process objects. But when i try to test it in BOBT, there is no records under "FIELD_CHANGE_WITH_FILTER". It seems the change hasn't been recorded.
    If the way I did to create change document for dependent object is correct, please also kindly advise the possibilities for why there is no record during testing.
    thanks in advance.

    I also have some doubts about the business object.In this case,one abstract BO hase a subnode wihich is root extended.I added the change document for this node under the category "root_extended" and then tested the function in BOBT.I got some error message "can't find the root key".Shall i redefine the method /BOFU/IF_CDO_CREATION~IS_CDO_CREATION_ACTIVE so as to solve the problem?
    Thx.

  • Regarding a Change Document Function Module ----- VERY VERY Urgent

    I am using a Change Document Function module "CHANGEDOCUMENT_READ". It is taking a long time.
    I am using the parameters:
    Start date is the first date of the current month
    Enddate as last date of the current month
    Object class as 'MATERIAL'
    Table Name as 'MBEW'

    Hi ,
    When you want to read the change documents, please follow the below process.
    1. Read the change documents headers with function modules
    call function 'CHANGEDOCUMENT_READ_HEADERS'
           exporting
                date_of_change             = cdhdr-udate
                objectclass                = cdhdr-objectclas
                objectid                   = cdhdr-objectid
                time_of_change             = '000000'
                username                   = cdhdr-username
           tables
                i_cdhdr                    = gt_cdhdr
           exceptions
                no_position_found          = 1
                wrong_access_to_archive    = 2
                time_zone_conversion_error = 3
                others                     = 4.
    2. From above step you will get data of change documents very quickly into Itab (gt_cdhdr)
    3. Read the details on change documents with functiion module by using Itab in loop for each document.
      loop at gt_cdhdr.
        call function 'CHANGEDOCUMENT_READ_POSITIONS'
             exporting
                  changenumber            = gt_cdhdr-changenr
             importing
                  header                  = cdhdr
             tables
                  editpos                 = gt_cdshw
             exceptions
                  no_position_found       = 1
                  wrong_access_to_archive = 2
                  others                  = 3.
    Above is the best way to read the change documents.
    Rewards please if above info is useful.
    Thanks.

  • Changes In Function Module

    Hello abap Gurus,
    My Zdevelopment reports shows the runtime errors due to
    changes in this function module :-
    ZCFM_HIDE_INITIALFIELD_ALV
    So anybody pls. suggest me what i can do for this.I m attaching the coding also.
    FUNCTION ZCFM_HIDE_INITIALFIELD_ALV.
    ""Local Interface:
    *"  IMPORTING
    *"     REFERENCE(STRUC)
    *"     REFERENCE(FIELDCAT) TYPE  SLIS_T_FIELDCAT_ALV
    *"     REFERENCE(HIDE) OPTIONAL
    *"  EXPORTING
    *"     REFERENCE(FIELDCAT_E) TYPE  SLIS_T_FIELDCAT_ALV
    *"  TABLES
    *"      IT_TAB
    *"      IT_TAB1
    DATA S_FIELDCAT TYPE SLIS_FIELDCAT_ALV.
    FIELD-SYMBOLS <F1>.
    FIELD-SYMBOLS <F2>.
    DATA FIELDNAME(30).
    DATA VALUE(100).
    DATA : BEGIN OF DISPLAY OCCURS 0,
    FIELDNAME LIKE DD03L-FIELDNAME,
    END OF DISPLAY.
    LOOP AT IT_TAB.
    DO .
    READ TABLE FIELDCAT INDEX SY-INDEX
    INTO S_FIELDCAT.
    IF SY-SUBRC NE 0.
    EXIT.
    ENDIF.
    ASSIGN SY-INDEX OF STRUCTURE IT_TAB1 TO <F1>.
    CONCATENATE 'IT_TAB-' S_FIELDCAT-FIELDNAME INTO
    FIELDNAME.
    ASSIGN (FIELDNAME) TO <F1>.
    IF NOT <F1> IS INITIAL.
    DISPLAY-FIELDNAME = S_FIELDCAT-FIELDNAME.
    COLLECT DISPLAY.
    ENDIF.
    ENDDO.
    ENDLOOP.
    FIELDCAT_E = FIELDCAT.
    LOOP AT FIELDCAT_E INTO S_FIELDCAT .
    READ TABLE DISPLAY WITH KEY FIELDNAME = S_FIELDCAT-FIELDNAME.
    IF SY-SUBRC NE 0.
    IF HIDE IS INITIAL.
    DELETE FIELDCAT_E.
    ELSE.
    S_FIELDCAT-NO_OUT = 'X'.
    CLEAR S_FIELDCAT-KEY .
    MODIFY FIELDCAT_E FROM S_FIELDCAT TRANSPORTING NO_OUT
    KEY.
    ENDIF.
    ENDIF.
    ENDLOOP.
    endfunction.

    This is all about the runtime error :-
    Incorrect parameter with CALL FUNCTION
    Error analysis :-
        An exception occurred that is explained in detail below.
        The exception, which is assigned to class 'CX_SY_DYN_CALL_PARAM_MISSING', was
         not caught in
        procedure "HIDE_FIELDS" "(FORM)", nor was it propagated by a RAISING clause.
        Since the caller of the procedure could not have anticipated that the
        exception would occur, the current program is terminated.
        The reason for the exception is:
        When calling the function module "ZCFM_HIDE_INITIALFIELD_ALV", one of the
         parameters
        needed according to the interface description was not specified.
        This parameter was "IT_TAB1".
    I am not changing the function module, my couligue has change this he leave it & he doesn't tel to me. So pls. give some sol. to me.
    Thanks,
    Sumit.

  • V_T011 - You are changing a function group which does not belong to you

    I've read some posts about my problem I report here, but have not found the solution.
    In transaction SE54 -> V_T011 -> Generated Objetcs -> Create / Change I can not save the data transport details dialog for standard recording routine.
    The warning "You are changing the function group Which does not belong to you" is shown. The change is not saved.
    Can anyone help me?
    Thanks

    I would like to change the DIALOG DATA TRANSPORT DETAILS:
    Actually is configured with the option no,or user, recording routine. I want to save to Standard recording routine.
    Thanks,

  • Change script function, can you?

    Hi everyone
    I got this script,
    function: change font size in selection
    but I want to change the function to selection text frames
    I mean: change the font size in all the selected text frames.
    thanks
    var the_document = app.documents.item(0);
    var the_selection = app.selection[0];
    var the_dialog = app.dialogs.add({name:"Resize selected text"});
    with(the_dialog.dialogColumns.add()){
        with(dialogRows.add()){
            staticTexts.add({staticLabel:"Resize the selected text by"});
            var increase_by = measurementEditboxes.add({editUnits:MeasurementUnits.POINTS, editValue:0});
    the_dialog.show();
    counter = 0;
    do {
        var current_character = the_selection.characters.item(counter);
        current_character.pointSize = current_character.pointSize + increase_by.editValue;
        counter++;
    } while (counter < the_selection.characters.length);
    alert("Done!");
    VK

    Try the following:
    var sel = app.selection;
    if (sel.length == 0 ) {
        alert ( "Nothing selected" ); exit();
    var dlg = app.dialogs.add({ name: "Resize text in selected frames" });
    dlg.dialogColumns.add().staticTexts.add({ staticLabel: "Resize the selected text by:" });
    var increase_by = dlg.dialogColumns.add().measurementEditboxes.add({ editUnits:MeasurementUnits.POINTS, editValue: 0 });
    if (dlg.show()) {
        var dlg_value = increase_by.editValue;
        dlg.destroy();
    else {
        dlg.destroy(); exit();
    for ( var i = 0; i < sel.length; i++ ) {
        var curSel = sel[i];
        if ( curSel.constructor.name == "TextFrame" ) {
            var tsr = curSel.parentStory.textStyleRanges;
            for ( var n = 0; n < tsr.length; n++ ) {
                var curTsr = tsr[n];
                curTsr.pointSize += dlg_value;
            } // for
        } // if
    } // for
    alert( "Done!" );
    –Kai

  • How to set preferred currency in SSHR application in change pay function

    In SSHR application-->change pay function
    I would like to view salary components in preferred currency say INR.
    Currently, it is in USD defaulted from business group.
    Please let me how to do I do it.
    Thanks in advance,
    Nutan

    HI,
    I am encountering similar situation where we need 2 currencies to be processed in our SAP system.
    What we intend to do is to have both currencies in Infotype 0008-Basic Salary where we can select whichever applies.
    Unfortunately the currency is defaulted to RM for now.
    I tried the suggested solution by trying to maintain a new entry of payscale group and level but the currency is defaulted to RM anyway.There's no way for us  to change the RM to USD since it it following the country grouping i presume.
    How should we go about this?
    Thanks.
    Regards,
    Pat

  • [svn:osmf:] 9830: Changing a function name.

    Revision: 9830
    Author:   [email protected]
    Date:     2009-08-31 06:47:49 -0700 (Mon, 31 Aug 2009)
    Log Message:
    Changing a function name.
    Modified Paths:
        osmf/trunk/framework/MediaFramework/org/openvideoplayer/composition/CompositeViewableTrai t.as

    Have you consulted the documentation in the SDK about what methods are available? It will show you how to get the list of fields and/or the proper count for iteration.
    IIRC you can't change the name via VBA

  • Changes in functional and technical level on upgrading from SAP ECC 5.0 to ECC 6

    Hi Friends,
    Need help with the below mentioned questions
    What will be the changes in Functional level while upgrading for ecc 5.0 to ecc 6.0?
    What will be the changes in Technical level both Abap and Basis?
    What will be the  changes in Server Hardware level in Upgrading of Servers  (Solution Manger,IDES,Dev Server,Prod Server)?
    What is change in SAP License level?
    Total cost of  Project development and Support .
    please help me as I need to answer some body .
    Thanks in Advance

    It seems that you have a combined upgrade - ABAP + Java in your system - is that right? If yes, did you start the Java upgrade in parallel?
    Markus

Maybe you are looking for