DDX for portfolio using default template Navigator

Hi,
Does anyone have a DDX for the portfolio using the default navigator template ?
I am looking for info that is not in the  Adobe reference document on the DDX.

You might consider this a bug, but it's an old one - it has been this way in most, if not all, previous versions of Excel too.
Start Excel: loads book.xltx
Press Ctrl+N within Excel: loads book.xltx
Click New on the Standard Toolbar (Excel 2003 or earlier) or Quick Access Toolbar (Excel 2007 or later): loads book.xltx.
Select Office > New (Excel 2007) or File > New (other versions), then Blank workbook: does
not load book.xltx but a really blank workbook.
Regards, Hans Vogelaar
Thanks for clarifying.
I do indeed consider this a bug. Do you know if MS plan to fix this? Is it worth burning a case on this with MS Support? (Assuming they will non-dec it if they agree it's a bug).

Similar Messages

  • Can we load data using .xls in user define format(without using default template)

    Hi All,
    I'm new bee to FDM. Part of HFM support i use FDM to load flatfile data. Just has a bit more knowledge than end user.
    Requirement is that i need to load data from MS excel to Planning application via FDM.
    Previously application is in Excel(Macro driven) and upstream(data) is also in Excel(multi tab).
    As of my knowledge data can be loaded from .csv file(Excel save as CSV) with single tab.
    Could you please let me know possibilities to load data from .xls(.xlsx) to FDM.
    Thanks in advance.

    If you want to load data using Excel, utilising FDM's out-of-the-box functionality you will have to use one of the templates supplied i.e. Excel Trial Balance or Excel Multi-load template.

  • Getting an error to order a VM for Linux using a Template

    Hi All,
    I have tried to submit the order  a VM for Linux RHEL6.1.
    Portal page is not showing the Administrator Password's   "Enter and Renter" tabs on the page and the message showing on the the tab space is as follows:
    Important: To set the root password on  your virtual machine, please refer to the appropriate restrictions for your  Linux operating system flavor.
    I have created root password on the RHEL OS itself
    I submitted the order after that it is showing the error as follows:
    Can any one help me on this how isolate this issue..?
    Thank in Advance.
    -Noor.

    Hello,
    Unfortunately there is not enough information here. It is possible that some of the configuration steps have not completed successfully. Without seeing adding screenshots or XMLs it might be hard to answer this question.
    Could you please open TAC case? They woudl be able to answer it quickly.
    Also, is this question about Cloud Solution or Workplace Solution?
    Thanks,
    Max.

  • How to change the default template for a concurrent prog ?

    Hi i have Std Conc prog "Payables Posted Invoice Register". It has a std template with same name "Payables Posted Invoice Register". Now i have created a custom template and attached it to the same Data Definition.
    The Requirement is that only particular users will use the custom template, hence they will chose it while running. BUt what happened now is in the Conc Prog submit screen it is taking my custom template as the default one.
    Hence majority of the users wudnt look at the template and get the custom o/p.
    I want to make the std template itself as the default template and make the custom template available to chose for a smaller set of users.
    Thanks,
    Vj

    Hi Shadab,
    Yes, that is a valid work around but my task is not to create a seperate data definition and a seperate concurrent prog for it. I HAD to use the standard concurrnet prog but jsut add my template as a non defaulted template.
    Anyways, i have solved it now. This is how
    System Adminitration => Concurrent Programs => select ur Concurrent Prog => Update => OnSite settings .... select the template you want to default.
    Thanks,
    Vijay

  • Using different templates for the desktop and phone versions of the same blog

    I have a site which was created in Adobe Muse and is hosted on Business Catalyst.
    I have created both a desktop and a phone versions of the site.
    I  want to know how I can integrate the blogs that I  currently have on the desktop site with the phone version that I just did, using different templates for the desktop and phone versions of the same blog. This is in order to ensure that visitors to the blogs on the website are directed to the templates that render correctly for the devices they are using.
    My current approach has been to create both a desktop and phone versions of the blogs. The problem with this however, is that the dates are different and the comments are separated between the two blog versions!
    I  have also tried enabling mobile templates in BC, but still couldn't find a way to specify the mobile versions of the templates for the same blog?
    To recap my problem, I basically  need a solution where the same blog uses different templates for desktop and mobile (both templates use different navigation headings and menu styles)
    Thanks.

    There can be few reason for this, including page contents links or contents used in phone/tablet version.
    Please provide the site url , also try to publish the site as a trial site in Business Catalyst with all layouts which would help to isolate the issue.
    Thanks,
    Sanjit

  • How best to define default styles in widget libraries for public use?

    I'm putting together some code to go with my blog, and it will include a custom component. I'd like the default component to use a style I define, but I'd also like the user to be able to easily override this. Does anyone have any suggestions on the best way to do this?
    I notice that the [url http://www.jidesoft.com/blog/2011/10/04/meet-our-first-javafx-component/]range slider from JideSoft has us explicitly setting the skin in code in their example. Ideally the end-user would not be doing this. So what is the best practice? Should I build a custom skin for my component and then set the style in my code? Should I define a base style sheet that somehow always gets imported, etc?
    In essence, I want to have my base styles work in the same way that caspian.css does - is there a way?

    Thanks Jonathan, really helpful responses.
    I think my control would be a candidate for a style-2 approach if the method was moved up to Parent as you suggested. If I understood it all right then I'm glad you have been pushing for this, and I'm glad David has been persuaded :)
    I've got basic skinning for my component working, but I'm stuck on the getUserAgentStylesheet() method.
    My widget is basically a NavigationToolbar with back, forward, home, refresh buttons - simple sort of thing.
    I have done this:
    public class NavigationToolbar extends Control implements NavigationListener
        private BooleanProperty backAllowed;
        private BooleanProperty forwardAllowed;
        public NavigationToolbar()
            getStyleClass().add("navigation-toolbar");
            this.backAllowed = new SimpleBooleanProperty();
            this.forwardAllowed = new SimpleBooleanProperty();
        ... getters/setters ...
        protected String getUserAgentStylesheet()
            return "styles/nav-toolbar.css";
    }Then I have created Skin in the same package, which is basically my real view (what I previously had in the NavigationToolbar class before I made the unfortunate decision to make it nice an skinnable :) ):
    public class NavigationToolbarSkin implements Skin
        private NavigationToolbar navigationToolbar;
        private HBox root;
        private Button backButton;
        private Button forwardButton;
        public NavigationToolbarSkin(NavigationToolbar navigationToolbar)
            this.navigationToolbar = navigationToolba
            root = new HBox(4);
            backButton = new Button("Back");
            backButton.getStyleClass().add("back");
            backButton.disableProperty().bind(navigationToolbar.backAllowedProperty().not());
            root.getChildren().add(backButton);
            forwardButton = new Button("Forward");
            forwardButton.getStyleClass().add("forward");
            forwardButton.disableProperty().bind(navigationToolbar.forwardAllowedProperty().not());
            root.getChildren().add(forwardButton);
    }My nav-toolbar.css looks like:
    .navigation-toolbar {
        -fx-skin: "com.zenjava.jfxflow.navigation.NavigationToolbarSkin"
    .back {
        -fx-graphic: url("../images/nav-back.png");
    .forward {
        -fx-graphic: url("../images/nav-forward.png");
    ... other styles ...When I try and use this in code (I just 'new' a NavigationToolbar instance and then add it to the scene, am I suppose to do something more?), I get the following error:
    SEVERE: javafx.scene.control.Control impl_processCSS The -fx-skin property has not been defined in CSS for NavigationToolbar@31ad98ef[styleClass=root navigation-toolbar]If I manually set the skin on the toolbar (i.e. setStyle("-fx-skin: \"com.zenjava.jfxflow.navigation.NavigationToolbarSkin\"") ) it works, although obviously I don't have any of my other styles with it. I wondered if maybe it was just a URL issue so I've tried with the css in the root directory as well, and tried various paths (with a slash at front, without, etc). No luck - if you can tell me this is the problem then I can keep mucking around with it, but I'm thinking maybe I have missed a step or misunderstood and cocked up one of the steps above?
    Cheers for your help, much appreciated!
    zonski

  • PSE 9: How to set the default template for albums

    In Photoshop Elements 9, when I create an album (prior to sharing online), the default template (looks like a notebook) is not something I would ever use. So each time I have to find a better template ("Classic" is fine by me), select it and regenerate the album. Can I set a different default template? How?

    I think to keep with a slightly better paradigm:
    Create a view and pull your user data from there and not the actual entity table In the view the name is already "expanded" and its in the
    [LastChgUserName]
    column. Then Etl it with a job or anything else via Staging back to the entity if that is what you want. Or just pick it up in the View with the rest of the data if this is going to be needed for some external process.
    Moscva ato kak derevnia ? :)

  • Bex Default template for Queries and Workbooks

    Dear All,
    We have a default template for all queries and workbooks.But this default template was created using a AP query and saved as a workbook.Now all the users having AR role are not able to execute queries or workbooks.Since this default template has a AP info provider associated with it.Is it possible convert this default workbook to a generic one without any security restrictions.Please provide a solution.

    In Bex analyzer, you have option to convert a template into a default template.
    Or you can create a copy of the existing template without AP infoproviders and assign it as default template.

  • Default template for Information broadcasting

    Hi,
    I got the info that template 0BROADCASTING_TEMPLATE70 is the default template for Broadcasting but when i try to open it in WAD then it outputs 'No object Found'.
    Even if i try to find it in BI Content, i do not found the one with the specified name.
    any idea which default template is used in for Infoarmation Broadcasting.
    Its very urgent.

    Hi Satish,
    Unfortunately It is not possible in standard. I also checked ECM_EXIT but I was not able to find any specifc interface for long text. You can try this is General abap forum as Long texts generally belong to Basis more then an appication area itself.
    Thanks
    Amber

  • Using the Template of one site for another site.

    Hi,
    I have created and published Site A using a template (DW CS4).  I now wish to create Site B and use the same template from the Site A.
    The only thing which will change is the banner which I create in Photoshop for each site.
    I also wish to use the navigation buttons which were part of Site A's template. Can this be done?
    One note: all the files from Site A have been copied into Site B.
    Any help is greatly appreciated.
    Frank

    One note: all the files from Site A have been copied into Site B.
    Including the template? If so, then blast ahead. Things should work fine.

  • Default Strata navigation buttons used to have colors besides blue with Windows 2000.

    I recently moved from Windows 2000 to Windows 7 and noticed that the default Strata navigation buttons are now all blue. For example, with Windows 2000 the stop "X" was red and the "Forward" and "Back" arrow buttons were green. No biggie, but is there any way to get these colors with the default navigation buttons in Windows 7?
    Thanks!

    Hello and thank you for the reply!
    While I am waiting for the issue to start up again, I'd just like to cover some things you mentioned in your post. :)
    I only updated the bios because I was originally experiencing these issues. It was a method to hopefully resolve them, which did not work. I was very careful, and the process was a success. I updated to the most recent recommended driver for my motherboard
    from the manufacturers.
    As for Auslogics Boost Speed, it is not running on my computer, as it is a piece of software I only have used to clean junk files (cache/temp) for a very long time now with no issue. I have also tried updating all of my drivers with success, however that
    did not solve the issue either. I even rolled back my network card driver just in case with no luck.
    I have not thought of disabling my audio driver yet, being how it effects far more than just my audio when it happens. My mouse is jittery/laggy as well when no sound is playing. But other tests have shown that it may be a network issue. Next time it happens
    I'll temporary disable my network drivers to see if that causes the issue to clear up.
    I will be sure to mark answers which help appropriately. Thanks again! I should return with the information requested from Zigzag's wiki within 2 days of on-time, when this happens again. 

  • Although I have been using Google Maps App in India for a while now (without any issues) but I still want to know if there are any plans for launching Turn by Turn Navigation under the OOTB Map App for iOS?

    Although I have been using Google Maps App in India for a while now (without any issues) but I still want to know if there are any plans for launching Turn by Turn Navigation under the OOTB Map App for iOS?
    It has been quite a while since Apple came up with Map App of their own and should be releasing improved maps with more capabilities in India.
    Cheers!
    Abhishek

    No one here can answer your question, as there is no one from Apple here, & no one here represents Apple or speaks for Apple.

  • How to create a basic starting template for ICE-use?

    Hello BC forum,
    I have a question regarding templates in combination with the new ICE-editor (InContext edit). Plese be aware of that the question is related to the new ICE-editor, not the old flash-based editor.
    Please keep http://foretagskontakt.businesscatalyst.com/om-foretagskontakt open in your browser to see a copy of the template I have built.
    My customer needs to be able to create new editable sub pages. All subpages need to share the same template but with different text and img in the dark blue area. Under that area we have a 2-col layout who also needs to be changed from page to page. All is made editable using ICE tag for BC. When my customer creates a new page they need to have this basic layout set up so they can start editing in the ICE-editor without the hassle of copying HTML using the old WYSIWYG. The problem: If I apply the dark blue area and some lorem ipsum in a template they keep editing the template and not the page. Can a customer create a new page using my template but edit only the content on that page in ICE-mode?
    Thank you.

    I guess my mistake is that i have created a country grouping EG for Egypt wheere i should have used 99 - international.

  • Using Spry Vertical Navigation with Templates-Need to indicate current page

    Using Spry Vertical Navigation with the Dreamweaver templates.  Using editable attributes etc., the current page mennu item does not seem to be changing.  How do you indicate the. current page.

    Persistent Page Indicator on Site Wide CSS Menus:
    http://alt-web.com/Articles/Persistent-Page-Indicator.shtml
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • Change default template for a given Theme

    Can we change the default template for a theme ? (if yes, how). I had selected theme 3 (business) during the creation of my application with 2 level tabs. After creating parent tabs and standard tabs and getting it working I changed the theme to theme 12 (blue). When the theme got switched, the default application page template became a 1 level tab.
    This was because for Theme 12, the default Page template is 1 level tab. I want to change this default Page template to 2 level tabs. I couldn't see option of making this as a default.

    Sorry, I found the answer in the documentation in Chapter 7 under
    "Changing Default Templates in a Theme".

Maybe you are looking for

  • Sender FTP MVS file duplicate Handling

    Hello, I am facing the following challenge in one of my current development. I know it is an age old issue but Would greatly appreciate some new inputs/views into this. The following is the scenario. 1. PI 7.3 Sender File adapter (FTP) reads the file

  • What is the workaround to play facebook videos on my iPad without Flash?

    I get frustrated everytime I take my iPad out with me and people want to see videos I've posted (or others have posted) on facebook.  Of course the warning comes up saying I need to install "Flash."  Well, we know that won't work.  Does anyone know a

  • ORACLETEXTSEARCH - How Does it work?

    Hi experts, I had a many disccusions with my coleagues about ORACLETEXTSEARCH in the UCM11g. We found that we don't undestrand How does it work. I have a basic questions: 1. Does ORACLETEXTSEARCH use only database engine for the indexing? 2. Can I st

  • SMTP SERVICE

    Hi, Please let me know how to activate the SMTP service in SRM . Regards, Manu

  • Strange Quicktime Player Error Message

    One of the movies in my iTunes library suddenly stopped working and when I attempted to play it using Quicktime, I got the following error message while QT was trying to open the file: "The movie could not be opened. An invalid public movie atom was