How to create a type

hi,
can anybody tell me how to create a type where in we can execute a procedure, every time we call it.

Hello,
What is your exact product version ?
Are you sure there is any relation woith the Oracle Forms product ?
Francois

Similar Messages

  • How to create SCD2 type manually in informatica?

    Please Can you describe with example how to create SCD2 type manually in infromatica?

    Hi Manoj,
    You should not delete the auto generated orchestration even do not modify it, as it is stated in msdn.
    The BizTalk WCF Service Consuming Wizard creates in your BizTalk project the BizTalk schemas and types necessary to consume WCF services. The BizTalk types such as port types and multipart message types are created in an orchestration. We recommend
    that you do not modify the orchestration that the wizard creates. Instead, you can add new orchestrations in the BizTalk project for your purposes.
    --------- MSDN
    For Refernce
    In your solution, if you are seperating your schemas project from orchestration project, in that case i personally advise to generate wcf endpoint in your schema project and after adding schema reference in orchestration
    project you manually create the multipart message and a request response port as it will not display in existing port.
    Regards

  • How to create Activity type

    How to create Activity type
    below are the details
    x sales MnF Expenses
    y FMS MnF Expenses

    dear sudhir
    KA01 - Create Primary Cost Element for the new activities type.
    KL01 - Create Activity Type tied to the primary cost element.
    regards
    rohit

  • How to create output type for GR,GI?

    Can any one explain,How to create output type for Goods Receipt,Goods Issue.?
    and How to take print out for both?

    Hi, jayant in standard u have output type for picking list, delivery doc complete, theres no output type seperately for PGI or PGR
    I am sure u need the help of tech guy to create the new output type for ur requirement
    regards
    giri

  • How to create document type ?

    Hi experts
    We need assign document type to mateiral in material master. So we need create new document type background. How to create it ? Does it just copy one doc type from spro-> cross application componets-> document management-> define document type?  It seems it will also copy the following screen setup .... but dont' know anything else need be setup ?
    Thanks
    Alice

    Hi Alice,
    You have create document type from
    spro-> cross application componets-> document management-> define document type
    There are already standard document types available. You ca use that or copy and create new types and assign it on the material master.
    Thanks and regards
    Murugesan

  • How to create calendar type sheet?

    Hi,
    Does anybody knows how to create a calendar like sheet?
    I think there is a function that automatically put the dates into the header but I cannot find it.
    I really don't want to write down each day from now to next year...
    Thanks to anybody that can help me.

    I found it,
    Just type the first 2 date and select both of them, Click on the little white button that appears at the bottom right and drag it down... All the following dates come.

  • How to create movement type

    hai sap gurus,
    can u clarify my problem,
    how to create a movement type and where we assign that movement type to gl account
    clarify please

    Hi Ram,
    You can create Movement type in OMJJ transaction by Copying the existing mvt types. Once you copy the mvt type all the details from the existing mvt type will be copied to new mvt type.
    Based on the Account grouping the system will identify the G/L accounts. You can check this OMJJ transaction you will get better idea.
    One more thing why you need the new mvt type, if it is really required then go for new mvt type otherwise use the SAP standard Mvt type which will serve all the purposes.
    rgds
    Chidanand

  • How to create PDF type of ivews in portal using the standard SAP template

    Hi,
    I have to create PDF type of ivew in the portal, I am trying with URL type of ivew but it is not taking " %" in URL type of ivew.
    Is there any other template availabe to create pdf type of ivews or how to create these pdf type of ivews in portal.
    Please help me out .
    Thanks,
    Manasa.

    Hi Manasa,
    You can do that by simply removing the special character "%" (in ur case) and providing " "(blank space) in its place.
    Please refer to this link: [http://help.sap.com/saphelp_nw70/helpdata/en/2f/84e378f6244113b0816b5d00cd3747/frameset.htm]
    Hope this helps !
    Regards,
    Nishant Singh

  • How to create table type in SAP3.1i ?

    Hi Friends,
    Is it posible to create table type in SAP 3.1i server ?

    Hi amit,
    I think there were no table types in 3.1i. Still you can define a structured table, i.e.
    DATA: BEGIN OF SORT_SPFLI OCCURS 100,
            CARRID   LIKE SPFLI-CARRID,
            CONNID   LIKE SPFLI-CONNID,
            CITYFROM LIKE SPFLI-CITYFROM,
            CITYTO   LIKE SPFLI-CITYTO,
            SFLIGHT  LIKE SORT_SFLIGHT OCCURS 100,
          END OF SORT_SPFLI.
    You can use field-symbols, but no loop assigning.
    What is it you want to do?
    Anyway: Have fun with good old 3.1 - I put my old docu CD in the trash recently.
    Regards
    Clemens

  • How to create a type table in designer 9i

    Hi
    In our company we use designer 9i. I want to create a type table using designer. Is it possible? I have a requirement where i need to create a type table and use in creating a view through designer.
    Create or replace type varchar2_ntt as table of varchar2(4000);
    [\pre]
    Please suggest.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    Hi
    Here I am giving the step by step process.
    1. select the container in which container you are going to create the type.
    2.Go to tools then design editor and expand the container. There you will find oracle collection types. there we have to create a new one by clicking the + button on the left side.
    3. Give the name of the new collection type.
    4. And in the collection of tab, let it be scalar, give the scalar data type,and the size and click finish.
    5. then right click on that object and give generate. there you select theDDL files only and the give the path where the scripts have to go.
    This the process.
    Thanks,
    raju

  • How to create this type of Form?

    Hello ,
    I'm new to java so I would like a hint from experts on how to create such a form :
    A form that displays Customer's Codes and their name from Oracle database , so that they appear in the form as a list of 2 columns , what kind of compnents I should use to display this kind of data ? JTextField ? I dont think so .... . And also I would like to highlight each other line so that the list looks good , then at the top of the list I want a filter so that the data is filtered each time I enter a character . The last thing is how to make the data displayed have the ability to be dragged to another form in the application so that it fills the corresponding fields relative to the data dragged ?
    Too much ha? . Please just provide hints/ideas about each point as I know it can be time consuming to give details about all this.
    Thanks in advance...

    Thank you , I tried with this code to achieve what I wanted but I get no result .
    Can you please tell me whats wrong with this code ?
    package desktopapplication1;
    import java.sql.*;
    import javax.swing.*;
    import java.awt.*;
    public class MainOMSWindow extends JPanel{
        public MainOMSWindow ()
            super(new GridLayout(1,0));
    JTable customerListTable = new JTable();
    customerListTable.setPreferredScrollableViewportSize(new Dimension(500, 70));
    customerListTable.setFillsViewportHeight(true);//to make the table uses the entire height of the container
        JScrollPane pane = new JScrollPane(customerListTable);
        add(pane);
        populateTable(customerListTable);
        private static Connection getConnection()
        Connection con = null;
         try
            String driverName = "oracle.jdbc.driver.OracleDriver";
            Class.forName(driverName);   //registering JDBC Driver
            String serverName = "localhost";
            String portNumber = "1521";
            String sid = "mydb";
            //jdbc:oracle:thin:@localhost:1521:ahmaddb
            String url = "jdbc:oracle:thin:@" + serverName + ":" + portNumber + ":" + sid;
            String user = "fundinfo";
            String pw = "tadapps";
            con = DriverManager.getConnection(url, user, pw);
         catch (ClassNotFoundException e) {
                                        System.out.println(e.getMessage());
                                        System.out.println(e.getStackTrace());
                                        System.out.println(e.getCause());
                                        System.out.println(e.getException());
                                        System.exit(0);
         catch (SQLException e) {
                                  System.out.println(e.getMessage());
                                  System.exit(0);
        return con;
        private static ResultSet useConnAndGetData()
            Connection con = getConnection();
        try
             Statement stmt = con.createStatement();
             String select = "select title,year,price from movie order by year";
             ResultSet rows = stmt.executeQuery(select);
             return rows;
        catch(SQLException e) {
                 System.out.println(e.getMessage());
            return null;
        private static void populateTable(JTable table)
            try{
        ResultSet rs = useConnAndGetData();
        while(rs.next())
    public void setValueAt(object value, int row, int column)
    •Value: The new value to be placed in the cell
    •row: The row in the JTable to be changed
    •column: The column in the JTable to be changed
    * rows and columns start at the number "0", not "1".
    * Notice that the first column in a result set is column "1".
         int row = 0;
         table.setValueAt(rs.getString("title"),row,0);
         table.setValueAt(rs.getInt("year"),row,1);
         table.setValueAt(rs.getDouble("price"),row,2);
         row++;
            catch(SQLException e)
             System.out.println(e.getMessage());
            private static void createAndShowGUI() {
            //Create and set up the window.
            JFrame frame = new JFrame("OMS");
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            //Create and set up the content pane.
            MainOMSWindow newContentPane = new MainOMSWindow();
            newContentPane.setOpaque(true); //content panes must be opaque
            frame.setContentPane(newContentPane);
            //Display the window.
            frame.pack();
            frame.setVisible(true);
        public static void main (String [] args){
        createAndShowGUI();
    }The programe throws this :
    Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 0 >= 0
            at java.util.Vector.elementAt(Vector.java:427)
            at javax.swing.table.DefaultTableColumnModel.getColumn(DefaultTableColumnModel.java:277)
            at javax.swing.JTable.convertColumnIndexToModel(JTable.java:2553)
            at javax.swing.JTable.setValueAt(JTable.java:2719)
            at desktopapplication1.MainOMSWindow.populateTable(MainOMSWindow.java:99)
            at desktopapplication1.MainOMSWindow.<init>(MainOMSWindow.java:24)
            at desktopapplication1.MainOMSWindow.createAndShowGUI(MainOMSWindow.java:119)
            at desktopapplication1.MainOMSWindow.main(MainOMSWindow.java:130)
    Java Result: 1
    BUILD SUCCESSFUL (total time: 1 second)

  • How to create HRP type infotype ?

    Hi All ,
    I have an requirement that i have to create (ECC 5.0) a HRP infotype (9330)... and am trying this from PPCJ (Tcode) but am not able to create ...
    When am going to create the infotype in PPCJ its giving the message.... <b>' Infotype 9330 cannot be created please look at the log '</b> and under Infotype category am selecting  ' Table Infotype '.
    Is their any prerequisites to be maintained before creating ?
    Please help me ....
    Thanks in advance.
    Thanks & Regards,
    Anil Kumar.

    Hi Anil,
    Use Transaction PM01.  I used this link to create my first Infotype, helped greatly.
    http://www.sap-img.com/human/how-to-create-a-hr-infotype.htm
    Hope this helps.
    Warren

  • How to create table type

    I have created table type like this..
    type type_cname_tab is table of varchar2(20)
    index by binary_integer;
    i want to know that only 20 columns are added in this table type..

    i want to know that only 20 columns are added in this table type.. Maybe you may change it to a VARRAY type?
    Then
    SQL> declare
       type type_cname_tab is varray (20) of varchar2 (20);
       cname   type_cname_tab := type_cname_tab ();
    begin
       cname.extend (20);
    end;
    PL/SQL procedure successfully completed.
    But
    SQL> declare
       type type_cname_tab is varray (20) of varchar2 (20);
       cname   type_cname_tab := type_cname_tab ();
    begin
       cname.extend (21);
    end;
    Error at line 11
    ORA-06532: Subscript outside of limit
    ORA-06512: at line 6

  • How to create this type of cursive font?

    Is this done with brushes?
    What would be the best way to create this type of handwritten look?
    thanks

    You could use an art brush to assign ink stroke like these to a line.
    Create a brush type shape that's in a straight horizontal line with the desired beginning, end and edges.
    Then Brushes > New Brush > Art Brush will create an art brush. (whilst the shape is selected)
    With just one brush you will be quite limited, but with a selection of brushes generated in this way you can create a selection of brushes to deal with the various requirements of building a brush font that has some integrity.
    You will find that despite automating the brush process to an extent, that to create lettering like you examples, you will have to make a lot of tweaks.

  • How to create multiple TYPES of objects from one menu?

    Q: How can I create a single class to create objects of multiple 'object classes' in a way that is not a huge switch statement?
    Explaination:
    Let's say that I have an application that I am building, that manages five hundred object types. A properly-built object subclassing tree is created, and I want to be able to create objects of any 'leaf node' of this subclassing tree using a single 'objectCreate()' method in a 'factory object'. The purpos of this method will be to create an instance of the correct object, pass a handle to a few collections for properly sorting and storing these objects in groups.
    Usually, one could create a switch in this function, testing for the type of object that the user wants to create from the menu. But in the case of having hundreds of possible object choices, this becomes harder and harder code to maintain (let alone performance).
    Any suggestions?

    But if my menu has:
    1. German Shepard
    2. Doberman Pinscher
    3. Malamut
    4. Persian Long-hair
    5. Siamese
    6. Tabby
    And my object class tree goes:
                                  [ Animal ]
                 [ Cat ]                              [ Dog ]
      [ various breeds ]                         [ various breeds ]How do I code the menu class to respond to the input, so that it runs the correct [breed] object's constructor?
    The line:
    Animal choice = new xxxxxxxx();
    I can't use a variable to replace 'xxxxxxxx' in run-time, but having a ton of choices in code sounds/looks unreasonable.
    if (choice == "Doberman Pinscher")
    Animal choice = new doberman();
    else if (choice == "Tabby")
    Animal choice = new tabby();
    Do you see what I am trying to avoid? I am not experienced enough to instantly realize how to avoid the latter, and instead, do a single instantiation command for the correct constructor.

Maybe you are looking for

  • How to create pageInstance for a Particular page using page lable?

    Hi, Please guide me on how to create a PageInstance Object for a Particular page , if we got the pagelabel. Thanks in advance.

  • I pad mini with retina display

    The safari app. in my I pad mini with retina display crashes several times per a day . Is there any solution for this problem ?

  • Best way to retrieve data from oracle?

    Hi, I have a few questions. 1.)Can a rowtype or a table type returned from oracle database can be retrieved as a dataset or datareader? 2.)Cursors generally slow down your db(Iam from microsoft sql server back ground). But we seem to be using ref cur

  • Error in Importing JPX

    Hi, I have subsituted a VO in my project for a OA extension. I tried to import the .jpx file using "oracle.jrad.tools.xml.importer.JPXImporter" When I am importing I am getting the below error Error: java.lang.AbstractMethodError: oracle.xml.parser.v

  • Has anyone used Ethernet Gateway and LabVIEW, communicating with Ethernet/IP protocol ?

    I have a PLC system (Jokab Safety B20)  together with Ethernet Gateway (also Jokab Safety type E1). What I want to do is to communicate with this unit using LabVIEW Ethernet/IP. Read a couple of data and write a couple. Has anyone anything like this