BPF Template and BPF Instance

Hi All,
In  BPF Template, in the DEFINE STEP REGION CRITERIA,we have given CORPORATE as the Dimension Members (Under Driver Diemension Member Selection) and under Selection formula we have given BAS.
Driver Members          Selection Formula
CORPORATE                BAS
We have around 30 members as the BASE members of CORPORATE.If i create a BPF Instance for one BAS member, the BPF Template in the Web page is getting opened for all the BAS members.
However i want the BPF  Template to be opened only for the BAS Member for which the BPF Instance is created.
In case if i create the BPF instance for COPRPORATE  (which is the Parent Member) only and use the BPF Template for other users.will this have any impact elsewhere.
Should i create BPF Instance for all  the BAS Members seperately?
Also,What is the role of the BPF Instance owner?
Thanks,
Akash.

Hi.
Regarding the  role of BPF instance owner users who have been assigned access to the Business Process Flow (BPF) monitor can see a complete list of processes and display the full set of information available for individual process instances. The BPF instance owner can finalize and reopen steps from the BPF monitor.
The BPF instance owner can also finalize an instance from the monitor. Finalize Process only appears in the BPF monitor when the process is fully complete.
The BPF instance owner can reopen steps from the BPF monitor. They can reopen the step prior to the current active step by choosing Reopen Step.
Hope it helps.
Regards,
Kiran

Similar Messages

  • BPF Template ID = '0' and Select Instance owner unable to pop up.

    Hi Gurus,
        I am facing a strange situation, I have configured BPF template and validated it successfully. Next I wanted to create BPF Instance, till Step1 everything is fine but in Step2 : Select Instance owner, The window is not poping out for selection. And the BPF template id is '0'.
    Can anybody come up with solution? Thanks in Advance
    Regards,
    KumarMG
    Edited by: KumarMG on Jul 14, 2011 12:40 PM

    Resolved.

  • How to unlock process template in BPF

    Hi all,
    Hope all are doing good.
    I want to unlock a process template in bpf,previously it was locked by someone else.
    Version bpc10 sp17
    Can anyone one help me??
    Thanks,
    kiran.

    Hi Nilanjan,
    Thank you for your reply.
    The user who locked the template is left out of the project, i have seen the  UJB_TMPL_A table ,i did not understand what  exactly you  want me to see.
    I have double clicked on the status and attached to it.(Please see the attached doc).
    I tried to lock a template for checking ,but i couldnot able to lock,Suppose if i want to lock a template how could i lock(i have noticed that  unlock button in the header is always disable)
    Thanks,
    kiran

  • Can't open template from  BPF

    Hi experts
        I got some problems in BPF,When i try to open a Excle Template  in  BPF,It doesn't work.Should i delete the "outlooksoft" files?Or
    any suggestion?

    Dear Candy Toy,
    When You create a new Appset from AppShell Appset, all of new Appset data will be same with Appshell configuration. I think that if your configuration different from Appshell, you could delete BPC template because its can not run smoothly and never appear troubles in your appset.
    For your case: Please you check up your user security through BPC Administration Console, maybe you could not have a right privileges.
    Kind Regards,
    Wandi Sutandi

  • Error of Owner Property when create a BPF Template in BPC 7.5 Netweawer

    Hi Expert
    I found this error when I create a BPF Template in BPC 7.5 Version Netweawer . Could you please advise for solve it.
    BPF: Validation error; member "AS001" in step "3-Sales Export Plan" has no active owners
    BPF: Validation error; member "AS001" in step "3-Sales Export Plan" has no active reviewers
    BPF: Validation error; member "A001" in step "1-Assumption " has no active owners
    BPF: Validation error; member "A001" in step "1-Assumption " has no active reviewers
    BPF: Validation error; member "AS001" in step "2-Production Plan" has no active owners
    BPF: Validation error; member "AS001" in step "2-Production Plan" has no active reviewers
    BPF: Validation error; drive dimension of Production Plan mismatched to previous step
    Thanks for your advise
    Suphawat

    Hi,
    In 2nd step of BPF template creation while defining step you should assign driver dimension by clicking on Define Step Region Criteria and choose owner property from that dimension.
    Have you maintained Owner property in Entity dimension.If yes you can choose driver dimension as Entity and owner property as Owner.
    Hope it helps..
    regards,
    Raju

  • BPF Template Error

    Hello ,
    We are trying to create a BPF template, but we got this error message  " Resource with identifier '65024' not found ".
    Does anyone know solution?
    Thanks in advance
    Kind Regards,
    Rasim

    Hi,
    Can you try to delete the PC_NW folder from your my documents folder. And then, go to UJFS transaction, go to your appset, and delete the private publication folder only for your user ID.
    You can find this in:
    root -> webfolders -> appsetname -> appname -> privatepublications
    You should delete from all the applications. Please take a backup before deleting.
    Hope this helps.

  • Templates and Dynamic Memory Allocation Templates

    Hi , I was reading a detailed article about templates and I came across the following paragraph
    template<class T, size_t N>
    class Stack
    T data[N]; // Fixed capacity is N
    size_t count;
    public:
    void push(const T& t);
    };"You must provide a compile-time constant value for the parameter N when you request an instance of this template, such as *Stack<int, 100> myFixedStack;*
    Because the value of N is known at compile time, the underlying array (data) can be placed on the run time stack instead of on the free store.
    This can improve runtime performance by avoiding the overhead associated with dynamic memory allocation.
    Now in the above paragraph what does
    "This can improve runtime performance by avoiding the overhead associated with dynamic memory allocation." mean ?? What does template over head mean ??
    I am a bit puzzled and i would really appreciate it if some one could explain to me what this sentence means thanks...

    The run-time memory model of a C or C++ program consists of statically allocated data, automatically allocated data, and dynamically allocated data.
    Data objects (e.g. variables) declared at namespace scope (which includes global scope) are statically allocated. Data objects local to a function that are declared static are also statically allocated. Static allocation means the storage for the data is available when the program is loaded, even before it begins to run. The data remains allocated until after the program exits.
    Data objects local to a function that are not declared static are automatically allocated when the function starts to run. Example:
    int foo() { int i; ... } Variable i does not exist until function foo begins to run, at which time space for it appears automatically. Each new invocation of foo gets its own location for i independent of other invocations of foo. Automatic allocation is usually referred to as stack allocation, since that is the usual implementation method: an area of storage that works like a stack, referenced by a dedicated machine register. Allocating the automatic data consists of adding (or subtracting) a value to the stack register. Popping the stack involves only subtracting (or adding) a value to the stack register. When the function exits, the stack is popped, releasing storage for all its automatic data.
    Dynamically allocated storage is acquired by an explicit use of a new-expression, or a call to an allocation function like malloc(). Example:
    int* ip = new int[100]; // allocate space for 100 integers
    double* id = (double*)malloc(100*sizeof(double)); // allocate space for 100 doublesDynamic storage is not released until you release it explicitly via a delete-expression or a call to free(). Managing the "heap", the area from where dynamic storage is acquired, and to which it is released, can be quite time-consuming.
    Your example of a Stack class (not to be confused with the program stack that is part of the C or C++ implementation) uses a fixed-size (that is, fixed at the point of template instance creation) automatically-allocated array to act as a stack data type. It has the advantage of taking zero time to allocate and release the space for the array. It has the disadvantages of any fixed-size array: it can waste space, or result in a program failure when you try to put N+1 objects into it, and it cannot be re-sized once created.

  • UDM template and Notification Rules

    Hi,
    As i am first time working with EM grid control have few question upon organizing some things for better feasibility. I am familiar with the creation of a UDM template and creating notification rules. But I am lacking in proper organization of these thing. I have been provided the events (customized) categorized say security, performance, etc. So i have created a UDM for these events separately for testing. So to create template, how shall i proceed, is there any standard process or anything that would be helpful in all means.
    I was having different ways, like as i already created UDM's
    (1) create template for each event (UDM and out-of-box),
    (2) create template for events by category (UDM and out-of-box) ,
    (3) Create one standard template for all the UDM's and out-of-box events ,
    (4) Create templates based on OS UDM , SQl UDM and outof box metric events.
    (5) Create templates based on Host and database events.
    these are of few different way in which i am having in my mind. But not sure of feasibility solution.
    Also if am not wrong templates are only for applying to targets and they are not related w.r.t notification. So w.r.t notification I would like to know is that it would be better to categorize them with in default rules or make separate rules.
    Sorry for such series of question.
    Thanks.

    Thanks Rob. I came across one more thing while i am working with metrics. I see the metrics and policy settings pages differs w.r.t database version's,
    Say for example, with in 11g database metrics and policy settings i see following metrics,
    (1) Access Violation and (2) Access Violation Status, but i dont see these in 10g version database metrics and policy settings page. In 10g i see Following metrics
    (3) Active Sessions Waiting: I/O and (4) Active Sessions Waiting: Other which i see in 11g version database metrics and policy settings page but can't see on 9i
    version database metrics and policy settings page.
    So under such circumstances if i create a template w.r.t target type say database, that would have only the selected version while creating the database. Is that like do we need to create template for each database instance ?
    As i see we have an option of including the metrics present in another database version too, but if we add those into one what would be result as few metrics one instance is not aware of and also i see one situation where in one of the metrics to check for the database instance status differs from 9i and 10G ( i mean the naming conventions) In this case if i add both , we are going to get an alert twice as i presume. How to handle such situations while creating a standard template.
    Please advise if this need to be created w.r.t target type how to create it. Is that we can create w.r.t each version of database instanc target type too.
    Thanks.

  • How to visualize relationship between templates and instanciated pages?

    Dear all,
    I built about one year ago a complex site using DW CS3 templates and nested templates (currently using CS4).
    I would now like to modify this site, but cannot remember the nested structure I defined between my various levels of nested templates, nor what instantiates pages derive from what nested template.
    This is probably obvious, but I cannot seem to find a way to visualize the relationship between the nested templates:
    - what templates is the parent of what nested template?
    - what page derives from what nested template?
    I have already spent two hours reading various help pages... nothing... How can this be done?
    Thank you in advance,
    Regards.
    Bernard

    The easiest way that I know of is this:
    Go to a page that is based on a template
    In Code View, select the beginning of the Template call code at the top of the Head, e.g. <!-- InstanceBegin template="/ (use only this fragment to get a list of the entire site pages that are based on templates)
    Search (Ctrl-F) Entire Current Local Site, Source Code, Find All
    The Results Panel will then display all pages that carries that code
    To save this list as a file, click the disk icon that appears two down from the flippy triangle on the left side of the Results Panel
    This will give you a list of all pages based on Templates, and will also indicate...in the "Matched Text" column of the Results, the Template that is in use for each page.
    You will notice that the files are listed out in alpha order, root folder top level first, then successive folders, including the Templates folder. Listings of the Templates folder show the Nested Templates and, to the right, the Templates they are based on.
    This is not a one-button solution, but should serve.
    A suggestion for your future Templates and Nested Templates is to be very explicit when you name them, for instance, "masterTemplate", "indexTemplate.dwt", "innerTemplate.dwt", "galleryTemplate.dwt", as suits your site.
    When I prepared a site for use with Contribute, every page was slightly different, and I controlled variations by making different Nested Templates. I ended up with practically one Template per html page, but it was easier to control the client's Contribut-ions that way.
    Beth

  • What is the difference between VI Template and vi that is reenterant​?

    What is the difference between VI Template and vi that is reenterant?
    From what little info I can find about them, they seem to basically do the same thing....
    What are the difference?
    What are the pros and cons of each?
    Thanks alot for the help.....

    Tarek316 wrote:
    I inherited an app that uses .vit for the purpose of having multipe separate instances.
    Thanks,
    OK, here's what happens when you call a VI Template using Call by Reference or using Invoke and Property Nodes.
    Since the VI you are calling is a template, LabVIEW creates a new instance of that VI by creating a copy of it and giving a new name. Notice in the title bar of the instantiated VI the VI name is the same as the template VI plus a number. This is the same thing you see when you open a template from the "New..." menu. So if you call the template VI 3 times, you'd end up with 5 newly instantiated VIs named, "VI Name 1.vi", "VI Name 2.vi" and "VI Name 3.vi". This is how you end up with multiple instances.
    Reentrancy only works on subVIs when they are used as a normal subVI in a top level application. Using Call by Reference or Invoke and Property Nodes to open and run a reentrant VI results in the VI only being opened once because LabVIEW will not automatically give it a new name. The new name is only generated when calling templates. Since LabVIEW can only a have a single instance of VI name in memory at a time, you'll not end up with multiple instances.
    Not sure if I can help with the know issue on OSX. If it's specific to using the Call by Reference function, you could try calling the templates using Invoke and Property nodes.
    Ed
    Ed Dickens - Certified LabVIEW Architect - DISTek Integration, Inc. - NI Certified Alliance Partner
    Using the Abort button to stop your VI is like using a tree to stop your car. It works, but there may be consequences.

  • Certified Monitoring Template for Database Instances?

    I am setting up monitoring templates on OEM 12.1.0.3 for hosts, agents, database instances etc by copying and modifying the Oracle Certified Templates using "Create Like" then apply to my targets.  There are certified templates for hosts and agents but I don't see one for Database Instances.  Is there a certified templates for Database Instances (such as metrics for tablespace used %, share pool caching %, alert etc)?

    There is no Oracle Certified template for database instances. You may want to use default (out-of-box) metric collection settings for database instances as a basis for your template.
    Here is one way:
    - Navigate to Enterprise > Monitoring > Monitoring Templates.
    - Click Create and select a database target, which still has out-of-box (default) metric settings.
    - Continue to create the template.
    Regards,
    - Loc

  • Diff btwn Monitoring Template and Notification Rules

    Can anyone tell me the difference btwn when I should use a Monitoring Template and when I should use Notification Rules? I understand that there is a calendar setup for Notification Rules, but other than that, when should I use which? They look like they do the same thing.

    With Monitoring templates, you set them once and apply them to multiple targets across your entire enterprise. So it gvies you a faclity to standardise stuff. For instance, you can create one template each for different database environments (e.g Development, Testing and Production). So each time you discover a new databases, instead of going in to database t manually define new metrics for the lot, you simply apply your already created template to them. Another example advantage is that each time your team decides that all production database tablespaces should change from a Critical of 90% to 85%, you simply change the template and reapply instead of doing it one-by-one on each database.
    With Notification Rules, you are choosing the targets and the conditions with which you want to receive notifications. For instance, you have set all your Critical and Warning thresholds for say % Tablespace Space Used. When this threshold is reached, you want to be notified using the notification method you have set. Say via email or sms. So you create a notification rule that includes this metric, specify the notification method and indicate which administrators receive that notification.

  • What is difference between Site template and web template

    What is difference between Site template and web template

    Both are almost same, are you referring to Site Definitions vs web template?, if so, refer to the following post
    http://blogs.msdn.com/b/vesku/archive/2011/07/22/site-definitions-vs-web-templates.aspx. 
    --Cheers

  • Problem with template and ie

    I'm running through a weirg problem here. I've designed my webpage and everything worked fine in chrome , firefox and explorer 8. So I saved it as a template and created a basic page with it (normal html/css here, very simple). The probleme is that now, everything is messed up but only in explorer (page not centered, big empty space added somewhere). And then, when I remove the editable regions markers ( <!-- TemplateBeginEditable name="head" --> <!-- TemplateEndEditable --> ...) and save it back as a normal html page without templates, it is working fine again.
    Can someone help me please?
    Thanks!

    I'm running through a weirg problem here. I've designed my webpage and everything worked fine in chrome , firefox and explorer 8. So I saved it as a template and created a basic page with it (normal html/css here, very simple). The probleme is that now, everything is messed up but only in explorer (page not centered, big empty space added somewhere). And then, when I remove the editable regions markers ( <!-- TemplateBeginEditable name="head" --> <!-- TemplateEndEditable --> ...) and save it back as a normal html page without templates, it is working fine again.
    Can someone help me please?
    Thanks!

  • Few questions on Templates and Favorites

    Experts,
    Few fundamental questions on Templates and Favorites...
    1) Can Favorites be shared with other users?
    2) Can Templates be transported across systems (Dev or QA or PRD) ?
    3) Can Templates be shared across planning area ( Yes, KF names are same across planning area?
    Any insights appreciated!!!
    Thanks
    Krishna

    Hello Krishna
    1. No, favorites are user specific and are not shared. Templates are.
    2. There are no transports in the traditional sense in S&OP. So a Template can't really be transported. What you can do, however, is open a Template in DEV, for example, then log off and log back on - just this time to QA or PRD. This assumes you have the same planning area, KF etc.in each system. Now you can add it to the templates in QA or PRD ... this is how you get it from one system to another.
    3. I believe they are not shared between planning areas. If you make a planning area copy, I think they might come over but if you built a new PA2 from scratch, the ones you have in PA1 won't be there. If you want to get a planning view template from one PA to another, you basically follow the steps as in my answer to your second question. Again, for sharing a planning view Template between Planning Areas the attributes, time profiel and key figures you use have to be the same.
    Hope this helps,
    Jens

Maybe you are looking for

  • Insert statement taking more time

    Hi, Insert happening very slow after sqlldr happening in my program. Please find the below workflow of my program. 1) SQLLDR will be called, it will insert around 4 lakhs records in 'TEMP" table using direct path load.Response time is good here. 2)Af

  • How to Prevent duplicates on Combination of Lookup columns in sharepoint 2010 using infopath 2010 form.

    Hi All, I have list with some Lookup columns like  City, Pin, and Text Column Name. All these are required columns. Now I want to prevent duplicates while submitting InfoPath form if a Combination of  City,Pin & Name. (like a Composite primary in Dat

  • Oracle 8i  Service Start problem

    I have installed Oracle 8i and the service for some of the database instances don't start successfully. I'm getting error 1053 from Microsoft Management Console - stating that the service didnot respond to the start in a timely fasion. When a new dat

  • How to make visible Time Sheet link

    Hi, I want to know how to make visible Time Sheet link on portal for a particular Personnel Area so that employees of this PA can fill their Time Sheet from the portal.

  • Problem with netbeans IDE

    hey! i am a learner of j2se 5.0 and am horrible at command line compiling. so i use netbeans IDE and well it has been doing excellently till now. recently i had a porblem with ImageIcons and i found the exact problem which i was having but with repec