Regarding the FM and FG in a Transport Request

hI Experts,
I have created a Function Module and make some changes in the Function Group but in the Transport Request i see that i have only Function Group only.
Is Function group automatically contain the function module.?
Regards,
RG

Hi,
Dont worry ... the Transport Request has the Function Group. This means the Function Module is also under the same Request.
Whenever a Function Group is transported, all the FMs inside the Function Group are also transported.
Hope this helps!
Regards,
Saurabh.

Similar Messages

  • Question regarding the "mcxquery" and "dscl -mcxread" commands:

    Question regarding the mcxquery and dscl -mcxread commands:
    Does anyone know why the mcxquery and the dscl . -mcxread commands don't show any info about MCX managed login items & printers? The System Profiler's "Managed Client" section does. Id like to see info regarding managed printers and managed login items using the mcx tools. I have Mac users running 10.5.2 with both login items and printers that are pushed out to them via MCX. The System Profiler app shows all of their policies, but the dscl . -mcxread and mcxquery tools dont. Why not?
    -D
    Message was edited by: Daniel Stranathan
    null

    How do you "call procedures/functions" without sql code? You need at least the call statement like
    {call myProc(?,?,?)}that you wrap into a CallableStatement.
    Other than that: when you switch off autocommit, you need to call commit/rollback at the end. Usually, if you don't commit/rollback a non-autocommitted connection, the transaction get's committed/rollbacked when you close the connection - that depends on the JDBC driver. But it's never a good idea to ommit the commit/rollback calls on a non-autocommit connection. Usually you enclose your code in a try/catch block like this:
    con.setAutocommit(false);
    try {
       con.commit();
    } catch (Exception e) {
       con.rollback();
    } finally {
        con.setAutocommit(true); //or:
        con.close();
    }

  • Advantages and disadvantages of merging transport requests

    Can anyone tell me the various advantages and disadvantages of merging transport requests?
    Moderator message: potential interview question, always search for available information before asking.
    locked by: Thomas Zloch on Sep 14, 2010 12:44 PM

    Please search for available information on SCN.
    Regards
    Abhii

  • Unable to collect the changed query elements to a transportable request

    Hi All,
    I had saved the query changes to dummy request, now I have to collect the changed qurey elements in a transportable request. This I am doing in the transport connection tab in rsa1. Now I want to collect only the changed elements of the query, & not all the elements. I have made (changes) restriction to a key figure inside the keyfigure collum. Now when I try to make a collection of this to a transport request - I am unable to find it under the query elements in the transport collection.
    Pls advice how to collect it in a transport request & move it?
    Thanks & Reagrds,
    Shreesh.

    Hi Shreesh,
             It may be collected under default request. You can collect changed objects by releasing default request.
    aftre releasing default request
    go transport connection(TX-RSOR) object type -
    >query elements -
    > Query--> collect your query.
    Grouping option as only necessary object
    then click on "Package"
    then check for your objects if not checked against your query elements(which you want to collect), plz check. at the same time check for your query name it should also be checked then only query will carry the changes.
    Hope this will help you.
    Thanks,
    Vijay.

  • Regarding the Customer and Vendor insurance

    Hi Gurus,
    My client is dealing with food materials,the requirement of the client is he will take an insurance policy say for 1cr and is valid accross India.The moment any sale or purchase takes place and which is transported in a truck,the invoiced amount should be automatically deducted from the policy and the system should warn them if the amount or validity date is near lapse so that they can renew the policy.
    If any customer is picking the goods then the amount should not be deducted from the policy.Can anyone please help me in this issue.
    Thanks in advance,
    Ramesh.
    Edited by: malladirb on Jul 28, 2011 7:18 AM
    Edited by: malladirb on Jul 29, 2011 11:37 AM

    Dear Sreenivas,
    My client deals with food materials.He buys the raw materials from farms and transports from different locations to the main plant where the material is processed.Similar is the scenario with the sales.The customers of the  Client r in different locations in the country.The requirement here is,if the client sells or procures any material which involves transportation by a truck (in case of any accident taking place) he can claim the insurance for the amount.
    What ever the amount which is invoiced in the above explained scenarios should be deducted from the insurance policy which is an Inland Transit Insurance policy and similar is the case with the expots also.
    I hope my explanation is clear to u.
    Thanks & Regards,
    Ramesh.

  • Regarding the focusGained and iteratorBindingChange events

    Dear Jdev/JClient team,
    I'm trying to build up a self-style API based upon the
    JClient classes to emulate more or less the mechanisms
    of the Developer tool. My first efforts were to match
    next concepts:
    JUApplication <---> Application (Frame)
    JPanelBinding <---> Form
    JUIteratorBinding <---> Block
    Moreover, I'm using my own toolbar that I want it to
    act at application level. This toolbar uses the
    JUActionBinding dynamically because it's able to target
    the current panel binding "in focus". I'm also intercepting
    the focusGained events to perform the typical navigation
    triggers in Developer: WHEN-NEW-ITEM-INSTANCE,
    WHEN-NEW-RECORD-INSTANCE, WHEN-NEW-BLOCK-INSTANCE and
    WHEN-NEW-FORM-INSTANCE.
    In this context, I have some major concerns:
    1) I've reading about the next 9.0.3 version, and I'm very
    interested, and quite worried, about possible changes
    in the way the focusGained and iteratorBindingChange
    events will be delivered. I mean, these events will be
    delivered in the same situations in the next version??
    Knowledge about this is vital due to the fact that my
    API relies in the JClient current behavior.
    2) Regarding the structure of bindings, I've read and
    I've seen that the JPanelBinding really don't act
    at "Form" level. That is, you can associate all your
    panels to only one JPanelBinding. However, I prefer
    to use one JPanelBinding for each "Form". In this
    context, I have the next particular problem. I have
    two or more JUPanelBinding and I have a class that
    implements the JUNavigationBarInterface to track
    the current JUIteratorBinding by registering itself to
    all these JUPanelBinding, and one of these JUPanelBinding
    has only one JUIteratorBinding. In this case, when
    I navigate to this last JUPanelBinding from another one
    I don't receive the iteratorBindingChange event.
    Browsing the source code this is "normal" because a
    JUPanelBinding with only one JUIteratorBinding is
    expected to delivered this event once. However, this
    mechanism seems very restrictive (or maybe a bug). The
    problem seems to be that the standard toolbar are
    expected to receive these events and track the iterator
    binding, and this standard toolbar only acts at
    JUIteratorBinding or JUPanelBinding level. Nevertheless,
    I want a toolbar that can share all the panel bindings!!
    Is this something you plan to change in 9.0.3? is this
    a bug? a non-supported functionality? What can I do?
    I'm thinking in ignoring the iteratorBindingChange
    events and generating them by myself upon receiving
    the focusGained events which act at JUApplication level.
    Is this a good idea? Will this be compatible with 9.0.3?
    The next piece of code is part of the current implementation
    of the JUPanelBinding. You can see that the mNavBarInit
    variable make the class to only deliver the iteratorBindingChange
    event once if we have only one JUIteratorBinding. This is
    issue I'm referring to.
    public void focusGained(...)
    if (mNavigationBarList != null)
    JUIteratorBinding currentIter = null;
    ArrayList al = getIterBindingList();
    if (al.size() > 1)
    //this could be optimized by keeping track of current iterator.
    currentIter = iterBinding;
    else if (!mNavBarInit)
    mNavBarInit = true;
    currentIter = (JUIteratorBinding)al.get(0);
    if (currentIter != null)
    al = mNavigationBarList;
    for (int i = 0; i < al.size(); i++)
    ((JUNavigationBarInterface)al.get(i)).iteratorBindingChanged(currentIter);
    I would appreciate any comments, advice or information you
    can address to me.
    Thanks in advance.
    Jaume Espriu
    Software engineer
    [email protected]
    SAME S.I. S.A.

    1) I've reading about the next 9.0.3 version, and I'm very
    interested, and quite worried, about possible changes
    in the way the focusGained and iteratorBindingChange
    events will be delivered. I mean, these events will be
    delivered in the same situations in the next version??
    Knowledge about this is vital due to the fact that my
    API relies in the JClient current behavior. I'm not sure where you get the "impression" that raising of focusGained and iteratorBindingChanged events will be changed?
    - focusGained is generated by Swing and should stay the same. JClient does not raise/block raising of this event.
    - iteratorBindingChanged event is generated by JClient when the RowSetIterator for an iteratorBinding is changed
    No bugs were fixed/resolved for this area of the code.
    2) Regarding the structure of bindings, I've read and
    I've seen that the JPanelBinding really don't act
    at "Form" level. That is, you can associate all your
    panels to only one JPanelBinding. However, I prefer
    to use one JPanelBinding for each "Form". In this
    context, I have the next particular problem. I have
    two or more JUPanelBinding and I have a class that
    implements the JUNavigationBarInterface to track
    the current JUIteratorBinding by registering itself to
    all these JUPanelBinding, and one of these JUPanelBinding
    has only one JUIteratorBinding. In this case, when
    I navigate to this last JUPanelBinding from another one
    I don't receive the iteratorBindingChange event.
    Browsing the source code this is "normal" because a
    JUPanelBinding with only one JUIteratorBinding is
    expected to delivered this event once. However, this
    mechanism seems very restrictive (or maybe a bug). The
    problem seems to be that the standard toolbar are
    expected to receive these events and track the iterator
    binding, and this standard toolbar only acts at
    JUIteratorBinding or JUPanelBinding level. Nevertheless,
    I want a toolbar that can share all the panel bindings!!
    Is this something you plan to change in 9.0.3?No.
    is this
    a bug? a non-supported functionality? What can I do?You may want to implement some kind of focus changed mechanism where you "common" toolbar is notified of the current panel in focus so that it can then update it's iterator binding to current panel's iterator binding.
    Default raising of the event iteratorBindingChanged(), is only within the context of one JUPanelBinding instance.
    I'm thinking in ignoring the iteratorBindingChange
    events and generating them by myself upon receiving
    the focusGained events which act at JUApplication level.
    Is this a good idea? Will this be compatible with 9.0.3?I believe so.
    The next piece of code is part of the current implementation
    of the JUPanelBinding. You can see that the mNavBarInit
    variable make the class to only deliver the iteratorBindingChange
    event once if we have only one JUIteratorBinding. This is
    issue I'm referring to.
    public void focusGained(...)
    if (mNavigationBarList != null)
    JUIteratorBinding currentIter = null;
    ArrayList al = getIterBindingList();
    if (al.size() > 1)
    //this could be optimized by keeping track of current iterator.
    currentIter = iterBinding;
    else if (!mNavBarInit)
    mNavBarInit = true;
    currentIter = (JUIteratorBinding)al.get(0);
    if (currentIter != null)
    al = mNavigationBarList;
    for (int i = 0; i < al.size(); i++)
    ((JUNavigationBarInterface)al.get(i)).iteratorBindingChanged(currentIter);
    I would appreciate any comments, advice or information you
    can address to me.
    Thanks in advance.
    Jaume Espriu
    Software engineer
    [email protected]
    SAME S.I. S.A.

  • Regarding the GR and the IR

    Hi ,
    Is there any way to relate the GR value and the IR value that is take for example
    i have three GRs 10 20 50 for the first 10 and 20 an IR is created and for the third another seperate IR is created is there any way to match the IR and GR

    hi,
    go to purchasing doc ie ME23N,  and then go to purchase history tab.
    there you can see against which GR which Invoce is done.
    to find PO for particular GR : go to Tcode migo - display - enter gr no.- in purchase order history tab - you get OP no.

  • Regards the ipad2 and iOS5.1

    Have, under the direction of apple, updated the software on my 4 month old ipad2. Since then the ipad appears to take on a mind of its own at some times, opening up programmes, playing my music, locking up, not allowing me to use other applications. At this momemt am tempted to return it to the supplier as it is still well within its warrenty! Any one got any suggestions!

    Have you tried a reset to see if that fixes it ? Press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • How can we download a smartform and sapscripts under a transport request.

    hi abaper's
                   my requirement is that i have to download the transport request objects smartforms and sapscripts to do this i have to make a report, so that a person can run this report and enter the request number , then the objects  smartform and sapscripts download automatically for him.
    or is thr any standard report progrma available in sap system.
    thanks & regards
    pardeep kumar

    hi gopi
    what is this i can read only 1 here.

  • The correct way to delete old transport request record ?

    Dear all,
    We want to delete old transport request record before 2008 (two years before) of our system.
    We learn that we should delete the records in the below two path:
    /usr/sap/trans/data
    /usr/sap/trans/cofiles
    Our target is that we will not see the old record after deleting in our PRD system.
    Normally, we see the transport request record in system by this way:
    STMS -->  import overview --> PRD --> Import Queue   system PRD --> Import history
    Our question is do we need to restart our system after delete the record to refresh the Import history?
    We have not delete the record now.
    Any experienced or expert, please kindly give advice.
    Regards,
    Allen

    Hello Allen,
    there are some notes and documentations for this process. Deleting the files from /cofiles and /data will not erase the request from the import history, as you already know.
    You should follow note #41732 to have the requests/data completely deleted from your system. There is a lot of complementary reading in notes #7224, #556734, #189841, etc.
    Note that you can remove the request from the import queue, import history, data and cofiles subdirectory, but still have it on the <SID> buffer (located in  /usr/sap/trans/buffer/<SID>). If this happens to you, please save a copy of the buffer file <SID>, then create a new, blank file named <SID> at a time when the import queue is empty (VERY IMPORTANT). Or, alternatively, please excute the tp cleanbuffer FIL command (which will erase the requests that are not found in /data and /cofiles directories).
    --> Please test this first on a test system, not directly on a productive environment.
    This should be enough to delete old transport requests on your system.
    Best regards,
    Tomas Black

  • Only display and assign function for transport request

    Hi,
    I have a requirement for transport creation. I need to set a restriction on transport creation.the requirements are as per below :
    Group A : Allow to create a transport request - both workbench & customize request.
    Group B : Allow to assign transport request to the one create by Group A. This group is not allowed to create any request be it
                    workbece or customize.
    I found an object - S_TRANSPRT. I have create a role and assign only activity DISPLAY & ASSIGN to group B. However, group B can still create customize request. Is there any other objects that I have to restrict.
    Appreciate your feedback.
    Thanks,
    IAzir.

    Hi
    You can take system trace(ST01) and find out what are the objects and the field values you need to restrict.
    If you are able to find the same, its good , if not let us know.
    Regards,
    RItesh

  • Regarding the logo and guidance required to get in to IT field

    Hi Team,
    I have just completed my OCA(9i) Developer Track
    Please guide me from where I can download the logo to add it on my cv.
    Now I want to do a DBA Track 10g i.e. 1z0-042 and 1z0-043 is it necessary to join instructor base training institute to get the certificate??(after clearing the exam) or one can do only one subject training and submit the oracle form?
    and do self study for second paper (43) is it possible?? or I have to do both instructor base training
    what is scope for 9i developer OCA in the market as I am fresher in database (I have experience from other field i.e KPO) will it help me if I show the certification in CV do they give me chance to enter in Technology and I cant show fake experience
    How I should get more and more chances in the field of Database to ensure my knowledge
    Please suggest me the procedure to prove my skill in the field of IT
    Regards
    Tushar

    user9312215 wrote:
    Hi Team,
    I have just completed my OCA(9i) Developer TrackTo be very strictly correct this is not actually true; as I am fairly you have not recieved evidence via your certiication success kit or via Certview in which case either of these would give you details of where to get the logo.
    I believe you have exam passes for the relevant exams, but that is not quite the same thing as the certification.
    >
    Please guide me from where I can download the logo to add it on my cv.
    http://certview.oracle.com
    http://blogs.oracle.com/certification/2009/11/0080a.html
    Now I want to do a DBA Track 10g i.e. 1z0-042 and 1z0-043 is it necessary to join instructor base training institute to get the certificate??(after clearing the exam) or one can do only one subject training and submit the oracle form?
    and do self study for second paper (43) is it possible?? or I have to do both instructor base training
    If you take either course from oracle university you only need to attend one hands on class ... you will not receive 10g DBA OCP without it. (10g DBA OCA does not need it).
    If you are taking the course via a WDP instiute, which is more econmical but risks lesser quality, this is less clear to me whether the complete course has to be attended {thread:id=1065168}
    what is scope for 9i developer OCA in the market as I am fresher in database (I have experience from other field i.e KPO) will it help me if I show the certification in CV do they give me chance to enter in Technology and I cant show fake experience There are too many factors to give a simple answer; and conditions in different parts of the world may be different. Experience may often be more important than certification. I would image the market for DBA's with certifications and little experience is saturated in many parts of the world.
    Previous experience in a related business area can help. As you KPO and bigdelboy dunno you should hve a better answer than I; i merely try to mainly do cerification process logistics and strange humour.
    >
    How I should get more and more chances in the field of Database to ensure my knowledge Use KPO
    Please suggest me the procedure to prove my skill in the field of ITPublish useful blog on the web on how to do something technical.
    Regards
    TusharRegards - bigdelboy .... in a holiday mood.

  • Please help me regarding the law and telephone pol...

    Hi guys this is my first post but I've been suffering for a few weeks with this matter and need some help from those in the know...
    I had a new line put in to the house which is about 1m from the middle of the pair of semi detatched where I live.
    The cable travels over my next door neighbours garden to the pole on the other side of the street at around 45 degrees.
    They can open all the windows etc, it's over 3m high and doesn't pass over any buildings, but they have complained about the installation. I have had 3 or so visits from BT engineers who seem to want to move heaven and earth to keep my neighbour happy but don't seem so concerned with my opinion and I really don't want to move the cable to the other side of the house as all my cables enter on the same side and I don't want trailing wires across the render (plus it's not the point as theres a history between us).
    I had another visit today saying that they are now looking at possibly installing a new pole outside my house for the cable which in my view is insane as there is another one about 10m away and I already have a bus stop outside my property.
    Can anyone please help me to understand and advise on:
    1. Where I stand in terms of having to move the cable.
    2. If I have any grounds to object and prevent a new pole being sited outide my house (if he wants it outside the next door thats up to him).
    3. Whether I can say even if a new pole is installed that I can still insist the cable remains in the original position.
    4. Any other advice on how to make this harrassement stop without giving in to his bullying.
    If anyone has any help/guidance/legislation to offer I'd really appreciate it as it's really upsetting both me and my elderly mother who I live with. 
    Thanks guys.

    pete-r36 wrote:
    Hi guys this is my first post but I've been suffering for a few weeks with this matter and need some help from those in the know...
    I had a new line put in to the house which is about 1m from the middle of the pair of semi detatched where I live.
    The cable travels over my next door neighbours garden to the pole on the other side of the street at around 45 degrees.
    They can open all the windows etc, it's over 3m high and doesn't pass over any buildings, but they have complained about the installation. I have had 3 or so visits from BT engineers who seem to want to move heaven and earth to keep my neighbour happy but don't seem so concerned with my opinion and I really don't want to move the cable to the other side of the house as all my cables enter on the same side and I don't want trailing wires across the render (plus it's not the point as theres a history between us).
    I had another visit today saying that they are now looking at possibly installing a new pole outside my house for the cable which in my view is insane as there is another one about 10m away and I already have a bus stop outside my property.
    Can anyone please help me to understand and advise on:
    1. Where I stand in terms of having to move the cable.
    2. If I have any grounds to object and prevent a new pole being sited outide my house (if he wants it outside the next door thats up to him).
    3. Whether I can say even if a new pole is installed that I can still insist the cable remains in the original position.
    4. Any other advice on how to make this harrassement stop without giving in to his bullying.
    If anyone has any help/guidance/legislation to offer I'd really appreciate it as it's really upsetting both me and my elderly mother who I live with. 
    Thanks guys.
    Hi Pete.
    Not sure about existing cables, but i am sure they would need your neighbours permission to cross over his land.
    Michael (ypt) might come in here. he lives about 30ft from his nearest pole(second house away) Apparantly the original neighbour on the new builds gets his line from this pole but refused permission for the cable to go over his land to others, so for his property (about 30ft from the pole) it goes across the road to another pole, then down the road for about 100ft to another pole, and from there goes back across the road to his house.
    Stupid I know.
    toekneem
    http://www.no2nuisancecalls.net
    (EASBF)

  • Regarding  the rowset and row tags in the XML output

    Hi,
    We generated an XML file using dataset of type SQL query.The output is including additional tags
    <ROWSET> and <ROW> tags.How to disable them from appearing in the XML output.

    Hi,
    Iam not using the Datamodel of data template type.If we use the data template we can disable the rowtags by setting the property mentioned by you.But we get the data template name and the query name included in the output.My requirement is to disable the extratags.
    Can u please provide inputs on how to disable the datatemplate name and the query name tags in the output when we use datatemplate.Thank you.

  • How to get the number and response time of HTTP request through Weblogic?

    hi,
    does anybody know how to get the HTTP request information through Weblogic server, such as the number of HTTP request in 1 min and the average response time of request in 5 mins ?
    Or is there anyway i can do it through monitoring and get these data then? If so, please help tell me.
    Thanks in advance
    BTW, we don't have the 3rd-party monitoring tool here.

    Hi,
    tables: usr02, usr41.
    data: OPCODE_MODE_COUNT(1) TYPE X VALUE 3,
          modes like sy-index,
          u_MODES LIKE MODES.
    select * from usr02.
      select * from usr41 where BNAME = usr02-bname.
        CALL 'ThUsrInfo' ID 'OPCODE' FIELD OPCODE_MODE_COUNT
          ID 'TID' FIELD usr41-TERMID
          ID 'MODES' FIELD MODES.
        IF SY-SUBRC = 0.
          u_MODES = u_MODES + MODES.
        ENDIF.
      endselect.
      if sy-subrc = 0.
        write:/ usr02-bname, u_MODES.
      endif.
      clear u_modes.
    endselect.

Maybe you are looking for