TM1 Offline Templates
-
- Regular Participant
- Posts: 269
- Joined: Tue Apr 21, 2009 3:43 am
- OLAP Product: Cognos TM1, Planning
- Version: 9.1 SP3 9.4 MR1 FP1 9.5
- Excel Version: 2003
TM1 Offline Templates
I'd like to ask if any of you have used or created Offline Data Entry Templates? I'd like to get your opinion on the benefits & downfall and if its ever really recommended other than it allows you to buy less license and depend on the admin or some other user to upload the data from that Offline template with the use of TI.
-
- Site Admin
- Posts: 6645
- Joined: Sun May 11, 2008 2:30 am
- OLAP Product: TM1
- Version: PA2.0.9.18 Classic NO PAW!
- Excel Version: 2013 and Office 365
- Location: Sydney, Australia
- Contact:
Re: TM1 Offline Templates
We make use of them for Capex budgeting; a lot of the people who have to do entry for Capex aren't regular TM1 users, so they fill in the templates and send them back to someone in the Group Planning area for upload.appleglaze28 wrote:I'd like to ask if any of you have used or created Offline Data Entry Templates? I'd like to get your opinion on the benefits & downfall and if its ever really recommended other than it allows you to buy less license and depend on the admin or some other user to upload the data from that Offline template with the use of TI.
The upside is obvious; if you're on named user licencing, you don't have to burn up user licences on people who may use the system once per year. (And who will doubtless have forgotten how to log in in the meantime.)
The primary down side is the possibility of people putting in dodgy inputs. Unfortunately you can't validate against element names the way a direct input template will. This is also relatively easy to handle for title elements; you can make the inputs selectable from a drop down control. (Or if you're really desperate, Data Validation; however I tend to regard data validation lists as only a few inches this side of useless. In the first place if someone pastes over the cell it obliterates the validation, and in the second when you have a long list of element values the user can't type in the beginning of the list and have matching elements selected.)
It's more of a problem with row and column elements, but even then it's a fairly trivial exercise to have some VBA code which validates against lists which are contained in the workbook. However the more lists you embed in the workbook, the larger it'll be. Excel workbooks have a tendency to bloat in size rather too readily for my liking.
And of course you have to be careful about ensuring that the users can't destroy the structure of the workbook (deleting sheets or critical rows and columns), thus making it more difficult for the user who does the upload.
There's nothing to stop you from incorporating the DBS formulas in hidden cells; if the input cells are just normal blank cells with DBS formulas hidden away, then the user who does the upload can simply log in and press [F9].
One other down side is that it's the admin's name which will go against the entries in the log file rather than the name of the person who created the values; that's not ideal from an audit trail perspective. You'd need to keep all of the input workbooks as your audit trail.
In short, it's not an ideal solution; but with the cost of licences it's one that can work in some circumstances.
"To them, equipment failure is terrifying. To me, it’s 'Tuesday.' "
-----------
Before posting, please check the documentation, the FAQ, the Search function and FOR THE LOVE OF GLUB the Request Guidelines.
-----------
Before posting, please check the documentation, the FAQ, the Search function and FOR THE LOVE OF GLUB the Request Guidelines.
- Martin Ryan
- Site Admin
- Posts: 1989
- Joined: Sat May 10, 2008 9:08 am
- OLAP Product: TM1
- Version: 10.1
- Excel Version: 2010
- Location: Wellington, New Zealand
- Contact:
Re: TM1 Offline Templates
We use them a bit as we have a lot of far flung users, and at budget time there are a lot of smaller entities that need to enter the budget, but it's not worth getting a whole bunch of licences for the sake of budget time two times a year.
We use a VBA heavy template that spits out a csv file onto the WAN to be sucked up by a TI process. It takes a bit of looking after but it does the job.
What particular scenario are you facing?
Martin
We use a VBA heavy template that spits out a csv file onto the WAN to be sucked up by a TI process. It takes a bit of looking after but it does the job.
What particular scenario are you facing?
Martin
Please do not send technical questions via private message or email. Post them in the forum where you'll probably get a faster reply, and everyone can benefit from the answers.
Jodi Ryan Family Lawyer
Jodi Ryan Family Lawyer
-
- Regular Participant
- Posts: 269
- Joined: Tue Apr 21, 2009 3:43 am
- OLAP Product: Cognos TM1, Planning
- Version: 9.1 SP3 9.4 MR1 FP1 9.5
- Excel Version: 2003
Re: TM1 Offline Templates
I'm not really looking into any particular scenario just yet. Since its kinda a very tedeious job on creating 1 online & offline templates. Is it possible to create a VBA script on being able to produce multiple workbooks. Like for example I have like 20 cost center, I want 1 cost center 1 workbook with using the existing Online tempate layout? And having the cost center drop down be static to 1 specific cost center.
How do I encorporate the dimensions with subnm in the online template in the offline template? I assume I need to have some hidden columns to accomodate those dimension elment. Or like in my example can I like have a VBA code for a button "CREATE TEXT FILE" to add 1 additional column for the static cost center as it creates the text file to be use by TI to upload the data?
Since for easier loading for the admin I also thought maybe its easier to create a user form that gets data from TM1 and from there enter data that is fed to rows. However, downside of this, the datas that were entered wouldn't be viewed in a nice way if I'm not gonna hide it and if I hide it, people doing data entry wont be able to see the data.
What is the best way to create offline templates to ensure that performance is still good.
How do I encorporate the dimensions with subnm in the online template in the offline template? I assume I need to have some hidden columns to accomodate those dimension elment. Or like in my example can I like have a VBA code for a button "CREATE TEXT FILE" to add 1 additional column for the static cost center as it creates the text file to be use by TI to upload the data?
Since for easier loading for the admin I also thought maybe its easier to create a user form that gets data from TM1 and from there enter data that is fed to rows. However, downside of this, the datas that were entered wouldn't be viewed in a nice way if I'm not gonna hide it and if I hide it, people doing data entry wont be able to see the data.
What is the best way to create offline templates to ensure that performance is still good.
-
- Posts: 20
- Joined: Tue Aug 04, 2009 6:14 pm
- OLAP Product: TM1
- Version: 9.4.1
- Excel Version: Excel 2007
Re: TM1 Offline Templates
I would probably create one template with two (or more) sheets. Sheet 1 would be for the online users, Sheet 2 for off line users. Then use VBA to to select which to use and delete the other based on an Attribute of the Cost center.