Member for years non-standard in the dimension of the planning years

We have a non-standard (planning) the dimension member years called 'No year '. In order to add it to the start, I had to go to the back end of the schedule (tables HSP_OBJECT and HSP_UNIQUE_NAMES) and edit the members there. It was version 9. The order of the years members was then FY95 through FY14, then came year no., then FY15. It worked for our years of start and end in the planning, as our school was FY09 and our end of the year was the year of no., allowing us to the regime through FY14 and entry year no data specific to year n on the forms. It also allowed us to omit 'Year No' of our scripts using a range of FY09:FY14 years (using substitution variables). Now that the year overturned (and, incidentally, we have upgraded to version 11) and our years of planning are FY10 thanks FY15, I would move no. year after FY15. However, I do not seem to be able to do in updating underlying tables above. I make the changes for the two tables, but it is not reflected in the schedule (they appear in the order), and if I try to change it or the other of the two members in the planning (year or FY15), it gives me an error indicating that the Member already exists. Anyone know how I can do to move the No. year Member? I need to not only this year, but to have a process my client can follow each year, moving from that Member within the outline to be directly after the last year of planning.

Thank you

Sabrina

If you want to go on the tables of piracy and changing the order of 'No year '.

If you run the SQL on your planning application

Select * from hsp_object where type_objet = 38

You can see the column in position and will have values like 1000000 = first place, 1000010 = Second Place and so on.

To change the position you have to raise the value of position of 'No year' and 'FY15.

setting a day of position set hsp_object = '1000070'
where type_objet = 38 and object_name = 'No year '.

setting a day of position set hsp_object = '1000080'
where type_objet = 38 and object_name = 'FY14.

Restart planning. Now all this is done at your own risk, and when you app goes boom don't blame me :)
If 'No year' has been added in the right direction when you add the year, he must always remain as the last position.

Planning rights object between adjustment ranges ID holders, the normal year (FY..) values are 50002 go
No year is out of this range for example 50412
When no. year is added correctly then planning will add a new to the normal range of values for the year (the year last value + 1) and then changes it the order of position

See you soon

John
http://John-Goodwin.blogspot.com/

Tags: Business Intelligence

Similar Questions

  • When I drag photos to the timeline, they are non-standard in the program monitor.

    When I drag photos to the timeline, they are non-standard in the program monitor. So I spend a lot of time to readjust them to the frame. Can you guide me on a faster method? Thanks in advance. Here are pictures of the IMG

    Sabu Singh

    Thank you for your advice. The problem is resolved.

    Concerning

  • Newby - problems for export non-standard characters. CSV or delimited by tabs

    I'm trying to export data from a table where many fields contain non-standard characters such as double quotes * []] * or * labels *. If I * export to one. CSV file, embedded quotes foul invariably upward alignment of output columns and if I select one * export tabs-delimited *, built-in tabs do the same thing.

    Is anyway that I can specify the text qualifier to use so that I can choose a character that is not used in the text (like, for example the tilde * [*] *)?

    I use discoverer 3.1

    Thanks in advance

    Hello

    With a requirement of export complicated like this, it is often better to create a named calculation that returns the fields in the required format, as a single column, for example

    col1 | » ~'|| col2. » ~'|| COL3

    Then, you can simply export the report to a text and get all the fields with the correct delimiters and the characters replaced.

    Rod West

  • I can't upgrade my lightroom 5 for lightroom cc after buying the plan of photography

    How to do the above? There is no way, as CAP I see upgrade.

    the plan of photography (ps and lr cc cc at $9.99 we / mo) is the lowest available price, pricing plans and membership creative cloud | Adobe Creative Cloud

    That is to say, there is not less expensive upgrade plan

  • I signed up for Adobe Acrobat Standard only the solution of software from Mac to Windows during your registration - refund please

    It started since my installation Acrobat Trial on my Mac, after a pop up you register on my Mac and then a browser on my Mac session!

    I cancelled the monthly plan for the version of Windows and successfully completed the process for the Mac version, but now I need my refund for the 1 month of the version of Windows that I didn't and did not and cannot be used.  I rang the number, but has been waiting for 32 minutes before giving up.

    I clicked on the link under the cancellation in my Adobe account but that ends up in a black hole of 1000 option support site.

    How should I proceed, without losing an hour of my life? Thank you.

    My apologies for the inconvenience faced by you, I will follow the case immediately.

    Please answer I send a private message you.

    Concerning

    Baudier

  • No room for improvement for this request? Explain the Plan attached.

    There is room for improvement for this request? Table stats are updated. Suggestions, Query rewrite, adding indexes,... etc?
    select sum(CONF
                 when (cd.actl_qty - cd.total_alloc_qty - lsd.Q < 0) then
                  0
                 else
                  cd.actl_qty - cd.total_alloc_qty - lsd.Q
               end)
      from (select sum(reqd_qty) as Q, ITEM_ID as ITEM
              from SHIP_DTL SD
             where exists (select 1
                      from CONF_dtl
                     where CONF_nbr = '1'
                       and ITEM_id = SD.ITEM_id)
             group by ITEM_id) lsd,
           CONF_dtl cd
     where lsd.ITEM = cd.ITEM_id
       and cd.CONF_nbr = '1'
    Total number of rows in the tables involved
    select count(*) from CONF_DTL;
    
      COUNT(*)
    ----------
       1785889
    
    select count(*) from shp_dtl;
    
      COUNT(*)
    ----------
        286675
      
    Explain Plan
    PLAN_TABLE_OUTPUT
    ----------------------------------------------------------------------------------------------------
    Plan hash value: 2325658044
    
    ----------------------------------------------------------------------------------------------------
    | Id  | Operation                           | Name               | Rows  | Bytes | Cost (%CPU)| Time     |
    ----------------------------------------------------------------------------------------------------
    |   0 | SELECT STATEMENT                    |                    |     1 |    39 |     4  (25)| 00:00:01 |
    |   1 |  SORT AGGREGATE                     |                    |     1 |    39 |            |          |
    |   2 |   VIEW                              |                    |     1 |    39 |     4  (25)| 00:00:01 |
    |   3 |    HASH GROUP BY                    |                    |     1 |   117 |     4  (25)| 00:00:01 |
    |   4 |     TABLE ACCESS BY INDEX ROWID     | SHIP_DTL           |     1 |    15 |     1   (0)| 00:00:01 
    |   5 |      NESTED LOOPS                   |                    |     1 |   117 |     3   (0)| 00:00:01 |
    |   6 |       MERGE JOIN CARTESIAN          |                    |     1 |   102 |     2   (0)| 00:00:01 |
    |   7 |        TABLE ACCESS BY INDEX ROWID  | CONF_DTL           |     1 |    70 |     1   (0)| 00:00:01 |
    |*  8 |         INDEX RANGE SCAN            | PK_CONF_DTL        |     1 |       |     1   (0)| 00:00:01 |
    |   9 |        BUFFER SORT                  |                    |     1 |    32 |     1   (0)| 00:00:01 |
    |  10 |         SORT UNIQUE                 |                    |     1 |    32 |     1   (0)| 00:00:01 |
    |  11 |          TABLE ACCESS BY INDEX ROWID| CONF_DTL           |     1 |    32 |     1   (0)| 00:00:01 |
    |* 12 |           INDEX RANGE SCAN          | PK_CONF_DTL        |     1 |       |     1   (0)| 00:00:01 |
    |* 13 |       INDEX RANGE SCAN              | SHIP_DTL_IND_6 |     1 |       |     1   (0)| 00:00:01 |
    ----------------------------------------------------------------------------------------------------
    
    Predicate Information (identified by operation id):
    ---------------------------------------------------
    
       8 - access("CD"."CONF_NBR"='1')
      12 - access("CONF_NBR"='1')
      13 - access("ITEM_ID"="SD"."ITEM_ID")
           filter("ITEM_ID"="CD"."ITEM_ID")
    SELECT SUM(cd.actl_qty - cd.total_alloc_qty - lsd.Q)
      FROM (SELECT   SUM(reqd_qty) AS Q, ITEM_ID AS ITEM
                FROM SHIP_DTL SD
               WHERE ITEM_ID IN(SELECT ITEM_ID
                                  FROM CONF_dtl
                                 WHERE CONF_nbr = '1')
            GROUP BY ITEM_id) lsd,
           CONF_dtl cd
     WHERE lsd.ITEM = cd.ITEM_id AND cd.CONF_nbr = '1' AND cd.actl_qty - cd.total_alloc_qty - lsd.Q > 0
    

    This should remove the nested loop and could lead to a hash on conf_dtl join.

  • JavaScript in the Planning

    I came to know that I can write a JavaScript for some extra features in the planning?
    Can I have some information?

    Is it possible to write a JavaScript for an online planning form?

    Yes it is possible to use custom forms, javascript
    Reading of:-http://download.oracle.com/docs/cd/E12825_01/epm.111/hp_admin/apa.html
    And:-http://www.oracle.com/technology/products/bi/epm/pdf/planning_javascript_v3.pdf

    See you soon

    John
    http://John-Goodwin.blogspot.com/

  • Tips for the TCP wait of asynchronous Messages with non-standard expression tanks

    Hi all

    I have a PITA instrument that I need to communicate with in a system of greater control.  This instrument communicates via RS232 to a server running on the PC OEM application.  In order to communicate with the instrument, I have to use the TCP protocol on a specific port on Localhost - So far so good as long the protcol is answer command.

    The problem is that the instrument sends several messages asynchronously of different sizes with a double newline as a tank of termination (there are many CR/LFS all these messages so that they cannot be a MOE) and I am struggling to find a way to manage receive asynchronous messages of variable length with a cusom CHARACTER term. without having simply a fast dedicated for TCP loop reads trying to catch these asynchronous status messages.

    I wish the functions VISA TCP has worked with the local host, given that the properties that can be set to change the chariot of non-standard term.

    Open to suggestions-

    Thank you

    Ronin

    Yes, I'll be streaming in my own string buffer and then to choose the messages out of the buffer when you find the stop character.

    A technique to improve performance, rather than reading a single byte at a time is to use the "immediate" on reading TCP mode and use a high value for the "bytes read" - in this way, it will return all of the data that is there without waiting for all the specified bytes or the time-out. He will wait only the full timeout if 0 bytes are received (which you can ignore) - set to a low value such as 100ms.

  • I can't open my apps in creative cloud; whenever I get the trial version and the question to purchase. But I am a member for several years now. We have already removed all apps and installed them, but it does not work. What should do?

    ?  I can't open my apps in creative cloud; whenever I get trial versions and the question to purchase. But I am a member for several years now. We have already removed all apps and installed them, but it does not work. What should do?

    Troubleshooting FAQ: What should I do if I have a subscription, but my application acts as if I had a trial?

  • After using it for years I now get the message on the screen &#34; Windows Vista Build 6002 this copy of Windows is not genuine &#34;

    AAAAnd to the interest of the human mental health, I've been asked this question all on my own and started a new thread! I want to say that I took the link that I had in my e-mail by microsoft to join in the forum with excactly the same question! My appollogies all I upset and confused! But what the * I am supposed to do if Microsoft take me to a forum etc. etc. to associate myself with ppl that are having the same problem... that's all public reading for all trying to learn... If the techys said great and I don't want that they are great! give an answer to a person having the same problem, giving specific instructions to follow... that is to say, 'this type', 'type' etc... I would do the same thing... so saving the great techys having to do the same answer over and over again... I was just joining in the forum according to the instructions... what else I could do... as a noob? Any hooo, goes here; - Diagnostic (1.9.0027.0) report: - Windows Validation Data - Validation status: invalid License Code of Validation: 50 Cached Code of Validation online: 0 x 0 Windows product key: *-* - R7X4H - 6F2XJ-VVMP9 Windows Product Key hash: UqxyryRKzOt7kYPGi0qReynjiPg = Windows product ID: 89576-OEM-7332141-00216 Windows product ID Type: 2 Windows license Type: OEM SLP Windows OS version : 6.0.6002.2.00010100.2.0.006 ID: {09C2AAAB-35DD-495E-B85B-FFBA1ACDB85E} (3) is Admin: Yes TestCab: 0x0 LegitcheckControl ActiveX: registered, 1.9.42.0 signed by: Microsoft product name: Windows Vista (TM) Business Architecture: 0x00000000 Build lab: 6002.vistasp2_gdr.101014 - 0432 TTS Error: Validation diagnostic: resolution state: s/o Vista WgaER data - ThreatID (s): n/a, hr = 0 x 80070002 Version: n/a, hr = 0 x 80070002 Windows XP Notifications data - Cached result : n/a, hr = 0 x 80070002 file exists: No. Version: n/a, hr = 0 x 80070002 WgaTray.exe signed by: N/A, hr = 0 x 80070002 WgaLogon.dll signed by: n/a, hr = 0 x 80070002 OGA Notifications data - Cached result: n/a, hr = 0 x 80070002 Version: n/a, hr = 0 x 80070002 OGAExec.exe signed by: n/a, hr = 0 x 80070002 OGAAddin.dll signed by : n/a, hr = 0 x 80070002 OGA data - Office status: 109 N/A OGA Version: n/a, 0 x 80070002 signed by: n/a, hr = 0 x 80070002 Office Diagnostics: the données--025D1FF3-364-80041010_025D1FF3-229-80041010_025D1FF3-230-1_025D1FF3-517-80040154_025D1FF3-237-80040154_025D1FF3-238-2_025D1FF3-244-80070002_025D1FF3-258-3 browser Proxy settings: n/a User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Win32) default browser: C:\Program Files\Google\Chrome\Application\chrome.exe download signed ActiveX controls: fast download unsigned ActiveX controls: disabled run ActiveX controls and plug-ins: allows you to initialize and script ActiveX controls not marked as safe: disabled allow scripting of Internet Explorer Webbrowser control: disabled Active scripting: allowed ActiveX controls recognized safe for scripting : permis fichier Scan données--fichier de non-correspondance : C:\Windows\system32\uxtheme.dll[6.0.6001.18000], Hr = 0x800b0100 File Mismatch: C:\Windows\system32\browseui.dll[6.0.6000.16386], Hr = 0x800b0100 Other data-- Office Details: GenuineResultsMachineDataUGUID{09C2AAAB-35DD-495E-B85B-FFBA1ACDB85E}/UGUIDVersion1.9.0027.0/VersionOS6.0.6002.2.00010100.2.0.006/OSArchitecturex32/ArchitecturePKey***-***-***-***-VVMP9/PKeyPID89576-OEM-7332141-00216/PIDPIDType2/PIDTypeSIDS-1-5-21-127489172-3573878905-2511511925/SIDSYSTEMManufacturerNVIDIA/ManufacturerModelAWRDACPI/Model/SYSTEMBIOSManufacturerPhoenix Technologies, LTD/ManufacturerVersion6.00 PG/VersionSMBIOSVersion major="2" minor="2"/Date20050721000000.000000+000/Date/BIOSHWID44303507018400F6/HWIDUserLCID0809/UserLCIDSystemLCID0409/SystemLCIDTimeZoneGMT Standard Time( GMT + 00:00) / TimeZoneiJoin0/iJoinSBIDstat3/statmsppid/msppidname/namemodel/model/SBIDOEM/GANotification / / MachineDataSoftwareOfficeResult109/ResultProducts/Applications / / Office/software/GenuineResults Spsys.log content: 0 x 80070002 service licenses data licensing - software version: 6.0.6002.18005 name: Windows Vista (TM), Business edition Description: OEM_SLP operating system Windows - Vista, channel ID of Activation: fd3bcb98-5c55-4b2d-ae32-a4515e3c17a3 ID of the Application: 55c92734-d682-4d71-983e-d6ec3f16059f Extended PID: 89576-00146-321-400216-02-2057-6002.0000-1682011 install ID: 016895113696003725658623885756703736700974853226446774 processor certificate URL: http://go.microsoft.com/fwlink/? LinkID = 43473 Machine Certificate URL: http://go.microsoft.com/fwlink/?LinkID=43474 use license URL: http://go.microsoft.com/fwlink/?LinkID=43476 product key certificate URL: http://go.microsoft.com/fwlink/? LinkID = 43475 partial product key: VVMP9 license status: Notification Notification reason: 0xC004F057. Windows Activation Technologies - N/D data - HWID HWID hash running: NAAAAAEABAABAAEAAQABAAAAAgABAAEAJJSo + rQTHAH + 6zReAIfk + VoX8vQG75InrFYMxQ == OEM Activation 1.0 data - s/o OEM Activation 2.0 data - valid BIOS for OA 2.0: Yes, but no SLIC table Windows marker version: n/a OEMID and OEMTableID consistent: n/a BIOS Information: ACPI Table name OEMID value OEMTableID value APIC Nvidia FACP Nvidia SSDT PTLTD POWERNOW MCFG Nvidia AWRDACPI AWRDACPI AWRDACPI

    Diagnostic report (1.9.0027.0): - Windows Validation Data - Validation status: invalid license Validation of Code: 50

    Code of Validation caching online: 0x0

    Windows product key: *-* - R7X4H - 6F2XJ-VVMP9

    Windows product key hash: UqxyryRKzOt7kYPGi0qReynjiPg =

    Windows product ID: 89576-OEM-7332141-00216

    Windows product ID type: 2

    Windows license Type: OEM SLP

    The Windows OS version: 6.0.6002.2.00010100.2.0.006

    Data analysis of files-

    [File mismatch: C:\Windows\system32\uxtheme.dll[6.0.6001.18000], Hr = 0x800b0100

    [File mismatch: C:\Windows\system32\browseui.dll[6.0.6000.16386], Hr = 0x800b0100

    SYSTEMManufacturerNVIDIA/ManufacturerModelAWRDACPI/model/SYSTEMBIOSManufacturerPhoenix Technologies, LTD./ManufacturerVersion6.00 major PG/VersionSMBIOSVersion = '2' minor="2"/Date20050721000000.000000+000/Date/BIOS

    Licensing of data-

    The software licensing service version: 6.0.6002.18005 name: Windows Vista (TM), Business edition Description: Windows operating system - Vista, channel OEM_SLP

    Partial product key: VVMP9

    License status:

    Reason of Notification notification: 0xC004F057.

    OEM Activation 2.0

    Data - Valid BIOS for OA 2.0: Yes, but no SLIC table

    No problem - it happens :)

    Thanks for reposting.

    Unfortunatey the formatting of the report is turned to h3ll, so I can miss somethig. but that's...

    Your problem is due to what looks like two things - fixable one and the other perhaps not repairable.

    (1) your installation is licensed OEM_SLP, on what appears to be a motherbaord detail - have you replaced the motherboard at all, or sent to the machine to be repaired? I to this is the maor problem eventually and not repairable.

    (2) you have a couple of current file incompatibilities, which would also cause non-genuine advice. There is no point in trying to fix this unti, we establish the situation wth the motherboard and the Windows license.

    Is there a COA sticker on the case of the machine? If so, what version and edition of Windows is valid? (NOT posting the key!)

    What is the brand and model of the machine - or is it a machine on measurement or house built?

    If homebuilt - it seems that someone has installed the system using the recovery to an Asus computer disks. This does not work, because the Recoverydisks require the appropriate BIOS to work properly.

    post back with your answer, and we'll go from there.

  • How can I replace a damaged Adobe Photoshop Elements 9 Editor?  I've used this for years and all of a sudden his damaged.  I do not have the CD - can't find it - just moved.

    How can I replace an editor Adobe Photoshop Elements 9 "damaged"?

    I have been using this program for years and all of a sudden - its damaged!

    I have not the CD more if that's how I got it in my Mac.

    I tried to retrieve the serial number through Adobe, but... the account I "had" with Adobe for years has been under a name of ID that I don't remember years ago.  None worked.

    I therefore restored a new account to be able to communicate with Adobe with this name for what to do.

    So, what should I do?

    I need this program.

    You can download the installation program:

    Download Photoshop Elements products | 9, 8, 7

    Your serial number issues will have to be developed with support, so call them.

    Mylenium

  • import of dimension and member via maxl, how to create the data file and rules files

    Hello

    I have a task of importing Essbase, dimension and Member for project requirement, I have to use the text file or spreadsheet.
    I wonder what format can be imported into Essbase?
    I tried to create, failed.

    You have samples to help me? file size and rules files...

    I'm looking for a lot in http://gerardnico.com/wiki/epm/essbase/dimension_build#about, but there is no samples.

    Thanks in advance...

    Best regards
    Samantha

    Have you been through this?

    http://download.Oracle.com/technology/products/bi/Essbase/demos/Essbase_11.1.1_Overview/Lesson4.htm

    Kind regards

    Cameron Lackpour

  • Set up the first draft resolution non-standard

    I am new to editing in Adobe Premiere and am running CS5 and I'm trying to create a Flash banner which has a short segment of video content.

    The video is a montage of both HD and SD content that was provided by a third party.

    The resolution of the target for the final video is 620 x 170.

    How is first configures to allow me to create my video to this non-standard resolution?

    Any help appreciated.

    New sequence, general, desktop and set your properties until you prefer.

  • I used Microsoft for years.  How can I use my files and store and add to them with the I mac

    I used Microsoft for years.  How can I now access my stored info and edit and add to my files with my Apple I Mac. Having problems to work with files in the mac

    I used microsoft years how can I access my stored info and edit and add to them on the Mac.

    This can help you get started > https://www.apple.com/support/macbasics/

    Additional help here > https://support.apple.com/en-us/HT201732

    A good resource for help on your Mac is easy to access. Click on an empty area anywhere on your screen. You should see Finder > file > edit > view > go > window > help at the top of your screen.

    Click on help > Mac Help then type in a keyword for what you need to help in the search field top right of the Help window.

  • iCloud Drive on my mac stops the synchronization of non-standard files

    In my iCloud account, I created two folders (individuals and businesses) in addition to standard folders.  Standards are iMovie, Keynote, Numbers, etc.  On my MacBook Pro (OSX Yosemite V10.10.5), these non-standard files synchronizes any more.

    A solution is to disable iCloud drive, and then restart, but the problem is recurring.  In addition, it is a lot of your time, because whenever I turn it on, it deletes all of my computer and you should download again on restart.

    Is there a solution to this?  Non standard folders are not supported?

    BTW: The iCloud drive on my Windows PC works perfectly...  Hmmm

    Have you tried the signature to iCloud and then reconnect?

Maybe you are looking for