Changing auth group of a SAP standard Table

I was wondering if someone could advise what the implications are if I changed the auth group of a SAP standard table (PA0033). 
Does it affect programs behind the scenes, support packs, upgrades?

I am not aware of any reason why an authorization group on a SAP standard table should not be changed.
I have also seen this done for specific infotypes without any problems.
See the documentation on transaction SUCU and SE54, and SAP notes and some of the discussions here on them.
Kind regards,
Julius

Similar Messages

  • How to change the lenth of existing field in sap standard table

    Hi all,
    can anybody help,my requirement is, how to change the length of existing field in sap standard table....
    thanks in advance..

    Which field are you thinking of in particular?  Are you wanting to increase or decrease the length?
    Some fields are used so extensively that a change to their length will mean adjusting many tables, some of them potentially very large, and hence taking a long time to adjust.
    Some standard SAP programs expect certain fields to be of specific lengths and won't work if the length is changed.
    Some screens could cease to work.
    If you decrease length, then you could lose data.
    matt

  • Unable to see SAP standard table in HANA Studio

    Hello Experts,
    I have  requirement to built calculation view of SAP Standard Table like BSEG, BKPF table
    but i am unable to view this table in Catalog view in HANA Studio.
    Do i require any authorization or configuration to be done to view this table in those catalog view in hana studio.
    Regards,
    Mr. Dehey

    Dehey,
    Assuming that your SAP HANA is the primary database for your backend ERP instance (Suite on HANA), you need to have minimum SELECT privilege on the SAP<SID> schema, <SID> is the system identifier of your ERP instance.
    Ask youur SAP HANA admin to grant the SELECT privilege on SAP<SID> schema to your user ID by executing the below SQL query from SQL console.
    GRANT SELECT ON SCHEMA SAP<SID> TO <YOUR_USER_ID>;
    Hope this helps.
    Regards,
    Srinivas K.

  • What are the methods to modify SAP standard tables?

    hi
    what are the methods to modify SAP standard tables?

    .APPEND structures AND CUSTOMIZING INCLUDES.
    these are the two methods.. but customizing includes we, as a developers do not use.
    generally we use .APPEND structures to modify standard tables.
    note that we need an access key to modify atandard tables.
    we can create an apend structure and add that structure to the standard table at the end.
    note that .append structures should only be added only at the end.
    that is the reason we use .append structures to modify standard tables.as we should not include a field in the middle and disturb the original order of the standard table fields as it may effect many objects depending on the standard table.
    but Some standard tables for which there is a LONG datatype field can never be modified.
    the reason is the LONG datatype field should always be there at the end and also .APPEND strutures should always be there at the end. there will be a conflict. so, some standard tables can not be appended.

  • Can we change the start conditions of SAP standard workflows

    Can we change the start conditions of SAP standard WF10400002
    Where i want to assign my own Gross amount in the start conditions.

    Check out the link below.
    [http://help.sap.com/saphelp_nw2004s/helpdata/en/90/83ed38f5f41a28e10000000a114084/content.htm]
    [http://help.sap.com/saphelp_nw2004s/helpdata/EN/4c/86bf43feca11d2a64f0060087a79ea/content.htm]
    Regards,
    Raj

  • Procedure for creating an Index on SAP standard table

    Hi,
    I need to create an Index on a SAP standard table. Please help me out with the process of doing so.
    Regards,
    Sharadendu

    Please search the forum. You will find lots of related threads:
    how to create an index
    how to create secondary index

  • How to Create Authorization Group for SAP Standard Tables

    All,
    I have 10 standard tables which are required to maintain by the user in Production environment.
    Is there any way to create a custom auth group for the standard table?
    Is it possible to assign same table in two different auth groups?
    Please advice
    Thanks,
    Kotesh

    Multiple tables can be linked to an auth group, but one table can be linked to only one auth group.
    You cannot link one table to more than one auth group.
    It is always advised to try to find an existing auth group having tables of same functinality and criticality, before creating a new auth group.
    In case you don't have any such auth group, I feel you can create a Z auth group using se16->tbrg.
    You can also create auth group using tcode se54.

  • Change the descripcion of a field standard table

    Hi guys,
    I have an standard program type SAPMVXX, I need to change the description of a dynpro field for example akkp-MANDT have the follow description 'Mandatory' , I want to change it by 'It is an example mandt'.
    but not for all users so I can't change it with CMOD. I think I could do it with code but I don't know how.
    Thanks in advance .
    Best regards.
    Ana

    Changing the description of the standard SAP fields
    By Rahul
    Consider the following scenario:
    When entering the customer master details, we have the provision for entering the telephone number with extension, fax and telebox. Assume that we also need to enter the mobile number of the customer for which there is no provision. Also assume that we do not use telebox for any of our customers and want to use that field for entering the mobile number. Though you can directly enter the mobile number in the field u201Cteleboxu201D , the description u2018teleboxu2019 always misguides us. See the screenshot below: 
    This tutorial focuses on changing the field descriptions for scenarios similar to above.  
    All the short-descriptions for the fields are retrieved from the data element level of the corresponding fields. So we need to change the descriptions at the data-element level.
    So our first step is to know the data element used for the field u201CTeleboxu201D. Press F1 and then F9 to know the data element. See the screenshot below:
    Make a note of the data element.  
    Now go to transaction CMOD
    Click on Goto à Text enhancements à Keywords à Change 
    Enter the data element.
    Click enter. The following screen would appear: 
    Now change the descriptions as per the requirement. See the screenshot below:
    Click on save. 
    Now to verify the changes, go to SE11 and enter the table name ADDR1_DATA. Check the short description for the field EXTENSION2: 
    Also go to transaction XD01 / XD02 and check the field:
    The description u201CTeleboxu201D is now changed to u201CMobile Nou201D

  • Need to create a Change document for tracking Purpose on standard table

    Hi Experts,
    I am updating a field in standard table so need to create a change document for tracking the changes being done on the field.
    I created the change Document with transaction SCDO but I am stuck at point - How to call that in the report program to enable the change document.
    Please advice.
    Thanks!!

    Hi
    U can assign your transaction to Z-report like this:
    PARAMETERS: TAB1 RADIOBUTTON GROUP R1 DEFAULT 'X',
                TAB2 RADIOBUTTON GROUP R1,
                TAB3 RADIOBUTTON GROUP R1.
    DATA: TABNAME TYPE TABNAME.
    START-OF-SELECTION.
      CASE 'X'.
        WHEN TAB1. TABNAME = 'BSID'.
        WHEN TAB2. TABNAME = 'BSAD'.
        WHEN TAB3. TABNAME = 'BKPF'.
      ENDCASE.
      CALL FUNCTION 'RS_TABLE_LIST_CREATE'
        EXPORTING
          TABLE_NAME               = TABNAME
    *   ACTION                   = 'ANZE'
    *   WITHOUT_SUBMIT           = ' '
    *   GENERATION_FORCED        =
    *   NEW_SEL                  =
    *   NO_STRUCTURE_CHECK       = ' '
    *   DATA_EXIT                = ' '
    * IMPORTING
    *   PROGNAME                 =
    * TABLES
    *   SELTAB                   =
       EXCEPTIONS
         TABLE_IS_STRUCTURE       = 1
         TABLE_NOT_EXISTS         = 2
         DB_NOT_EXISTS            = 3
         NO_PERMISSION            = 4
         NO_CHANGE_ALLOWED        = 5
         OTHERS                   = 6
      IF SY-SUBRC <> 0.
        MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.

  • Change in output format in SAP standard transaction.

    Please find attached files having Actual Format of RG 23 A Part II & SAP format of RG 23 A Part II by using T Code J2I5 & J2I6.
                    Kindly check at your end & arrange necessary changes as per actual format.
    HI All,
    Can we change the SAP standard output  view  that is in alv into some other view i.e merging two fields into one field and displaying fileds at diffrent location in alv.  I have a requirement with J2I5 TRRANSACTION . My client need the output from this transaction to be changed into different format.
    Do help.

    This Is not possible with Standard sap Tcode...
    By Z-Program You Can Do This.....
    Regards,
    Ajit
    Edited by: ajitabap on Oct 3, 2011 5:43 AM

  • How to change the search help in the standard table?

    Hello Experts,
    Due to service package installation the search help in standard table (VBAP)  field (KDMAT) was changed from Collective search help (VMCV)  to elementary search help (VMCVA).
    Now I need to change the elementary search help to Collective search help, without taking the Access Key.
    Please suggest me the appropriate solution

    hi
    In SE11, go to the change mode of the collective search help and add the elementary search help, in the INCLUDED SEARCH HELPS tab.for including elementary search help, you just have to enter the name of search help along with its parameter in collective search help
    system autimatically takes selection method and dialog from elementary search help
    regards
    Prashant

  • How to remove all the fields added to CI_Include in Sap Standard table

    Hi, 
    I have added a new custom field in the CI_include structure in a standard SAP table. However now I want to remove that field but it not allowing me to remove the field as there is no field left in that CI_Include.
    Has anybody tried this before?

    Hi,
    I think you have to delete the whole CI. Go to SE11 enter the name of the CI and press delete.
    Not sure, but maybe this is the solution
    Regards Rudi

  • Standard Screen Element Changes with ECC6.0 in SAP Standard Transactions

    Hi,
    We have upgraded our system from 4.7 to ECC6.0. I need documentation on all GUI changes with ECC6.0 for all SAP transactions/modules.
    I mean, for example, if Sales Order creation screen (transaction code VA01) in 4.7 have say... 12 tabs, then if it has 13 tabs (standard features I am talking) in ECC6.0. I want these kind of additional chnages done to screens like.. adding new menus in menu bar or buttons on tool bar etc.
    As we need to educate our users for all the screen related standard chages by SAP because of upgrade.
    Thx in advance,
    Nagesh

    Ofcouse Nishanth, u need to code in PBO and PAI event.
    PAI   -> To read the User input and for doing validations or some thing as per ur requirement
    Hope this helps,
    Shiva kankanala

  • I want to update SAP standard tables

    Hi,
    I want to update SAP tables using BAPI. can you please suggest me how can i do this and which BAPI i should use for that purpose. I want to update KNVV , FKKMAKO , FKKVKP table.

    Hello Sourabh
    I am not sure if there is a BAPI around for updating KNVV customer data. The appropriate function module would be SD_CUSTOMER_MAINTAIN_ALL.
    Regards,
      Uwe

  • SAP Standard Table

    Hi,
    Can any one help me what are the below mentioned table? how would be useful SAP APO system?
    since, we are having huge performance promblem and planning to archive data from the following table, request you to please let me know what impact if we are archiving these table.
    Table Name : /sapapo/sdptmsv
                        RSBATCHCTRL

    Hi,
    You can check the tables cdhdr AND cdpos tables.
    Use tcode scu3 for table logging details.
    Regards
    Bhupal Reddy

Maybe you are looking for

  • XSLT: Validate if date is before date of current date

    Hi everyone, we need to check condition in XSLT transformation that if a date is before the current date or not. its easy to do this in java but not finding anything to do this in xslt. If anyone knows this please provide any pointer. TIA,

  • How do I print a list of all my book marks

    How do I print a list of all my book marks ? Thanks, Earoseme

  • MacBook Pro power drains in 10 minutes.

    I bought my MacBook Pro in Aug 2011. Most of the times it is connected to the AC adapter and I rarely used the battery. Recently in an attempt to examine the battery health, I discovered that its battery could only last around 10 minutes. The power d

  • Oracle BPM Suite 11g published API.

    Hi Guys, Can any one provide the links or docs for Published API for Oracle BPM suite 11g,Like REST etc. It has any Remote Interfaces Thanks, Venkat

  • What prerequisites shd be taken while creating dimensions in an mp?

    hi all, What are the pre-requisties should be taken while creating dimensions nor creating an multiprovider. Can anyone list me out the pre-requisites. and send me some docs if u have to my email id [email protected] regds thanxs in advance hari