Create Type Body - HELP!

Hi I want to know how to use this setMileage MEMBER FUNCTION.
Create or replace Type Body Cart_Type Is
Member Function setMileage (self in out Cart_type, InMile varchar2) Return Number Is
Begin
NULL; <--at the moment I have to use this so it compiles!
End;
End;
I want to make this function write back to the table its with for example the Pass_cart table has object type cart_type with an attribute called 'Mileage' and I want to write a value into it. How? I cant figure the right syntax for it.

Why is SETMILEAGE a function? Once it has assigned the specified INMILE value to SELF.MILEAGE, surely its work is done.
MEMBER PROCEDURE setmileage
     ( inmile NUMBER )
IS
BEGIN
     SELF.mileage := inmile;
END;

Similar Messages

  • CREATE TYPE address_type AS OBJECT - ERROR

    I am not able to create type objects tried with different versions of oracle too.
    Currently I am using Oracle 11g enterprise edition (2.9GB).
    The problem is when i create a TYPE object and when i terminate the command with a semicolon ';',oracle sql does not stop only (the query does not execute) the loop goes on and on.
    I did like this and found that the SYNTAX is also perfect.
    SQL> CREATE TYPE address_type AS OBJECT
    2 (street varchar2(30),
    3 city varchar2(30),
    4 pincode number(10));
    5
    6
    7
    8...
    It goes on and on it never ends. Command never executes.
    Please Help!

    A type body will contain PL/SQL semicolons, so once SQL*Plus sees that you're entering a type it stops treating semicolons as the SQL*Plus multi-line statement terminator character. (A type header will not contain semicolons, but I expect Oracle decided it would be even more confusing if CREATE TYPE BODY behaved differently to CREATE TYPE.)
    Note you can also terminate entry by entering a dot (period) on a line on its own.
    I guess in older version there was nothing like that.Actually this has been around for over 10 years ;)

  • Help Creating Types

    Hello,
    Hopefully I can explain this clearly.
    I am using data pump import to bring several source databases into different schemas in one new database. The source databases are extracts at different times from a seperate production database and I am encountering errors as follows -
    ORA-39083: Object type TYPE failed to create with error:
    ORA-02304: invalid object identifier literal
    Failing sql is:
    CREATE TYPE "F10BANINST1"."DATE_NT" OID 'DEEC3F961E7C4CB1E0340003BA29B58F' as
    table of DATE;
    This makes sense as the types existed under one schema in the original database and the OIDs are present as they were imported into the first schema I created. What I need to do is create these types in each of the schemas I have created in the new database. I am not sure how best to do this. Apparently I am not able to do something like the following -
    SQL> copy type schema2.TYPE from schema1.TYPE;
    What I would like to do is pull the DDL from the source database into a create statement of the form -
    SQL> create type schema2.type as.....
    and I am not sure how to do this. I need to be certain I get the type body as well. Can someone help me do this please.
    Thank you.
    Bill Wagman

    The OID of the object/collection type must be unique across all schemas. So trying to re-create the type in multiple schemas with the same OID will not work. You will need to choose a new OID for each schema's version of the type.
    However, the obvious question is: why not create a single instance of the type, and grant privileges (EXECUTE and UNDER) to use/extend it to the other schemas?
    Gerard

  • Help using a created type

    Anyone,
    I started by creating a typelike this:
    create type NUMS_TYP as object (nums number);
    That seemed to work fine. Now I'm trying to use that type in a PL/SQL procedure like this:
    FOR z IN (select empno from emp)
    LOOP
    IF z.empno IS OF (NUMS_TYP) THEN
    htp.p ('NUMBER');
    ELSE
    htp.p('STRING');
    END IF;
    END LOOP;
    I keep getting - PLS-00382: expression is of wrong type. Can anyone help?
    Thanks,
    Kirk

    hi,
    there is problem when you passing null plsql can't recognize type for null the workaround for it is just using explicit converstion
    consider following
    i use generic object - anydata in my OO api
    CREATE OR REPLACE TYPE "IAS_ANYDATA"
    as object
    val_c varchar2(32000)
    ,val_n number
    ,val_d date
    ,old$val_c varchar2(32000)
    ,old$val_n number
    ,old$val_d date
    ,type varchar2(1)
    ,name varchar2(30)
    ,ind number
    -- Attributes
    -- Member functions and procedures
    ,CONSTRUCTOR function ias_anydata(val varchar2 default null) return self as result
    ,CONSTRUCTOR function ias_anydata(val number) return self as result
    ,CONSTRUCTOR function ias_anydata(val date) return self as result
    ,CONSTRUCTOR function ias_anydata(name varchar2, val varchar2, old$val varchar2) return self as result
    ,CONSTRUCTOR function ias_anydata(name varchar2, val number, old$val number) return self as result
    ,CONSTRUCTOR function ias_anydata(name varchar2, val date, old$val date) return self as result
    ,CONSTRUCTOR function ias_anydata(name varchar2, val varchar2) return self as result
    ,CONSTRUCTOR function ias_anydata(name varchar2, val number) return self as result
    ,CONSTRUCTOR function ias_anydata(name varchar2, val date) return self as result
    ,member function to_string return varchar2
    ,member procedure check_ind
    ,member function isNull return boolean
    ,member function isTrue(Bool_ind varchar2 default 'Y' ) return boolean
    ) not final
    what will happen if i call following
    z:=null;
    o = ias_anydata( 'col1', z ); -- object of string becuse of default is null for varchar
    o = ias_anydata( 'col1',to_date( z ) ); -- object of date
    o = ias_anydata( 'col1',to_number( z ) ); -- object of number
    Message was edited by:
    [email protected]

  • How do I create a type body?

    I can't find any way to create a type body in SQL Developer. No buttons, no menu commands, no nothing. Any type bodies I enter through SQL*Plus appear in the tree though.

    The matter might be as simple as adding
    <item type="TYPE" className="oracle.dbtools.raptor.dialogs.actions.CreateBodyAction">
    <title>Create Body</title>
    </item>
    into type.xml (the one located in \sqldeveloper\sqldeveloper\extensions\oracle.sqldeveloper.jar\oracle\dbtools\raptor\dialogs\actions\xml\). It seems to work for simple types, like for example AMS_CPAGE_PHONE_T from APPS. It fails however on more complicated ones like SYS.ANYDATA...

  • Regarding drop down list,  any body help me plz.. very very urgent

    i have to create a drop down list and in that if i select a value it should go to select query and display hte result in the output
    for example if i select open in the inout list. that should go to a partiucular query which i write and after that when i process the report that option open should be displayed in the output
    any body help me plz.. very very urgent

    Check  code below..
    TYPE-POOLS:  vrm.
    CONSTANTS: c_pgp_cmd(20) TYPE c VALUE '/opt/pgp/bin/pgp'.
    DATA : droplist TYPE vrm_values,
           dropval LIKE LINE OF droplist,
           w_command(2000) TYPE c VALUE '/usr/local/bin/ssh'.
    DATA:  BEGIN OF t_cmdres OCCURS 0,
             line(500),
           END OF t_cmdres.
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-005.
    PARAMETERS:  tar_sys(10) TYPE c AS LISTBOX VISIBLE LENGTH 20 LOWER CASE,
                 filepath TYPE esefilepath,
                 pgpkey(1000) TYPE c LOWER CASE,
                 option(25) TYPE c AS LISTBOX VISIBLE LENGTH 15 LOWER CASE,
                 pass(100) TYPE c.
    SELECTION-SCREEN END OF BLOCK b1.
    INITIALIZATION.
      PERFORM set_screen.
    AT SELECTION-SCREEN OUTPUT.
      IF option EQ 'encrypt'(000).
        LOOP AT SCREEN.
          IF screen-name = 'PASS'.
            screen-input = 0.
            MODIFY SCREEN.
            EXIT.
          ENDIF.
        ENDLOOP.
      ELSEIF option EQ 'set-preferred-ciphers'(001).
        LOOP AT SCREEN.
          IF screen-name = 'FILEPATH'.
            screen-input = 0.
            MODIFY SCREEN.
            EXIT.
          ENDIF.
        ENDLOOP.
      ENDIF.
    START-OF-SELECTION.
    write:/ 'Done'
    *&      Form  set_screen
    FORM set_screen .
      dropval-key = 'oapg18dv'(002).
      dropval-text = 'oapg18dv : DEV'.
      APPEND dropval TO droplist.
      dropval-key = 'oapg18te'(003).
      dropval-text = 'oapg18te : TEST'.
      APPEND dropval TO droplist.
      dropval-key = 'oapg18pr'(004).
      dropval-text = 'oapg18pr : PRD'.
      APPEND dropval TO droplist.
      CALL FUNCTION 'VRM_SET_VALUES'
        EXPORTING
          id              = 'TAR_SYS'
          values          = droplist
        EXCEPTIONS
          id_illegal_name = 1
          OTHERS          = 2.
      CLEAR:  dropval,
              droplist[].
      dropval-key = 'encrypt'(000).
      dropval-text = 'Encrypt'.
      APPEND dropval TO droplist.
      dropval-key = 'set-preferred-ciphers'(001).
      dropval-text = 'Set cipher'.
      APPEND dropval TO droplist.
      CALL FUNCTION 'VRM_SET_VALUES'
        EXPORTING
          id              = 'OPTION'
          values          = droplist
        EXCEPTIONS
          id_illegal_name = 1
          OTHERS          = 2.
      CLEAR:  dropval,
              droplist[].
    ENDFORM.                    " set_screen
    Reward if useful
    Function Module <b>VRM_SET_VALUES</b> is used to set values for droplsit..
    and be careful about Text Elements in this report.
    Regards
    Prax

  • How to create a f4 help using function module.

    Hi,
        I want to create an f4 help with out using match code objects.How can i do it ? . Is there  any function code for it ?.

    Hi,
    Please search on SCN before posting...
    Refer FM F4IF_INT_TABLE_VALUE_REQUEST
    Refer this demo code to get a S.help for BELNR based on user input for BUKRS:-
    PARAMETERS : p_belnr TYPE belnr,
                 p_bukrs TYPE bukrs.
    DATA : BEGIN OF itab OCCURS 0,
             belnr TYPE belnr,
           END OF itab.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_belnr.
      PERFORM f4_belnr_help USING p_belnr.
    *&      Form  f4_belnr_help
    *       text
    *      -->P_BELNR text
    FORM f4_belnr_help USING p_belnr.
      DATA : itab TYPE STANDARD TABLE OF it WITH HEADER LINE,
             tb_dynpfields LIKE dynpread OCCURS 0 WITH HEADER LINE,
             v_bukrs TYPE bukrs.
      CLEAR:   tb_dynpfields.
      REFRESH: tb_dynpfields.
      MOVE 'P_BUKRS' TO tb_dynpfields-fieldname.
      APPEND tb_dynpfields.
      CALL FUNCTION 'DYNP_VALUES_READ'
        EXPORTING
          dyname                               = 'Z_F4' "program name
          dynumb                               = '1000' "screen number
        TABLES
          dynpfields                           = tb_dynpfields
        EXCEPTIONS
          INVALID_ABAPWORKAREA                 = 1
          INVALID_DYNPROFIELD                  = 2
          INVALID_DYNPRONAME                   = 3
          INVALID_DYNPRONUMMER                 = 4
          INVALID_REQUEST                      = 5
          NO_FIELDDESCRIPTION                  = 6
          INVALID_PARAMETER                    = 7
          UNDEFIND_ERROR                       = 8
          DOUBLE_CONVERSION                    = 9
          STEPL_NOT_FOUND                      = 10
          OTHERS                               = 11.
      IF sy-subrc  0.
        MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
               WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      READ TABLE tb_dynpfields INDEX 1.
      IF sy-subrc EQ 0.
        v_bukrs = tb_dynpfields-fieldvalue.
      ENDIF.
      SELECT belnr from <db_table> INTO TABLE itab WHERE bukrs = v_bukrs.
      CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
        EXPORTING
          retfield               = 'BELNR' "internal table field
          dynpprog               = 'Z_F4' "program name
          dynpnr                 = '1000' "screen number
          dynprofield            = 'P_BELNR' "screen field name
          value_org              = 'S'
        TABLES
          value_tab              = itab "internal table
        EXCEPTIONS
          PARAMETER_ERROR        = 1
          NO_VALUES_FOUND        = 2
          OTHERS                 = 3.
      IF sy-subrc  0.
        MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    ENDFORM.                    " f4_belnr_help
    Hope this helps you.
    Regards,
    Tarun
    Edited by: Tarun Gambhir on Mar 26, 2009 11:29 AM

  • Creating a search help for a field in selection screen

    Hi All,
    There are 3 fields in the selection screen. They are
        WERKS
        DATE
        MATNR
    Enter a value WERKS = 2465.
    When I press the drop down menu for MATNR, it should only give the material number available for 2465.
    I think, I should create a search help for it.
    Kindly help me to create a search help for the material number based on the above condition.
    Thanks in advance.

    Hi
    i am sending you a sample code where i had implemented a search help
    for my req you can understand very easyly and write for ur req
    <b>reward if usefull for ur req</b>
    TYPES : BEGIN OF ST_OBJID_SH,
             OTYPE TYPE HRP1000-OTYPE,
             OBJID TYPE HRP1000-OBJID,
            END OF ST_OBJID_SH.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR S_OBJID-LOW.
    IF S_OBJID IS NOT INITIAL.
        SELECT OTYPE OBJID FROM HRP1000
                     INTO TABLE IT_OBJID_SH
                     WHERE OTYPE = 'D'.
    IF SY-SUBRC EQ 0.
    SEARCH HELP FOR QUALIFICATION.
        CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
          EXPORTING
                 DDIC_STRUCTURE         = ' '
            RETFIELD               =  'OBJID'
                 PVALKEY                = ' '
           DYNPPROG               = SY-REPID
           DYNPNR                 = SY-DYNNR
           DYNPROFIELD            = 'S_OBJID'
                 STEPL                  = 0
                 WINDOW_TITLE           =
                 VALUE                  = ' '
           VALUE_ORG              = 'S'
                 MULTIPLE_CHOICE        = ' '
                 DISPLAY                = ' '
                 CALLBACK_PROGRAM       = ' '
                 CALLBACK_FORM          = ' '
                 MARK_TAB               =
               IMPORTING
                 USER_RESET             =
          TABLES
            VALUE_TAB              =  IT_OBJID_SH
                 FIELD_TAB              =
                 RETURN_TAB             = RETURN_TAB
                 DYNPFLD_MAPPING        =
               EXCEPTIONS
                 PARAMETER_ERROR        = 1
                 NO_VALUES_FOUND        = 2
                 OTHERS                 = 3
        IF SY-SUBRC <> 0.
              MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                      WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
      ENDIF.

  • Create TYPE

    I am not able to create type objects tried with different versions of oracle too.
    Currently I am using Oracle 11g Enterprise edition (2.9GB).
    The problem is when i create a TYPE object and when i terminate the command with a semicolon ';',oracle sql does not stop only (the query does not execute) the loop goes on and on.
    I did like this and found that the SYNTAX is also perfect.
    SQL> CREATE TYPE address_type AS OBJECT
    2 (street varchar2(30),
    3 city varchar2(30),
    4 pincode number(10));
    5
    6
    7
    8...
    It goes on and on it never ends. Command never executes.
    Please Help!

    end the command with "/" :
    create type .....
    /

  • How to create a serach help

    Hi Guys
    Could you please explain me in detail the steps involved in
    creating a dsearch help
    Thanks in advance

    1) Elementary search helps describe a search path. The elementary search help must define where the data of the hit list should be read from (selection method), how the exchange of values between the screen template and selection method is implemented (interface of the search help) and how the online input help should be defined (online behavior of the search help).
    2) Collective search helps combine several elementary search helps. A collective search help thus can offer several alternative search paths.
    3)An elementary search help defines the standard flow of an input help.
    4) A collective search help combines several elementary search helps. The user can thus choose one of several alternative search paths with a collective search help.
    5)A collective search help comprises several elementary search helps. It combines all the search paths that are meaningful for a field.
    6)Both elementary search helps and other search helps can be included in a collective search help. If other collective search helps are contained in a collective search help, they are expanded to the level of the elementary search helps when the input help is called.
    CREATION:
    Go to SE11 Tcode
    select search help
    give the 'z' search help name and create
    select the selection method ur table name eg : 'mara'
    dialog module 'display value immediately'.
    add the field whatever u want and lpos = 1 and spos = 1 and check import and export parameter.
    where left position when displaying and spos = search position
    and then save and activate ..
    See the links:
    http://help.sap.com/saphelp_nw04/helpdata/en/cf/21ee38446011d189700000e8322d00/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/cf/21ee45446011d189700000e8322d00/content.htm
    https://forums.sdn.sap.com/click.jspa?searchID=3173469&messageID=2176485
    https://forums.sdn.sap.com/click.jspa?searchID=3173469&messageID=3601619
    pls go through this for search help creation
    http://help.sap.com/saphelp_nw2004s/helpdata/en/41/f6b237fec48c67e10000009b38f8cf/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/cf/21ee2b446011d189700000e8322d00/content.htm
    Search Help Exits:
    Creating Elementary Search Helps
    Procedure
    In the initial screen of the ABAP Dictionary, select object class Search help, enter the name of the search help and choose Create.
    A dialog box appears in which you must select the type of search help.
    Select Elementary search help and choose .
    The maintenance screen for elementary search helps appears.
    Enter an explanatory text in the field Short text.
    You can for example find the search help at a later time using this short text.
    In the Definition tab page enter the selection method of the search help.
    You can enter the name of a table or a view (database view, projection view or help view) here. If you enter a table that has a text table, the name of the text table is automatically entered in the corresponding field.
    Using the input help (F4 help), select fields of the selection method as parameter in the Search help parameter area. Select the fields that should be used in the dialog box for value selection or in the hit list.
    If the selection method is a table that has a text table, both the fields of the table and the fields of the text table are offered in the input help.
    The data element of the parameter is automatically copied from the selection method. The data element defines the output attributes and the F1 help of the parameter in the hit list and in the dialog box for value selection.
    You can assign the parameter another data element. To do so, select the Mod flag. The Data element field is now ready for input. Then select a data element with the input help (F4 help). Only data elements whose data type, length and number of decimal places is the same as those of the previous data element can be assigned.
    This removes the link between the data element of the search help parameter and the data element of the selection method field having the same name. If you cancel the Mod flag, the data element of the assigned table field is used again.
    Define the attributes of the search help parameters.
    Select the IMP flag if it is an import parameter. Select the EXP flag if it is an export parameter.
    You can define the dialog for the input help with the fields LPos, SPos and SDis. Enter the parameter position in the hit list in LPos. If you enter nothing or the value 0 here, the parameter is not displayed in the hit list.
    Enter the parameter position in the dialog box for value selection in SPos. If you enter nothing or the value 0 here, the parameter is not displayed in the dialog box for value selection.
    Set the SDis flag if the parameter should be a pure display field in the dialog box for value selection. The user is thus informed that the contents of the parameter restrict the value, but he cannot change this restriction. This makes sense for example when the parameter is an import parameter or if it has a default value.
    You can assign the parameter a default value in the Default value field.
    Select the dialog type of the search help.
    The dialog type defines how the hit list is displayed in the input help.
    Save your entries.
    A dialog box appears in which you have to assign the search help a development class.
    Choose .
    Do not forget to link the search help to a screen field. The search help attachment is not part of the search help definition; it is part of the object definition to which the search help is attached.
    Result
    The search help is activated. You can find information about the activation flow in the activation log, which you can display with Utilities ® Activation log. If errors occurred during activation, the activation log is automatically displayed.
    Other Options
    Assign a hot key: If the search help is to be accessed with a hot key, you must enter a one-place ID in the Hot key field. All the elementary search helps contained in a collective search help should have different short cuts.
    Assign a search help exit: In exceptions, you might have to change the standard flow defined by the search help with a search help exit. In this case enter the name of the search help exit in the corresponding field.
    Test the search help: You can test the flow of an input help defined by the elementary search help with . A dialog box appears in which you can simulate the behavior of the search help under different conditions. You can obtain information about the options provided in this window with .
    http://help.sap.com/saphelp_erp2005/helpdata/en/cf/21ee5f446011d189700000e8322d00/content.htm

  • Creating a search help with SAP UI5 and js?

    Hello com,
    I am trying to create a search help, collecting data from a table.
    Is there something similar to the typical ABAP search help in SAP UI 5?
    ABAP:
    PARAMETERS: lv_alias TYPE dsh_alias MATCHCODE OBJECT dashboard_alias_f4,
    I found this in the Demo Kit:
    // create a simple SearchField
    var oSearch = new sap.ui.commons.SearchField("providerSearch", {
            searchProvider: new sap.ui.core.search.OpenSearchProvider({
                    suggestType: "json",
                    suggestUrl: "/demokit/suggest?q={searchTerms}",
                    icon: jQuery.sap.getModulePath("sap.ui.core", '/') + "mimes/logo/txtonly_16x16.ico"
            search: function(oEvent){
                    alert("Search triggered: " + oEvent.getParameter("query"));
    //attach it to some element in the page
    oSearch.placeAt("sample4");
    But how can i connect it with the specifiy data table?
    Thanks,
    Domenik

    Hi,
    you need to create OData service which will retrieve (search) the required information and then need to create UI5 application to consume it.
    you can refer this blog How to Implement Value Help (F4) with SAP UI5 which covers both parts.
    if you are having SP08 version of SAP Gateway then creating search help is very simple. refer my blog Creating OData service based on Search Help
    Regards,
    Chandra

  • SQL 3 : Create type

    hello,
    in an example using the object-relational model
    I created the following type:
    create type professeur_t as object (
    +     nump varchar2(5),+
    +     nomp varchar2(20),+
    +     nbg integer);+
    +     /+
    create type "professeurs_t" as table of professeur_t;
    create type eleve_t as object (
    +     nume integer,+
    +     nome varchar2(25),+
    +     nomc varchar2(5)+
    +     );+
    +     /+
    create type "eleves_t" as table of eleve_t;
    when I try to create another type with the following command
    create type ecole1_t as object (
    +     nomc varchar2(5),+
    +     eleves eleves_t,+
    +     professeurs professeurs_t );+
    +     /+
    I get the following error message:
    Warning: Type created with compilation errors
    checking with:
    select type_name from user_types ;
    indicates that the type has been created
    but when I try to create a table on this type with this command :
    create table ecole1 of "ECOLE1_T" (primary key (nomc))
    +     nested table eleves_t store as elev,+
    +     nested table professeurs_t store as prof;+
    I get:
    ERROR at line 1:
    ORA-00902: invalid datatype
    Please if you have an idea about what to do? help me ?
    Thank you in advance

    Hi,
    If you enclose the name of a type (or a table, or a cloumn, or anything else) in double-quotes when you create it, then you generally have to enclose it in double quotes and spell it exactly the same way (case-sensitive) every time you use it.
    Lose the double-quotes:
    create OR REPLACE type eleves_t as table of eleve_t;
    create OR REPLACE type professeurs_t as table of professeur_t;
    /All identifiers in Oracle are case-sensitive. You may not realize that because all unquoted code (that is, everything not in suingle-quotes, like 'foo', or double-quotes, like "bar") is converted to upper case before it is compiled.
    So when you said
    create type eleve_t ...the type that was created was ELEVE_T, all uppercase, exactly as it appears in all_objects.
    When you referenced it like this:
    create type "eleves_t" as table of eleve_t;there was no error, because all the unquoted code got capitalized before compiling, so it's as if you had said
    CREATE TYPE "eleves_t" AS TABLE OF ELEVE_T;Because it was quoted, "eleves_t" was not capitalized.

  • Creating type along or inside a path

    Hi All,
    I read the tutorial about Creating type along or inside a path. I have tried to create few types of type along,inside and outside a path and shape. I was wondering why there are variations and restriction among them. Below are my screen shots to describe my problem.
    Screen 1

    Sorry, I have been trying to upload the screen shots, now it is done.
    Screen 1: type outside the path
    Screen 2:type inside the path
    Screen 3:type outside the shape
    Screen 4:type inside the shape
    I am confused why I cannot flip the "type inside the path" whereas flipping inside and outside is possible for "type outside the path". Any help is greatly appreciated. Thank you.

  • Create type problems

    Hi all,
    I'm not able to create objects using SQL in oracle.
    When I use
    Create type obj_ty as object(name varchar2(10));
    2
    is what I get, that is, it goes to the next line without executing the create object stmt. Kindly help me out.
    Thanks,
    -Vikram

    You need to put a slash to execute the create type:
    SQL> Create type obj_ty as object(name varchar2(10));
      2  /
    Type created.
    SQL>

  • Can some body help me reg. BAPI_USER_LOCK

    Hi,
    I am using  this FM BAPI_USER_LOCK   to lock firecall id's .But it is not working in 4.0 B version.
    Can some body help me any alterante FM for the FM.
    Thanks

    Hi,
    Below are the notes for this Function module.
    You can unlock user USERNAME with the method Unlock.
    The method is fully integrated in the central user administration system.
    If the method is called in a sytem that belongs to a group for central user maintenance, the method behaves accordingly.
    If the method is called in the central system of this type of system group, this triggers user distribution.
    The user is also locked in the dependent systems.
    The prerequisite for this is that the field maintenance attributes (Transaction SCUM) are set.
    You need to do the prerequistie for running this BAPI.
    With Regards,
    Sumodh.P

Maybe you are looking for

  • NEED HELP FAST! iv turned my iphone on and the apple sign has come up but thats all thats happening?

    how can i turn my iphone on, iv pressed the button on the top of the phone but nothing happens all that has come up is the apple sign, i really need my phone on, as i cant take the sim card out and put in another phone because its too small!

  • Workflow in apex

    Friends, can we implement workflow in our apex application. I have a form where a user is inviting people for meeting. Once the person clicks the save button, the notification goes to the higher level person, where he will have flexibility to accept,

  • How can I save tabs with two open Firefox windows?

    I have two windows of Firefox open; one for tabs of websites I visit regularly and another with tabs for chat rooms. It is a pain having to open these chats on a regular basis which is why I'm wondering if there's a solution to this. Is it possible t

  • Budget and Planning KP06 and CJR2

    Does anybody know about function/BAPI that inputs the budget for cost center (trans. KP06) and projects/WBS (trans. CJR2). I want to stop using BDC and use the function instead. I looked at function BAPI_COSTACTPLN_POSTACTINPUT and its group; they do

  • Stereo Track Showing as Mono Track in Edit View

    I know this is probably something ridiculously simple :-)...but, I CANNOT figure out why a stereo track I'm working with is looking like a mono track in edit view. What am I missing?