How to know the program type?

Hi,
I want to know what type of execution method a certain concurrent program has, ( e.g if it is SQL*PLUS, REPORT, SPAWN, PL/SQL etc)
I run the following sql at apps/apps
1* select distinct execution_method_code from fnd_concurrent_programs
SQL> /
E
R
H
P
I
K
Q
M
A
J
X
B
S
L
E
Where do I get the corresponding meaning of this code please.
How do I query at the form level all the PROGRAM name with execution type SQL*PLUS?
Thanks a lot

Hi,
Where do I get the corresponding meaning of this code please.Try the queries in the following links:
PSP PL/SQL API for Customizations Tracking
http://dbaanswers.blogspot.com/2007/11/psp-plsql-api-for-customizations.html
Query 9: SQL to view all types of request Application wise
http://knoworacle.wordpress.com/2009/01/12/oracle-application-top-useful-sql-queries/
Display Module Wise Reports
http://oracle-applications-rama.blogspot.com/2007/05/display-module-wise-reports.html
Or, refer to eTRM and see if it is documented there.
eTRM
http://etrm.oracle.com
How do I query at the form level all the PROGRAM name with execution type SQL*PLUS?From System Administrator responsibility, navigate to Concurrent > Program > Executable, Press F11, select "SQL*Plus", Ctrl + F11
Regards,
Hussein

Similar Messages

  • How to know the output type for particular tcode

    Hi
    how to know the output type for the VL10D & VAL TCODES.
    Can anybody help me out.
    Thanks and Regards
    Krishnarao

    Hi Krishna,
    GO to NACE and select your application and click on output types and in the next screen select your output type and and dbl click on Processing routines.
    Here you will come to know about which driver program is used for which smartform or Script.
    and for Program details you can refer table: REPOSRC
    Regards,
    Sachin

  • How to know the platform type

    Hi
    I would like to know the platform type am using in the frontend..am trying to use the static method
    cl_gui_frontend_services=>GET_PLATFORM...it returns '5'..am not able to interprete the importing parameter
    Please suggest
    Regards
    Panda

    PLATFORM_UNKNOWN     -1
    PLATFORM_WINDOWS95     1
    PLATFORM_WINDOWS98     2
    PLATFORM_NT351          3
    PLATFORM_NT40          4
    PLATFORM_NT50          5
    PLATFORM_MAC          6
    PLATFORM_OS2          7
    PLATFORM_LINUX          8
    PLATFORM_HPUX          9
    PLATFORM_TRU64          10
    PLATFORM_AIX          11
    PLATFORM_SOLARIS     12
    Regards,
    Rich Heilman

  • How to know the program attached to each button ?

    Hello,
    When I press on various buttons in SAP various ABAP programs/functions are launched/executed. How can I know the name of the program/functions that is attached to these buttons? I want to debug through these programs/functions because they have functionalities similar to the ones I want to implement so I want to get access to these ABAP programs but how?

    Hi,
    You can debug and identify..
    Before pressing the button..Press /h in the command field to start the debugger..
    Then press the button..
    It will take you in the degugging mode..
    Thanks,
    Naren

  • How to know the proxy type??

    How can I know the type of proxy I am connecting to?? like whether its SOCKS, or HTTP etc...which all are enabled....
    thanks in advance....

    I get an error java.net.SocketException: Malformed reply from SOCKS server while connecting through the proxy.That indicates that there isn't a SOCKS proxy at the indicated host:port.
    Is there any other chances of errors than socks not being enabled?You could have got the host or port wrong.
    and how can I know if it is really enabledThe connection will work ...

  • How to know the Control type using event param???

    Hi,
    I wrote a function on MOUSE OVER EVENT. I called this
    function from a LIST and DATAGRID using addEventListener.
    Now i got a requirement like on event fire.. i wanna alert
    the control type i.e., whether the action fire from LIST or
    DATAGRID. I can create two different function for both LIST and
    DATAGRID. But requirement is like cannot reapeat the code.. code
    minimization.
    Is there any property to know the type of control(Like its
    LIST or DATAGRID) using event parameter??
    Thanks & Regards
    PRatap

    You can try using flash.utils.describeType or
    flash.utils.getQualifiedClassName on event.target property and
    figure out the control type.

  • How to know the connection type?

    Hi guys,
    I need to know what's the connection type (3G or WIFI) of a mobile device (Android and iOS) is enabled. Is it possible? I'm using Flex 4.5.1.
    Could someone help me?
    Thanks,
    Luis

    Hi guys,
    I found the answer:
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
    <uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
    var interfaces:Vector.<NetworkInterface> = NetworkInfo.networkInfo.findInterfaces();
    for(var i:uint = 0; i < interfaces.length; i++) {
                        if(interfaces[i].name.toLowerCase() == "wifi" && interfaces[i].active) {
                            lbl.text = "WiFi connection enabled";
                             break;
                        } else if(interfaces[i].name.toLowerCase() == "mobile" && interfaces[i].active) {
                            lbl.text = "Mobile data connection enabled";
                            break;
    http://cookbooks.adobe.com/post_Detecting_the_network_connection_type_with_Flex_4_-18791.h tml

  • How to know the program that a user is running.

    Hello SAPients!
    Is there a programmatic way (FM or something else) to know what program is being executed by a specific user?
    Thanks in advance.

    My full requirement is in this post:
    I need to trigger a procedure when a program ends.
    If you could take some time and read it I would really, really appreciate it.
    Thank you so much for your kind help.

  • How to know the data type of a variable?

    Hi,
       Can anyone tell me which function can return the name data type of a variable?
        Thanks!
    Message was edited by: Long Zheng

    Hi long,
    1. I don't know whether this will serve your purpose.
    2.
    REPORT abc.
    DATA : components     LIKE     rstrucinfo OCCURS 0 WITH HEADER LINE.
    DATA : t001 LIKE TABLE OF t001 WITH HEADER LINE.
    CALL FUNCTION 'GET_COMPONENT_LIST'
      EXPORTING
        program    = sy-repid
        fieldname  = 'T001'
      TABLES
        components = components.
    LOOP AT components.
      WRITE :/ components-compname , components-type.
    ENDLOOP.
    regards,
    amit m.

  • How to know the var Type

    Hallo. I need a help. I wish to know if the user input is a correct uint type or int type or Number type.. Is there any way to know it?
    Thx
    Max

    Hi Max,
    You can use the operator "is":
    var myInt:Number;
    trace(myInt is Number); // true
    trace(myInt is int); // false
    trace(myInt is uint); // false
    Regards,
    Pablo Souza

  • How to know the class type of an element in a List?

    I got a list of something. Is there a method that is used to return what type of an element is?
    Thanks.

    Peter__Lawrey wrote:
    Not sure how generics will help. A list with a generic has no more methods than a list without generics.
    There is no method like
    List<T> list;
    Class<T> elementClass = list.getElementClass();
    I was thinking of:
    List mysteryList;
    //versus
    List<Meatball> meatballs;

  • How to know the run time of a program..?

    Hi Gurus,
    How to know the exact run time of a program....?
    Suppose i've a program....I've changed the code to improve the performance.
    Now i want to compare run time of older and new one...How to do this...?
    Pls help me ....
    Thanks and Regards,
    Nagarjuna

    Hi,
    go thru the below mentioned code............
    data:   start TYPE i,
              end TYPE i,
              dif TYPE i.
    GET RUN TIME FIELD start.
    SELECT SINGLE bukrs belnr gjahr blart budat
    FROM bkpf
    INTO (cc, doc, fy, doc_ty, pst_dt)
    WHERE bukrs = p_bukrs
    AND belnr = p_belnr
    AND gjahr = p_gjahr.
    GET RUN TIME FIELD end.
    dif = end - start.
    WRITE: /001 'Time for select',
    067 ':', dif, 'microseconds'.
    Reward all helpful answers.
    Thanks

  • How to know the printprogram and output type for perticular standard script

    how to know the print program and output type for perticular standard script and wt the proceure we will fallow to modifie the standard script..if possible u have any sample code plz share with me.....

    Hi Phani,
    To know the print program and output type for a standard script we have a table called TNAPR. So just you go to SE11 and provide the table name as TNAPR and choose display option.Then go with display entries option and in selection screen you have to provide the form name for whic you want to know the print program and output type.
    To modify a standard script first of all you have to copy the standard form for which you need modifications into Zform. Once you done this you can modify the layout set as per your requirement.Then what ever the modifications you have done in layout set for that you need to populate the data.For this you also need to do some modifications to the print program.so you have to options like directly you can modify the print program as per your requirement and other one is you can create a subroutine and do coding in that subroutine. Then you need call this subroutine in the Script Form.like this you can do modifications to the standard script........................... Reward me if its helpful..........
    Thanks & Regards.
    Laxman.P
    B'lore.

  • How to know the type of a variable??

    how to know the type of a variable??
    For example, give you a variable s, how to determine if it is
    a primitive type, of an object?? If this is primitive type,
    any ways to determine if it is integer, boolean, double, ...??

    I am currently working on a project where this happens. I have a main type of object that all of my other types extend. While working on the objects in a method, any type of other object could be coming through. To test I try to cast the object and catch class cast exceptions. This only works because I know the different type that will be coming through....
    public void testObject(classX object){
      try{
        classY object = (classY)object;
      }catch(ClassCastException CC){
        try{
          classZ object = (classZ)object;
        }catch(ClassCastException CCC){
          /// the object fails to be cast as the types I tested for.
    }

  • How to know the status of concurrent program from back-end in oracle apps

    Hi,
    Can you please explain me step by step how to know the status of the concurrent program from back end in oracle apps.
    Thanks,
    Raj

    When a record is being updated by a form, if you create a Pre-Update trigger on the block, the trigger will run for each record being updated.
    Same thing happens with a Pre-Insert and Pre-Delete trigger.

Maybe you are looking for