Find package using program name/FM name.

Hi,
I want to find package using program name/FM name.
Thanks,
Amol

open se38
give program name and GOTO -> Attributes
or  for forms
open se71 and give formname and goto-> attributes
u can findout package name.
Regards,
Ajay

Similar Messages

  • Hi, How to find out the program name with short description?

    Hi Experts,
      I've a doubt regarding reports.
       I've some short descriptions.I've to find out the Technical Name of the program    using that Short descripns.Is there any transaction code available to check this
      I've tried in t.c se80.But i could not find the respective program names.
      Please help me in this regards.Its an urjent issue.
      Thanks in advance.
    Regards,
    Rekha.

    hi rekha,
    1)Goto SE84(Repository InfoSystem) tcode.
    2)In Repository Info System node, Select Program Library.
    3)Then Select Programs.
    4) And enter ur description and u press F8.
    5) u can search program name based on description, package and many othet options. check it out.
    U can find many programs with ur entered pattern.
    Select ur program.....
    Reward me if useful,
    Harimanjesh AN

  • How to find Function Module & Program Name Used by IDOC

    hii Experts,
    i want to find program name & function modules used in IDOC. I have Idoc type, Message type & extension type.
    Help me

    Hi Vinod,
    Go to transaction WE64, click on the <b>search for message type</b> or press <b>shift+F6</b>. A popup will be displayed and here enter the message type for example 'QUOTES', u will be taken to the process codes available for the message type u have entered. click on the process code and data related to that process code will be displayed in the right hand side. Now double click on the process code, a pop up with function module name will be displayed. copy that and search for where used list in SE37.
    Hope it helps.
    Regards,
    Phani.

  • Download package and program name and owner to excel

    Hi,all:
        I have a question: can i download programs' name  and owners in a specific package to a excel or word file?
    thanks in advance  and best regards
    kevin.

    Kevin,
    As Gautam mentioned you need to gather the data from TADIR table into internal table and call GU_DOWNLOAD fm to download internal table data into excel sheet
    Thanks
    Bala Duvvuri

  • How to find the logins,program name and databases for a session id?

    I used the following the following query.
    select pr.spid ,pr.dbid,pr.program_name,pr.loginame,ss.session_id,ss.host_name,ss.login_time,db.name from master.dbo.sysprocesses pr,sys.dm_exec_sessions ss,sys.databases db
    where pr.spid = ss.session_id and pr.dbid = db.database_id
    order by ss.login_time desc
    Is spid in master.dbo.sysprocesses the same as session_id in sys.dm_exec_sessions and dbid in master.dbo.sysprocesses the same as database_id in sys.databases?
    My intention is to get the active sessions with the program name,login Name and database name corresponding to the session?

    1)Why you included the clause session_id > 50?
    Sessions with session_id <= 50 are system processes.
    2)Is there any problem with the query I used?
    You query was better than Latheesh's. To wit, his query will only show the database for sessions who are actually running something.
    On SQL 2005 and SQL 2008, this is the best solution:
    SELECT  des.session_id, des.[status], des.login_name,
            d.name AS database_name, des.program_name
    FROM    sys.dm_exec_sessions des
    JOIN    sys.sysprocesses p ON des.session_id = p.spid
    LEFT JOIN sys.databases d ON p.dbid = d.database_id
    WHERE   des.session_id > 50
      AND   p.ecid =0
    ORDER BY des.session_id;
    The condition p.ecid = 0 is needed to weed out extra rows when there are parallism in force.
    On SQL 2012, you don't need sysprocesses, but this works:
    SELECT  des.session_id, des.[status], des.login_name,
            d.name AS database_name, des.program_name
    FROM    sys.dm_exec_sessions des
    LEFT JOIN sys.databases d ON des.database_id = d.database_id
    WHERE   des.session_id > 50
    ORDER BY des.session_id;
    Erland Sommarskog, SQL Server MVP, [email protected]

  • Enterprise Service: Find supplier using Product name or Product ID

    Hello,
                     I'm looking for an Enterprise Service to find suppliers who are selling a particular product by entering product name or ID as input...
                     I searched in ESworkplace and I could'nt find one, other than finding using supplier ID...
                     Does anyone have this service or know where I can find this Service please?

    Here you are. As you see, it's quite complicated -- InDesign needs a destination URL, a virtual hyperlink, and an instance of this virtual hyperlink. All in all it took me a couple of tries before I got it right. (It didn't help your example URLs don't exist yet )
    d = app.activeDocument;
    url_style = d.characterStyles.item("URL style name");
    app.findGrepPreferences = null;
    app.findGrepPreferences.findWhat = "\\<AD\\w+[\\dx]\\>";
    sourceList = d.findGrep();
    for (l=0; l<sourceList.length; l++)
         link = d.hyperlinkURLDestinations.add ( "http://www.corpsite.com/"+sourceList[l].contents);
         d.hyperlinks.add ( d.hyperlinkTextSources.add (sourceList[l]), link ).name = sourceList[l].contents+" ("+l+")";
         sourceList[l].appliedCharacterStyle = url_style;

  • Package -  using procedure names and variables

    I know that having created a package I can call the procedures using the form PACKAGE_NAME.PROCEDURE_NAME --
    However, for speed and clarity of code is there a way to 'open' the package once and then simply refer to the PROCEDURE_NAME ???
    This would be a sort of temporary synonym.
    Thanks

    You do not need to refer to qualify a procedure with the package name within the package, otherwise you must use the full package.prodedure name. So if package :pkg1 contains procedures A & B, then A can simply refer to B and vice versa, but from another package you would have to call pkg1.B.

  • Finding userexit using include name

    Hi,
    can anyone tell me how to find out userexit using the include name.
    very urgent...
    Regards,
    Amal

    hi
    Re: How to find an EXIT with the Include name ?
    if helpful, reward
    Sathish.R

  • How can I find packages using pacman?

    Hi--
    I browsed through pacman HOWTOs and doc and I still don't know how I can find available packages on all the ftp sites in my pacman.conf file.
    For example, I want to install Gnome. When I do :
    pacman -Sy gnome,
    it doesn't work. Is it because I should do something like :
    pacman -Sy Gnome, or
    pacman -Sy Gn..
    Do you see what I mean? HOW DO I FIND THE RIGHT SYNTHAX FOR A PACKAGE, OR THE EXISTING PACKAGES?
    Is there some kind of a search tool for the ftp repositories? For example,
    pacman <-search option>  Gno* (for all packages beginning with Gno)
    Thanks

    Carbono wrote:pacman -Sy gnome,
    it doesn't work. Is it because I should do something like :
    In general you need to know name of the package(s). In the case of Gnome, Xfce4 and KDE, simply call the name of group. What you did suppose to work.
    [root@localhost ~]# pacman -Sy gnome
    :: Synchronizing package databases...
    :: current is up to date
    :: extra is up to date
    :: unstable is up to date
    :: staging is up to date
    :: group gnome:
        control-center gnome-applets gnome-backgrounds gnome-common
        gnome-desktop gnome-icon-theme gnome-media gnome-mime-data
        gnome-panel gnome-session gnome-themes gnome2-user-docs metacity
        nautilus rep-gtk vte yelp
        Install whole content? [Y/n]

  • How to find packages using class path

    how to list all the packages in my class path using a java program?
    for eg. if the class path is c:\ajay;
    and ajay contains two folders pack1(i.e a package) and pack2(i.e a general folder not a package)
    in pack1 there are 2 java file which has package pack1; as their first statement.
    in pack2 there are two java file which does not contain package statement.
    so can i identify between pack1 which is a package and pack2 which is a general folder

    I don't think there's any real way to distinguish a package from an "ordinary directory" except by checking if for *.class files.
    Probably you want to use a recursive method to walk the direcotories, calls itself tor each sub-directory found.

  • To find out program name of  form

    hi abapers,
           I am not able to find out the program name of the form f110_d_avis in tnapr table. Anyone can pl help me to find out the program name of this form. Tell me the possible ways to find out the program name of the form.Thanks!!!

    Hi,
    1.Go to SPRO.
    2.select sap Reference img tab.
    3.search with form name.There u can get the related print program.
    Eg:F150_dunn_01---Dunning form(go with description).
    4. I think u r form name is Paymeny advice Form.
    So search with Payment form:
    select Assign payment form with country key.
    5.Give the country key for which the form is using.
    6.There u can find the print program.
    regards,
    Reward With points.(don't forget)
    Edited by: shiva kumar on Apr 7, 2008 11:29 AM

  • How to find out program name to the corresponding output type of invoice..

    hi ALL,
    I want to findout program name to my output type.
    For one invoice functional peoples are configured. Here i know the outtype. But i don't know the program name .
    Can any body please tell me how to find out the program name for the output type..?

    Hi,
    Goto NACE t-code
    Select Billing (V3)
    Press 'Output Types' Button
    In the next screen select the corresponding output type you want.
    Then press 'Processing Routines' in the left pane. You can see the program name
    Cheers,
    Kothand

  • How to find driver program name of  Smart Form

    Hello
    I am in stiuation, where I know the smart form name in which I need to do the changes but I don't know the driver program name. Is there ant way to find the driver  program name? Is the smart form and it's driver program name is maintained in any table?
    Please let me know if any one is having any idea.
    Thanks  & Regards.
    Chetansing Chauhan

    Hi,
    Check this links:
    driver program name
    Driver program for smart form
    Regards
    Adil

  • To find program name by using session ID or name?

    Hi,
    I need to find the program name which created the bdc session( SM35) by using the session name or Session ID.How can that be done?
    Will that be stored in some table?
    Regards,
    Pooja.

    I think if the KEEP = ' ' in BDC_OPEN_GROUP FM, the session gets cleared from SM35, so for that sessions PROGID will be blank.
    So in BDC program parameter KEEP = space, PROGID in APQI table will be blank.
    correct me if i am wrong.

  • How can i get all java class names from a package using reflection?

    hi,
    can i get all classes name from a package using reflection or any other way?
    If possible plz give the code with example.

    You can't, because the package doesn't have to be on the local machine. It could be ANYWHERE.
    For example, via a URLClassLoader (ie from the internet) I could load a class called:
    com.paperstack.NobodyExpectsTheSpanishInquisitionI haven't written it yet. But I might tomorrow. How are you going to determine if that class is in the package?
    This subject comes up a lot. If you want to do something a bit like what you're asking for (but not quite) there are plenty of threads on the subject. Use google and/or the forum search facility to find them.
    But the answer to your question, as you asked it, is "you can't do that".

Maybe you are looking for

  • [Solved] Xorg Macbook Pro 4,1 Errors

    Hello everyone. It's my first time here and I've come with issues that I was hoping to get some help with. After finally getting Arch onto my Macbook Pro 4,1 (Early 2008), I'm stumped with Xorg. For reference, after logging in the first time and sett

  • Error in Balance Sheets Adjustment - Business Area

    HI All., We are encountering a error while, doing the balance sheet adjustment for business area wise. ERROR: "Account 170112 can only be posted automatically" In OBXM- against GA1 adjustment accounts are maintained as follows: Recon A/c            A

  • I want to tranlate the menu in SAP BW BEX

    Hi,gurus:    As the descriptions of the menu in Bex are not very match the requirement.    For example,I want to translate the "result" to "subtotal".    how can I achieve this?    Your quick response will be given high score. Best Regards Martin Xie

  • Create OSS Note for DDIC Change

    Hi Gurus, I am creating note to incorporate certain DDIC changes,when I am specifying correction instruction, the system asks for Corrective measure. Can any body help me in understanding what Corrective measures are & some documenents/tutorials wher

  • Wmic exception with error 0x80020009

    Hi, When I try to execute any command using wmic, I get an exception with error code = 0x80020009. I've run wmdiag.exe and it shows no problems. I've appended partial output from trying to execute the "process" command using the "/trace:ON" option. A