How to add members for existing outline

Are there any ways to add year members(jan,feb,mar...)
every year to an existing outlines other than manually adding.

The choice to use 2 dimensions (Years,Months) or a single dimension with months rolling up to years really depends on the purpose of the App. For many accounting related apps, it's preferable to have the information in 1 dimension so that YTD and quarterly rollups are simpler - instead of being a combination of members across 2 dimensions.
I would recommend making a simple Excel file with 2 columns - first column has your Year, second column has your month. Save it as a txt file, then use a dimension build load rule to build the children.

Similar Messages

  • How to add columns for existing table dynamically?

    Hi,
    I created table structure only. I want to add columns for this existing  table. Columns are not fixed, according to the  user choice i  need to write code.
    Plz give me reply asap.
    Thanks
    Shirisha

    Hi Shirisha,
    I think the following code snippet will help you.
    int l_no_cols = 0;
    //Get the number of columns in this variable, something like the following
    //l_no_cols = wdContext().currentContextElement().get<Context_attribute_name>;
    IWDTable l_tab;
    IWDTransparentContainer l_tbl_cont = (IWDTransparentContainer)view.getElement("TableDataCont");//ID of Container
    l_tab = (IWDTable)view.getElement("TableData");//ID of Table
    l_tab.setVisible(WDVisibility.VISIBLE);
    l_tab.bindDataSource(wdContext.nodeTable_Data().getNodeInfo());
    for(int a = 1; a <=l_no_cols; a++)
    //Creating the column
    IWDTableColumn l_tab_col = (IWDTableColumn)view.createElement(IWDTableColumn.class,"COL"+a);
    //Creating Caption for Column Header
    IWDCaption l_tab_cap = (IWDCaption)view.createElement(IWDCaption.class,"Caption"+a);
    l_tab_cap.setText("Col"+i);               
    l_tab_col.setHeader(l_tab_cap);
    //Creating Table Cell Editor for column
    IWDInputField l_tab_cell = (IWDInputField)view.createElement(IWDInputField.class,"CellEditor"+a);
    //creating context node attribute for the column dynamically
    wdContext.nodeTable_Data().getNodeInfo().addAttribute("Col"+i,"com.sap.dictionary.String");
    l_tab_cell.bindValue(wdContext.nodeTable_Data().getNodeInfo().getAttribute("Col"+i));
    l_tab_col.setTableCellEditor(l_tab_cell);
    l_tab.addColumn(l_tab_col);
    l_tbl_cont.addChild(l_tab);
    Regards,
    Alka

  • How to add IBAN to existing Bank Accounts

    We would like to add 'Alternate Name' & 'IBAN' for existing Bank Accounts.
    How to import/add using API
    Navigation: AP > Setup > Payment > Banks
    Select appropriate Bank & Branch. Then click on 'Bank Accounts' button.
    There you see 'Alternate Name' & 'IBAN' fields.
    I have found following Note for doing it in R12
    R12 How To Import/Add IBAN For Existing Bank Accounts (Doc ID 1269968.1)
    But we are on 11.5.10. What is the API for doing this in 11.5.10
    Regards,
    Srini

    Hi Srini,
    Unfortuantely, Development has not released any API's for maintaing bank account information in the 11i version of Oracle Applications. This is only available in R12.
    Cheryl

  • How to add Mac27" to existing home network? and read files on other PC computers (Window7)

    How to add Mac27" to existing home network? and read files on other PC computers (Window7).
    type of connection:
    All computer (PC & Mac) connect to router (ethernet or wireless), then connect to internet.
    condition:
    internet works fine on all computer (PC & Mac).
    existing 4 PC communicate well (share files & printers),
    my problem:
    can NOT add Mac into existing home network.
    I tried SYSTEM PREFERENCES, then NETWORK, then ......... several times
    could not make it work.
    pleas help.

    Ah, it looks like I should have read your title more carefully. Are the  files on the PCs that you want to share with your iMac in a shared folder?
    If not, follow the steps on this page to set up shares from Windows 7.
    If that is already set up, connect to the share from the iMac using this article.

  • How to add services for object in ECC6.0

    Hi everybody,
                        Can anybody tell me how to add "Services for Object" icon in ECC 6.0 because this icon is there in 4.6C but not coming in ECC 6.0.
    Thanks in Advance

    Hi Saurabh,
                Thanks for your reply. I have checked the path given by you...System-> Service for object, but it is showing no service available as told by you. Cud you please tell me how to add this service because this is working fine in 4.6C but I dont know how to add these services in ECC 6.0. If any code for this which is written in 4.6C which I can refer... please tell me where to see the code for adding services (in 4.6C)  b'coz its very urgent.

  • How to add security for Azure Cloud Service?

    Hi,
    We have build some API's in azure cloud service.
    We want to add security for Azure Cloud Service.
    How to add security for Azure Cloud Service?

    Hi Santhosh,
    You may add security for your API's by using:
    Mutual certificate authentication
    Using OAuth 2.0
    Manage developer accounts
    Regards,
    Manu Rekhar

  • How to add support for new file type.

    Using the ESDK, I would like to add support for new file type ( a new extension). this new extension will function like any other non visual code editor but will have specific syntax highlighting, code folding and explorer.
    I am trying ot figure out if I need to create a new editor or use existing JDeveloper code editor and add support for new file type. Does anyone have a high level outline on how to do this using the ESDK that is specifically targeted at adding new file type support for a text based code editor?
    I have looked at the Samples and keep going in multipe directions. It would be cool if there was an example that was how add syntax higlighting for new file type.
    Thank you

    Brian, thank you. I looked at this extension and it answered a lot of questions for me. I was going in the right direction but needed a little help and bost of confidence, this is just what I needed. I created the LanguageSupport, LanguageModel, Addin, Node and TextDocument that are specific to the new file type. I was getting hung up on how to hook this into the JDevelpoer editor. I keep thinking I have to create a custom editor but it looks like I don't have to and it looks like I can associate this file support with the editor framwork, for version 10.1.3.2, with the following in the Addin Initilize() method.
    Recognizer.mapExtensionToClass(MY_EXTENSION, MyNode.class);
    CodeEditor.registerNodeType(MyNode.class, MY_EXTENSION);
    LanguageModule.registerModuleForFileType(new MyLanguageModule(), MY_EXTENSION);
    I have done this but still not able to recognize the new file type.
    At this point, I just want to be able to recognize the new file and display it's associated icon or display a messare to the message log. I put a System.out.println("test") in the Initilize() method of my addin. then I registered MyAddin in the extension.xml. JDeveloper sees this new extension and it is loaded but I have not been able to show the test message or display the new icon when I open the new file type.
    extension.xml
    <?xml version="1.0" encoding="windows-1252" ?>
    <extension xmlns="http://jcp.org/jsr/198/extension-manifest"
               id="teisaacs.jdev.myext.MyAddin" version="1.0.0" esdk-version="1.0"
               rsbundle-class="teisaacs.jdev.myext.resources.MyResBundle">
        <name rskey="EXTENSION_NAME">My Code Editor</name>
        <owner rskey="EXTENSION_OWNER">Me</owner>
        <dependencies>
            <import version="10.1.3">oracle.jdeveloper</import>
        </dependencies>
        <hooks>
            <jdeveloper-hook>
                <addins>
                    <addin>teisaacs.jdev.myext.MyEditorAddin</addin>
                </addins>
            </jdeveloper-hook>
            <feature-hook>
                <description>My Code Editor</description>
                <optional>true</optional>
            </feature-hook>
            <document-hook>
                <documents>
                    <by-suffix document-class="teisaacs.jdev.myext.model.MySourceDocument">
                        <suffix>my</suffix>
                        <suffix>MY</suffix>
                    </by-suffix>
                </documents>
            </document-hook>
            <editor-hook>
                <editors>
                    <editor editor-class="teisaacs.jdev.myext.editor.MyEditor">
                        <name rskey="EXTENSION_NAME">My Editor</name>
                    </editor>
                    <mappings>
                        <mapping document-class='teisaacs.jdev.myext.model.MySourceDocument">         
                            <open-with editor-class="teisaacs.jdev.myrext.editor.MyEditor"
                                       preferred="true"/>
                            <open-with editor-class="javax.ide.editor.CodeEditor"/>
                        </mapping>
                    </mappings>
                </editors>
            </editor-hook>
        </hooks>
    </extension>
    public class MyAddin implements Addin {
        public static final String MY_EXTENSION = "my";
        public void initialize() {
            System.out.println("MyEditor Constructor");
            new MyLanguageModule();
            Recognizer.mapExtensionToClass(MY_EXTENSION, MyNode.class);
            CodeEditor.registerNodeType(MyNode.class, MY_EXTENSION);
            LanguageModule.registerModuleForFileType(new MyLanguageModule(), MY_EXTENSION);
    }I have added and removed the editor hook along with many other modificaitons to the extension.xml but still not recognizing the new file extension.
    Todd

  • I18n - how to add support for more languages (CQ 5.4)

    I have a number of questions around adding support for more languages. We are already using multiple languages and would like to add more.
    1. Standard languages provided
    in /libs/wcm/core/i18n I can see the standard ootb languages for CQ 5.4: de es fr it ja zh-cn
    How can I add more? Are there additional language packages provided by Adobe for CQ 5.4?
    2. Translator tool
    We have our own additional keys/strings in
      /apps/site/i18n/publish
    When I open these with the translator tool
      /libs/cq/i18n/translator.html
    as admin, I can see them all just fine.
    However when I open them as another user, I only see the columns of the languages defined in /libs/wcm/core/i18n
    There is a description how to extend this for 5.5 here:
    http://dev.day.com/docs/en/cq/5-5/developing/cq5-translator.html#Changing%20Languages%20Li sted%20in%20the%20Grid
    and I have added the languages to /etc/languages in the "languages" property, but this does not work with 5.4 apparently (at least as far as I have tried).
    I still only get the default languages from /libs/wcm/core/i18n despite the other languages being there in
      /apps/site/i18n/publish
    and as admin I can see and edit them.
    How do I make them visible and editable for other users?
    3. Tags
    When editing the translations of tags, I want all the possible languages to appear in the dialog box for editors.
    I have extended the "languages" property in /etc/tags and this works basically fine (as expected) as described in:
    http://dev.day.com/docs/en/cq/5-5/developing/cq5-translator.html#Changing%20Language%20Nam es%20and%20Default%20Countries
    The desired language must be supported and listed in:
      /libs/wcm/core/resources/languages
    I want to use a 2-letter iso code (e.g. "no" for Norway") and this desired 2-letter iso code must exist as a node. If that is not the case and only nodes with locales exist (e.g. "no_no" and "no_no_ny") then a 2-letter node must be created with a default setting pointing to the default locale.
    I have tried this and it works fine as expected when the default language node is created in
      /libs/wcm/core/resources/languages
    But /libs is a system folder that should not be modified, it could be potentially overwritten by Adobe packages.
    The 5.5 docs say to create the node in
      /apps/wcm/core/resources/languages
    instead, but this did not work for me in CQ 5.4 and I could find no other docs describing a process for 5.4
    How to do this properly in 5.4?

    Thanks for that hint, I checked it and the user does have read access to /etc/languages and /etc/tags and also /libs
    So it seems the only workaround would be to create dummy nodes in /libs/wcm/core/i18n - which I did with a script (to be able to repeat after installation of hotfixes/and updates).
    So for example for Norwegian:
    # set default 2-letter node for norway (since it is missing)
    curl -u "admin:${PASS}" -X POST "http://${SERVER_IP}:${PORT}/libs/wcm/core/resources/languages/no" -d 'jcr:primaryType@TypeHint=Name' -d 'jcr:primaryType=nt:unstructured' -isS | grep HTTP
    curl -u "admin:${PASS}" -X POST "http://${SERVER_IP}:${PORT}/libs/wcm/core/resources/languages/no" -d 'country=*' -isS | grep HTTP
    curl -u "admin:${PASS}" -X POST "http://${SERVER_IP}:${PORT}/libs/wcm/core/resources/languages/no" -d 'defaultCountry=no_no' -isS | grep HTTP
    curl -u "admin:${PASS}" -X POST "http://${SERVER_IP}:${PORT}/libs/wcm/core/resources/languages/no" -d 'language=Norwegian' -isS | grep HTTP
    # set dummy node for missing languages in /libs/wcm/core/i18n
    curl -u "admin:${PASS}" -X POST "http://${SERVER_IP}:${PORT}/libs/wcm/core/i18n/no" -d 'jcr:primaryType@TypeHint=Name' -d 'jcr:primaryType=nt:folder' -isS | grep HTTP
    curl -u "admin:${PASS}" -X POST "http://${SERVER_IP}:${PORT}/libs/wcm/core/i18n/no" -d 'jcr:mixinTypes@TypeHint=Name[]' -d 'jcr:mixinTypes=mix:language' -isS | grep HTTP
    curl -u "admin:${PASS}" -X POST "http://${SERVER_IP}:${PORT}/libs/wcm/core/i18n/no" -d 'jcr:language=no' -isS | grep HTTP
    This does create a proper dummy node (which is otherwise empty) in /libs/wcm/core/i18n
    But unfortunately the Norwegian language still does not show up in the translator tool /libs/cq/i18n/translator.html
    Only the standard languages show for my user.
    Admin user does see all langauges we have in /apps/site/i18n/publish (but that was already the case before) - so I assume it must be some permissions are missing. I also tried giving that user modify+create permissions to /apps/site/i18n/publish but that did not make any difference.
    Any other ideas what could be missing?

  • How to add columns for wad in web apllication designer

    hi,
    can any one tell me how to add new columns for analysis item in wad.
    i found an option of adding new rows but not able to find a option of new columns in analysis item.
    please suggest me.
    i will assign points

    Hi,
    There is no functionlaity to add new columns.
    For adding new combinations to the transaction data, the input ready new rows are used. Why do you need new columns?

  • How to add "services for object " in ECC 6.0

    Hi Saurabh,
    Thanks for your reply. I have checked the path given by you...System-> Service for object, but it is showing no service available as told by you. Cud you please tell me how to add this service because this is working fine in 4.6C but I dont know how to add these services in ECC 6.0. If any code for this which is written in 4.6C which I can refer... please tell me where to see the code for adding services (in 4.6C) b'coz its very urgent.

    Hi Saurabh,
                Thanks for your reply. I have checked the path given by you...System-> Service for object, but it is showing no service available as told by you. Cud you please tell me how to add this service because this is working fine in 4.6C but I dont know how to add these services in ECC 6.0. If any code for this which is written in 4.6C which I can refer... please tell me where to see the code for adding services (in 4.6C)  b'coz its very urgent.

  • How to add OBLIGATORY for SELECT-OPTIONS

    Hi experts,
    I can use OBLIGATORY for PARAMETERS
    PARAMETERS :s_WMno  TYPE LINK-LGNUM DEFAULT 'SCA' OBLIGATORY.
    I want to add OBLIGATORY for SELECT-OPTIONS. How to do this?
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME .
        SELECT-OPTIONS:  s_matnr FOR mara-matnr .
    SELECTION-SCREEN END OF BLOCK b1.
    Many thanks.

    Hi,
    TABLES spfli.
    SELECT-OPTIONS : carrid FOR spfli-carrid OBLIGATORY. " This makes only Low field Obligatory
    AT SELECTION-SCREEN OUTPUT.
      LOOP AT SCREEN.
        IF screen-name = 'CARRID-HIGH'. " To make High field also obligatory
          screen-required = 1.
          MODIFY SCREEN.
        ENDIF.
      ENDLOOP.
    Cheerz
    Ram

  • How to add screen for IEQM0003

    Hi All,
    I am working for T code IE02 in PM module.
    I have requirement that when user saves the Equipment, a Pop-Up screen should come.
    This will contain 2 Radio-buttons and one Ok button.
    After Selection any Radio Button and Pressing OK, a Workflow will be triggered.
    Please give me step by step procedure to do above.
    There is User Exit Enhancement IEQM0003. Pls tell me how to add screen to it.
    Raja

    Rishi
    1. Create custom screen in function group XEQM... which is the same function group for the Exit EXIT_SAPMIEQ0_001.
    2. Do call screen to view that custom screen in user exit EXIT_SAPMIEQ0_001.
    3. Trigger the workflow event as per your requirement. For this write the code in PAI of Custom Screen.
    Thanks
    Amol Lohade

  • Install Java Add-In for existing ABAP == 'First MSCS Node' step fails

    I am in the process of installing the Java Add-In for an existing ABAP System.
    I am doing the High-Availability Installation Services.
    There are seven (7) steps:
    1. Central Services Instance (CSC) Java Add-In
    2. First MSCS Node
    3. Database Instance Java Add-In
    4. Additional MSCS Node
    5. Enqueue Replication Server
    6. Central Instance Java Add-In
    7. Dialog Instance
    Step #1 was completed successfully.
    Step #2 (First MSCS Node) keeps failing with the following warnings/error:
    <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
    WARNING 2011-11-02 07:38:04.928
    Execution of the command "cluster.exe RESOURCE "SAP BWP 00 Service"" finished with return code 5007. Output:
    Listing status for resource 'SAP BWP 00 Service':
    Resource             Group                Node            Status
    System error 5007 has occurred (0x0000138f).
    The cluster resource could not be found.
    <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
    WARNING 2011-11-02 07:40:29.085
    Execution of the command "M:\usr\sap\BWP\ASCS00\exe\sapstartsrv.exe -u -q -s BWP -n 00" finished with return code 128. Output:
    <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
    ERROR 2011-11-02 07:40:29.210
    FCO-00011  The step dCreateSecondNewSCSServiceWithVirtualHostName with step key |MSCS_A|windows|ind|ind|ind|0|0|SAPServices|windows|ind|ind|ind|9|0|dCreateSecondNewSCSServiceWithVirtualHostName was executed with status ERROR .

    This seems to be an issue with the clustering solution. Please, refer to the following article link:
    http://support.microsoft.com/default.aspx?scid=kb;en-us;281796
    See if that helps
    Edited by: David Fitzgibbon on Nov 2, 2011 2:18 PM

  • Urgent! how to add Warning for Phase out product

    Hi, Can anyone guide soon on how to add a warning message when an Order/Quatation in SAP CRM for phase out product is created so that any sales representive will come to know if total amount/unit defined in the order can be delivered. Reason is to avoid bigger quantity being entered compared to remaining quantity in warehouse.

    Hi Piyush
    You can define a status in the product master.  If you are downloading the product from ECC, you can mention the reason in the material master as "Phase Out Product" and when you download this product in CRM, the status will be shown in Sales and Distribution tab against the field Status.
    If the reason is added, then it will give a error message to the sales representative that the product is blocked or phased out.
    Hope this will be useful
    Thanks and Regards
    DJ

  • How to add security for webservice invoke

    Hi All,
    Please let me know how to invoke the webservice in BPEL process with security details.
    Thanks,
    Suresh

    Hi Santhosh,
    You may add security for your API's by using:
    Mutual certificate authentication
    Using OAuth 2.0
    Manage developer accounts
    Regards,
    Manu Rekhar

Maybe you are looking for