Create/Edit Smart Lists using DIM

Hi!
Is it possible to create or edit a smart list for a classic Planning 9.3.1 app using DIM?
I already have a smart list in planning 9.3.1 which has a couple of entries (drop down members) but when I try to use DIM to add more smart list entries, I cannot even see the smart list listed as a dimension in DIM. i.e. when I import a Hyperion Planning Adapter and connect to a Planning application, all the dimensions show up in the target list but none of the smart lists show up. Is there another setting that I have to change for the classic world?
In BMPA this would be a smart list dimension but what about a classic application?
Any pointers will be greatly appreciated.
Thanks!

You need to make a call similar to this:
   l_new_item_master_id := wwsbr_api.add_item(
      p_caid                => l_pg_id,
      p_folder_id           => l_nav_pageid,
      p_display_name        => 'Edit',
      p_region_id           => l_region_list(2).id,
      p_type_caid           => wwsbr_api.SHARED_OBJECTS,
      p_type_id             => wwsbr_api.ITEM_TYPE_SMART_LINK,
      p_attribute_id        => l_attribute_id,
      p_attribute_caid      => l_attribute_caid,
      p_attribute_data_type => l_attribute_data_type,
      p_attribute_value     => l_attribute_value
      );Peter

Similar Messages

  • How to create global Contact list using OSX Server Contacts Service?

    My goal is to create a global contact list for the use of my department at work. We currently have 5 MBP's and a Mac Mini Server running OSX Server.
    I have read so many forum posts and so called "solutions" that my head is completly spinning... like a record... right round... you get the idea.
    I talked with Apple Support, and they are going to walk me through the process of changing our network from "local" to a legitimate internet network. Enabling DNS and setting up open directory are some of the steps, and all in all i was impressed with the support i received. We did a complete walkthough of all the steps it would take to change everything, without actually making any changes (because I could not shut down the company server at the time I called).
    All that being said, I have been reading that actually creating and sharing a global contact list (and enabling specific user access for read/write for said list) is not as simple as Apple is telling me. I have read so many horror stories about not being able to edit the list, having duplicate lists and entries, and many other problems. It seems that this "Contact Service" is not really what its billed as.
    Im just looking for someone who has this already setup to shine some light on my questions/concerns. I have scoured the internet for information, and either i'm looking in the wrong place or I just happen to have the WORST possible combination of OS X versions, server versions and so on. I would expect a company who charges such high prices for its products to design them to ACTUALLY WORK how they are advertised to work!
    Thanks in advance and a thousand kudos to anybody that can help!!!
    -John

    That sounds like one viable option...
    The only problem is that I'm not sure how that would behave once the client MBP's are taken off site and connect to the network over a VPN or something of that sort.
    I figure since we have purchased the Server App and it contains the Contacts Service, I should try and get it to work that way (through that specific service on the server app).
    I would really prefer to not have to install yet another piece of software just to do something that should already work (or have the ability to be configured to work). None of us here are "Power Users", and we are all learning as we go and I got the role of the "IT Guy" when it comes to setting everything up. I'm dealing with lifetime Windows users here, and I feel there is a need to keep everything literally as easy as possible to use.
    I will keep your solution in the front of my mind though, as it sounds like that may work. I am not exactly 100% familiar with the OSX Server or the Mac OS yet, and I'm not positive where you would add the users (I couldn't just sit down and do what you suggested, i unfortunately would need a step by step solution so I don't fuss up our entire system).
    If you feel like giving a step by step, that would be awesome just for future reference or for anyone else having similar problems. If not, I don't blame you at all.
    Thanks for your reply, and if I find a clear-cut solution I will post it here!
    Thanks,
    J_Semp

  • Create a select list using AJAX

    Hello,
    I saw Carl Backstrom and Scott Spendolini examples on how to use AJAX to populate a related item, based on a select list. What I'm looking for is the reversed angle.
    I have a TextItem, and I want to generate a select list based on that TextItem, something like this:
    select code, desc
    from Table
    where code like TextItem
    Is it possible with AJAX? (in the current examples I gat lost in the on demand application process – How, if possible, to render the select list using the HTP package.)
    Greatly appreciate the help
    Arie.

    Carl,
    I hope you can help with this, from reading the forum, you seem to have a lot of experience with AJAX and Application Express. I have found your examples within the forums and can not get them to work on my servers. I am on version 2, and a 10g database. I am attempting to place 4 select lists on a page. Each one (with exception from the first) will be dependent on the previous. To make is simple I have started with only 2 select lists. The first select list (p1_select1) is a list of departments. The second list (p1_select2) should populate with the users who belong to the department selected from p1_select1. I can not seem to get the second select list to load. I have attempted to follow your code as best I could, I can see on the page that it has created the xml data, however it just does not populate the second select list. Here is a summary of what I have.
    Thanks for lookin.
    Mike
    Page Regions:
    HTML: main (10)
    Region Header:
    <script language="JavaScript1.1" type="text/javascript">
    function f_Get_Data(pThis,pSelect_Source,pSelect_Target){
    var l_Return = null;
    var l_Select = html_GetElement(pSelect_Target);
    var get = new htmldb_Get(null,html_GetElement('pFlowId').value,'APPLICATION_PROCESS=Get_Data',0);
    get.add(pSelect_Source,pThis.value);
    gReturn = get.get('XML');
    if(gReturn && l_Select){
    var l_Count = gReturn.getElementsByTagName("option").length;
    l_Select.length = 0;
    for(var i=0;i<l_Count;i++){
    var l_Opt_Xml = gReturn.getElementsByTagName("option");
    appendToSelect(l_Select, l_Opt_Xml.getAttribute('value'), l_Opt_Xml.firstChild.nodeValue)
    get = null;
    function appendToSelect(pSelect, pValue, pContent) {
    var l_Opt = document.createElement("option");
    l_Opt.value = pValue;
    if(document.all){/* why is ie different ask bill */
    pSelect.options.add(l_Opt);
    l_Opt.innerText = pContent;
    }else{
    l_Opt.appendChild(document.createTextNode(pContent));
    pSelect.appendChild(l_Opt);
    </script>
    Items
    Region: main
    10: P1_TEXT1 Select List
    20: P1_TEXT2 Select List
    P1_TEXT1 Form Element:
    onChange="javascript:f_Get_Data(this,'P1_TEXT1','P2_TEXT2')";
    APPLICATION PROCESS "On Demand" Get_Data:
    declare
    begin
    owa_util.mime_header('text/xml', FALSE );
    htp.p('Cache-Control: no-cache');
    htp.p('Pragma: no-cache');
    owa_util.http_header_close;
    htp.prn('<select>');
    for rec in (select ENAME , EMPNO
    from EMP where DEPTNO = :P1_text1) loop
    htp.prn('<option value="' || rec.EMPNO || '">' || rec.ENAME || '</option>');
    end loop;
    htp.prn('</select>');
    exception
    when no_data_Found then
    null;
    end;

  • Editing Contacts list using programming.

    Hi,
    I need some help related to editing contacts using iPhone programming.
    I have worked on adding a contact to the iPhone contact list using programming.
    I am facing some difficulty to edit a selected contact person details using the program.
    Requirement is
    1) When the user clicks on the "Add" button a new contact needs to be added. After the contact is added the contact list should be displayed to the user -- This I am able to do
    2) Once the user selects a contact then he should be able to EDIT the contact details --- I need some help on this pls.
    Can anyone pls. help me in this regard.
    It would of great help if you provide me some sample code for this pls.
    Thanks in advance,
    Sreelatha.

    SreelathaMudiraj wrote:
    2) Once the user selects a contact then he should be able to EDIT the contact details --- I need some help on this pls.
    The 'Address Book Programming Guide for iPhone OS' reportedly covers making changes - have you looked there yet?

  • How to create / edit a website using SharePoint Designer 2013

    How to EDIT a website created by Frontpage using SharePoint Designer 2013 ?
    How to CREATE a new website using SharePoint Designer 2013 ?

    You can edit any sharepoint site using designer not any other site.
    To create a new website using designer follow below:
    To create a new site, click the File tab, choose Sites, and perform one of the following:
    Click New Blank Web Site to create a blank, empty SharePoint site.
    Click Add Subsite to My Site to create a new site under your My Site.
    Under Site Templates select a template to create a new site based on a SharePoint template.
    http://office.microsoft.com/en-in/sharepoint-designer-help/get-started-with-sharepoint-designer-2010-HA010370548.aspx#BMopensites

  • Create-Edit-Delete page using ADF Faces & Toplink

    Hi,
    i want to build simple apps like this one : http://andrejusb.blogspot.com/2007/06/create-edit-and-delete-operations-in.html
    It's using ADF BC. How could it be done using ADF Toplink ?
    Thanks,
    Best Regards,
    Ricky

    Ricky,
    If you're using JDeveloper 10.1.3, take a look at the ADF learning center. Under the heading "Experienced Java Developers", on the right, you'll see a sample, tutorial and developer guide covering the ADF Faces/TopLink technology stack.
    Blaise

  • How to create a smart form using the purchase order

    hi everybody............
    i have created one purchase order, i want to print that PO using smartforms rather than scripts. how can i do it, can anyone help me out in solving the issue. i am using the version sap 4.7
    Edited by: mhyderali on Aug 21, 2009 4:08 PM

    Hi,
    Before answer your question few things i would like to kno:
    1. currently is there any script is printing while displaying output.
    2. do u allready hae a smartform or you are going to develop a smartform.
    3. if you dont have a smartform and there is a script attached then you can convert script into smartform and then you can change in the smart form accordingly.
    4. after devloping a new smart form or converting script into smartform what you need to do is go to V/83 transaction give Output Type which is associated with script and Application area (for purchase order i.e. EF). then press ok screen will display here you can change the name of your form name under the form column.
    6. if you dnt have the Output type then you need to create a output type for the purchase order.
    Please let me know if you have still some question.
    Thanks
    Narendra

  • How to create outllok Distribution list using java

    Hi all,
    I have a requirement to create a outlook Distrubution list by reading all the email ids from the SQL database.
    and it has to be dynamic ie when ever a new User is registered it has to be updated.
    is there any APis are exist to do so.if yes please reply to this post .
    I searched the google but no help till now.so thought of posting a query here.
    Thanks for all in advance.
    hope to get reply from anyone of u ...

    hi steve
    first of all sorry for the delay in replying
    JOC is a commertial product and im completely looking for open source apis if any
    i need to create the outllok DL (list of emails from datadabse) from the java code and sent a mail to that DL using java mail apis.
    if u have any suggetions or thoughts are welcome.

  • Creating SharePoint Custom List using a list using a Microsoft.SharePoint.Client.ClientContext object: Lists.Add method from existing Template does not Include Template Content (include content was checked for template)

    The code below works assuming you have a list template setup called "GenTasksTemplate".
    The problem is that even though the check box to include content was checked during the creation of the template, the task items in the new list do not get populated.  What am I missing?
    using System;
    using System.Linq;
    using Microsoft.SharePoint.Client;
    protected void createSPlist(object sender, EventArgs e)
    ClientContext context = new ClientContext("https://sharepointServer/sites/devcollection/");
    var web = context.Web;
    ListTemplateCollection ltc = context.Site.GetCustomListTemplates(context.Web);
    ListCollection siteListsColection = web.Lists;
    context.Load(ltc);
    context.ExecuteQuery();
    ListCreationInformation listCreationInfo = new ListCreationInformation
    Title = "New Task from Template",
    Description = "Tasks created from custom template"
    Microsoft.SharePoint.Client.ListTemplate listTemplate = ltc.First(listTemp => listTemp.Name == "GenTasksTemplate");
    listCreationInfo.TemplateFeatureId = listTemplate.FeatureId;
    listCreationInfo.TemplateType = listTemplate.ListTemplateTypeKind;
    listCreationInfo.DocumentTemplateType = listTemplate.ListTemplateTypeKind;
    //listCreationInfo.CustomSchemaXml =
    siteListsColection.Add(listCreationInfo);
    context.Load(siteListsColection);
    context.ExecuteQuery();
    http://www.net4geeks.com Who said I was a geek?

    Yes. I can create a list with the template using the UI.  I can also create list programmatically using the Microsoft.SharePoint library within a Windows Forms Application.  If I do create a provider-hosted app referencing Microsoft.SharePoint,
    it results in a 64bit / 32bit mismatch error.  I am running SharePoint 2013 on a 64 bit Windows 2012 Server.
    The problem is that with a provider-hosted SharePoint App, I am limited to only using the Microsoft.SharePoint.Client library which is very limited.
    http://www.net4geeks.com Who said I was a geek?

  • Help needed creating vertical bullet list using div tag and css

    Hi,
    I think there is something quite fundamental that I'm missing when using div tags - I seem to keep running into problems with them.
    I'm trying to create a vertical bullet list. It works fine when I try the code on its own as follows:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title>
    <style type="text/css">
    <!--
    #techlistcontainer {
        /*list-style-type: square;*/
        position: absolute;
        top: 20px;
        left: 0;
        z-index: 2;
        width: 75%;
        margin-top: 0;
        margin-right: 0;
        margin-bottom: 0;
        margin-left: 30;
        padding-top: 0;
        padding-right: 0;
        padding-bottom: 0;
        padding-left: 30;
    #techlistcontainer ul {
      margin-top: 0;
      margin-left: 0;
      padding-left: 0;
      list-style-type: none;
      font-family: Arial, Helvetica, sans-serif;
    #techlistcontainer li {
        margin-bottom: 8px;
        list-style-type: circle;
        margin-left: 50px;
        padding-right: 30px;
    -->
    </style>
    <head>
    </head>
    <body>
    <div id="techlistcontainer">
    <ul id="techlist">
              <li>Java Messaging Service (JMS)</li>
              <li>Message Driven Beans </li>
              <li>Remote Session EJBs with multi-threading</li>
              <li>Message Oriented Middleware(MOS) such as Websphere MQ series, Mercator with SAP/ERP</li>
              <li>XML messaging</li>
              <li>CORBA (Common Object Request Broker Architecture), RMI (Remote Method Invocation)</li>
        </ul>
    </div>
    </body>
    </html>
    http://www.pa-solutions.co.uk/vertical_list.html
    When I insert that into my site template page, its all over the place:
    http://www.pa-solutions.co.uk/development.html
    I've put the css code into a seperate file http://www.pa-solutions.co.uk/pas.css - I get the same results when its embedded into the html doc.
    Please help before I pull all my hair out.
    Thanks,
    Phil.

    Unless you know what you're doing with absolute positioning, avoid absolute positioning! Absolute positioning actually takes an element out of the normal HTML document flow and positions it absolutely in relationship with it's first parent with a position other than static - for details read the HTML specs at the W3C.
    Ideally you should use the normal HTML document flow. Divs are block level elements meaning that they act like blocks that take up a height (determined by children content) and width (the full width of the page or it's parent container, unless you tell it otherwise).
    For your CSS try this:
    #techlistcontainer {
        width: 75%;
        margin-top: 0;
        margin-right: 0;
        margin-bottom: 0;
        margin-left: 30;
        padding-top: 0;
        padding-right: 0;
        padding-bottom: 0;
        padding-left: 30;
    How does that work with your templates?

  • Is it possible to print the info. from the help window. (ex. how to create a smart list)

    is it possible to print the info. for the help window. (ex. how to create a smartlist... i tunes)

    Yes, click the gear icon and select print.

  • How to create a Watch List using JSF

    I'd like to build a HTML UI which includes the toggling of items from a watch list. For example, stocks or system alerts which are important to the user. First of all are there any JSF example which demonstrate this type of application? What is the best approach for building such an interface so that individual lines can be added and removed from the watch list and the view mode can be toggled from watch list only items to all items?
    I've looked at the data repeater component example and tried to make that work for this purpose but I'm struggling with some of the details and wondering if the approach taken is good or if there is a better approach. Basically what I have is a List of line items held in a managed bean class. This List is associated to my repeater's value tag. The managed bean also has a UIData element and a UISelectBoolean with the former associated to the repeater's binding and the latter associated to a invisible selectboolean_checkbox (rendered="false").
    As the user presses an "Add" watchlist button with an action of toggleWatch the UISelectedBoolean.setSelected (onWatchList) is toggled between true and false for the current UIData.getRowIndex(). However, in tracing the code with a debugger, I see as the component tree is rendered that suddenly all UIData rows appear to have their onWatchList.isSelected() toggled to the new value.
    Additionally, when I toggle between the view modes of show watchlist and show all my method to determine what gets rendered doesn't appear to have any effect. This is, when pressing the Show Watch button, the viewType is set to "watch" and then a setRendered method is called to setRendered() for each UIData row as follows. Again, this appears to have no effect.
    public void setRendered()
    for (int i=0; i< myList.size(); i++)
    data.setRowIndex(i);
    if ( viewType.equals("watch") && !onWatchList.isSelected() ) <-UISelectBoolean type
    data.setRendered(false);
    else if ( viewType.equals("raised") && !raised.isSelected() )
    data.setRendered(false);
    else
    data.setRendered(true);
    Am I making this too hard or am I just missing something minor???

    Upon further debugging it looks like the current issues may be caused by only one onWatchList (UISelectBoolean) existing instead of one for each row in the UIData group. So, what builds the association here? In the RepeaterBean example class the checked UISelectBoolean is simply declared as a instance variable but is never associated to the UIData. How are these glued together?
    Of course, I'm still wondering if the is a much better / easier way to get the same results...

  • Can't get playlists from one one computer to another.  Confident Home Sharing is turned on correctly.  Have imac and macbook Air and Lion.  Using smart lists.

    Can't get playlists from one one computer to another.  Confident Home Sharing is turned on correctly.  Have imac and macbook Air and Lion.  Using smart lists.

    Using Ethernet, I am attempting to stream the movies on my computer to my girlfriends computer through iTunes home sharing. I want to watch the movies that are on one computer on another.

  • Bug 11.1.1.1: Can't create smart-list into Sample App

    Hi,
    I can't create smart-list into Sample App in OEPMS 11.1.1.1.
    When I open Administration->Manage Smart Lists and see msg: No smart lists were created. Click Create to create a smart list. I'd like to do it, but File->New->Smart List have no effects.
    How can I create Smart List into Sample App? Any idea?

    Hi,
    Is it is not a bug because I can create smart lists, if you click create it should open a popup window, are you getting a popup window? if not maybe your security is blocking it.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Can't edit smart album in iPhoto '11

    The help files for iPhoto say to select a smart album in the source list and then select it item 'edit smart album' in the file menu.  But there is no such item in the File menu.
    When I right-click on the album, the option 'edit smart album' is dimmed. Could it be that this album is not smart??  All my smart albums display the same misbehavior.

    I think you may have suggested something that explains all this:  my iPhoto library is a product of a Merge operation by iPhoto Library Manager, which I use to combine photos originally imported on different computers in the family. It is possible that that program makes all smart albums into dumb albums!  I'll look up the documentation.

Maybe you are looking for

  • Dock icons will not disappear when I drag them to desktop or trash

    On my MacBook Pro, when I drag an icon from the dock to the desktop or to trash, it bounces back to where it was on the dock. I tried to move Applescript Editor, AppleWorks 6, Keychain Access, Activity Monitor,  Quick Time Player and several more ico

  • Bluetooth cannot pair samsung s6 and macbook pro retina

    Hi all, I'm trying to pair my new samsung S6 to my 2013 macbook pro retina running yosemite.  I have gone to "bluetooth preferences" and I can hit pair and the S6 receives the code to verify and it connects, but then immediately disconnects and goes

  • G5/10.4 not seeing MBP anymore...

    Hi there, I had things all set up perfectly... today the G5 can't see the MBP. I have a wireless network. Internal airport cards on both computers, and a Buffalo wireless router (provided by my husband's employer). The G5 is also hardwired to the rou

  • App store not working in mavericks

    Having a torrid time with Mavericks. App store, Mail, Calendar, Preview, Terminal and others, nothing seems to work. I can;t even download a fresh install because App Store won't open. The gloss is coming off my long term Apple fun and I'm not happy.

  • Is it possible to Install Oracle Applications 11.5.10.2 to Fedora 8

    Has anyone done this installing Oracle Applications 11.5.10.2 to Fedora 8?