How to know item type in a .fmt???

My problem is that I don't know item type when I read a .fmt
Please, Help Me.
Thank You

The FMT format is not designed to be readable - use the Forms Object list report instead. If you are trying to make changes by changing the FMT, this is not supported. Look at the Forms C api in 6i and 9i or the Java API (JDAPI) in 9i to do this kind of operation.

Similar Messages

  • 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 which type of jdbc driver used in my application

    How to know which type of jdbc driver used in my application.

    My approach will be....
    Type1: you have to have ODBC s/w install on your machine...even the connection string starts with jdbc:odbc....so it can be identifed easily
    Type2: you have to install client s/w in your machine...if you are using oracle oci driver ...you need to install oracle client s/w
    Type3: you use servername / port to connnect to middleware
    Type4: you do not need any client s/w
    So, If your application works without any client s/w on your machine....you might be using Type4/Type3 driver.....otherwise Type2
    Someone pls add more ....

  • How to know which type of apple device am using

    how to know which type of apple device am using

    Check iPad model with the Serial Number
    https://selfsolve.apple.com/agreementWarrantyDynamic.do
    Settings>General>About>Serial Number

  • How to print #ITEM.TYPE# DISPLAYNAME in an html/dynamicpage portlet.

    Hi, I want to print the item type displayname. The available placeholder is #ITEM.TYPE# but it prints the NAME column in
    WWSBR_ITEM_TYPES. I want the DISPLAY_NAME column that makes more sense IMHO. Any ideas?
    And if this can't be done, any idea how to get the current item id in PLSQL and try to find it with a custom query?
    Thanks

    This piece of code does the job, OK!
    <oracle>
    begin
    for c2 in (
    select name, display_name, language from portal.WWSBR_ITEM_TYPES where name= '#item.type#' and caid = '#item.pagegroupid#' and language='el'
    loop
    htp.p(c2.display_name);
    htp.br;
    end loop;
    end;
    </oracle>

  • How to know the type of mobile?

    how to get the type of mobile model mean under nokia asha 308(rm 352/ rm 838) which model i have when i am buying this mobile .no option to check the *#0000# option then how to get this..

    Check the label on the box or under the battery.

  • How to know return type in Web service

    {color:#0000ff}I am writing a web service client application. After invoking the service it gets the result as SOAP massage. But i need to know the return type also. How can i do that?
    {color}
    here is the response obtained from web service after invoking a subtract method, it is giving correct value but doesn't give tye of value.
    <ns:SubtractResponse xmlns:ns="http://example.ws"><ns:return>81</ns:return></ns:SubtractResponse>

    View WSDL(Web Service Description Language) file of the web service. Normally WSDL file of any web service can be referenced by appending "wsdl" at the end of web service URL. e.g. http://www.abs.com/mywebservice/invokewebservice?wsdl
    Shazzad wrote:
    After invoking the service it gets the result as SOAP massage. But i need to know the return type also. How can i do that?WSDL file for a web service contains all information regarding the web service like types, message, portType, binding, service etc. Types section have schema definitions of all messages which are being used in web service. here you can find everything about all elements, fields for all the messages in the WebService including type of the values.
    You can find more about WSDL on Sun and Google very easily.
    Hope this will help.
    Thanks,
    Tejas

  • How to know the type of accounting i.e., Cash or Accrual

    Dear Members,
    How can we know which accounting type is used _(i.e., cash basis or accrual basis)_ in Oracle e-Business Suite 11i and R12?
    Please throw some light on the above question.
    Many thanks in advance.
    Best Regards,
    R4S.

    Hi,
    When you enter accounting options in payables, you can apply which method, cash or accrual, you need for a particular set of books.
    Also, you can check which method a Ledger is following by viewing the Activity summary or T format representation of invoice entry. If the enteries are debiting expense and crediting cash, than it is cash method of accoutning. If the entry is debiting expense and crediting liability account, then it is using accrual method of accounting.
    Please let me know if above information was of any help to you.
    Regards
    Pooja

  • How to use Item Type - User Area ?

    Hi.
    How can I use User Area programmatically.
    How can I create my own User Area with C ?
    Thx.

    press F1 while you stand on the property :
    then you get many pages of help ...
    Items are the interface objects that display information to operators and allow them to interact with your application. Each item in a form (text item, image item, radio group, and so on), belongs to a block. Oracle Forms supports several types of interface items that can be used to build an application's interface. bean area An identification of a JavaBean that supplies a control for this item. chart item A bordered rectangle of any size that can display a chart or other display generated by Graphics. Operators cannot navigate to or manipulate chart items.
    ....

  • How to know the type of a control

    Hi,
    Here's a hard one.
    The column 14 (Document Type) in the Stages of Sales Opportunity.  What kind of control it is.
    Here's what I tried that doesn't work yet :
    SAPbouiCOM.EditText DocType = (SAPbouiCOM.EditText)Matrix.Columns.Item(14).Cells.Item(Matrix.RowCount).Specific;
    SAPbouiCOM.ComboBox DocType = (SAPbouiCOM.ComboBox)Matrix.Columns.Item(14).Cells.Item(Matrix.RowCount).Specific;
    SAPbouiCOM.Matrix DocType = (SAPbouiCOM.Matrix)Matrix.Columns.Item(14).Cells.Item(Matrix.RowCount).Specific;
    SAPbouiCOM.Grid DocType = (SAPbouiCOM.Grid)Matrix.Columns.Item(14).Cells.Item(Matrix.RowCount).Specific;
    SAPbouiCOM.Item DocType = (SAPbouiCOM.Item)Matrix.Columns.Item(14).Cells.Item(Matrix.RowCount).Specific;
    SAPbouiCOM.Field DocType = (SAPbouiCOM.Field)Matrix.Columns.Item(14).Cells.Item(Matrix.RowCount).Specific;
    This one works tho :
    SAPbouiCOM.ComboBox Stage = (SAPbouiCOM.ComboBox)Matrix.Columns.Item(4).Cells.Item(Matrix.RowCount).Specific;   // 4 is the Column for Stage

    What doesn't make sence here is that
    SAPbouiCOM.ComboBox Stage = (SAPbouiCOM.ComboBox)Matrix.Columns.Item(4).Cells.Item(Matrix.RowCount).Specific;   // 4 is the Column for Stage
    For the column 4 it works perfectly and for the column 14 it doesn't work at all.
    but what is the difference between the 2 columns as I look at them they look idendical in fonctionalities.
    if I use a Try Catch I get this :
    Unable to cast COM object of type 'System.__ComObject' to interface type 'SAPbouiCOM.EditText'. This operation failed because the QueryInterface call on the COM component for the interface with IID '{AE1C43FF-0F2B-4130-A0B7-40E38D5EC60E}' failed due to the following error: No such interface supported (Exception from HRESULT: 0x80004002 (E_NOINTERFACE)).
    Now who will be able to tell me what type of object is in the column 14 of the stages in Sales Opportunity ?

  • How to know the type of transactions by seeing the data in IP_IN_QUEUE

    Hi B2B gurus,
    I am Using EDI X12 over internet. Our suppliers processing inbound transactions to us,After receiving from B2B its storing in IP_IN_Queue, The documents which we are sending it storing in IP_OUT_Queue.
    We want to see the data in in IP_IN_QUEUE, Could you please tell in which table the data will store, And can we see the payload or can we know actually which transactions by seeing the data in table? Could you please help by giving this information...?
    regards
    srinivas k

    As I mentioned earlier view "b2b_instancemessage" has "payload" column which stores the payload of both incoming and outgoing messages.
    Below query will return all the rows of this view which has payload -
    select * from b2b_instancemessage where payload is not null;
    Remember, it's a BLOB type field so either use a client like PL-SQL Developer or TOAD otherwise write a java client to view the content of this column.
    Regards,
    Anuj

  • How to know workload type

    Hi,
    Is there any tsql-query/DMV through which I can tell my workload type on database, whether mostly Reads or mostly writes happening?
    Thanks in Advance.

    To know your workload,
    you may use Activity Monitor
    Ref: http://technet.microsoft.com/en-us/library/cc879320(v=sql.105).aspx
    Or Performance Dashboard Reports:
    Download here and Tutorial here

  • How to know Movement type details

    hi experts
    to Know about the Movement types Details is  SPRO-MM-Inventory Management & Physical Inventory-Movement Types-Copy, Change Movement types and Click on Documentation
    here until " change movement types " i followed
    after that where to go and check for the documentaion
    can you explain the steps
    thanks
    ganesh

    Go to SPRO-MM-Inventory Management & Physical Inventory-Movements Types- and Here Select the Doucmentaation Icon Prior to Radio button of Copy, change Movement Types
    Here you will get all the Movement type Details........

  • How to use Item Type User Area in Oracle Forms 6i

    Hi, People.
    Please, give the link - How can I use User Area programmatically. Thx.
    Message was edited by:
    user625002

    http://www.oracle.com/technology/documentation/6i_forms.html

  • Developer 6i,Item type "User Area" and "Bean Area"

    kindly I want to know how to use item type "user area" and "Bean Area",i never used them and i didnt find good help about them,and i appreciate any help with examples.

    Hello,
    I have forgotten what is the user area because it has disapear with the 9i version.
    The bean area allows you to put some java bean component inside your Forms module.
    Check out the demos available on the Forms OTN page
    http://www.oracle.com/technology/sample_code/products/forms/index.html
    Francois

Maybe you are looking for