How to find the engine type in EP installation

Hello,
Please let me know how I can find whether EP installation is done on ABAP or J2EE engine.

Tech
There are several places where you can check.
1.You can check in the User administration also. Go to User administration tab and search for a specific end user . In the result there is one column Datasource. If portal is installed on ABAP the column shows as ABAP.
2.You can check it in the System Administration --> System Configuration -->UME Configuration
Thanks
Lakshmi
Reward points if useful !!

Similar Messages

  • How to find the Data Type of a column

    Dear All,
    How to find the Data Type of a Column dynamically in oracle Form.
    Thanks and Regards,
    Fazil
    Edited by: user11334489 on Aug 25, 2012 9:06 PM

    hi,
    you can use get_item_property built-in
    eg:
    declare
       l_item VARCHAR2(10);
    begin
       l_item := Get_Item_Property('item_name',DATATYPE);
    end;

  • How to find the application type fora Script based on Form name?

    Hi Guys,
                can anybody tell me how to find the Application Type and output type based on Form name and print program name?
    I am having form name as: ZINVENT (INVENT is the actual) and program name as RM07IDRU.How can i find the Appliction ntype and OutType for entering into the NACE tr code.
                    i tried thru TNAPR table but i was not able to find the Entry in the TNAPR with form Name and printprogram name
                   Th Script is about Phsical inventory Documents.
    Thanks,
    Gopi.

    You can use this...
    REPORT  Z_DUMMY_ATG NO STANDARD PAGE HEADING.
    *======================================================================
    * Tablas
    *======================================================================
    TABLES: TTXFP.
    *======================================================================
    * Tablas Internas
    *======================================================================
    DATA: T_TTXFP TYPE STANDARD TABLE OF TTXFP WITH HEADER LINE.
    *======================================================================
    * Selection-Screen
    *======================================================================
    SELECTION-SCREEN BEGIN OF BLOCK SCRIPT WITH FRAME.
    SELECT-OPTIONS:
                  PRINTNAM FOR TTXFP-PRINT_NAME,
                  TDFORM   FOR TTXFP-TDFORM.
    SELECTION-SCREEN END OF BLOCK SCRIPT.
    *======================================================================
    * Start-of-selection
    *======================================================================
    START-OF-SELECTION.
      PERFORM SELECT_DATA.
      PERFORM PRINT_DATA.
    *&      Form  SELECT_DATA
    *       Seleccionamos los datos del reporte.
    FORM SELECT_DATA.
      SELECT TDFORM PRINT_NAME LAST_PROG
      INTO TABLE T_TTXFP
      FROM TTXFP
      WHERE PRINT_NAME IN PRINTNAM
        AND TDFORM IN TDFORM
      ORDER BY TDFORM.
    ENDFORM.                    "SELECT_DATA
    *&      Form  PRINT_DATA
    *       Imprimimos el resultado del reporte.
    FORM PRINT_DATA.
      FORMAT COLOR 3.
      WRITE: 'Programa', 18 'Formulario', 50 'Flag de Ultimo programa'.
      FORMAT COLOR OFF.
      SKIP 1.
      IF NOT T_TTXFP[] IS INITIAL.
      SORT T_TTXFP BY PRINT_NAME.
        LOOP AT T_TTXFP.
          IF T_TTXFP-LAST_PROG EQ 'X'.
          FORMAT COLOR 4.
          WRITE:/ T_TTXFP-PRINT_NAME, 18 T_TTXFP-TDFORM, 60 T_TTXFP-LAST_PROG.
          FORMAT COLOR OFF.
          ELSE.
          WRITE:/ T_TTXFP-PRINT_NAME, 18 T_TTXFP-TDFORM, 60 T_TTXFP-LAST_PROG.
          ENDIF.
        ENDLOOP.
      ENDIF.
    ENDFORM.                    "PRINT_DATA
    Greetings,
    Blag.

  • How to find the message type for application

    Hi Guys,
    while postnig the data through idocs,we use message types
    the issue is how can we find the massage type for application?
    plzz help

    You can find these in transaction WE82.
    You can find in WE57, this basis type, which fm is attached (BAPI_IDOC_INPUT1).
    Then check out transactions WE41 and WE42.
    You can use the table EDIMSG, in SE16 to list all the msg types making use of the same IDoc.
    or
    If you want to get all the message types, you can use WE81.
    If you want to see which message types are attched to a particular Idoc type, use WE82
    check it in BD60 and WE57..

  • How to find the file type without the file extension using indesign javascript (.jsx)

    hi,
    How to identify the file type (eg: InDesign or Quark) without knowing their file type. How can we find what kind of file is that??? without their extension like ('.indd','.qxd') before import to the document...

    Hi subha_oviya,
    Take a look at the file filtering section in the InDesign CS3 sample script ImageCatalog.jsx to see how to look for file types. I'm assuming that you're using InDesign CS3, and that you're using the Mac OS--you didn't say.
    Thanks,
    Ole

  • MLGT - How to find the Storage Type

    Hello,
    I have been trying to use MLGT to find the storage type but I have discovered this table does not have all the records.  For example - I know that material AAAAAA using Wharehouse number BBB should show CCC for Storage type but when I look in MLGT I see that AAAAAA does not have a record that uses wharehouse number BBB.  When I look in MM03 I see that the material has CCC for the storage type.
    Does anyone know why this table would not have all the records?  Is there a better table to get the storage type?
    Thanks,
    Matt

    I am not able to catch what you try to achieve.
    MLGN-LTKZE  is just an indicator. if it has the name of a storage type, then either by design or just by chance.
    SAP takes this indicator to lookup the placement strategy. (setup in trx OMLY).
    There you can see all possible storage types.
    A storage type view at a material master is almost only needed if you use fixed bin strategy. then you can specify the fixed bin per storage type in a material.

  • How to find the license type ( per seat or per processor ) for exsting sql server instance ?

    Hi All,
    could you please help me on to find the license type of the existing sql server instance ...
    I already tried with below queries to find license type but no luck.
    SELECT  ServerProperty('LicenseType') as LicenseType, ServerProperty('NumLicenses') as ProcessorCount 
    Thank You,
    rup

    Hello,
    If you run the following statement, you should be able to get “"Enterprise Edition: Core-based Licensing ..." if the instance
    is using a core-based license.
    select serverproperty('Edition')
    The following post may help you too to determine if you are using Enterprise Core Edition:
    http://blogs.msdn.com/b/sql_shep/archive/2012/06/21/sql-server-2012-license-core-limitaion.aspx
    Hope this helps.
    Regards,
    Alberto Morillo
    SQLCoffee.com

  • How to Find the Data Type of the Field In a Database Table

    Hi Experts,
    I'm currently working on a program which needs to find out the data type of the given field in a database table. In addition to accessing DD03L directly, is there any other workaround such as function module to help me achieve this? It would be helpful if a demo example could be provided.
    Thanks a lot.

    Hi,
    Use this..
    DESCRIBE FIELD dobj  TYPE typ.
    write typ.
    type will contain the data type of the object.
    and check this thread also....
    Re: How to get datatype of fields in dynamic structures
    Cheers,
    Simha.
    Reward all the helpful answers..

  • How to find the cube type ( aso/bso)

    Hi all,
    How to find/ know if the cube is ASO or BSO type.
    I have no documents to know the history of the cube.
    any help would be apprceciated.
    thanks
    Ram

    In EAS when you look at the application Nodes, ASO apps have a red asterisk in the middle of the node.
    In MaxL if you run a Display application statement, the column 'Storage Type' will return a '1' for BSO and '4' for ASO.
    I think EAS should break them out and group separately. You can do this with custom views if you want, but I don't see the need for that. Simply having a group heading called ASO and BSO with appropriate apps under them would be a nice enhancement IMO.

  • How to find the Class Type of a Class ?

    Hi,
    Can anyone tell how can I find a Class Type of a Class?
    e.g. I know the Class name as "Z_ABC" but do not know its Class Type, therefore, not able to display it in CL01.
    Regards,
    Lucky

    Hi,
    Just by entering the Class name in CL02 does not display the data because system asks to enter the Class Type as well.
    Rammohan - Thanks for thissolution however, when I executed after entering the Class Name, table displyed no entries found..... message but this class is being used in the PO Release Strategy. May be the data is being saved in some other table. Is there any other way to find this?
    Regards.

  • How to find the transaction type in our program

    dear sir,
              in solution manager in that crmd_order there are 4 transaction type (SLF1 SLFN SLFD SLFH) .. now i want to validate one field in standard screen in that t-code crmd_order . but the same screen used in all transaction type (SLF1, SLFN,SLFDand SLFH ) i want to validate that field only if the transaction type is SLF1 or SLFN otherwise no need .. so i want to check if transaction type is SLF1 or SLFN in my program .. so now i need transaction type .. so how how capture type in our program ( not SY-TCODE ) is stored in any system variable..
    Regards
    kumar

    hi siva velma,
    thank you fro your answer.
    how i conclude that when i see the where list which table is the actual table i need.
    please make me understand that.
    what about the ordre types ..in crm how we have them..for complaints , returns, sales order etc.in r/3 we have re for returns, or for std sales order.
    there so many sales orders which one i should take.
    there are so many transaction types for complaints cmrr,cmrp,dmrb etc - for complaints.which is for what how i wil know.
    <b>if i want to print the out of a output list how do i do that .pl tell me the spool settings.the printer settings.</b>
    thank you,
    hun<b></b><b></b>

  • Where/How to find the condition-types to an given order-position

    Hi,
    need to knwo the table, where the
    kondition-types to an order --> order-position
    are stored!?
    Because I want to analyse, which order (order-positions)
    have a specific kondition-type!
    Thanks for help!

    Hi,
    the condition types are stored in table konv. To get the link between an order and the corresponding condition types, first read the order header (table vbak). The field vbak-knumv is your link to table konv.
    Regards,
    Thomas Langen

  • How to find the Date and time of Installation of Oracle in Windows?

    Hi ,
    Is there any way to find the installation Date and time of Oracle in Windows?
    Regards
    Rajesh

    If you have never recreated/restored/reincarnated the database, then CREATED column from v$database should tell you when you created the database.
    If you are looking for the date/time of installation of Oracle home, check the logs under OraInventory.
    Reply by Satish sir at following link:
    installation date/time of a database !!
    Hth
    Girish Sharma

  • To find the date type fields in the row and validate those date fields

    TYPES : BEGIN OF TY_MARA,
              MATNR TYPE MARA-MATNR,
              ERSDA TYPE MARA-ERSDA,
              ERNAM TYPE MARA-ERNAM,
              LAEDA TYPE MARA-LAEDA,
              MTART TYPE MARA-MTART,
            END OF TY_MARA.
    DATA : it_mara TYPE STANDARD TABLE OF ty_mara,
          it_mara1 TYPE STANDARD TABLE OF ty_mara,
           wa_mara TYPE ty_mara.
    loop at it_mara into wa_mara.
      describe field wa_mara-ersda type c_data.
    if c_data eq 'D'.
      CALL FUNCTION 'DATE_CHECK_PLAUSIBILITY'
        EXPORTING
          date                            = wa_mara-ersda
       EXCEPTIONS
         PLAUSIBILITY_CHECK_FAILED       = 1
         OTHERS                          = 2
      IF sy-subrc eq 0.
    wa_mara-ersda = '00000000'.
        append wa_mara to it_mara1.
        write :wa_mara-matnr,wa_mara-ersda.
        else.
            wa_mara-ersda = '00000000'.
        append wa_mara to it_mara1.
        write :wa_mara-matnr,wa_mara-ersda.
      ENDIF.
      endif.
      endloop.
    This issue regarding how to find the date type fields in the row and validate those date fields.If its not a valid date ,i have to assign initial value to that.
    I've tried that for single field using describe field.Please help me do that for all fields.

    Hi Sam,
     I believe we had discussed the same issue in the below thread. Can you please refer the below one?
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/d93e16ff-c123-4b36-b60b-60ccd34f6ca7/calculate-time-differences-in-infopath?forum=sharepointcustomizationprevious
    If it's not helping you please let us know
    Sekar - Our life is short, so help others to grow
    Whenever you see a reply and if you think is helpful, click "Vote As Helpful"! And whenever
    you see a reply being an answer to the question of the thread, click "Mark As Answer

  • Hoe to find the Application type for  Script?

    Hi Guys,
                 Can antbody tell me how to find the Application type for a Form.?I was given a req with form name ZINVENT.He asked to make some changes to the exisitng form.
                the form is for Displaying Physical Inventory Documents.table is IKPF and ISEG.
                 I was not able to see in NACE tr Code becoz i dont know the Application.and i dont know the print program also,But he gave me the name of the program as RM071DRU, which i was not able to find the SE38 tr code
              So anybody can plz tell me what's the Application and print program?How can we find in NACE tr code?
    Thanks,
    Gopi.

    Hi Gopi,
    U can check the application type ME or M1 in NACE transaction.
    If not check the program name given to u in TNAPR table..where in u can find the application type and output type...
    Reward if useful..
    Venkat

Maybe you are looking for

  • How to figure out if someone has your stolen iPhone?

    My iPhone was stolen and I think I may have located the person who has it (via the Internet).  If I ask them for the serial# or ISBN is there any way for me to locate that information in iTunes or iCloud without having my phone anymore?

  • Apple account   App

    i just got an iphone and set up my apple account (i am on bill pay). i want to download free apps. when i put in my account it says that my apple id has not yet been used in the itunes store and i should review this. when i follow this it is asking m

  • Firewire 400 and 800 together

    I have 2 external HD firewire: 120Gb Firewire 400 and 500Gb Firewire 800. They work fine EXCEPT when I connect both HD to my PB. I have to use 1 at a time, not together. Do I have to do something to use them togheter? Its both LaCie HD PB G4 17" 1.67

  • ORA-00333

    Hi, when I started my database last week, it started correctly. But I am getting this error in the alert_log. why is this? how can I fix this? the last few lines of my alertlog ALTER DATABASE OPEN Wed Jun 16 11:33:13 2010 Beginning crash recovery of

  • Can VMS 2.1 and LMS 2.1 be installed in same server?

    Dear all, May I know can VMS 2.1 and LMS 2.1 be installed in same server? If so, how about the sequence of installation? If LMS 2.1 is already installed on the server, do I need to install the VMS Common Services? Thanks Gary