Is it Possible to create custom Object type in configuration Tab

Hi ,
We have object type for table in Development Tab in SOLAR02 , is it possible to create a custom object type to represent the table object type in Configuration Tab.
Please let me know the steps , if it is possible.
Best Regards,
Saravana

Hi
You answer for you problem exists and its a common problem but you need to go for this development as mentioned below
/people/andreas.diebold/blog/2007/02/13/extend-sap-solution-manager-to-manage-new-object-types
We did long time back
Hope ur problm and doubt is resolved now
Regards
Prakhar

Similar Messages

  • Updating a custom object type

    Please, does anybody know how to update an custom object type which is created as table.
    I did the following:
    CREATE TYPE tmp as object..
    CREATE TYPE tmp_table as TABLE of tmp;
    Is it possible to update tmp_table and if so how?
    Thanks.

    Example:
    create type address_ty as object
    (Street varchar2(50)
    ,city varchar2(25)
    ,zip number)
    create type person_ty as object
    (name varchar2(50)
    ,address address_ty)
    create table customer
    (customer_id number
    ,person person_ty)
    insert into customer (1, person_ty ('Name', address_ty ('Street Name', 'City Name', 1111)));
    insert into customer (2, person_ty ('Name 2', address_ty ('Street Name 2', 'City Name 2', 1111)));
    commit;
    update customer
    set person = person_ty ('Name 2', address_ty ('New Street Name 2', 'City Name 2', 1111))
    where customer_id = 2;
    Please, does anybody know how to update an custom object type which is created as table.
    I did the following:
    CREATE TYPE tmp as object..
    CREATE TYPE tmp_table as TABLE of tmp;
    Is it possible to update tmp_table and if so how?
    Thanks.

  • Is possible to see another object types in Org Cart?

    Hello all,
    Is possible to see another object types in Org Cart?
    Here we have a OTYPE = 'OO'.
    I Created 2 new evaluation path with my new OTYPE.
    I changed views in V_TWPC_V.
    Views changed: ZVWO2O and ZVWO2P
    New paths created based on: ZNAKO2OS and ZNAK_O2P
    But i not see the 'OO' OTYPE  in OrgChart.
    Is this the right way for it?
    Thanks.

    Hi Luke, Thanks again.
    The new Evaluation Path was defined by the OM Consultant like this:
    V_TWPC_V: ZVWO2O -> EvalPath:
    5     OO     B     400     Is parent of                    *     O
    10     O     B     002     Is line supervisor of     *     O
    20     O     B     003     Incorporates                    *     S
    V_TWPC_V: ZVWO2P -> EvalPath:
    5     O     A     400     Is child of            *     OO
    10     O     A     002     Reports (line) to   *     O
    20     O     B     003     Incorporates            *     S
    I don't know what i have to do in SAP side and Nakisa Side.
    Thanks for help.

  • Can we create custom objects in WebI 4.0 BICS connectivity in BI 4.0 ?

    Hi All,
    I am using BI 4.0 and would like to know if we can create custom objects(measures or dimensions) in WebI 4.0 using the BICS connectivity with SAP BW BEx Queries?
    Rohit

    Hi,
    No, I'm afraid that's not possible with the BICS 'transient universe' (because you cannot edit the BW OLAP business layer  in IDT)
    Sure - in XI3.1, SAP Integration Kit,   OLAP .unv universes,  it was possible to do custom objects  with  MDX and XML tags.
    Infact, the UDT is still available in BI 4.0
    Regards,
    Henry

  • New custom object type - SWO1

    Hi All,
    I need to create a custom object type using SWO1.
    The object type needs to be linked to a report program with selection screen(or its tcode). 
    The selection screen carries just 1field. The output is a new screen.
    Would appreciate if any1 can tell me the step-by-step process to accomplish my objective.
    -Ram.

    Enter a name.
    Hit create. Populate the manadatory pop ups don't populate super type.
    Blow out the key field. Create a key field.
    Blow out the methods - add a method. Add the code for the method - select the method and hit the program button add code as below:
    BEGIN_METHOD RUNDUPREPORT CHANGING CONTAINER.
       SET PARAMETER ID 'VPA' FIELD OBJECT-KEY-PARTNEREMPLOYEEID.
    export object-key-partneremployeeid to memory id '99'.
       CALL TRANSACTION 'ZEML' AND SKIP FIRST SCREEN.
    *object-key-partneremployeeid.
    END_METHOD.
    Create your event.
    My method calls an abap I wrote that is bound to a transaction.
    You will need to set the release status for all of the elements of your object and the object itself.
    The question I have is why. Are you calling the object in a workflow? If so you will need to use the fm as below:
    DATA: OBJTYPE LIKE SWETYPECOU-OBJTYPE VALUE 'ZRM_WWCONT',
        EVENT LIKE SWETYPECOU-EVENT VALUE 'DuplicateEmail',
         OBJKEY LIKE SWEINSTCOU-OBJKEY,
            EVENTID LIKE SWEDUMEVID-EVTID.
        DATA: BEGIN OF EVENT_CONTAINER OCCURS 0.
                INCLUDE STRUCTURE SWCONT.
        DATA: END OF EVENT_CONTAINER.
        OBJKEY = KNVK-PARNR.
        CALL FUNCTION 'SWE_EVENT_CREATE'
             EXPORTING
                  OBJTYPE              = OBJTYPE
                  OBJKEY               = OBJKEY
                  EVENT                = EVENT
            START_WITH_DELAY     = ' '
            START_RECFB_SYNCHRON = ' '
            IMPORTING
                 EVENT_ID             = EVENTID
             TABLES
                  EVENT_CONTAINER      = EVENT_CONTAINER
             EXCEPTIONS
                  OBJTYPE_NOT_FOUND    = 1
                  OTHERS               = 2.
        COMMIT WORK.
    Good Luck.

  • How to Create Custom Content Type with 100 site columns ?

    Hi EveryOne,
    i have one requirement to create custom conten types in sharepoint 2013 as follows.
    1. Create a content type with 100 site columns ( in this 100 site columns includes 10 mms feilds and 10 lookup fields).
    2.when we deploy the content type in other server if already the same content type existing in the server it should be upgrade the existing content type.
    Please advise how do develop the solution ( using power shell script or visual studio with event receiver or xml file)
    Regards,
    Srinivas

    Try below:
    http://www.mindfiresolutions.com/Add-Columns--Fields-Programmatically-to-a-SharePoint-List-282.php
    using(SPSite
    oSPsite = new SPSite("http://Web-URL"))
        oSPsite.AllowUnsafeUpdates =
    true;
    using (SPWeb oSPWeb = oSPsite.OpenWeb())
            oSPWeb.AllowUnsafeUpdates =
    true;
    /* get the SPList object by list name*/
    SPList lst = oSPWeb.Lists["EmpList"];
    /* create a Numeric field for EmpID */
    SPFieldNumber fldEmpID = (SPFieldNumber)lst.Fields.CreateNewField(
    SPFieldType.Number.ToString(),
    "EmpID");
            fldEmpID.Required =
    true;
            fldEmpID.DisplayFormat =
    SPNumberFormatTypes.NoDecimal;
    /* create a Text field for Name */
            SPFieldText fldName = (SPFieldText)lst.Fields.CreateNewField(
    SPFieldType.Text.ToString(),
    "Name");
            fldName.Required =
    true;
            fldName.MaxLength = 50;
    /* create a Date field for Dob*/
    SPFieldDateTime fldDob = (SPFieldDateTime)lst.Fields.CreateNewField(
    SPFieldType.DateTime.ToString(),
    "Dob");
            fldDob.DisplayFormat =
    SPDateTimeFieldFormatType.DateOnly;
    /* create a Currency field for Salary */
            SPFieldCurrency fldSal = (SPFieldCurrency)lst.Fields.CreateNewField(
    SPFieldType.Currency.ToString(),
    "Salary");
            fldSal.Currency =
    SPCurrencyFieldFormats.UnitedStates;
            fldSal.DisplayFormat =
    SPNumberFormatTypes.TwoDecimals;
    /* add the new fields to the list */
            lst.Fields.Add(fldEmpID);
            lst.Fields.Add(fldName);
            lst.Fields.Add(fldDob);
            lst.Fields.Add(fldSal);
    /* finally update list */
            lst.Update();
            oSPWeb.AllowUnsafeUpdates =
    false;
        oSPsite.AllowUnsafeUpdates =
    false;
    If this helped you resolve your issue, please mark it Answered

  • Delegation of Custom Object Types

    Dear Gurus,
    What is the need for DELEGATING a custom object type that we create using SWO1.
    Thanks,
    VV

    HI Balajisap ,
    'the event 'releasestepcreated' has to be triggered for object types BUS2105 and the custom created for BUS2105 in SWEL right?. But i am getting only BUS2105 not the custom one'..
    The system will always show the standard BO not the custom one. Afetr dlegating you custom BO to the standard one, use your standard BO to trigger your worflow. The standard BO will contain the cistom properties after delegation.
    Regards
    Anik

  • Possible to create an object from a String?

    Hi,
    is is somehow at all possible to create an object from a String ?
    If we have etc.
    String txt = "Carrot()";
    Is it then possible to somehow cast that String and interpret it as a class type that it should make an object of ?
    Like
    new txt; - would then give me the same as new Carrot(); ?
    Hope you understand what i mean.
    Martin From... :-)

    Class.forName("some.package.Carrot");

  • Is it possible to create custom buttons in CRM Ondemand?

    Hi,
    Is it possible to create custom buttons in CRM Ondemand in any detail page like the inbuilt buttons like 'New', 'Delete' etc? If possible then how?
    Thanks
    Arpita

    You can add a button using custom javascript. but this could potentially have performance issues. please test the performance and functionality if you implement a lot javascript
    see this link : http://helponmyproject.com/TTOCOD/
    Regards,
    Royston

  • Generic Object Services for Custom Object Type

    I would like some advice please. I am not an ABAP Developer but I would like to enable the generic object services for transaction PP01 for a custom object type.
    I have searched for information, which suggests that the object needs to be published using the function module SWU_OBJECT_PUBLISH so that it is available in the Business Object Repository. If this is correct, please could someone tell me (in simple terms) how I can do this (with the assistance of an ABAP developer)?
    My colleague did some debugging which seemed to suggest that in order for the generic object services to be available, the field OBJTYP needs to be populated in table T778O. Is this correct? If so, how should this be done?
    Your advice would be greatly appreciated.
    Regards
    Corinne

    Hi,
    i'm also looking for the solution you have asked for.
    if you know how to do it please reply me with the solution.
    Thanks,
    suresh

  • Create Customer of type CONSUMER (Accnt Group 0170)

    Hello All,
    i have scenario where i want to create customer of type <b>CONSUMER (account group 0170).</b>
    i have seen BAPI's, BAPI_CUSTOMER_CREATEFROMDATA etc but it asks for reference customer number with sales org. But in case of CONSUMER there is no sales organization.In this case does anybody have solution for this or only BDC is the solution.
    please let me know.
    Regards,
    Chandra

    Hi,
    If programming is not essential, you can use transactions VD01 or XD01 for the same.
    Hope it helps u.
    Regards,
    Himanshu

  • Running a SQL Script to Create an Object Type

    When I do Database Development with JDeveloper and fellow the instruction at
    http://www.oracle.com/technology/obe/obe1013jdev/dbdevelopment/obe_%20dbasedevmt.htm
    and try to Running a SQL Script to Create an Object Type by Right-clicking emp_rec.sql in the editor and
    choose Run in SQL*Plus > hrconn, the new Obuect type can not created. The screen flashs and I only got the
    message
    "Invoking SQL*Plus...
    D:\oracle\product\10.2.0\db_1\BIN\cemutls.exe
    hr@(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=localhost)(PORT=1521)))(CONNECT_DATA=(SID=ORCL)))
    @emp_rec.sql" and nothing else (No error like JBO-XXXXX).
    Can anybody Help Me? Thanks a lot!
    SID: ORCL

    Hi Simon,
    Having had a closer look at your original message it seems that rather than selecting the SQL*Plus executable in the directory you have managed to select the file 'D:\oracle\product\10.2.0\db_1\BIN\cemutls.exe'.
    If you go to 'Tools | Preferences' and select the 'Database Connections' node and alter the 'SQL*Plus Executable' field to 'D:\oracle\product\10.2.0\db_1\BIN\sqlplus.exe' and then try again, this should then work.
    Regards,
    Lisa

  • Creating Custom Content Types

    As the title suggests,  does anyone know how to create Custom Content Types in Adobe Livecycle Content Services ES?  I have looked far and wide across the www, and haven't had any luck with a straight forward, easy to follow, tutorial on the subject.  I have seen it for Actions and Aspects, but not Content.
    Thank you in advance,
    Alex

    Marc,
    Thanks for your response.  I've spent the past couple of days trying to get it to work, but I still cannot figure it out.
    According to all documentation I have found, I have modified the files I thought were the same as the Alfresco files:
    C:\...\jboss\server\all\deploy\contentservices.war\WEB-INF\classes\alfresco\extension
                   + .\liveCycleContentModel.xml
                        Added the <types> tag above the <aspects> tag, and created my type as specified online and also in a book
    Then I copied the web-client-config.xml to the extension folder and renamed as web-client-config-custom.xml and added the code to Content Wizards and Action Wizards to display it in the web ui.
    Am I missing anything?  When I re-package the .war file and redeploy/restart JBOSS, my localhost:8080/contentspace is completely broken.  no login in or anything but workspace is still in tact.
    Thanks for any further help,
    Alex

  • Packaging custom Objects TYPE

    Hello everybody,
    i wonder if it is possible to "package" objects into package definition as follow:
    CREATE OR REPLACE PACKAGE OBJECTS_TEST IS
    TYPE MYTYPE IS OBJECT(T0 VARCHAR2(200),T1 VARCHAR2(200));
    when i try to execute this I always receive the following error:
    ERROR line 3, col 22, ending_line 3, ending_col 22, Found '(', Expecting: ;
    So far, seems that the definition of the object must go internally to the PACKAGE BODY, therefore into a FUNCTION/PROCEDURE.
    I would like to define a package that works as a global handler for all my objects used in my schema, what I'm supposed to do ?
    Any help will be very appreciated,
    Thank you,
    Luigi

    Thank you everybody for your support, and as requested I'll try to be more precise.
    I'm developing functions and procedure to manipulate data that will then be used by a Business Object universe.
    As for now, I've opted to develop some custom transformation procedure in PL/SQL to handle special cases where strings contains value pairs like :
    1~FirstText~2~SecondText
    From this point onward, I need to create a view that needs to be like this:
    VALUE | TEXT
    1 | FirstText
    2 | SecondText
    So far, I've build a PL/SQL procedure that parse the string and returns a TABLE OF OBJECTS to be further used in a VIEW with more or less 100 records.
    Those objects where initially declared externally to my package in this way:
    CREATE OR REPLACE TYPE RadioQuestionParam IS OBJECT (
                                                Q_ID     VARCHAR2 (50 CHAR),
                                                Q_F_ID  VARCHAR2 (50 CHAR),
                                                Q_VALUE VARCHAR2 (4000 CHAR),
                                                Q_TEXT  VARCHAR2 (4000 CHAR)
    CREATE OR REPLACE TYPE RadioQuestionParamTable IS TABLE OF RadioQuestionParam;
    /and the procedure that will use them is...
    create or replace package objects_test
    FUNCTION PARAMS2ROWS2     (P_Q_ID      IN  VARCHAR2,
                                 P_Q_F_ID    IN  VARCHAR2,
                                P_Q_PARAM   IN  VARCHAR2)
                                RETURN RadioQuestionParamTable ; 
    end objects_test;
    /so then I can use:
    select * from table(objects_test.params2rows2('q_id','q_f_id','1~TEST1~2~TEST2'));to produce the desired output.
    As I would like to organize everything in one single package I was wondering if there's a way of using OBJECTS INSIDE A PACKAGE....
    As for now I've modified my code to use michaels2 suggestion but with no luck as when I execute the
    select * from table(objects_test.params2rows2('q_id','q_f_id','1~TEST1~2~TEST2')); I'm receiving a ORA-00902: invalid datatype;
    Thank you for your precious help,
    Luigi

  • Error when trying to create custom object

    Hi,
    The error below occurs when I am trying to create a new form that was created using the customer object 1 form.
    No language independent code exists for value 'English - United States' and type 'OCC_CUST_ZOBJ_1_LOV_3' with language 'ENU' in table 'S_LST_OF_VAL'.(SBL-DAT-00510)
    Has anyone seen this before?
    thanks

    David, I would recommend contacting On Demand customer care.

Maybe you are looking for

  • I have purchased the Adobe Creative Suite 6 Design & Web Premium but will not allow me to register?

    I have purchased the Adobe Creative Suite 6 Design & web Premium & it will not allow me to register the software --- I'm having to use the trial version --- will you please help me in updating --- the products that I have paid lots of money for? And

  • Problem with Opening Attachments in PDFs

    I recently upgraded to Word 2007 and Adobe Acrobat Professional 9.3.2. When I attach Excel or Word files within a PDF file, I can no longer double click an attachment to open it. I receive an error message that states my administrative security setti

  • Use iMac as display from other source

    Hi, I have iMac 27" with thunderbolt connectivity in it. Is it possible to connect an external computer (with or without a converter) to use the iMac's Display? If possible, kindly let me know how. Thanks & Regards

  • Plz help , getting error in my java code

    Can any one tell the reason for this error: Exception in thread "main" java.lang.OutOfMemoryError: Java heap space is there any size limit for java classes that I am using in my code? My code Looks like:      FileChannel in = null, out = null;      t

  • PSE 7 Organizer - New Display bar similar to a "Timeline" appeared

    Today it's raining, so time to try and solve some problems. Here is my second query: On my wife's machine suddenly a new line appeared on the Organizer, right under the line with "Edit....Share" and it shows a sort-of timeline, with blocks of various