How to disable Cross client Table Access

Hi All,
i have created a Sand box client and i have set its cross client object value to
"No Changes to repository and cross client customizing objs"
but still users are able to run transactions like SR13 which are cross client tables
please help

HI Zeeshan,
Once u run the Tcode like SR13, the users would be able to enter the Tcode and have a new entry varinat created..but during SAVE the system would sure prompt the message... " Changes to Repository or cross-client Customizing are not allowed. Please press DISPLAY or CANCEL" ..
so the changes would not be saved hence forth and have to be cancelled out..
hope this is what u have been looking for..
Br,
Sri
Award points for helpful answers

Similar Messages

  • Cross client tables

    Hi,
    I am trying to authorize a user for maintaining the cross client tables with SM30.
    I have added the Authorization object S_TABU_CLI with the change permission and regenerated
    the profile and assigned to the user. But the user is still unable to maintain the cross client tables
    like V_DDAT. How to enable a user to maintain cross client tables.
    Thanks in Advance,
    Ramakrishna.

    One thing. I saw in your response that you have not assigned an authorization group on S_TABU_DIS?
    This is necessary, as the system always checks on the auth group.
    If the table is not classified in TDDAT, it will check against &NC&.
    Tables are protected through S_TABU_DIS for client-dependant tables AND S_TABU_CLI as extra protection fro cross-client tables.

  • How to create cross-client variant?

    Hi Experters:
    Can someone tell me how create cross-client variant in ECC6.0?
    in 4.6, we can define the client or define cross-client transaction variant,
    how to create cross-client variant in ECC6.0?
    Regareds,

    Hi,
    In se93 there is a check box cross-client .
    The Cross-client switch identifies which transaction variants are cross-client and which are client-specific. If the switch is set, the transaction variant is cross-client. If the switch is not set, the transaction variant is client-specific.
    A client-specific transaction variant can only exist in the client where it was created. The field contents of the transaction variant only have to be available in the particular client. A cross-client transaction variant is available in the system regardless of which client is currently active. The field contents of the transaction variant have to be available in all clients.
    http://****************/Tutorials/ABAP/TransactionVariant/Create.htm

  • How to disable fields in Table control???

    Hi
    How to disable fields in Table control??? I want to disable particular row in table control when enter datas are correct.lets take as example ME41 or ME51 table control.
    Can anyone tell how to do disable in this table control
    Points will be rewarded if its helpful.
    Thanks
    senthil

    If you want to disable the row then you can use
    in pbo module create a module in side loop,
    loop at itab with control tc.
    module change_screen.
    endloop.
    in module,,,,,
    loop at screen.
    if condition.
    screen-input = 0.
    modify screen.
    endif.
    endloop.
    Regards
    Vijay

  • Merging SAP Clients - Reporting on Cross Client Table Compare Results

    Hey folks,
    We are trying to merge two clients into one (on the cheap), i think that cross client table comparision is the best way to find differences and possible issues and clashes with the two systems configuration, but i was wondering if there is anyway to report on these differences, so we can pull them out to word/excel document to anaylse and document them prior to making the changes.
    Does anyone know if this possible?
    Thanks a lot,
    Greg

    Hello Mr. Newman,
    I think using SCU0 is going to be the way to go but the output is not always the best. However you should be able to show the differences and download to excel to analyse further. If this doens't fit then I think you will have to look at copying the tcode / report and improving the output to meet your needs.
    Alternatively post to basis folks and see if they have some better ideas!
    Hope this helps,
    Cheers,
    Dan
    Edited by: Danny boy on Mar 31, 2010 3:00 PM

  • How to create a cross-client table maintenance dialog?

    Hello everybody,
    I have a client specific table (mandt is the first key field) that should be maintained cross-client: In the table maintenance dialog, I want to change/create/insert values belonging to clients other than the current logon client. Can I do this with a generated maintenace dialog? If yes, how?
    Thank you for your help, regards, Kathrin!

    Hi Kathrin,
    I think you can't, you must create your own dialog maintenance program.
    They are some program to copy data from client to others .. but never seen any dialog cross client. (or remove the mandt  in your key).
    Regards
    Frédéric

  • How to clear dhcp clients table

    Does anyone know how to clear the DHCP Clients Table?
    I have a WRV54G.
    Regards
    Solved!
    Go to Solution.

    I understand this is a very old post, but since I found it when I was looking for the same answer in 2009, I thought I would go ahead and give my $.02 worth.
    I have a different router, so this may not be present in yours.
    I use a  WRT54GLwith firmware version 4.30.7 and finally found on the Status page under "Local Network" a link to the DHCP table. You can click on that and delete the existing IPs.

  • How to Disable Afaria client in Kapsel Logon plugin on Android?

    I want to disable Afaria client in Kapsel Logon plugin on android instead of iOS as follows:
    "The Afaria client is opening after calling sap.Logon.init(...), it can be disabled by modifying the file MAFLogonManagerOptions.plist. In Xcode this can be found under Resources > MAFLogonManagerNG.bundle > MAFLogonManagerOptions.plist. Set keyMAFUseAfaria to false."
    as mentioned in Getting Started with Kapsel - Part 2 -- Logon

    Also I need to disable Afaria in Logon plugin, as I get the following error while debugging the application on Android platform:
    Failed to find provider info for com.Android.provider.Afaria

  • How to override security for table access when using SAP Query?

    We have a number of infosets which use table join between PA0001 and CATSDB table. To execute a query based on such a query you would need access to table auth group PA through S_TABU_DIS. This was earlier not a problem as SAP query was earlier used by support staff and not end users. We do not want to give S_TABU_DIS with to end users as this amounts to givin them access to all PA tables.
    The generated code for the query checks for the condition
    "%rtmode-no_authchk = space"
    before going for the authorization check.
    Thus, ideally the authorization check for an InfoSet can be skipped if we can pass X for this variable from the InfoSet definition. Is there a way to do this?
    Would appreciste any inputs to help suppress the authorization check at this point. Thanks.....

    >
    Julius Bussche wrote:
    > Perhaps you could replace it with a class of your own (transaction SE24)?
    >
    > I have not tried to do this; it was just a thought.
    >
    > Kind regards,
    > Julius
    unfortunately this does not work. SAP saw fit to 'hard-code' the implementation of the interface in RSAQEXCE:
    (only parts of that abap displayed here).
    170 data: iref type ref to if_query_tab_access_authority.
    1107 *       FORM AUTHORITY_BEGIN
    1112 form authority_begin using p_auth_classname type AQS_CLSNA.
    1119   perform authority_init using p_auth_classname.
    1120   call method iref->access_authority_begin.
    well for my part (searching a solution for a query on LTAK, wanting L_LGNUM as an object) i'm out of ideas. i shall have to modify SAP-standard and disable the class and do my own coding in the info-set. no other possibility - i cannot allow S_TABU_DIS for group LA and even if i did, what help would it be - i would have to allow that to all companies in that client having WM - and that would be literally all - i need LGNUM here!

  • How to disable Wifi and Network access in low level setting for security ?

    Hi
    New to here
    One of our final customer bought imac last months. OS 10.9, SN is c02*******J4i
    Since they are security printing, all the necessary ports accessing to outisdes need to be disabled in low level setting(not the ons just like turn on and off ).
    The ports including USB storage, Network and WIFI.
    I googled and found the following
    Open the /System/Library/Extensions folder.
    To remove support for USB mass storage devices, drag the following file to the Trash: IOUSBMassStorageClass.kext
    Open Terminal and enter the following command: $ sudo touch /System/Library/Extensions The touch command changes the modified date of the /System/Library/Extensions folder. When the folder has a new modified date, the Extension cache files (located in /System/Library/) are deleted and rebuilt by Mac OS X.
    Choose Finder > Secure Empty Trash to delete the file.
    Restart the system.
    I want to confirm this before sending to final user. Since I didn't have mac on hand, just wonder whether there are similar kext files for network and wifi to remove.
    Just like step 2 described.
    I would like customer to backup these files before permanently removed.
    Many thanks
    Kevin
    <Edited By Host>

    chiqui wrote:
    Is it possible to disable Internet access point and WAP as when I use WiFi some connections to WAP server of my provider are still made and I get charged. I am looking for the option not to delete it entirely from the access point list, but rather disable it as I might need connection when WiFi is not available and I want to be able to enable it as once I delete the server name and setting I won't know it.
    Is it possible to do it and how?
    You could delete WAP accesspoint. Not all providers (carriers) allow this.
    ‡Thank you for hitting the Blue/Green Star button‡
    N8-00 RM 596 V:111.030.0609; E71-1(05) RM 346 V: 500.21.009

  • How to create Cross system role - Access Enforcer

    Hi,
    What is mean by cross system composite role, how should we create that.
    Thanks&Regards,
    Vijay

    This would be a reference to CUA.  You can define a composite role in the CUA system that contains single roles from the child systems.  When a user is assigned the composite role, CUA automatically provisions the user and appropriate single role assignments to the appropriate child systems.
    This simplifies things for the AE end user.  Rather than having to select multiple single roles from multiple systems in the request, they can select one role from the CUA system (representing their job).  CUA takes care of the rest.

  • How to schedule cross-client job?

    Hi Experts,
    Now I'm running in client 001 and want to schedule a job which should run in client 002.
    I check the Function Module JOB_OPEN, JOB_SUBMIT, and JOB_CLOSE. There is no client-related parameter in the importing.
    Suppose the report name is ABC.
    Could someone please provide support in the problem?
    Thanks in advance,
    Best Regards, Johnney.

    hi..
    may be you can get your work done from the link
    http://help.sap.com/saphelp_46c/helpdata/en/fa/096ee5543b11d1898e0000e8322d00/frameset.htm
    regards

  • How to disable autocreating tables...

    Using Oc4j 9.0.3. When deploying the ear, oc4j goes about creating tables. How to disable that (the tables to map to is allready defined)

    Hi,
    Edit j2ee\home\config\application.xml and change the attribute autocreate-tables="true" in <orion-application>
    to autocreate-tables="false"
    This should stop OC4J from autocreating tables
    Hope this helps,
    Thanks,
    Neelesh Shastry
    OTN Team @ IDC

  • Cross client database tables

    Hi ,
    can someone please let me know any cross client database tables in SAP R/3..
    Thanks,
    Raghav

    Hi Raghavendra Manchippa  ,
    Any table which have a field MANDT and it should be Primary Key so that table be Cross Client Table..
    If satisfied,,,rewards me..
    Kind Regards
    Yogesh Gupta

  • SAP BI Cross Client

    Hi SDN Guru,
    Actualy my Customer using 3 Landscape in ECC Systems Dev,Qty, Prd. But in SAP BI using only two Landscape
    Dev & Prod.
    Actualy Mapping with  ECC Dev to  BI Dev Sys , But, Unfortunately my management asking please collect the data from ECC QTY to BI Dev.
    We have only data's avilable ECC Qty, there is no data in ECC Dev.
    My Question is how to collect the data in different Client (or) Cross Client.
    *how to connect cross client then how to extract the data from ECC Qty to BI Dev System.
    Can you please provide me solution ASAP...
    Thanks in Adance Guru's.
    Regards,
    Kumar

    Hi,
    You have to map your ECC QUA to BI Dev system.
    Communication Setting between BW and R/3
    Step 1: Define Logical System in R/3
    Step 2: Assigning Logical System to Client
    Step 3: Setting Up an RFC Destination
    Step 4: Distributing Data Model
                  Message Types Involved in Process of Data Loading
    Step 5: Generating Partner Profile
    Step 6: Maintaining Message types in T-Code WE20
    Cross check the system mappings in RSLOGSYSMAP table in both systems.
    You can search some step by step docs in SDN.......
    Regards,
    Suman

Maybe you are looking for