Query to know RFC's , built in  FM , customised FM

Hi All,
I would like to know the way  to attain at how  many RFC FM are there in SAP system and like wise how many  customized FM  ( Normal Function Modules) and some std FM which starts with z . all  this i should arrive at each seperately .
EG: like if i go to Table   TFDIR   in which we have to give FuncName as Z*
and  FMode as R .. then I will attain at all RFC's in sap system ..but it is giving me some std FM also which starts with Z.
pls revert ASAP.
I hv a reqt on this .
Thanks in Advance.
Thx,
Sofia

you can write a select on TFDIR
*for remote FMs
select funcname from tfdir into table it_RFMS where FMODE eq 'R'.
*for Z fMs
select FUNCNAME from TFDIR into table it_ZFMS where FUNCNAME like 'Z*'
and FMODE NE 'R'.
*for Others
select FUNCNAME from TFDIR into table it_others where FMODE NE 'R' and
FUNCNAME in it_range. " here build ranges to exclude Z*

Similar Messages

  • Query to know number of columns in a table

    please can anyone suggest me a query to know number of columns in a table i.e.
    if I want to know how many number of colums are present in a specific table then what would be the query
    Message was edited by:
    user625519

    Give this a shot:
    SELECT table_name,count(*) as "# of Columns"
    FROM dba_tab_cols
    WHERE table_name = <table name>
    GROUP BY table_name
    ORDER BY table_name;There are other views as well such as USER_TAB_COLS and ALL_TAB_COLS.
    HTH!

  • SQL Query, to know the list of Invoices associated with a sales order

    Hello All,
    Can any one let me know the query to know the list of all the invoices associated with a sales order.
    Please do the needful.
    Thanks,

    Hello All,
    Please let me know is this possible to have the list of Invoices for an associated Sales Order.
    Thanks,
    Abdul

  • Is there any query to know the multiple users name from their ids?

    is there any query to know the multiple users name from their ids?

    Hi,
    Goto TCode SUIM  Select Users  Select Users by Address Data
    It will give you the users list
    Regards,
    Sankaran

  • What is a query to know what Privileges a user is having?

    what is a query to know what Privileges a user is having?
    for both DBA and System....
    Thanks in advance.

    This is a complicated question. Because roles have privileges. And those privileges can be roles. So the level of nesting can get quite complex quite quickly.
    So the best thing for you to do would be to check out Pete Finnegan's find_all_privs.sql script, which does the whole thing for you.
    Cheers, APC

  • Workflwow query to know the status of the PO, Action, performed by

    can any one help me to get the workflow query to know the status of the PO, Action, performed by. or the table which can show the Action, Performed by.
    please help me with action history table
    Edited by: user11309801 on Jun 20, 2010 1:13 AM

    Not sure what workflow has to do with PO action history, but pl see if MOS Doc 394787.1 (How to Tell What had been Changed and Who had Made the Changes to a Purchase Order?) can help.
    HTH
    Srini

  • SQL query to know which users are working on which forms in APPS R12

    Dear gurus
    We need the SQL query to know which users are working on which forms in APPS R12, and how to get the user.name of those records.
    thanks in advance
    best regards

    Hi,
    Please see this thread.
    USERS CONNECTED
    Re: USERS CONNECTED
    Regards,
    Hussein

  • How to find bex query name of which dashboard built on?

    How to find bex query name of which dashboard built on?

    Hello,
    When you add a "SAP BW Connection" to you dashboard, you find in the output parameters the query technical name and the query description. you can bind it to the embedded spreedsheet and then use it in yoyr dashboard
    Best regards,
    Mohamed AISSA

  • Query on using RFC or proxy

    Hi,
    I  have a scenario which is from SAP to PI to Legacy. The legacy system is giving a wsdl file.And from SAP we have a standard BAPI available. I am thinking of going for a RFC-PI- SOAP scenario. But there are discussions going on to use Proxy. Please let me know which would be the feasible option using RFC or proxy at the sender.IT is a synchronus
    Thanks

    is depends upon the requirement- if u have std bapi of RFc available for the same requirement then go for that and if not then u can create ur custom program to send the data through proxy...proxy will have added advantage of performance..over RFC.
    chirag

  • Sql Query to know the OS in which database is installed

    Hi,
    I want to know the OS in which my database is installed using SQL Query.
    Is it possible?
    Regards
    Salih KM

    SQL> select dbms_utility.port_string from dual;
    PORT_STRING
    IBM AIX64/RS6000 V4 - 8.1.0
    SQL> Nicolas.

  • Query to know missing column in table

    I have lots of tables containing many columns and I want to find out that some columns are missing or not in each table.
    How can I do this using a single query?

    Hi,
    What is the other source of comparison? How you will know column is missing or not?
    To show the list of columns you can use ALL_TAB_COLUMNS.
    Regards

  • SCCM 2007 R2 - SQL query to know the compliance status of the client machines.

    Hi All,
    Can some one share the SQL query that will show the compliance of a "All systems" collection in SCCM 2007 R2 for past six months. I know that it is possible to get the reports from SCCM reporting but would like to run it from database.
    Rgs,

    In SQL queries used in the reports we have prompts and hence I wanted avoid that.
    What wrong with either removing the prompts from the query or hard coding the prompt data?
    Garth Jones | My blogs: Enhansoft and
    Old Blog site | Twitter:
    @GarthMJ

  • Get Query Data via RFC

    Hello!
    I try to execute an Query via RFC in an Visual Basic environment.
    I have heard that this could be done with RRW3_GET_QUERY_VIEW_DATA Function Call.
    Here is the source code I wrote:
         Dim getQueryData As Object
            Dim paramQuery As Object
            Dim paramInfoprovider As Object
            Dim OK As Boolean
            Set getQueryData = funcControl.Add("RRW3_GET_QUERY_VIEW_DATA")
            Set paramQuery = getQueryData.exports("I_QUERY")
            Set paramInfoprovider = getQueryData.exports("I_INFOPROVIDER")
            paramQuery.value = "ZSUNMAINACCOUNTS"
            paramInfoprovider.value = "0FIGL_VC1"
            OK = getQueryData.Call
    The object funcControl contains an successfully loged in connection to My SAP BW SEM 4.0.
    The variables paramQuery contains the technical query name to get.
    The code does't work, after adding the RRW3_GET_QUERY_VIEW_DATA I can't set the export parameters.
    Whats going wrong here! Is there documenation how to get queries out of my BW?
    Thank you for any reply!
    Best regards,
    Richard

    Hi
    I've got the same problem - did you find a resolution?
    Warwick

  • Sql query to  know the number of triggers and cursors present in a schema?

    friends,is there any way to know the number of triggers and cursors preseent in a schema.
    thanks in advance..

    what do you mean by triggers in a schema? is it the triggers owned by that schema? or the triggers applied on tables owned by that schema? remember you may own triggers applied on the tables belong to other schemas. Anyways, all this information can be extracted from oracle dictionary using a combination of all_triggers and all_tables.
    As far as cursors, please elaborate. Do you mean cursors declared in PL/SQL blocks?

  • Query to know User access in OBIEE

    Guys,
    Is there any query in OBIEE which can give me the information about available users in OBIEE and which dashbaord these users have acess to see?
    Thanks in advance.
    SK.

    If you have configured usage tracking you will be able to see the users and the dashboards they access.
    thanks
    deep

Maybe you are looking for

  • Logical Level in Content Tab

    Hi, What is the use of Logical Level under Content Tab in Logical Table Source? Need more information, docs related to this Thanks, Satheesh

  • Is there a limit to the number of Apps you can download to your iPod touch?

    I just downloaded a batch of new free apps the the App store to my Mac and then synced my iPod and it showed in the progress bar that it was transferring the new Apps to my iPod but when I checked it most on the new Apps weren't on there. Is there a

  • Case insensitive search working in dev but not in prod

    Hello All, I had set the CASE_SENSITIVE_CHARACTER_COMPARISON parameter as OFF in NQSConfig.ini file for enabling the case insensitive search in OBIEE. This setup is letting me do the case insensitive search in Dev env but the same doesnt work in prod

  • Text Threads

    Is there any way to copy or print a text thread from my Trophy? I would like to show someone a complete chain of threads from a year ago until now and would like to know the easiest way to get that data.

  • Problem moving through CardLayout

    Hi, I have been unable to find any solid examples of CardLayout, so I have been using some code I found in this forum. I'm getting hung up on how to move forward or backwards through the cards. I know it is myCard.next but for some reason I'm getting