Question about Function group

Hi All,
I have to transport a function module from development to next environment. The function group has around 9 function modules among them i have edited one and assigned to a transport request. Do I have to include function group also in the transport along with the function module? pls suggest, in which scenarios we have to transport function group along with function module?
Thanks in advance.

Hi Suresh,
You dont need to transport the Function Group. You would transport it only if the FG is not available in another system or if there is any change in the main program of the FG.
If you create a New Function Module and attach the FM to this FG, then an include gets automatically added to the main program. In this scenario you may need to transport all.
Thanks & Regards,
Ram.

Similar Messages

  • Question about Everyone Group in SharePoint 2013

    Hi,
    I have couple of question about EVERYONE group below,
             - As per the best practice which Group we should use instead of EVERYONE group in Sharepoint ?
             - What is the difference between Everyone and All Authenticated Users Group
    We have added Everyone Group in different sites, now the question is if we hide this group showing up in sharepoint people picker, is there any impact interms of current site?
             - Is there any way we can hide Everyone group showing up in the people picker only for the site / Site Collection level.
    Please help.
    Thanks
    srabon

    There is no functional difference between the Everyone group and All Authenticated Users (after Active Directory has been upgraded to Server 2003 native schema).
    I'm not aware of any function to hide the group from the People Picker.
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • Question about function with in parameters

    Hello,
    I have a question about functions with in-parameters. In the HR schema, I need to get the minimum salary of the job_id that is mentioned as an in-parameter.
    this is what I am thinking but I dont know if it's correct or not or what should I do next!
    create or replace function get_minimum_salary (i_job_id in varchar2)
    return number
    as
    begin
    SELECT min_salary INTO min_sal
    FROM jobs
    where job_id = get_minimum_salary(xy);
    RETURN i_job_id;
    end get_minimum_salary;
    thanks in advance
    EDIT
    Thanks for your help all.
    Is it possible to add that if the i_job_id which is the in type parameter does not have a minimum salary then use the following function to register an error:
    create or replace procedure insert_error (i_error_code in number,
                                                      i_error_message in varchar2)
    as
    begin
    insert into error_table (error_user, error_date, error_code, error_message)
    values (user,sysdate,i_error_code,i_error_message);
    end insert_error;
    This function is basically to say that an error has occured and to register that error, at the same time I need to print out the error using the dbms_out.put_line.
    Any ideas of how to do that?
    Thanks again
    Edited by: Latvian83 on Jun 1, 2011 5:14 AM

    HI
    I have made little bit changes in ur code. try this
    create or replace function get_minimum_salary (i_job_id in varchar2)
    return number
    as
    v_Min_sal jobs.salary%type=0;---- Variable declaration
    begin
    SELECT min_salary INTO v_ min_sal
    FROM jobs
    where job_id = i_job_id;
    RETURN v_Min_sal;
    end get_minimum_salary;
    Regards
    Srikkanth.M

  • A question about cache group error in TimesTen 7.0.5

    hello, chris:
    we got some errors about cache group :
    2008-09-21 08:56:15.99 Err : ORA: 229574: ora-229574-3085-ogTblGC00405: Failed calling OCI function: OCIStmtFetch()
    2008-09-21 08:56:15.99 Err : ORA: 229574: ora-229574-3085-raUtils00373: Oracle native error code = 1405, msg = ORA-01405: fetched column value is NULL
    2008-09-21 08:56:28.16 Err : ORA: 229576: ora-229576-2057-raStuff09837: Unexpected row count. Expecting 1. Got 0.
    and the exact scene is: our oracle server was restart for some reason, but we didnot restart the cache group agent. then iit start appear those errors informations.
    we want to know, if the oracle server restart, whether we need to restart cache agent?? thank you..

    Yes, the tracking table will track all changes to the associated base table. Only changes that meet the cache group WHERE clause predicate will be refreshed to TimesTen.
    The tracking table is managed automatically by the cache agent. As long as the cache agent is running and AUTOREFRESH is occurring the table will be space managed and old data will be purged.
    It is okay if very occasionally an AUTOREFRESH is unable to complete within its defined interval but if this happens with any regularity then this is a problem since this situation is unsustainable. To remedy this you need to try one or more of:
    1. Tune execution of AUTOREFRESH queries in Oracle. This may mean adding additional indexes to some of the cached Oracle tables. There is an article on this in MetaLink (doc note 473493.1).
    2. Increase the AUTOREFRESH interval so that a refresh can always complete within the defined interval.
    In any event it is important that you have enough space to cope with the 'steady state' size of the tracking table. If the cache agent will not be running for any significant length of time you need to manually cleanup the tracking table. In TimesTen 11g a script to do this is provided but it is not officially supported in TimesTen 7.0.
    If the rate of updates on the base table is such that you cannot arrive at a sustainable situation by tuning etc. then you will need to consider more radical options such as breaking the table into multiple separate tables :-(
    Chris

  • Question about split group by in IQ16 SP08.

    Dear all,
    I have a customer who encountered performance of "union all view".
    As per our analysis, IQ optimizer does't split the Group By.
    [Query]
    select "EDPS_CSN","count"()
      from "adwown"."vw_adw_dpy111n_01"
      group by "edps_csn"
    As far as I know, There are some restrictions on the situations and queries that benefit from the split GROUP BY.
    But this view meets all restrictions.
    Please refer to the below URL.
    [Impact on query performance of GROUP BY over a UNION ALL]
    - http://infocenter.sybase.com/help/index.jsp?topic=/com.sybase.infocenter.dc00169.1520/html/iqperf/iqperf35.htm
      So I would like to know the following questions.
      1) How to enforce the split the group by.
      2) Any changes about split group by in IQ16 SP08?
      I failed to attach the query pland becuase it's extension is html.
      Any comments or advice will be greatly apprecaited.
      ** Base Table Rows
        1) ADWOWN.TB_ADW_DPY119N : 23,259
        2) ADWOWN.TB_ADW_DPY111N : 398,017,348
        3) ADWOWN.TB_ADW_DPY117N : 16,160,487
    Thanks
    Gi-Sung Jang

    The big issue is that the GROUP BY is on the view, not on the base tables.  At the time of optimization, we don't know always know the data distribution of the GROUP BY key.  At least we don't know whether or not each table in the UNION ALL has overlapping data for that column.  Consequently, you have to retrieve all data first, sort/order it, then run the group by.
    There are caveats to this, as your link provides.  But what is missing from your post is the logic of the view.  Can you provide that?
    Mark

  • About function groups and includes?

    I ahve created 1 function groupa nd module
    then id int keep any thing in function module like tables,impot..exportsourcecode
    i dint fill ..when im checking for errors its showing nothing but when activating its saying "report stmt is missing"
    y this happening?
    about includes..
    I wanted to include one in other include
    when im im wriitng select stmt in second include the error is
    "stmt is not accessble"
    pls clarify my doubts as soon as possible

    Hi,
    When ever you execute or check it will give "report stmt is missing" so you need to use this includes in report program only.
    For include in which select is there also need to keep in report program.
    You cannot execute include/module pool pragram
    regards,
    Sreevani

  • Two questions about Logon Group

    About logon group, it describes as below in the help.sap.com.
    1. Each SAP application has different resource requirements. Certain applications may therefore require more servers and logon groups. For example, you should assign separate servers for the application component PP.
    Q1: How a certain application use more than one servers via logon group, and how it use sap memory which resides in different servers?
    2. If it is not practical for you to assign separate servers to integrated applications, such as the application components SD-MM and FI-CO, you should assign common logon groups to these applications.
    Q2: I don't understand this sentence exactly.
    Thanks so much.
    James

    Not sure if I exactly understood what your problem is, but let me give it a try:
    A1: One logon group may have several servers attached to it. If users user1, user2, user3, ... are going to connect to the logon group, they will be sent to different servers. None of those users will be able to use memory from more than one server. But, let's say user1 and user2 will use resources from server1, whereas user3 will use resources from server2. The goal is that all servers will have the same (or similar) load, just by distributing users.
    A2: If it is not possible to have four logon groups for the four applications SD, MM, FI, CO, but you still want different logon groups, then, at least, you should create two logon groups, one for SD and MM, the other one for FI and CO. That's because resource requirements are similar for SD and MM, and for FI and CO.
    hope this helps

  • Simple Question About Using "Group by" Inside the Oracle XE Query Builder

    Hi,
    I am a new user of Oracle 10g XE and I have built and populated some tables. I am trying to create a view (make a query) via using the Query Builder. I have chosen two attributes, say course_section_ID and trainer_ID in the same table. I choose the "COUNT" function for course_section_no and I check the box for "Group By" with trainer_ID. (I would like to count the number course sections each trainer is teaching). Then I "run" the query and the same error message appears:
    fail to parse SQL query:
    ORA-00904: "COURSE_SECTION"."TRAINER_ID": invalid identifier
    Both attribute names should be valid (as shown above).
    If I only choose course_section_ID and do a COUNT on it, it gives the same error message on course_section_no.
    I did try to do the same thing with the demo HR database. There were no problems with counting a field nor with grouping on a field with HR.
    PLEASE HELP!
    Thanks.

    I have got it. When all the attribute names are in the uppercase, then I can do aggregate functions and "group by" with the GUI.

  • Question about SNMPv3 group/user configuration

    I'm trying to do configure SNMPv3 on a 2811 router for the following:
    - group ADMIN should allow user access from 10.10.1.0/24
    - user IT is on group ADMIN, using MD5 authentication
    Is the following the right configuration? should I configure engine-ID? should I put "access 1" to the "snmp-server user" command?
    snmp-server group ADMIN v3 priv read READMIBS write WRITEMIBS access 1
    snmp-server user IT ADMIN v3 auth md5 password
    access-list 1 permit 10.10.1.0 0.0.0.255

    Now I did pull off a way to hide groups based on the step contextuly without different profilesWould you mind sharing this with the community? It might be helpful for the others, and it could also help to move your question forward.
    I am trying to imagine:
    - one place where you can add idocScript to rules&profiles is Rules Activation Condition. Was this you way?
    - if so, you could have several rules, under a single profile (my previous answer was a bit imprecise in that respect), and within the activation condition you can specify when you want the rule to apply, and in the rule itself you can then specify what fields, and whether a field should be editable or read-only, etc. Note that you can have multiple rules defining usage of the same metadata field - it is more transparent if activation conditions are mutually excluding
    I'm still struggling with your pressure on showing/hiding groups. Could you describe it on a real-life example? Also, could you describe what is your way to display metadata within a workflow process?
    My real example is as follows:
    - an invoice document is scanned by a receptionist. It could be an A/P invoice for paying raw material, or office supplies (I think they had three major categories). Depending on that, the receptionist sends it to the appropriate department (by filling an option-list metadata)
    - the head of department either accepts it, or sends it to the correct department. By accepting, he or she also fills in the responsible clerk to process the invoice (also an option-list)
    - the clerk is no longer allowed to modify Dept and RespPerson metadata, but fills in other metadata like Supplier, Invoice Amount, etc. - those fields are not visible to previous reviewers at all
    - etc.

  • Question about function RRT_BROWSE_MEASURES

    To experts or SAP guys familiar with this abap function
    RRT_BROWSE_MEASURES
    In this function, in form _
    browse_measures
    ->
    _browse_cubes
    , it will save cube info in a buffer table,
    g_sx_cache-cube
    My question is, when will this buffered table be cleaned, at some intervals or until the user logs off? I have this question because it has caused some problem in our code.
    Thanks,
    Ray

    useless, close it

  • 5th Generation 80GB iPOD - Questions about functionality

    All - I have a new 80GB video iPOD. The question I have is if I leave it just sit on my desk overnight and not plugged into my PC or power, I come in the next morning and go to use it and it seems as though it is shutdown. I press the button to turn it on, an Apple appears and it boots up. After that it appears to be fine, I am just curious if this is normal or not? Thanks in advance!

    The iPod Nano and the Fifth Generation iPods have a feature called hibernation. Quote: "This allows the iPod to go into a power conservation mode after 14 hours of inactivity but resume operation in the same state as when it was last used. When the iPod wakes from hibernation, you will see the Apple logo displayed for a moment before the menu appears": iPod: About Sleep, Deep Sleep, Hibernation, and Sleep Timer

  • Basic question about functionality of SSF

    Hello,
    we are working on a process with external party to receive a csv file from there.
    The file will be duplicated and the duplicate converted into a data file which we use to import data into an R/3 system.
    Now the csv file will be enhanced by a pkcs7 based signature which we have to verify. After successful verification the duplication step will be started and the file will be moved to the archive.
    My question is, because I have never worked with SSF:
    Is the SSF / the SAPSECULIB able to do such a verification and if yes, are there any conditions for use of SSF, e.g. third party products (for which purpose)?
    Best regards
    Dirk

    Yes, that's possible - notice: SAPSECULIB is part of the shipment (in contrast to SAPCRYPTOLIB). You can "play around" with the ABAP test program SSF02 to get familiar with the topic.

  • Question about functional of a FI/CO infoCube

    Hi all,
    I'm a new BW consultant. I've an assignment that investigating about functionals of 0FIGL_C01 and 0SD_C03 infocubes and their queries.
    Does anyone know something about that? please help me
    Regards,
    Chuong Hoang

    hi,
    check the following link about infocube of fi
    http://help.sap.com/saphelp_nw70/helpdata/en/36/8d863c651f11d3971b006094b969cf/frameset.htm
    these are the queries regarding that cube
    Technical name: 0FIGL_C01_Q0001_SCOR
    link
    http://help.sap.com/saphelp_nw70/helpdata/en/36/8d863c651f11d3971b006094b969cf/frameset.htm
    Technical name: 0FIGL_C01_Q0050
    link
    http://help.sap.com/saphelp_nw70/helpdata/en/36/8d863c651f11d3971b006094b969cf/frameset.htm
    Technical name: 0FIGL_C01_Q0030
    link
    http://help.sap.com/saphelp_nw70/helpdata/en/36/8d863c651f11d3971b006094b969cf/frameset.htm
    Technical name: 0FIGL_C01_Q0020
    link
    http://help.sap.com/saphelp_nw70/helpdata/en/36/8d863c651f11d3971b006094b969cf/frameset.htm
    Technical name: 0FIGL_C01_Q0010
    link
    http://help.sap.com/saphelp_nw70/helpdata/en/36/8d863c651f11d3971b006094b969cf/frameset.htm
    Technical name: 0FIGL_C01_Q0040
    link
    http://help.sap.com/saphelp_nw70/helpdata/en/36/8d863c651f11d3971b006094b969cf/frameset.htm
    Technical name: 0FIGL_C01_Q0002_SCOR
    link
    http://help.sap.com/saphelp_nw70/helpdata/en/36/8d863c651f11d3971b006094b969cf/frameset.htm
    0sd_c03 infocube link
    http://help.sap.com/saphelp_nw70/helpdata/en/71/1769372b2b7d20e10000009b38f842/frameset.htm
    query
    Technical Name: 0SD_C03_Q007-billing document
    link
    http://help.sap.com/saphelp_nw70/helpdata/en/17/cd5e407aa4c44ce10000000a1550b0/frameset.htm
    Technical Name: 0SD_C03_Q006-delivers
    link
    http://help.sap.com/saphelp_nw70/helpdata/en/17/cd5e407aa4c44ce10000000a1550b0/frameset.htm
    Technical Name: 0SD_C03_Q011
    link
    http://help.sap.com/saphelp_nw70/helpdata/en/17/cd5e407aa4c44ce10000000a1550b0/frameset.htm
    Technical Name: 0SD_C03_Q008
    link
    http://help.sap.com/saphelp_nw70/helpdata/en/17/cd5e407aa4c44ce10000000a1550b0/frameset.htm
    Technical Name: 0SD_C03_Q0014
    link
    http://help.sap.com/saphelp_nw70/helpdata/en/17/cd5e407aa4c44ce10000000a1550b0/frameset.htm
    Technical Name: 0SD_C03_Q004
    link
    http://help.sap.com/saphelp_nw70/helpdata/en/17/cd5e407aa4c44ce10000000a1550b0/frameset.htm
    Technical Name: 0SD_C03_Q010
    link
    http://help.sap.com/saphelp_nw70/helpdata/en/17/cd5e407aa4c44ce10000000a1550b0/frameset.htm
    Technical Name: 0SD_C03_Q005
    link
    http://help.sap.com/saphelp_nw70/helpdata/en/17/cd5e407aa4c44ce10000000a1550b0/frameset.htm
    Technical Name: 0SD_C03_Q003
    link
    http://help.sap.com/saphelp_nw70/helpdata/en/17/cd5e407aa4c44ce10000000a1550b0/frameset.htm
    Technical Name: 0SD_C03_Q009
    link
    http://help.sap.com/saphelp_nw70/helpdata/en/17/cd5e407aa4c44ce10000000a1550b0/frameset.htm
    hope this help you
    regards
    harikrishna N

  • Questions about function ---- showModalDialog()

    <html>
    <head>
    <meta charset="UTF-8">
    </head>
    <body>
    <h1>This is indexHtml!</h1>
    <button onclick="clickMe()">click Me!</button>
    </body>
    <script type="text/javascript">
    function clickMe() {
    var paramObj = new Object();
    paramObj.parentWin = "1111";
    paramObj.showtype = "2222";
    paramObj.definedate = "33333";
    paramObj.valueColName = "5555";
    paramObj.nowDate = "666666";
    paramObj.oldEffDate = "77777";
    var url = "./test.html";
    var rtn = window.showModalDialog(url, paramObj);
    </script>
    </html>
    <html>
    <head>
    <meta charset="UTF-8">
    <title>test</title>
    </head>
    <body>
    <h2>This is testHtml!!</h2>
    <button onclick="clickMe()">click Me!</button>
    </body>
    <script type="text/javascript">
    window.onload = function() {
    var gParam = window.dialogArguments;
    alert(gParam);
    function clickMe() {
    var paramObj = new Object();
    paramObj.parentWin = "1111";
    paramObj.showtype = "2222";
    paramObj.definedate = "33333";
    paramObj.valueColName = "5555";
    paramObj.nowDate = "666666";
    paramObj.oldEffDate = "77777";
    var url = "./test2.html";
    var rtn = window.showModalDialog(url, paramObj);
    </script>
    </html>
    <html>
    <head>
    <meta charset="UTF-8">
    <title>test2</title>
    </head>
    <body>
    <h2>This is test2Html!</h2>
    </body>
    <script type="text/javascript">
    window.onload = function() {
    var aaa = window.dialogArguments;
    alert(aaa);
    </script>
    </html>
    Codes above are index.html,test.html,test2.html;
    When i run the 'index.html' in ie10,it runs correctly;
    but in ie11,it throws undefined, why?
    is something wrong with my ie11?
    please Help!!!!!
    thankyou!
    ----my email:[email protected]

    Some web application modal dialog boxes don't work correctly in Internet Explorer 11 after you install update 3008923 (17 Dec-14)
    http://support2.microsoft.com/kb/3025390/en-us
    ~Robear Dyer (PA Bear) MS MVP-Windows Client since 2002 Disclaimer: MS MVPs neither represent nor work for Microsoft

  • Questions about Function AC_DOCUMENT_CREATE

    Hi guys , AC_DOCUMENT_CREATE  uses a structure called XACCIT , I filled some fields  xref3 and posn2 of this structure with my own values using  user exit EXIT_SAPLV60B_004 , however when i Check BSEG all the fields are filled except these . I ve put a break point in the function and im sure that the structure XACCIT , XACCCR  is full , What im doing wrong ? . thank you very much

    Hi,
    Try to use this structure.. "T_ACCIT_EXT"...also u can check in debug mode afther exit...is there any structre over writing your values..
    Regards,
    Nagaraj

Maybe you are looking for