Ebo designer - Add, delete , update options disable

Hi
I am trying to add a new element in the EBO (Content Editor of EBO designer), or Add creating new package.
The Add, Delete , Update options are disabled which restricts me to add new elements.
In the security realms of WLS the AIA groups are added and clubbed with requisite user (As metioned in Post installation step of AIA 3.0).
Any hint will be highly appreciated.
If anybody have step by step approach for using EboDesigner, kindly share it.
Thanks
Gaurav

Gaurav,
Ebo Designer developer's guide has the information you are looking for. At a high level, you can only create a package under customer pkg (EBO should be created under customer -> data services). In the editor, make sure your business context is */Customer to create any component, add association etc. Same rule applies to any EBO you want to update. The business context has to be Customer for any operation to work.

Similar Messages

  • Identifier in BOMMAT03 to find if the component is add/delete/update?

    Hi all,
    Is there an Identifier in BOMMAT03 to find if the component is to be add/delete/update?
    Based on add/delete/update flg, i need to execute a MII transaction after the workflow is executed.
    Thanks,
    Shridhar

    Hello,
    I don't believe there is such identified for component. I think BOMMAT  just sends current BOM state and doesn't provide any info about previous object config.
    Regards,
    Konstantin Chernega

  • Automatically update option disabled in iTunes summary - no push happening!

    Changes I am making in Calendar and contacts does not appear to be pushing to my iPhone which is on 2.0. In iTunes summary page, the option to Automatically update the iPhone is disabled and unchecked - I can't change it - is this why the facility is not working. Also, in the Settings > Fetch menu it just says that Push is happening for Mail, I never had the option to select Calendars and Contacts as detailed in the Apple MobileMe tutorial. Can someone help, also perhaps explain how this Push thing is working - is it happening over 3G as I don't get the best 3G coverage and am inclined ot switch it off - will I still be eligiible for Push?

    The Podcasts tab in iPod preferences only applies to podcasts you've downloaded via iTunes. Podcasts in your library are considered music even when the Genre is set to "Podcast".
    To automatically transfer those files to you iPod, create a (smart) playlist with just the podcasts and choose "Automatically update selected playlists only" from the Music tab in iPod preferences.

  • Which Username/Paswwrod is authorized to add/delete/update users info?

    Hi,
    I wrote a code that able to view the ldap tree..
    But when I try to update a user information from the ldap tree I cannt and get an error: "LDAP: error code 50 - Insufficient 'write' privilege to the 'mail' attribute of entry",
    I know I need to supplay another information to my code to be able to modify information in LDAP
    I know that if I want to update information, I must be connected by a username.passwrd that have write privilege, where is this username/password?, How may I use it, Please.. and what another code I may Add?
    My code is:
    static void CreateContext() {
    Hashtable env = new Hashtable();
    env.put(Context.INITIAL_CONTEXT_FACTORY, CtxFactory );
    env.put(Context.PROVIDER_URL, url);
    env.put(Context.SECURITY_AUTHENTICATION, "simple");
    /////////Am not sure about the username/password of admin/admin, How to be sure? ///////////
    env.put(Context.SECURITY_PRINCIPAL, "uid=admin,o=abc.com,o=mtgl");
    env.put(Context.SECURITY_CREDENTIALS, "admin");
    try {
    ctx = new InitialDirContext(env);
    catch (NamingException e) {
    System.err.println(e);
    static void ModAttr() {
    try {
    Attributes orig = ctx.getAttributes(userobj,attrIDs);
    ModificationItem[] mods = new ModificationItem[2];
    mods[0] = new ModificationItem(DirContext.REPLACE_ATTRIBUTE, new BasicAttribute("mail", "[email protected]"));
    mods[1] = new ModificationItem(DirContext.ADD_ATTRIBUTE, new BasicAttribute("telephonenumber", "+1 555 555 5555"));
    //////// Here I get The Debugging Error ////////////
    ctx.modifyAttributes(userobj, mods);
    System.out.println("**** new attributes *****");
    setUserAttr( userobj );
    printAttrs();
    } catch (Exception e) {
    System.err.println(e);
    }

    I had run into a similar problem authenticating users. If you did not setup the LDAP yourself, you need to contact whomever is administrating the server and obtain an ID and password with read/write privleges or have one create for your application.
    I hope this helps. Good luck!

  • How to add/delete rows on the form without saving data

    I am new to apex
    I am working on project and need some help on creating a form
    my requirment is to save a request that has multiple questions.
    i have a request form with multiple regions
    On one of the region that takes questions, I want to create a tabular form such that i can add/delete/update row without hitting database and enter multiple questions
    each row is one question.
    Apex has the default functionality of having a tabular form linked to a table that onload shows the data from that table and also on click of add or delete hits the data base to save the data.
    However i want to load a form that does not show any data if its a new request and click of add/delete should not update the databse. It should just add/delete a row on the form
    so user logs in and can create a request that has multiple questions
    finally want to submit the form and save all the information of the form in multiple tables.
    As of now i a m able to have a simple form and a process that save 1 question per request.
    How do i achieve this. Please assist.

    Do that using collections like in this example:
    http://apex.oracle.com/pls/otn/f?p=31517:176
    Once you are done, you may decide either to save that or to clean it up.
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.opal-consulting.de/training
    http://apex.oracle.com/pls/otn/f?p=31517:1
    ------------------------------------------------------------------------------

  • Java FX Script, how to dynamically loadm add, delete document objects ?

    Hi,
    Is it possible to programmatically load the object Hierarchy of a java FX document, to add, delete, update objects proporties or to call function and operations.
    Is it possible to assign 'id' or 'name' to objects, to have later have references on them in the java FX script.
    exemple of object tree to parse :
    -Canvas
    --group
    ---Line
    ---Line
    ---Rect
    ---Button
    ..etc
    thanks for your help
    gel
    Edited by: geldouches on Oct 1, 2007 8:21 AM

    Here is your solution.
    Use an XML parser. Don't forget the dukes!

  • Insert,  Delete and Update options in Table control

    Experts,
    I have writen code for Insert,  Delete and Update options in Table control. They are not working properly...
    can any one send the code for the above please...
    Thanks in advance..

    Hi,
    Following steps will help you.
    1.TOP-INCLUDE
    DATA: ITAB1 LIKE KNA1 OCCURS 0 WITH HEADER LINE.
    DATA: ITAB2 LIKE KNA1 OCCURS 0 WITH HEADER LINE.
    DATA: WA LIKE KNA1.
    DATA: ANT TYPE I,CUR TYPE I.
    DATA: OK_CODE TYPE SY-UCOMM.
    CONTROLS: TABCTRL TYPE TABLEVIEW USING SCREEN 100.
    IN FLOWLOGIC
    PROCESS BEFORE OUTPUT.
    LOOP AT ITAB1 CURSOR CUR WITH CONTROL TABCTRL.
    ENDLOOP.
    PROCESS AFTER INPUT.
    MODULE CLEAR_DATA.
    LOOP AT ITAB1.
    MODULE MOVE_DATA.
    ENDLOOP.
    ADD “OK_CODE” IN ELEMENT LIST. CLICK ON LAYOUT AND  ADD TABLE CONTROL(name it as TABCTRL) AND PUSHBUTTONS AS FOLLOWS.
    SELECT THE FIELDS FROM PROGRAM. SAVE CHECK AND ACTIVATE.
    CLICK ON FLOWLOGIC EDITOR FROM APPLICATION TOOL BAR.
    DOUBLE CLICK ON MODULE “CLEAR_DATA”.
    write the in this module as below.
    CLEAR ITAB2. REFRESH ITAB2.
    DOUBLE CLICK ON MODULE “MOVE_DATA”.
    write the code in this module as below.
    APPEND ITAB1 TO ITAB2.
    ACTIVATE PAI AND WRITE THE CODE AS BELOW.
    CASE OK_CODE.
    WHEN 'FETCH'.
    SELECT * FROM KNA1 INTO TABLE ITAB1 UP TO 20 ROWS.
    TABCTRL-LINES = SY-DBCNT.
    WHEN 'ADD'.
    GET CURSOR LINE CNT.
    CNT = TABCTRL-TOP_LINE + CNT - 1.
    CLEAR WA.
    INSERT WA INTO ITAB1 INDEX CNT.
    WHEN 'MODIFY'.
    GET CURSOR LINE CNT.
    READ TABLE ITAB2 INDEX CNT.
    LOOP AT ITAB2.
    MODIFY KNA1 FROM ITAB2.
    ENDLOOP.
    SELECT * FROM KNA1 INTO TABLE ITAB1.
    WHEN 'EXIT'.
    LEAVE PROGRAM.
    ENDCASE.
    SAVE,CHECK AND ACTIVATE ALL.
    CREATE TCODE AND EXECUTE.
    contact if u hv any issues regarding this code.
    reward points,if it is useful.
    Thanks,
    Chandu.

  • Using Java, How can I Update, Add, Delete nodes in XML Files.

    Hi,
    I want to store the student record (like Name, Age, school name, total mark etc.,) as nodes in the XMLfile. Also I should able to Update, Add, Delete any nodes (student record) in the XML file. How can I achieve this...using Java
    I am able to read the content of the xml file using xml-parser. But my problem is
    updating the xml file.
    pls suggest some solutions or links with " example source code"
    Thanks :-)

    There are 2 kinds of XML parsers : SAX and DOM. DOM seems to suit your need. You can use JAXP APIs to add, delete or change nodes or attributes.
    http://java.sun.com/webservices/jaxp/dist/1.1/docs/tutorial/TOC.html provides contents that would satisfy most of the needs.
    To save a DOM modified XML file use java IO APIs to write to the same file from which it was read using a Document object ( doc.getNodeValue() ).

  • Is there a way to see which of my add-ons will be disabled when I install Firefox update?

    I have recently returned to Firefox after a long absence. The reason I stopped using it in the first place is that every time I got all the add-ons that I wanted, there would be a new update and I'd lose some or all of them and I wasn't interested in having some/all of my useful functions disabled until who knows when or forever.
    I've currently got automatic updates turned off, and that is where they will stay unless I can verify that the add-ons are backwards compatible or there is an update for the add-on.
    Is there a way to see what current add-ons will be disabled with an update?

    Yes, during the update there is a list of add ons that come up that will not be added when you update. You can cancel the update if it lists one that you do not want to no longer use.
    The block list is also here: [https://addons.mozilla.org/en-US/firefox/blocked/]

  • MultiValued Update option is disabled in Import manager

    Hi,
       I have a scenario where one of the qualifiers specified in Qualified table is LookUp Flat(multi-valued).
    Mult Valued look up table has 3 fields in it 3 are display fields.
    While doing the mapping in import manager it is allowing me to create compound field and getting mapped.But when i right click on the qualifier and select Set Mult Valued Update option the features like Append/Replace/Inherit Default are disabled.
    How to enable this option?
    Regards,
    Lakshmi

    Hi Lakshmi,
    But when i right click on the qualifier
    No u hv to right click on a field to which Compound field is mapped ( Ur Main Table Field)
    Right Click on Compound field & choose option Set Qualified Update.
    New Links: Create
    Existing Links: Update (All Mapped Qualifiers)
    Thanks,
    Maheshwari

  • "Checking Compatability of Add-ons" Update window at each startup & redirects to a welcome page. Tried disabling all add-ons & updates / force compatability checker. Thoughts?

    Each time I start Firefox a "Checking Compatibility of Add-ons" update window appears, which redirects me to a welcome to Firefox 5.0 page with my normal home page in another tab. I tried disabling all add-ons and updates as well as the force compatibility checker. I think my AVG safe-search bar might be causing the problem, but I have it disabled and never use it. Please help me get rid of this.

    See:
    * http://kb.mozillazine.org/Preferences_not_saved

  • Does Anyone Knows How To Disable The "Check For Updates" Option in Adobe Edge Code and Reflow?

    Does Anyone Knows How To Disable The "Check For Updates" Option in Adobe Edge Code and Reflow?
    Thanks in Advance

    I don't think there is a way for Edge Code. I'm not sure about Reflow.
    Why don't you just upgrade? That will stop the notifications.
    Randy

  • Unable to Disable Delete row option in FBCJ tcode

    Hello Sir/Madam,
                             I am giving authorizations to users, and I have given auth of FBCJ t-code to a user with create/generate and park activity codes, but I am surprised to see that delete row option is by default working in the tcode, which needs to be disabled or blocked or hidden. Kindly suggest if anything needs to be done in configuration, or from basis side.  I havent given 06  i.e delete access to this user.
    Thanks and Regards,
    Harsha
    SAP-Basis
    Clockwork Business Solutions

    Hi,
    Please refer the below link and SAP notes which might help in solving the issue. If disabling the delete option does work with standard authorization, then please take help of your ABAPER's and check if the same can be disabled using user exits.
    Note 304685 - FI Cash Journal (FBCJ): Authorizations
    Note 304984 - FBCJ: Missing/incorrect authorization checks
    Note 785283 - FBCJ: Authorization check with external call
    http://help.sap.com/saphelp_47x200/helpdata/en/95/ab201b137b11d3a6fc00104b57ed65/frameset.htm
    Regards,
    Sharath

  • Help me in creating a Trigger for Insert and Update Options

    Hi
    Please help me in creating a Trigger .
    My requirement is that after insert or update on a Table , i want to fire an event .
    I have started this way ,but doesn't know how to fully implement this .
    say i have a dept table
    CREATE TRIGGER DepartmentTrigger
    AFTER INSERT ON Dept
    BEGIN
    INSERT INTO mytable VALUES("123","Kiran");
    END DepartmentTrigger;
    Please tell me how can i put the Update option also .
    Thanks in advance .

    Please tell me how can i put the Update option also .Add "Or Update". ;-)
    Here are a few suggestions, but you definitely need to refer to the manual page that the previous poster suggested.
    CREATE OR REPLACE TRIGGER DepartmentTrigger
    AFTER INSERT Or Update ON Dept
    BEGIN
    INSERT INTO mytable VALUES(:new.Dept,'DEPT ADDED OR CHANGED');
    END DepartmentTrigger;
    The "Or Replace" means you can replace the trigger while you're developing without having to type in a drop statement every time. Just change and rerun your script, over and over until you get it right.
    Adding "Or Update" or "Or Delete" makes the trigger fire for those events too. Note, you may want seperate triggers in different scripts and with different names for each event. You have to decide if your design really does the same thing whether it's an insert or an update.
    :new.Dept is how you would refer to the changed vale of the Dept column (:old.Dept is the prior value). I changed the double quotes on the string in the VALUES clause to single quotes.
    Andy

  • Is there a way to add/delete words from the predictive text ?

    Is there a way to add/delete words from the predictive text options that my iPhone is giving me? I'm using an iPhone 6 Plus with iOS 8.
    There are specific words that are popping up in the area right above the keyboard where it displays 3 word suggestions to choose from. This area seems to suggest words that I have typed before, I'd like to remove these words. Default seems to select the word in the center and when I'm typing fast on occasion it will recommend and select words that I don't need to use.
    Any help would be appreciated.

    999753 wrote:
    I know in 10g delete is added but in 9i i can only work with UPSERT( update, insert)
    is there a way to add delete into 9i MERGE? or somehow encapsulate it?
    Thank youI would suggest upgrading to a supported version of the database. 9i has been unsupported for many many years now.
    And to answer your question... to the best of my knowledge, there is no workaround. It works as it works.

Maybe you are looking for

  • How can I import text produced in Pages into Adobe inDesign?

    How can I import text produced in Pages into Adobe inDesign?

  • Max no. of simultaneous users on a LCCS site

    Dear all, I have a LCCS service running (online homework help for lowergrade students) but I experience problems with connecting to the students. First I thought that it was just "normal" server connection problems but when I log into the LCCS dev. p

  • Two finger right click on g4 ibook

    Hi guys, I just got an ibook g4 and was wondering if there is such an option or program I can download in order to be able to right click using two fingers on the scroll pad like the MB and MBP.

  • AVCHD-Lite no sound

    Hello, I have a problem with the file type  AVCHD-Lite. When I open a file in photoshop elements 11, I can watch the video but there is no sound. I have already installed the latest version of quicktime, but this didn't help. Thank you for your help

  • Am I allowed to use font in a software?

    Hi, I'm currently developing a mobile app and would like to use one of the fonts by Adobe. Once I buy the font does the licence allow me to use it in my app? thanks!