Thousands of ap1142's to add to multiple controllers

Cannot find an answer yet, but it should be possible.  250 or so AP's per WiSM to start with. Upto 3,000 at 80 locations when I'm finished. I will create a file with has the mac address of the new ap and for each ap, I include the new AP name, AP Group, Controller assignment, and static ip address. By using a barcode scanner, I simply scan the box of ten ap's and as our installers place them in a building, they will connect to the master controller, receive their instructions and move to the assigned controller and ap group with the appropriate name and ip address..
OK, with over 8,000 ip phones, we imported a file into the call manager, and once the mac address was registered, it was moved and assigned automatically. Did not even have to unbox the phones.
Can it be done with AP mac's and a WLC? If yes, Please share. Tons of points for you!!!

If I understood correctly this could do the trick :
1) Do option 43 or DNS and advertise all WLCs ip addresses
2) On each WLC configure an AP authorization list that only allows specific APs to join.
So your job is to enter the list of mac addresses on the WLC, this way you can decide which AP goes where.
The more automatic way of doing that would be via command line (script ?).
I don't think WCS can use files to import mac addresses in that list.
Nicolas
===
Don't forget to rate answers that you find useful

Similar Messages

  • Add to Multiple Tables from One Page

    Hello,
    I am building an application that handles hardware inventory (APEX 4.0). I have an input page that adds data to two or more tables all at once. The page has two forms on it that point to two separate tables. However when I try to run the page, it fails and returns an error:
    ORA-06550: line 1, column 437: PL/SQL: ORA-00904: "ORH_LAST_UPDATE_DATE": invalid identifier ORA-06550: line 1, column 7: PL/SQL: SQL Statement ignored
         Error      Unable to process row of table IDD_ID_DATA.
    So far as i can see within the App, that column is not at issue (I am not even doing anything to it and it is nullable). I have looked into the App itself as well as doing some online research but have found nothing helpful...
    So my question is this: Is it possible to add to multiple tables from one page? If so how do I do it?
    I am new to APEX so any help would be greatly appreciated!

    UPDATE:
    I received an email from the APEX Support Team:
    "The simple answer is that you will need to manually code the DML (and query) processes if you wish to maintain multiple tables from one page (There is a limit of one table when using the built-in processes).
    In order to do this I suggest you delete the processes generated by the wizards and create PL/SQL processes with insert, update, delete statements as necessary. Such coding is not difficult but is more time consuming than when you can use built-in processes."
    I have been playing around with PL/SQL code and the end result is this:
    begin
         INSERT INTO table1
         VALUES(
              :P2_Item_Field1,
              :P2_Item_Field2);
         INSERT INTO table2
         VALUES(
              :P2_Item_Field1,
              :P2_Item_Field2);
    end;
    I used this code in a custom PL/SQL Process in the Processing>Processes section of Page Processing and it seems to work fine now. The only downside to this method is if the name of a Page Item is changed the code will also have to be changed. Other than that i have had no problems.

  • Add 3rd multiple categorization area to Service Ticket (SRQM_INCIDENT_H)

    Hello,
    in Service Process there are the multiple categorization areas Subject and Reasons available by default.
    We want to add additional multiple categorization areas.
    Five categories are available and added to our transaction type via:
    SPRO -> CRM -> Cross Appl. -> Multilevelel Cat. ->Assign Transaction Types to Catalog Categories
    But what we have to do in component SRQM_INCIDENT_H to make the new multiple categorization areas visible?
    Thanks in advance & regards,
    André

    Add BTCATEGORIES Component as a Component Usage with the name simlilar to what has already been used (CUBTCategories_E) and then you can add a view area with this Usage.
    Regards,
    Harshit Kumar

  • Add/change multiple operations on a released Production Order

    How can I add/change multiple operations on a released Production Order...I know how to add them manually one by one but is there a better way to add...like copy/paste since i am adding operations from an alternate route? Please advise?

    Hy Aziz,
    In process order go to operation screen go to Operation - Include Master recipe, then one pop up comes select required Master recipe and add operations of your interest.
    But there are some restriction which doesn/t allow it if Inspection Lot, Control Recipe are created..
    Regards,
    Dhaval

  • Sharing jsp between multiple controllers

    Is there a way to share a jsp between 2 different controllers?
    If I put the shared jsp in its own directory and the 2 controllers in their own directories - I seem to be able to use netui:anchors and specifying the fully qualified "href" attribute - but not the "action" attribute. For example this works (but means I have to specify the exact controller):
    <netui:anchor href="/portlets/Controller1/findAction.do">
                find
    </netui:anchor>This does <b>not </b>work:
    <netui:anchor action="findAction">
                find
    </netui:anchor>Additionally, if I want a form to be on this shared jsp - I don't know of a way to use the netui tags to accomplish this... This example results in an error (as if it's trying to find the action in Global.app):
            <netui:form action="submitSharedForm">
                <table>
                    <tr valign="top">
                        <td>Foo:</td>
                        <td>
                        <netui:textBox dataSource="{actionForm.foo}"/>
                        </td>
                    </tr>
                </table>
                <netui:button value="submitSharedForm" type="submit"/>
            </netui:form>Are there other better techniques for sharing jsps between multiple controllers (jpf)? The only other thing I was thinking of trying to have a jsp found within the same directory as the controller include the shared jsp (which seems kind of tacky)...

    You may consider using a base pageflow controller that has the common JSPs
    in its directory. I have done that before like this:
    // inheritLocalPaths=true lets us inherit the JSPs from the base pageflow
    @Jpf.Controller(
    inheritLocalPaths=true
    public class MyChildController extends MyBaseController
    Ture Hoefner
    WebLogic Portal Engineering
    <Tim Rafert> wrote in message news:[email protected]..
    Is there a way to share a jsp between 2 different controllers?
    If I put the shared jsp in its own directory and the 2 controllers in
    their own directories - I seem to be able to use netui:anchors and
    specifying the fully qualified "href" attribute - but not the "action"
    attribute. For example this works (but means I have to specify the exact
    controller):
    <netui:anchor href="/portlets/Controller1/findAction.do">
    find
    </netui:anchor>This does <b>not </b>work:
    <netui:anchor action="findAction">
    find
    </netui:anchor>Additionally, if I want a form to be on this shared jsp - I don't know of
    a way to use the netui tags to accomplish this... This example results in
    an error (as if it's trying to find the action in Global.app):
    <netui:form action="submitSharedForm">
    <table>
    <tr valign="top">
    <td>Foo:</td>
    <td>
    <netui:textBox dataSource="{actionForm.foo}"/>
    </td>
    </tr>
    </table>
    >            <netui:button value="submitSharedForm" type="submit"/>
    </netui:form>Are there other better techniques for sharing jsps between multiple
    controllers (jpf)? The only other thing I was thinking of trying to have
    a jsp found within the same directory as the controller include the shared
    jsp (which seems kind of tacky)...

  • Using SumIfs to add up multiple names in a list

    Hi, I've been wrestling with Numbers while trying to get on top of my bank account (tax return due soon!).
    I have all my transactions in a big list, and wanted to be able to show how much was spent on certain items, based on keywords. I also wanted to be able to easy change the date ranges that were returned, so created an extra table with a "date FROM" and "date TOO" field.
    Using SumIfs() I've done most of what I wanted, using the following formula:
    (in this case only adding up transactions with "ADDISON LEE" in their description field)
    =SUMIFS('Debit ',Source,"ADDISON LEE*",'HSBC Advance - Current Account' :: $A,Date FROM,'HSBC Advance - Current Account' :: $A,Date TO)
    This works great, but for some fields, I'd like to return multiple items based on more than one String match (so for mobile phones, search for "O2" and "T-mobile". Right now, if I add a second string comparison argument, like this...
    =SUMIFS('Debit ',Source,"O2",Source,"T-MOBILE",'HSBC Advance - Current Account' :: $A,Date FROM,'HSBC Advance - Current Account' :: $A,Date TO)
    ...I don't get an error message, but the resulting value is always zero. I think I know why it's doing this - the SumIfs function only adds values if all arguments evaulate to TRUE. Since the String matching can't be TRUE for both (for any one item in the list), it doesn't evaluate any of the items being a "match" and doesn't SUM them.
    So, what I'm asking  -  is it possible to add a logical operator to the formula so it evaluates (like an OR) as true if ANY of the named strings are found?
    This is so much easier to do with Javascript - and real programming languages

    Thanks Jerrold, yeah I figured that was one way of doing it - the downside being it makes for a lot of duplication of code -  and a long formula. Is there any way to nest an individual evaluation so only the end result of that evaluation is matched by the AND logic?
    In javascript, for example you could put something like:
    =SUMIFS('Debit ',Source,"O2" || "T-MOBILE",'HSBC Advance - Current Account' :: $A,Date FROM,'HSBC Advance - Current Account' :: $A,Date TO)
    with || being a logical OR operator. I think there might be some way to do this in Excel using VBA, but so far I'm stumbling with Numbers.
    Wish there was an alternative to using the excel model of formulas I can happily work in Javascript or C, but this confuses the heck out of me!
    Thanks for your help anyway, much appreciated!

  • How do I add remove Multiple rows in a table

    Guys,
    Can somebody tell me How do I add and remove <u><b>Multiple</b></u> rows between two tables.
    <u>Also, I want the row or rows to disappear from the source table as soon as it is moved or added to the second table and appear again once its been removed from the second table.</u>
    The data is being fed by a BI query not a BAPI..
    thanks,
    Naseer

    Hi Jarrod,
    Thanks for replying. Even though it seemed like it might not be possible. But we figured it out.
    We are using signals to basically LOOP and do an ADD and REMOVE.
    Thanks again,
    Naseer

  • Add single/multiple line of text in a document library

    Hello,
    I was wondering if there is a way to have a document library that gives you the ability to add text based items in the same column as the file you upload through the library, like you can do through lists. For example, I want to be able to have the freedom
    to add text before or after the file that was uploaded, but still keeping everything in the list (so I'm not actually uploading a file everytime).
    Name <--- column
    Text text text text text text text text text text text text
    Text.jpg
    And here's more text... the end.
    Is this possible? I'm not sure how much extra coding I can add to this because my document libraries are apart of custom web part and adding javascript to the library may break up the web part. 

    i dont think their is OOB way to achieve this.
    I am thinking...
     create 3 Columns
    Text Before as Single text or multiple
    Text After as Single text or multiple
    Calculated column
    Now in Calculated column = Text before + Url(Column) + Text after.
    Please remember to mark your question as answered &Vote helpful,if this solves/helps your problem. ****************************************************************************************** Thanks -WS MCITP(SharePoint 2010, 2013) Blog: http://wscheema.com/blog

  • Excel Add-in & Multiple excel sessions.

    We all know the limitation of the add-in with multiple sessions of excel going (unpredictable results), but for an accountant it seems pretty restrictive. Especailly if there are long running retrieves. e.g. a macro that retrieves data for multiple sheets.
    Anyone found a way to let someone continue working with excel (not in retrieve mode) while the long running retrieve is going?

    First, understand that the session limit is one of Excel instancing, not connection/workbook related itself.
    You can, with a single excel session, have multiple workbooks open, running multiple calcs connected to multiple databases, and continue to do retrieves relatively unmolested.
    The impact on doing the additional items is not severe, but occasionally noticeable.
    The session limit itself is a pain when you have embedded spreadsheets though, because you wouldn't be able to work in a spreadsheet attached to a powerpoint presentation if excel is open, and you do tend to get limited quite significantly if excel is not your "primary" session.

  • Add to Multiple Numeric Limit Test from code

    How can I add tests to Adding to Multiple Numeric Limit Test from code using CVI code?

    Hi,
    Try this out
    http://forums.ni.com/ni/board/message?board.id=330&message.id=2387&query.id=12265#M2387
    Regards
    Ray Farmer
    Regards
    Ray Farmer

  • PIVOT with multiple columns to add and multiple levels of grouping

    Hi friends,
    I got a table with the columns in the form of:
    CRITERIA_A,
    CRITERIA_B,
    CRITERIA_C,
    AMOUNT_A,
    AMOUNT_B,
    AMOUNT_C,
    AMOUNT_D
    Any way to design a pivot to present the table reflecting:
    Sums of Amount_A, Amount_B, Amount_C, Amount_D
    For Rows reflecting grouping levels on:
    Criteria_B, Criteria_C
    and Columns breakup for:
    Criteria_A?
    An example like:
    Criteria_A1
    Criteria_A2
    Criteria_A3
    Criteria_A4
    Row Labels
    Sum of Amount_A
    Sum of Amount_B
    Sum of Amount_C
    Sum of Amount_D
    Sum of Amount_A
    Sum of Amount_B
    Sum of Amount_C
    Sum of Amount_D
    Sum of Amount_A
    Sum of Amount_B
    Sum of Amount_C
    Sum of Amount_D
    Sum of Amount_A
    Criteria_B3
    94
    107
    36
    127
    84
    132
    41
    176
    24
    16
    67
    29
    38
    Criteria_C1
    24
    25
    5
    49
    14
    66
    5
    49
    24
    16
    67
    29
    Criteria_C2
    70
    82
    31
    78
    38
    Criteria_C3
    38
    41
    31
    78
    Criteria_C4
    32
    25
    5
    49
    Criteria_B1
    56
    142
    78
    26
    32
    25
    67
    8
    24
    Criteria_C2
    24
    66
    26
    8
    32
    25
    67
    8
    Criteria_C3
    32
    76
    52
    18
    Criteria_C4
    24
    Criteria_B2
    162
    309
    264
    81
    132
    230
    155
    124
    14
    25
    52
    8
    38
    Criteria_C1
    38
    76
    26
    8
    62
    98
    98
    66
    14
    25
    52
    8
    38
    Criteria_C2
    86
    157
    186
    44
    70
    132
    57
    58
    Criteria_C3
    38
    76
    52
    29
    Criteria_B4
    100
    148
    130
    116
    56
    142
    93
    57
    46
    Criteria_C1
    24
    66
    67
    49
    32
    Criteria_C2
    32
    76
    26
    8
    14
    Criteria_C3
    76
    82
    78
    67
    Criteria_C4
    24
    66
    52
    49
    Grand Total
    312
    558
    378
    234
    348
    535
    393
    424
    94
    183
    212
    94
    146
    Thanx in advance, Best Regards, Faraz A Qureshi

    Sounds like this to me if in T-SQL query
    (best guess based on what you posted)
    SELECT
    CRITERIA_B,
    CRITERIA_C,
    SUM(CASE WHEN CRITERIA_A = 'Critera_A1' THEN AMOUNT_A ELSE 0 END) AS CRITERIA_A1_AMOUNT_A,
    SUM(CASE WHEN CRITERIA_A = 'Critera_A1' THEN AMOUNT_B ELSE 0 END) AS CRITERIA_A1_AMOUNT_B,
    SUM(CASE WHEN CRITERIA_A = 'Critera_A1' THEN AMOUNT_C ELSE 0 END) AS CRITERIA_A1_AMOUNT_C,
    SUM(CASE WHEN CRITERIA_A = 'Critera_A2' THEN AMOUNT_A ELSE 0 END) AS CRITERIA_A2_AMOUNT_A,
    SUM(CASE WHEN CRITERIA_A = 'Critera_A2' THEN AMOUNT_B ELSE 0 END) AS CRITERIA_A2_AMOUNT_B,
    SUM(CASE WHEN CRITERIA_A = 'Critera_A2' THEN AMOUNT_C ELSE 0 END) AS CRITERIA_A2_AMOUNT_C,
    SUM(CASE WHEN CRITERIA_A = 'Critera_AN' THEN AMOUNT_A ELSE 0 END) AS CRITERIA_AN_AMOUNT_A,
    SUM(CASE WHEN CRITERIA_A = 'Critera_AN' THEN AMOUNT_B ELSE 0 END) AS CRITERIA_AN_AMOUNT_B,
    SUM(CASE WHEN CRITERIA_A = 'Critera_AN' THEN AMOUNT_C ELSE 0 END) AS CRITERIA_AN_AMOUNT_C,
    FROM Table
    GROUP BY CRITERIA_B,
    CRITERIA_C
    to make it dynamic see
    http://beyondrelational.com/modules/2/blogs/70/posts/10791/dynamic-crosstab-with-multiple-pivot-columns.aspx
    However it would be much easier to build this in SSRS reports using matrix if you can use it.
    In that case just bring data as is
    then add a matrix to report
    Add column grouping on Criteria A and Row grouping on Criteria B and then Criteria C .
    In data portion add three columns with expressions as
    =SUM(Fields!Amount_A.Value)
    =SUM(Fields!Amount_B.Value)
    =SUM(Fields!Amount_C.Value)
    then you will get exact format  what you're asking for
    Please Mark This As Answer if it solved your issue
    Please Vote This As Helpful if it helps to solve your issue
    Visakh
    My Wiki User Page
    My MSDN Page
    My Personal Blog
    My Facebook Page

  • A better way to do this -- add/remove multiple childs

    I have 6 movieClips on stage.  When I roll over any one of them, I want to:
    A) removeChild the remaining 5 movieClips and then
    B) bring a new movieClip onto stage that would hold a description and possible button links
    Upon rollOut, I want to fire a 3 second delay, removeChild the description movieClip and then addChild the original 5 (removed) movieClips.
    Make sense?
    I started typing away and came to the impression that I might be going about this the LONG way.  Any shorter/smarter ideas would be appreciated.
    Here's the code:
    package{
        import flash.display.*;
        import flash.events.*;
        public class mainAS extends MovieClip{
            public var backgroundImage:imageMap2_mc = new imageMap2_mc();
            public var holder1:holder_mc = new holder_mc();
            public var holder2:holder_mc = new holder_mc();
            public var holder3:holder_mc = new holder_mc();
            public var holder4:holder_mc = new holder_mc();
            public var holder5:holder_mc = new holder_mc();
            public var holder6:holder_mc = new holder_mc();
            public function mainAS():void{
                //background image
                backgroundImage.x = 0;
                backgroundImage.y = 0;
                addChild(backgroundImage);
                // holder 1
                holder1.x = 50;
                holder1.y = 30;
                addChild(holder1);
                holder1.addEventListener(MouseEvent.ROLL_OVER, holder1Fire)
                // holder 2
                holder2.x = 250;
                holder2.y = 30;
                addChild(holder2);
                holder2.addEventListener(MouseEvent.ROLL_OVER, holder2Fire)
                // holder 3
                holder3.x = 450;
                holder3.y = 30;
                addChild(holder3);
                holder3.addEventListener(MouseEvent.ROLL_OVER, holder3Fire)
                // holder 4
                holder4.x = 50;
                holder4.y = 225;
                addChild(holder4);
                holder4.addEventListener(MouseEvent.ROLL_OVER, holder4Fire)
                // holder 5
                holder5.x = 250;
                holder5.y = 225;
                addChild(holder5);
                holder5.addEventListener(MouseEvent.ROLL_OVER, holder5Fire)
                // holder 6
                holder6.x = 450;
                holder6.y = 225;
                addChild(holder6);
                holder6.addEventListener(MouseEvent.ROLL_OVER, holder6Fire)
            //Fire away
            private function holder1Fire(e:Event):void{
                trace("holder 1");
                //removeChild all remaining
               //addChild description MovieClip
              // description_mc.addEventListner(function to include rollOff Listener -- fire timer -- remove description + add original mc's)
            private function holder2Fire(e:Event):void{
                trace("holder 2");
                //removeChild
            private function holder3Fire(e:Event):void{
                trace("holder 3");
                //removeChild
            private function holder4Fire(e:Event):void{
                trace("holder 4");
                //removeChild
            private function holder5Fire(e:Event):void{
                trace("holder 5");
                //removeChild
            private function holder6Fire(e:Event):void{
                trace("holder 6");
                //removeChild

    If the main reason for adding and removing is so that only one is visible, then you can just use the visible property along with a reduction in code.  Here's a few thoughts along those lines, though not the whole deal...
    Create a function that turns all of the object visible/invisible using a loop...
    function showAll(truefalse:Boolean){
         for(var i=1; i<7; i++){
              this["holder"+String(i)].visible = truefalse;
    Then have all your object share the same rollover function....
    holder1.addEventListener(MouseEvent.ROLL_OVER, clickHolder);
    holder2.addEventListener(MouseEvent.ROLL_OVER, clickHolder);
    holder3.addEventListener(MouseEvent.ROLL_OVER, clickHolder);
    etc...
    function clickHolder(evt:MouseEvent):void {
         showAll(false);  // hide all first
         evt.currentTarget.visible = true;  // show the one being hovered
         // store the name of the description mc with the clip and call it...
         this[evt.currentTarget.desc].visible = true;

  • Synching/manual add to multiple iDevices with multiple computers.

    Okay, Here's the issue.
    I own an Iphone, and multiple versions of iPods (3 different Nano versions and an old Ipod Photo).
    I also own three PC's. One desktop, one laptop and one netbook. All run windows 7.
    Why is it that it is so bloody impossible to share the three different libraries with the different equipment?
    I have a laptop at my girlfriends, my desktop at home and my netbook for when i travel. Ideally I should be able to plug any of the devices that i own and have registered to my apple ID into any PC that is an authorised PC on my account and just drag and drop whatever i want.
    Unfortunately this is not the case.
    I always enable manually manage music upon first registering a device, as i dont particularly like the whole synch option. I'd just ratherdrag and drop albums as i fancy them, so why can this option not just be tied to each device ID within my apple account, thus when i use one of my authorised machines the setting will be valid and hey presto i can take media and put it on to any of my devices. Is this so difficult?
    I also have a WP7 phone, and it seems microsoft can manage this without any problems!
    What happened to "Apple, it just works"?
    Obviously not in this case.
    After quite a bit of googling this is also not an isolated incident as people have been complaining about this since iTunes 7! (this was the earliest mention i could find)
    Apologies if this sounds like a rant, its something that has irritated me since i got my iPod photo in 2003!
    I am also aware of the editing the itunes music library xml file and replacing the persistent ID workaround, but this is a real pain to play about with.

    Sync iPod/iPad/iPhone with two or more) computers
    Although it isn't possible to sync an Apple device with two different libraries it is possible to sync with the same logical library from multiple computers. Each library has an internal ID and when iTunes connects to your iPod/iPad/iPhone it compares the local ID with the one the device normally syncs with. If they are the same you can go ahead and sync...
    I have my library cloned to a small 1Tb USB drive which I can take between home & work. At either location I use SyncToy 2.1 to update the local copy with the external drive. Mac users should be able to find similar tools. I can open either of the local libraries or the one on the external drive and update the media content of my iPhone. The slight exception is Photos which normally connects to a specific folder on a specific machine, although that can easily be remapped to the current library if you create a "Photos" folder inside the iTunes Media folder so that syncing the iTunes folders keeps this up to date as well. I periodically sweep my library for new files & orphans with iTunes Folder Watch just in case I make changes at one location but then overwrite the library with a newer copy from the other. Again Mac users should be able to find similar tools.
    As long as your media is organised within an iTunes Music or Tunes Media folder, in turn held inside the main iTunes folder that has your library files (whether or not you let iTunes keep the media folder organised) each library can access items at the same relative path from the library folder so the library can be at different drives/paths on different machines. This solution ensures I always have adequate backups of my library and I can update my devices whenever I can connect to the same build of iTunes.
    When working with an iPhone earlier builds of iTunes would remove any file not physically present in the local library, even if there was an entry for it, making manual management practically redundant on the iPhone. This behaviour has been changed but it will still only permit manual management with a library that has the correct internal ID. If you don't want to sync your library between machines on a regular basis just copy the iTunes Library.itl file from the current "home" machine to any other you want to use, then clean out the library entires and import the local content you have on that box.
    tt2

  • SharePoint 2010 and Reporting Services add-in - multiple versions supported?

    Hello,
    I would like to try out Reporting Services with SharePoint 2010.  I already have the Reporting Services add-in installed on the WFE for SQL Server 2008 R2, but not configured. 
    At this point I thinking it's best to move forward with SQL Server 2012.
    Can both the 2008 R2 version and 2012 version of the Reporting Services add-in exist on the same WFE in separate instances? Or do I need to uninstall the 2008 R2 version first?    
    Thank you in advance,

    Just upgrade to the 2012 version, you don't have to uninstall first.
    Also, see the supported combinations of SSRS version and Addin version:
    http://msdn.microsoft.com/en-us/library/gg492257.aspx
    Use the highest version of the addin possible, as newer addins have offered performance improvements.
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • How to add a multiple roadmap step?Any examples!!!

    Hi All,
    I am using a multistep roadmap within a roadmap ui.It has basically 2 steps assigned to it.I have created 2 context attributes under context node and assigned the datasource property of multistep to it.But i am still unable to see the 2 steps within the multistep element.Any idea of how to do it?Any examples of how to use multi step roadmap.
    Thanks
    Aravind

    Hi Armin,
    Thanks for your input.My problem is i am unable to see the multiple road map step at all.
    This is what i have now.
    1.Roadmap ui
    1a.single roadmapstep1
    1b.single roadmapstep2
    1c.single roadmapstep3
    1d.single roadmapstep4
    1e.single roadmapstep5
    1f.multiple roadmapstep6
    i am not seeing the 1f multiple road map step at all.I have binded the datasource of it to context node of cardinality 0..n and it has 2 context attributes of type string assigned to it.
    Please correct me if i am wrong or missing something

Maybe you are looking for

  • How to always show the BCC field in Apple Mail in Yosemite

    I've been searching for this through various websites, but the instructions I've found correspond to older OS versions and I cannot find how to do this for Mail in Yosemite. I would like to be able to see the BCC field in all Mail message windows. I'

  • Itunes on New PC

    I recently "refreshed" to a new PC at work. My iTunes library ( from my old pc)came up on the new laptop...however, now ,when i purchase new music...it will not update to my iPod. Non-purchased music updates just fine. It seems like iTunes Music Stor

  • The MOF Compiler could not connect with the WMI server

    I am trying to add node2 to SQL  cluster (2008)  However, I kept running into errors with the following error message: "The MOF Compiler could not connect with the WMI Server. This is either because of a semantic error such as an incompatibility with

  • Date operators not woking as expected???

    Select * from scott where date>'2003-SEP-01'; I want to get all records for Sep 2, 3, 4... and so on. So why does it return records with dates that are before Sep 1, that is, Aug 31, June 1, Jan25, etc... You get the idea? I want dates that are great

  • How does one watch a movie rented on Ipad on home Macbook, homesharing is turned on.

    Am at a loss here