Help needed in developing web map service for mobile devices

please can any one help me(with source code if possible) for developing the web map service client for mobile devices in J2ME.

There are a couple of ways you could do this. Bluetooth communication is available on a few J2ME devices, so you could do it through that. Or you could set up a servlet on the J2SE app end and send the data over the internet (check out HttpConnection). I'm not sure of any other quick and easy methods.

Similar Messages

  • Web-Auth page for mobile device ?

    Dears,
    How to do the page that can check NB or Mobile device, and redirect the  difference login page ?
    Need external server or can work in controller's custom page ?
    Thanks.

    The detection or what we call profiling is done after the device associates. Cisco ISE can profile and determine what type of device it is. However prior to association, there is no way to push devices to a specific splash page.
    Sent from Cisco Technical Support iPhone App

  • Help needed with Custom Web ADI Integrator for Mail Merge

    Hello,
    I've created a custom web adi integrator to generate letters to advise of end of probationary periods.
    The problem is that at the end of the process when the letter is opened in Word 2007, it only displays one record, and does not allow me to "preview results" and cycle through the records (this part is greyed out). It appears that the letter is not merged with the data spreadsheet although it does display one record from it.
    Our EBS version is 12.1.3 and we are using Office 2007.
    These are the steps I have followed so far (in brief):
    - Create a view to provide data (names, addresses etc).
    - Set up a new custom function (similar to seeded function HR Integrator Setup).
    - Add the custom function and other functions to Desktop Integration responsibility.
    - Add the relevant functions to end user's responsibility menu.
    - Add new category "other" to HR_ADI_DOCUMENT_TYPE lookup.
    - Create Download Excel Integrator by choosing Desktop Integration -> HR Integrator Setup. Enter "PER" for application and my view for the View Name. Upload.
    - Create another Excel document by choosing Desktop Integration -> HR Maintain Form Function Associations, and choose the integrator created above. Enter my custom function name in the generated spreadsheet and upload.
    - Define a layout for the new integrator.
    - Run the integrator under the end user responsibility and save the resulting spreadsheet, which is full of data as expected.
    - Create the letter in Word, using the saved spreadsheet as the data source for the merge. At this point the merge is successful.
    - Go to Desktop Integration -> Document Management and upload the Word mail merge document. Associate it with the custom document type created earlier.
    - Link this document to my integrator.
    - Go in as end user responsibility and run the integrator.
    At this point after enabling macros it loads 2 spreadsheets (one full of data) and the Word document, but the Word document only displays one record (approx the 10th in the list - there are about 100 in total). All of the relevant merge-related menu items on the "Mailings" tab are greyed out.
    Can anyone offer any pointers please?
    I did wonder whether it mattered if I changed the names of documents, e.g when I download and save the resulting spreadsheet full of data which I then use to merge to in the Word Doc, is it OK to call the spreadsheet anything or should it be left as the default name?
    Many thanks,
    Hazel

    Hi Nandhakumar.P,
    thanks for your response. Please find the answers below:
    - Set up a new custom function (similar to seeded function HR Integrator Setup).
    System Administrator -> Application -> Function. Query back the seeded User Function Name = "HR Integrator Setup", make a note of the details, then add a custom function entitled "NTC_HR_LETTERS" with the same details.
    - Add the custom function and other functions to Desktop Integration responsibility.
    System Administrator -> Application -> Menu. Query back User Menu Name = "Desktop Integration Menu" and add the following functions:
    WITHOUT PROMPT
    a. HR Integrator Setup
    b. HR Maintain Integrator Form Functions
    c. HR Disable Integrator
    d. HR ADI Document Overwrite Page
    e. HR ADI Document Upload Page
    f. The custom function created in previous step ("NTC_HR_LETTERS")
    WITH PROMPT
    g. HR ADI Document Management Page
    - Add the relevant functions to end user's responsibility menu.
    System Administrator -> Application -> Menu. Query back menu attached to custom responsibility of end user that will perform the action once set up.
    Add the following:
    a. The custom function "NTC_HR_LETTERS" as created previously (without prompt)
    b. Desktop Integration - Create Document (With Prompt. This function will be used to generate letters)
    - Add new category "other" to HR_ADI_DOCUMENT_TYPE lookup.
    SA_Application Developer -> Application -> Lookups -> Common. Query back Type = HR_ADI_DOCUMENT_TYPE and add a new entry entitled "Other". This document type is later assigned to the Word document I upload and link to the integrator.
    I hopoe that answers your questions.
    Regards,
    Hazel

  • Have OSX Server 3.0.1 any Geolocalization service for mobile devices?

    Hi Everyone, I need to know if the Server app 3.0.1 have any geolocalization service

    Server.app 3 for Mavericks is OS X Server, and the OS X Server behavior here is no different from that of OS X geolocation.  With OS X, there are no OS X systems available that include integrated GPS hardware, and thus geolocation is performed based on the location of (known) WiFi networks.  If you need localization, you'll either need to use WiFi where that's known to Apple, or install your own positioning software and hardware.
    Various iOS clients do have GPS, as well as other ways to determine device position.
    It's certainly possible to write some code that runs on OS X (or OS X Server) that communicates with some (custom) code running on iOS, but there is no included software that performs this.
    There may well be commercial packages that can retrieve this data; check the iOS app store for details.

  • Creation of a database engine for mobile devices using j2me

    am trying to develop a database engine for mobile devices.. it is to develop a miniature version of the DBMS that
    can be deployed on a mobile phone..I have to develop my own code for performing tasks such a s creating a table,
    inserting values into it, selecting from it etc..
    I limited my self to develop the software so that it can perform 3 functionalities of create, insert,select..
    I should be taking the details such as table name and its parameters from the user and then should be able to
    create a suitable data structure for it(i tried to develop a class)...
    Usage of RMS package helps me partially in this.. I did that and ll be doing that..
    I got stuck while developing the code for creation of a table.. I am facing problems in creating a dynamic data
    structure for a table and also to use such data structure else where in my project..
    I need help in developing an algorithm for this..
    I would be very grateful to u all if u help me out in developing the code for this project..

    I'm sorry for the amount of time it took me to get back. Derby is an open source database written entirely in Java. I do not know if it can support resource constrained devices like MIDP compliant, but may work okay with CLDC.
    But outside of Derby being a solution, let me give you a few ideas off the top of my head.
    Set up a database server in a separate thread. This server will really be your controller for RMS access.
    Since RMS is just a big sequential 'pipe' you will have to think of data as 'frames' - (starttable) (tableID) (tablename) (data) (tablename) (data).....(endtable).
    When you need to write additional data, just append it to the end of the RMS object.
    When you need to retrieve data, thing are more complex.
    1. Read in all data, looking for your particular tableID. This may be made much easier using RMS filters - (I'm not sure, I've never used them)
    2. Once start of table of interest is found, stick the data elements in either a java vector or array until you reach the table end identifier. I think vector will be a better choice - trust me. (I think its available in J2ME...)
    3. Package this into a do while loop until the element you are searching for is read. If you need to do some sorts on the data or something else that requires the all the data to be present then you need all the data for that particular table. One thing will always be clear. The first data you grab will always be some start table identifier and the last data you grab will be an end table identifier. We just don't know which table because of how we put stuff in the RMS resource.
    This provides you a few positives as well as negatives:
    Positive:
    1. Fast data writes, no need to search for a particular table before accessing it, nor do you need to search for an index in that table.
    2. When looking for data, data may* be found without searching through the entire table. This is accomplished with RMS filters or logic test within the RMS read loop.
    Negative:
    1. Slow when all data of a table is needed (i.e. compute sums or averages of entries). The entire RMS database must be read to ensure all the entries are searched. An example of how this is a problem is as follows: You have 5000 entries in you RMS database resource and you are looking to compute the average of a value in some table. When you first wrote the data to the table, it was done sequentially and no other data for that table exist. But we can't tell if that's the case, so we have to read through all 5000 entries to make sure we looked for every piece of data.
    Beacuse of this issue, this database structure, performance may be fine for 50K - 100K entries (depending on table element size), if the reading requirements don't force full data reads. Otherwise, 25K may be an upper limit.
    I hope this helps.
    Edited by: estarkey on Mar 17, 2009 9:15 PM
    Edited by: estarkey on Mar 17, 2009 10:01 PM

  • Flash Design for Mobile Devices May Workshop

    I'll be running a 2 day workshop in San Francisco on
    Flash Design for Mobile Devices in May.
    Please forward this announcement to anyone who might be
    interested.
    Details are below.
    Thanks,
    Nader Nejat // CEO
    Omega Mobile //
    http://www.omegamobile.com
    Accelerating profit through stunning mobile experiences
    ==========================================
    What:
    Flash Design For Mobile Devices
    When:
    2 days: Saturday, May 6 & 13, 9am — 5pm
    Where:
    San Francisco State University Downtown Center
    Multimedia Studies Program
    425 Market Street, 2nd Floor
    San Francisco, CA 94105
    For more information and to register:
    On the Internet go to:
    http://msp.sfsu.edu
    Or, call: 415.405.7700
    Flash Design For Mobile Devices
    In the era of rich mobile media development, your mobile
    future is here. Now, learn how to create it in this hands-on
    workshop.
    We'll give you all the information and practice you need to
    be on the
    cutting edge of creating Flash content for PDAs, mobile
    phones and next
    generation devices. We'll explore the mobile Flash landscape
    by looking
    at working prototypes and actual applications that leverage
    the current
    mobile Flash player technology.
    In this class, each attendee is assigned their own computer
    to work on.
    Discussions are followed by exercises that show you exactly
    what you need
    to know to produce your own mobile content. We emphasize
    creating great
    mobile multimedia experiences for cell phones using Flash
    Lite.
    In addition to exploring development opportunities available
    today, you'll learn:
    • The capabilities and limitations of Flash for mobile
    development.
    • Best practices for planning your mobile projects.
    • How to efficiently convert Flash projects to mobile.
    • The entire production process from planning to
    testing and debugging on the device.
    • How to create engaging content and user experiences
    for small screens.
    • How to maximize memory and processor performance of
    your applications.
    • How to develop for multiple devices with minimal
    changes.
    • To tap into resources to get you started quickly
    • About handy third party utilities.
    Who should take this class?
    Anyone interested in developing rich media content for mobile
    devices
    including: mobile developers interested in Flash as a
    potential delivery
    platform and interface designers who want to use Flash for
    mobile design,
    Flash developers who wish to leverage their skills for mobile
    development,
    web designers who want to take advantage of the next big
    medium and anyone
    interested in Flash's capabilities for mobile devices.
    Prerequisite: Flash I or equivalent experience recommended.
    Course #: MULT 9234
    Schedule #: 26264
    Section: Z01
    Hands on, 1 student per computer
    2 days; Saturday, May 6 & 13, 9am — 5pm
    SFSU Downtown Center, 425 Market
    Fee: $395.00
    Register Now! Call 415.405.7700

    Anything similar available in UK?
    "..Nader.." <[email protected]> wrote in
    message
    news:[email protected]...
    > I'll be running a 2 day workshop in San Francisco on
    > Flash Design for Mobile Devices in May.
    >
    > Please forward this announcement to anyone who might be
    interested.
    >
    > Details are below.
    >
    > Thanks,
    > Nader Nejat // CEO
    > Omega Mobile //
    http://www.omegamobile.com
    > Accelerating profit through stunning mobile experiences
    >
    > ==========================================
    >
    > What:
    > Flash Design For Mobile Devices
    >
    > When:
    > 2 days: Saturday, May 6 & 13, 9am ? 5pm
    >
    > Where:
    > San Francisco State University Downtown Center
    > Multimedia Studies Program
    > 425 Market Street, 2nd Floor
    > San Francisco, CA 94105
    >
    > For more information and to register:
    > On the Internet go to:
    http://msp.sfsu.edu
    > Or, call: 415.405.7700
    >
    > Flash Design For Mobile Devices
    > --------------------------------
    > In the era of rich mobile media development, your mobile
    > future is here. Now, learn how to create it in this
    hands-on workshop.
    > We'll give you all the information and practice you need
    to be on the
    > cutting edge of creating Flash content for PDAs, mobile
    phones and next
    > generation devices. We'll explore the mobile Flash
    landscape by looking
    > at working prototypes and actual applications that
    leverage the current
    > mobile Flash player technology.
    >
    > In this class, each attendee is assigned their own
    computer to work on.
    > Discussions are followed by exercises that show you
    exactly what you need
    > to know to produce your own mobile content. We emphasize
    creating great
    > mobile multimedia experiences for cell phones using
    Flash Lite.
    >
    > In addition to exploring development opportunities
    available today, you'll
    > learn:
    > ? The capabilities and limitations of Flash for mobile
    development.
    > ? Best practices for planning your mobile projects.
    > ? How to efficiently convert Flash projects to mobile.
    > ? The entire production process from planning to testing
    and debugging on
    > the
    > device.
    > ? How to create engaging content and user experiences
    for small screens.
    > ? How to maximize memory and processor performance of
    your applications.
    > ? How to develop for multiple devices with minimal
    changes.
    > ? To tap into resources to get you started quickly
    > ? About handy third party utilities.
    >
    > Who should take this class?
    > --------------------------------
    > Anyone interested in developing rich media content for
    mobile devices
    > including: mobile developers interested in Flash as a
    potential delivery
    > platform and interface designers who want to use Flash
    for mobile design,
    > Flash developers who wish to leverage their skills for
    mobile development,
    > web designers who want to take advantage of the next big
    medium and anyone
    > interested in Flash's capabilities for mobile devices.
    >
    > Prerequisite: Flash I or equivalent experience
    recommended.
    >
    > Course #: MULT 9234
    > Schedule #: 26264
    > Section: Z01
    >
    > Hands on, 1 student per computer
    > 2 days; Saturday, May 6 & 13, 9am ? 5pm
    > SFSU Downtown Center, 425 Market
    > Fee: $395.00
    >
    > Register Now! Call 415.405.7700
    >

  • Adobe AIR for Mobile Devices?

    Hi,
    I was just recently asked whether there is a project for developing Adobe AIR for mobile devices?
    This would be really exciting as you could develop your own projects for mobile devices as well as desktop computers...
    Any ideas?

    It is possible. The thing is Apple won't let developers put their AIR apps into Apple's iTunes store.

  • What is needed to develop web services with DI Server using C #?

    Hi,
    What is needed to develop web service using DI Service ad C#?
    Does anyone have any examples?
    thanks,
    Willian

    Login C# sample
    u2018 Create Service WebReference
    LoginWebRef.LoginService loginService = new LoginWebRef.LoginService();
    // service command login call
    string sessionID = login.Login(
    "localhost",
    "COM_OBS_AUT_TEST",
    LoginWebRef.LoginDatabaseType.dst_MSSQL2005, true,
    "sa", "xx",
    "manager", "manager",
    LoginWebRef.LoginLanguage.ln_English, true,
    "localhost:30000");
    Business Partners add C# sample.
    // Create Service WebReference
    BPWebRef.BusinessPartnersService bpsService = new
    BPWebRef.BusinessPartnersService();
    // MsgHeader class
    BPWebRef.MsgHeader msgheader = new BPWebRef.MsgHeader();
    msgheader.SessionID = DIServerSessionID;
    msgheader.ServiceName = MsgHeaderServiceName.BusinessPartnersService;
    msgheader.ServiceNameSpecified = true;
    bpsService.MsgHeaderValue = msgHeader;
    // fill business partner class
    BPWebRef.BusinessPartner bp = new BPWebRef.BusinessPartner();
    bp.CardCode = "MyBPCardCode";
    u2026
    // service command call
    BPWebRef.BusinessPartnerParams bpParams = bpsService.Add(bp);

  • Can you help me choose a Web hosting service

    Just call me a procrastinator but I know I have to find a web hosting service for my iweb created websites soon.    Despite browsing all afternon I can't find any definitive recommendations. (perhaps it's not allowed in discussions but I really need specifics) I want it to be as easy (a la MM) as possible and do want to continue a blog (preferably with ability to RSS/comments).  I also want unlimited space, bandwith, etc and of course am willing to pay but want to do the right thing as reasonably as possible - please can someone help me...soon 

    I personally use IX Webhosting for a couple of reasons:
    Fast reliable personal tech support by phone, instant chat, & email
    They allow unlimited domains "www.yoursite.com", unlimited email accounts, unlimited bandwidth
    And, price they are very reasonable plans start @ $3.95 USD a month
    http://jeffnitschke.com/IXWebHosting.html

  • Any suggestions for good free web hosting service for my IWeb page, other than MObileMe

    Any suggestions for good free web hosting service for my IWeb page, other than MobileMe?

    MobileMe is not free.
    Search : free webhosting
    You can narrow the results by being more specific by adding town, province or country.
    You can also start by checking out your own ISP.
    Or be free as in here : www.000webhost.com
    Here's mine : http://dailynews.webege.com/

  • Help needed in developing midlet to communicate with pc application

    hi , i am trying to develop a j2me application for mobile phone and a j2se application for pc
    the midlet can send messages to my pc application, upon recieve the message, the pc application will read the message and store it into a database. any1 have any idea, samples or reference to see how to do this? thanks many

    There are a couple of ways you could do this. Bluetooth communication is available on a few J2ME devices, so you could do it through that. Or you could set up a servlet on the J2SE app end and send the data over the internet (check out HttpConnection). I'm not sure of any other quick and easy methods.

  • I tried to update itunes it corrupted the previous version, I'm trying to install new copy get this message "service apple mobile device (apple mobile device) failed to start. Verify that you have sufficient privleges to start system services." Help!

    Not sure what to do.  I've tried a system restore on my computer after the update in hopes of undoing the problem, that didn't work.  I've tried to install, the new version of itunes for over two days now and I get to the point where it says "starting services" and it almost get's done and then it gives me that message " Service apple mobile device (apple mobile device) failed to start. Verify that you have sufficient privledges to start system services."  Then it gives me three options to click on "abort", "retry" or "ignore".  I've tried to retry over and over and it does no good, I just get the same message.  I've tried ignore and the one time it did finish installing itunes, it didn't work, I got error messages telling me that it failed to download properly and I needed to delete the program and download it again.  I thought maybe it had something to do with my ipod not being pluged into the computer so I pluged that it and it's still giving me the same message.  I just don't know what to do.  I'm very frustrated and I would really appreciate it if someone could help me.  I'm completely out of ideas.

    See Troubleshooting issues with iTunes for Windows updates.
    tt2

  • Vista itunes not installed correctly.  Error 7.  Windows error 998.  Itunes helper not installed correctly.  Service Apple Mobile Device failed to start.  Insufficient privileges.

    OK, spent about 25 frustrating hours so far this weekend doing everything recommended on numerous threads here -- uninstalling and reinstalling itunes and all Apple items.  Help?
    I am using Windows Vista home premium.  After the last iTunes update to 12, it suddenly would not work.  I followed, to a T, all instructions to uninstall all Apples software, in the correct order, reboot, download the latest iTunes, run as administrator, plug in the iPhone 5S, let the driver install, and then finish.
    Along the way, I received the error that "Service 'Apple Mobile Device' (Apple Mobile Device) failed to start.  Verify that you have sufficient privileges to start system services."  I am the administrator and have privileges.  (I previously followed instructions from anther thread to change the read-only privileges for Apple folders, but to no avail.  I also deleted every file with the word Apple in it after I uninstalled everything.)  I did a retry and then an ignore during installation of the AMD error, which I have received 10 times.
    The other error I keep getting is:  "iTunesHelper was not installed correctly.  Please reinstall iTunes.  Error 7."  I have done that 20 times.
    Other frequent error:  "iTunes was not installed correctly.  Please reinstall iTunes.  Error 7 (Windows error 998)."
    I followed other threads suggestions to install Windows .NET versions 3.5 and 4.0.  No help.  I also looked for various specific Apple files in various folders for DLLs, etc.  Not present.  I have rebooted 50 times and tried different users on my home account as well.  Nothing.
    I also followed instructions to Manage my computer under "services."  Under Apple Mobile Device, the setting is for "automatic."  When I try to get it to "start," the error I receive is "Windows could not start the Apple Mobile Device on Local Computer.  Error 1053:  The service did not respond to the start or control request in a timely fashion."  (I followed previous thread instructions to use the CMD prompt to stop it.  That caused problems because the status was then "stopped," but I was able to restart it later once I figured that out -- but with the 1053 error again.)
    I think I've tried every suggestion in every thread for the four errors I keep getting (AMD failed to start; iTunesHelper Error 7; Windows error 998; and AMD Error 1053.)  I am fresh out of ideas and very frustrated.  I mostly want to make sure I don't lose my music and photos, which I was about to sync.
    The only other thing I see that is strange on my computer (which I discovered along the way) is that I cannot receive automatic windows updates and have not had an update since 2012.  My iTunes worked a month ago, so that was obviously not a show-stopper in the past, but perhaps there is a Vista update I need for iTunes 12?  I have service pack 2 for Vista.  I have followed all threads to try to set my windows to automatic update, but no joy there either.  It checks for updates and then fails.  I followed instructions and did run an installation to install windows automatic updates, but that doesn't work either.  I tried 10 times.  It runs and takes a while, but is never able to successfully update windows.  It says "checking for updates" for a while.  Then it dies.  My last update was 6/19/12 (failed) and it says the most recent check was 6/22/12, but I have tried 20 times on 10/31/14 and 11/1/14.
    When asked to "Install new Windows Update software" to check for updates, I have done so 10 times.  It downloads and installs, but never works.
    It's an old Dell desktop computer from 2006, and I'm using an iPhone 5S.  I am fresh out of ideas.  Anyone really smart here?
    Thanks.
    Tristan

    Upon latest reboot, I also received this error message:  "The application failed to initialize properly (0xc0000005).  Click OK to terminate the application."
    Then I got the iTunesHelper not installed correctly error again.
    Then the "Windows can't check for updates" error message.
    Then "Apple Push has stopped working."  Then a quick DEP error message that disappeared but said something about Apple Push being closed.
    I'm also getting denials of service logged by McAffee.  Not sure if I'm getting a virus/attack or not.
    Not sure if it's a problem with my old desktop machine, my Windows Vista updates, or iTunes, but I'm very frustrated and out of ideas to try.
    Thank you for your help!
    Tristan

  • When attempting to reinstall iTunes, I get the following message "Service (Apple Mobile Device) failed to start. Verify that you have sufficient privileges to start system services" Any help appreciated

    When attempting to reinstall iTunes, I get the following message "Service (Apple Mobile Device) failed to start. Verify that you have sufficient privileges to start system services" Any help appreciated

    Hi emelville,
    Thanks for using Apple Support Communities.  You may need to restart the Apple Mobile Device Service.  This article has instructions that may help:
    How to restart the Apple Mobile Device Service (AMDS) on Windows
    http://support.apple.com/kb/ts1567
    If that doesn't resolve the issue, I would recommend trying a thorough uninstall and reinstall of iTunes as described here:
    Issues installing iTunes or QuickTime for Windows
    http://support.apple.com/kb/ht1926
    Cheers,
    - Ari

  • Modify news, web apps layouts for mobile site?

    I am modifying an existing website to create a mobile version, placing my mobile pages in a /mobile subfolder. I am having an issue with the news and web apps, as I have already designated my templates and layouts for the full desktop version, and because my news and webapp items cannot be placed into my /mobile folder. So, now I need to display that information differently for mobile and cannot figure out how, since I am limited to a single List Layout and a single Detail Layout (for news. At least the web apps give me an Backup List Layout, which was helpful). How have others accomplished this type of thing??
    An example: On my desktop version, I have announcements shown on the homepage as short blurbs (using the list view). My detail view I already have formatted for the full screen desktop version and does not work well for mobile screens. After many attempts at workarounds, I decided that I would simply show the complete announcement for mobile as a List Layout and not use a Detailed Layout at all so that I don't even have to bother with it. My thought was to code both my desktop and mobile list layouts in the List Layout of my Announcements module, and use css to show/ hide the appropriate one.
    E.g.--
    html in my List Layout:
    <div id="standardnews">
    <h3>{tag_subject} - {tag_eventfromdate}</h3>
    <p>{tag_body, 140}</p>
    </div>
    <div id="mobilenews">
    <h3>{tag_subject_nolink} - {tag_eventfromdate}</h3>
    <p>{tag_body}</p>
    </div>
    on my desktop css stylesheet:
    div#standardnews { display:block; }
    div#mobilenews { display:none; }
    on my mobile css stylesheet:
    div#standardnews { display:none; }
    div#mobilenews { display:block; }
    The css works just fine, however, on my mobile site instead of rendering the event from date, it actually rendered the tag itself "{tag_eventfromdate}".  So, apparently I can't have multiple instances of a tag within a single page??  Is there a way around this?
    I would be grateful for any input here on the best way to handle this type of thing, given the limitations I am running into.

    You can make as many list templates as you like now.
    You can have a different template per device - phone, tablet, desktop so if modules are in that template they will then render those different templates and thus different layouts.
    If you have modules in pages that page can be differnt per device as outlined under site settings and mobile section.
    Unlimited list layouts - http://www.businesscatalyst.com/_blog/BC_Blog/post/Video_Create_custom_list_templates_for_ BC_Modules/
    You CAN NOT though have conditional tags in BC yet and you can not in one list layout have tags render differently based on the device.
    Style and presentation you use media quries and the System tag for device provided by BC.

Maybe you are looking for

  • Double-click on clips in Browser imports directly to Timeline not Viewer

    It's been awhile since I have posted any Mac issues, so here goes: I have a clip that I imported into Final Cut Express (FCE), which went OK. I then divided it up into subclips, and went to bed. Now that I have opened FCE again, my Viewer is gone (th

  • Oracle.apps.fnd.cache.CacheException while generating Auto Reports

    Hi, Please help me in resolving out the ERROR occured while dealing with Automated Report Generation. Following is the Error Message: Weekly Report Generator starts running at:Tue Jun 24 14:41:47 IST 2008 connection oracle.jdbc.driver.T4CConnection@7

  • How do you calculate multiple fields in a Form?

    Hi, I have a spreadsheet with several headings and several fields as illustrated below, and description of each field and calculation required is listed below. Rate Per Day Days Course Attending Total $1,000 2 Course A Yes $2,000 $2,000 1 Course B Ye

  • How many threads can be created in a java swing program?

    At first, I intend to use Timer to create a 2D plot repeatedly after a certain number of milliseconds. This is for an animation. However, I discover that it takes a lot of time to generate each 2D plot frame ( about 700 milliseconds on a 1.13 MHz com

  • SOLAR_EVAL Development node Field Catalog limitation?

    I have a noticed a slight difference in the number of fields available in the ALV field catalog of SOLAR_EVAL, depending on the node selected. The DEVELOPMENT node has fewer fields than the DOCUMENTATION node (both under the CONFIG->ASSIGNMENTS paren