Function group and transaction hav same name.

Is  it   possible to re-name a function group name which is accidently nameed same as a transaction code.
Thanks in advance,
Rupesh.

You can't rename a function group, but you can copy it. Go to SE80, put in your function group, right click on the function group name and click COPY. You can now choose a new name for the function group. After confirming you'll get another popup, where you can select the function modules you want to copy. Don't forget to rename them as well.
Hope that helps,
Michael

Similar Messages

  • Could we have same name's for User and Groups in Active directory

    When iam trying to create a user name " Logistics " under a OU, I am getting a error
    "The pre-windows 2000 logon name you have chosen is already in use in this domain. Choose  aother pre-windows logon name, and then try again"
    We already have a group by the name " Logistics "
    Could we have same name's for User and Groups in Active directory?
    Thanks in Advance

    sAMaccountName attribute is unique. So, the short answer is you cannot.
    This posting is provided AS IS with no warranties or guarantees , and confers no rights.
    Ahmed MALEK
    My Website Link
    My Linkedin Profile
    My MVP Profile

  • Have new Airport Extreme via ethernet cable from HughesNet Gen4 modem. Using NetGear WN3500RP extender. NetGear asks for different names for the 2.4 and 5 GHz bands. Most of what I have read indicats extender shoul have same name as main network?

    Have new Airport Extreme conneted via ethernet cable from HughesNet Gen4 modem. Using NetGear WN3500RP extender. NetGear asks for different names for the 2.4 and 5 GHz bands. Most of what I have read indicates extender should have same name as main network? How is it best to configure with the Airport Extreme router 802.11ac?

    Different names for the 2.4 and 5 GHz networks are optional, but can be convenient for you to distinguish one from another. It's up to you.

  • Function Groups and Function Modules

    Hi,
    Can anyone give me the detail steps for creating Function Group and then from that function group creation of function module with example?
    Regards,
    Chandru

    Hi,
    Function Group creation -
           A function group is a program that contains function modules. With each R/3 system, SAP supplies more than 5,000 pre-existing function groups.
         In total, they contain more than 30,000 function modules. If the functionality you require is not already covered by these SAP-supplied function modules, you can also create your own function groups and function modules.
          We can put all the relevant function modules under one function group and all the global variables can be declared in this FG.
    FG Creation:
    1)     Function group can be created in SE80. There choose the 'Function Group' from the list of objects.
    2)    Then give a name for ur function group (starts with Y or Z) and press ENTER.
    3)   The click 'YES' in the create object dialog box and give a short desc. for this FG and save.
    Function Module:
                 A function module is the last of the four main ABAP/4 modularization units. It is very similar to an external subroutine in these ways:
    Both exist within an external program.
    Both enable parameters to be passed and returned.
    Parameters can be passed by value, by value and result, or by reference.
    The major differences between function modules and external subroutines are the following:
    Function modules have a special screen used for defining parameters-parameters are not defined via ABAP/4 statements.
    tables work areas are not shared between the function module and the calling program.
    Different syntax is used to call a function module than to call a subroutine.
    Leaving a function module is accomplished via the raise statement instead of check, exit, or stop.
    A function module name has a practical minimum length of three characters and a maximum length of 30 characters. Customer function modules must begin with Y_ or Z_. The name of each function module is unique within the entire R/3 system.
    Defining Data within a Function Module
    Data definitions within function modules are similar to those of subroutines.
    Within a function module, use the data statement to define local variables that are reinitialized each time the function module is called. Use the statics statement to define local variables that are allocated the first time the function module is called. The value of a static variable is remembered between calls.
    Define parameters within the function module interface to create local definitions of variables that are passed into the function module and returned from it (see the next section).
    You cannot use the local statement within a function module. Instead, globalized interface parameters serve the same purpose. See the following section on defining global data to learn about local and global interface parameters.
    Defining the Function Module Interface
    To pass parameters to a function module, you must define a function module interface. The function module interface is the description of the parameters that are passed to and received from the function module. It is also simply known as the interface. In the remainder of this chapter, I will refer to the function module interface simply as the interface.
    To define parameters, you must go to one of two parameter definition screens:
    1) Import/Export Parameter Interface
    2) Table Parameters/Exceptions Interface
    Then in the FM interface screen, give the following
    1) Import parameters
    2) Export parameters
    3) Changing parameters
    Then give
    1) Define internal table parameters
    2) Document exceptions
    You enter the name of the parameter in the first column and the attributes of the parameter in the remaining columns. Enter one parameter per row.
    Import parameters are variables or field strings that contain values passed into the function module from the calling program. These values originate outside of the function module and they are imported into it.
    Export parameters are variables or field strings that contain values returned from the function module. These values originate within the function module and they are exported out of it.
    Changing parameters are variables or field strings that contain values that are passed into the function module, changed by the code within the function module, and then returned. These values originate outside the function module. They are passed into it, changed, and passed back.
    Table parameters are internal tables that are passed to the function module, changed within it, and returned. The internal tables must be defined in the calling program.
    An exception is a name for an error that occurs within a function module. Exceptions are described in detail in the following section.
    Syntax for the call function Statement
    The following is the syntax for the call function statement.
    call function 'F'
        [exporting   p1 = v1 ... ]
        [importing   p2 = v2 ... ]
        [changing    p3 = v3 ... ]
        [tables      p4 = it ... ]
        [exceptions  x1 = n [others = n]].
    where:
    F is the function module name.
    p1 through p4 are parameter names defined in the function module interface.
    v1 through v3 are variable or field string names defined within the calling program.
    it is an internal table defined within the calling program.
    n is any integer literal; n cannot be a variable.
    x1 is an exception name raised within the function module.
    The following points apply:
    All additions are optional.
    call function is a single statement. Do not place periods or commas after parameters or exception names.
    The function module name must be coded in uppercase. If it is coded in lowercase, the function will not be found and a short dump will result.
    Use the call function statement to transfer control to a function module and specify parameters. Figure 19.9 illustrates how parameters are passed to and received from the function module.
    sample FM
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
      I_INTERFACE_CHECK                 = ' '
      I_BYPASSING_BUFFER                = ' '
      I_BUFFER_ACTIVE                   = ' '
      I_CALLBACK_PROGRAM                = ' '
      I_CALLBACK_PF_STATUS_SET          = ' '
      I_CALLBACK_USER_COMMAND           = ' '
      I_CALLBACK_TOP_OF_PAGE            = ' '
      I_CALLBACK_HTML_TOP_OF_PAGE       = ' '
      I_CALLBACK_HTML_END_OF_LIST       = ' '
      I_STRUCTURE_NAME                  =
      I_BACKGROUND_ID                   = ' '
      I_GRID_TITLE                      =
      I_GRID_SETTINGS                   =
      IS_LAYOUT                         =
      IT_FIELDCAT                       =
      IT_EXCLUDING                      =
      IT_SPECIAL_GROUPS                 =
      IT_SORT                           =
      IT_FILTER                         =
      IS_SEL_HIDE                       =
      I_DEFAULT                         = 'X'
      I_SAVE                            = ' '
      IS_VARIANT                        =
      IT_EVENTS                         =
      IT_EVENT_EXIT                     =
      IS_PRINT                          =
      IS_REPREP_ID                      =
      I_SCREEN_START_COLUMN             = 0
      I_SCREEN_START_LINE               = 0
      I_SCREEN_END_COLUMN               = 0
      I_SCREEN_END_LINE                 = 0
      I_HTML_HEIGHT_TOP                 = 0
      I_HTML_HEIGHT_END                 = 0
      IT_ALV_GRAPHICS                   =
      IT_HYPERLINK                      =
      IT_ADD_FIELDCAT                   =
      IT_EXCEPT_QINFO                   =
      IR_SALV_FULLSCREEN_ADAPTER        =
    IMPORTING
      E_EXIT_CAUSED_BY_CALLER           =
      ES_EXIT_CAUSED_BY_USER            =
      TABLES
        t_outtab                          =
    EXCEPTIONS
      PROGRAM_ERROR                     = 1
      OTHERS                            = 2
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Example
    1  report ztx1905.
    2  parameters: op1 type i default 2,   "operand 1
    3              op2 type i default 3.   "operand 2
    4  data rslt type p decimals 2.        "result
    5
    6  call function 'Z_TX_DIV'
    7       exporting
    8            p1      = op1
    9            p2      = op2
    10      importing
    11           p3      = rslt.
    12
    13 write: / op1, '/', op2, '=', rslt.
    Regards,
    Shanthi.P
    Reward points if useful ****
    Edited by: shanthi ps on Jan 26, 2008 12:03 PM

  • What is the difference between function groups and Object Orientation

    Hello all
    I have read about this on the help.sap.com site, I still do not understand it completely, can some one explain me with  a simple example please ? (Not the increment counter example please !).
    Thanks a ton.
    Rgds
    Sameer

    Hello Sameer
    When you call a module of a function group for the first time in your program then the entire function group is loaded. However, this can happen only once within your report and all global variables within the function group will have the same values all the time (except they are manipulated via fm's).
    In contrast, you can create as many instances of the same class as you want and all of them can have different global attributes. And all these instances are independent of each other.
    On the other hand, if fm_A changes global attributes of the function group and fm_B reads these attributes then fm_B read the changed values.
    Or in other words:
    Function Group = can be instantiated only ONCE
    Class = can be instantiated unlimited
    Regards
      Uwe

  • Function Group and Module Transport

    Hi All,
    I have created a new Function group and is part of transport request. Created new function modules and assigned to the same function group. When i see object list in SE09 for the transport request i see only function group, all the FM are part of same transportable package of Function group. Do i need to assign them manually in object list through SE09 as pseudo changes to FM is not capturing in the request.
    Thanks in advance.
    Regards
    Kunal.

    There is no need to manually assign fm to fg. If you transport the fg , objects under the fg get transported automatically.
    Next time if you changing only function module then your se09 entry will be
    LIMU              FUNC

  • Function Group and Subroutines

    Hi all,
    I have two Function Groups.
    I have a subroutine defined in one Function Group and want to use same subroutine in another Function Group.
    Is there any way to do it, <u><b>without redefining same Subroutine in another Function Group?</b></u>

    Hi,
        either define subroutines in include
        and inlude in function group
         include ztest.
          perform abc .
          perfrom add.
    Function group ZFG
         include ztest.
    Function group ZFG1
         include ztest.
    <b>    or</b>   
    perform test(prog1).
    Regards
    amole

  • How to change apple id on iPhone. Wife and I have same apple ID.  Get each others iMessages. want to put her on another cloud with different id.

    How to change apple id on iPhone? Wife and I have same apple ID which causes me to get her iMessages instead of her. I also get all her pics on my phone and I don't want them.  We need to change her apple ID without causing my ID and cloud to be closed.

    Have her create a new ID.   Here:  https://appleid.apple.com/
    Have her log out of iMessage/Facetime/iCloud on her device.   Now have her use the new ID she has created.
    That should keep the 2 of you separated, except for iTunes purchases.   You can share that ID in a family up to 5 devices.

  • I created a Group and put in all names and email addresses but cannot get the group to appear in an outgoing email message.  What am I doing wrong?

    I created a Group and put in all names and email addresses but cannot get the group to appear in an outgoing email message.  What am I doing wrong?

    This may help.
    Can't connect to the iTunes Store
    What happens whenyou try to connect? Error messages?

  • Keeps crashing and doesnt have same ease as before dont like it

    keeps crashing and doesnt have same ease as before dont like it
    want earlier version how can i fix asap?

    Sorry you are havvig prolems,
    See [[Installing an previous version of firefox]] although that may not solve your problems.
    *It may also be worth looking at [[basic troubleshooting]]
    *and [[firefox crashes]] <-- clickable link-- blue
    Note it is relatively easy to make firefox 4 look and behave much like firefox 3.6.
    Hope the information helps.

  • Solaris 10 cluster:failover project or zone can not have same name?

    Oracle on Solaris 10 cluster: two node SUN cluster fail over, SA advised using different account (oracle01 for node01, oracle02 for node02) to failover cluster, why can't I create same 'oracle' account on both node?
    failover different project or zone can not have same user or group account name?
    thanks.

    Hi Vangelis,
    Building a cluster, requires some planning and understanding the concepts.
    A good start would be reading some of the documents linked to in this url: http://docs.sun.com/app/docs/doc/819-2969/gcbkf?a=view
    Regards,
    Davy

  • Can we move SAP standard Function Group and Table defintion to BW

    Dear Forum,
    We are in a ‘pilot’ process of migrating SAP R/3 Custom development objects to our BW client and we have a few questions that we would like to know if possible.
    We are currently in the ‘To Be’ Blueprint Phase of migrating SAP 45B to ERP2005 as a Ramp-Up customer and we need to determine as soon as possible the feasibility of moving one particular Custom application
    from our SAP R/3 environment to BW.  This application primarily performs computational processing and does reporting of the results at the
    conclusion
    We have selected one Custom R/3 ABAP program to do a ‘pilot’ to determine the feasibility of migrating it to the BW platform. This Custom program utilizes objects from standard SAP Function Groups which are non existent in BW.  In this particular case Function groups KMS0
    (Cost Center Selection) and KAB2 (CO Reporting: General).
    Questions:
    Are we allowed to move these 2 standard SAP Function Groups to BW ? Would it alter the BW environment integrity as intended and designed by SAP?
    If we move the Function Group KMS0 and KAB2 will
    SAP support our BW environment if we decide to move them?
    Would it be considered a ‘SAP Best Practice’ to move standard SAP R/3
    objects to BW?
    Thank you in advance for your help,
    Paulo Silveira
    [email protected]

    Hi Paulo and welcome on board !
    Please don't post twice the same question...(look in the other one...)
    ..and don't forget to rewards the answers...it's THE way to say thanks here !
    Anyway, I'd suggest to close this thread to avoid to receive answers in both threads...
    Cheers,
    Roberto

  • Domain with 3DC and one Testserver same name like one of the DCs

    hey
    we have DC1 (Master DNS and GC), DC2 (GC) and DC3 (GC) which is holding a Warehouse Software.
    Now i need, only for Testing purpose, to start a newServer (it is not in Domain only in workgroup at the moment, its not a problem for my Software) with same NAME and IP like DC3. (it holds a few lokal Users with same name and passowords like my clients)
    Some Clients have to connect to it, to test the new Version of the Warehouse Software for some hours.
    --- later i will demote DC3 and promote my newServer to DC when the test was fine.
    Could in this szenario go something wrong`? with my active Directory? or something`?

    oh damn. I know this fact. i described it wrong i thing.
    we have DC1 (Master DNS and GC), DC2 (GC) and DC3 (GC) which is holding a Warehouse Software.
    Now i need, only for Testing purpose, to start a newServer (it is not in Domain only in workgroup at the moment, its not a problem for my Software) with same NAME and IP like DC3. (it holds a few lokal Users with same name and passowords like my clients) Some
    Clients have to connect to it, to test the new Version of the Warehouse Software for some hours.
    In this time the original DC3 would be shut down, before the Server with Same name and IP starts.
    --- later i will start DC3 and demote it then promote my newServer to DC when the test was fine.
    so at the tesphase only one DC3 of
    both would be started at same time...
    DC1 and DC2 are only domain controllers. there is no more communication then would normal DCs do.
    So i think when the original DC3 is shut down the communication only goes between DC1 and DC2. and my Testusers could connect directly with the ip to the new server.

  • How do I see jpg and TIFF with same name

    No flames, please. I have both, use both and I'm not about to change!
    When I view a directory with a like-named file but with Tif and Jpg extensions, LR tells me tif+JPEG, but still only shows one. Can I show both?

    Steve,
    The problem is the same as before with the exception that it will see pairs--jpeg + tiff or jpeg + raw and maybe it will see RAW + tiff with the same name. Didn't check.
    For myself, and my colleagues, we have to be able to see Tiff,jpeg, Psd and RAW with the same alpanumeric name. That is an industry standard, and, of course, available in Bridge 2.1/ACR 4.1 and dozens of other apps as well.
    So, our solution is Bridge 2.1, and that's fine, it has a better UI, is faster for workflow--though the new Library improvements have reduced that gap by about half--so, perhaps in the next version, this issue will be fixed--or perhaps not. If we didn't have Bridge, that might cut a bit deeper, but as it is, so what!
    Mark Hamburg has given a good description of the implementation in another thread about RAW + JPEG. Suddenly, there is lots of Adobe official interaction--THAT's GOOG--but he would have saved a number of us a lot of waiting and involvment had he simply indicated the same name limitation long ago--obviously, this was not a last minute piece of code! Better late than never :)

  • Why do the .default profile folders in XP and 7 have different names?

    I am a new user of SugarSync online backup that synchronizes folders between computers. My XP has a Firefox profile folder wjfvu1mr.default, and Window 7 has a profile folder 6fogozjd.default. Both systems use Firefox 4.0. I cannot sync these folders between systems because they have different names. Any ideas so I can use SugarSync? Rename on of thee .default folders?
    BTW. I would like to use SugarSync to do this but what about Firefox Sync? I know nothing about how that works.

    Profile folders are named randomly for your security. However, you should be able to change the name if you like. I have not tested this procedure, so you might want to wait for further input.
    First, make a backup: [https://support.mozilla.com/en-US/kb/Backing+up+your+information Backing up your information].
    Next, with Firefox closed, rename your profile folder.
    Then, navigate up to C:\Users\username\AppData\Roaming\Mozilla\Firefox and edit the path in profiles.ini to match the new folder name.
    Regarding Firefox Sync, since it works with desktops and mobile, I don't think it relies on profile names to match up. But Firefox Sync is a very young offering and may not have the full functionality of SugarSync.

Maybe you are looking for

  • Inernal DVD drive exchange on Satellite Pro 2100

    Is it possible to exchange the internal DVD Rom drive against a slimline DVD burner? How is this done?

  • External hard drive and SD card won't auto mount

    I am using MBP with retina on Yosemite. MacBook Pro (Retina, 15-inch, Late 2013). On Maverick, all my external drives used to auto mount. The same was true just after Yosemite was installed. Lately, only my Time Machine hard drive auto mounts and oth

  • Multiple line issue in sap script

    Hi All, There is a window in the sap script. The window consists of a text element and i am displaying 4 lines of text in that window. Sap script: /E   Reason AC  &LINE& In the source code, an internal table will have 5 text lines and those 5 lines s

  • Fire fox says my printer is not on when it is

    I can not print from a fire fox web site because it says my printer is not connected. When I get on the same webb site in internet explorer I have no problem with printing the information. My printer is connected by wifii. it is s Canon MX870

  • Why does the Adobe Help Manager not close?

    I'm not sure what the "Adobe Help Manager" (silly name) is. I notice it as an open application in my toolbar (Windows 7) but you cannot close it. It just stays there. Only goes away when I've restarted my system. Any ideas or comments? Generally spea