Assaign Mini templates to Templates

Hi,
Here is one Mini template type CRM_BILLING_ATTR is in system.i am trying to assaign this mini templates to templates.here i am not able to see Mini template type CRM_BILLING_ATTR in the drop down values.
i am able to select mini tmplate types are
CRM_BILLING_SA ; BILLING SALES AREA ASSAIGNMENT
CRM_SALES_SA   : SALES,SALES AREA ASSAIGNMENT
CRM-SHIPPING_SA : SHIPPING,SALES AREA ASSAIGNMENT
CRM_STATUS_SA ; STATUS/SALES AREA,SALES AREA ASSAIGNMENT
BUT IN DROP DOWN I AM NOT ABLETO SEE Mini template type CRM_BILLING_ATTR  FOR ASSAIGNMENT.
here template type using CRM_SALES.
path for spro-crm-.>master data->Buisness partner->templates->Assaign mini templates to templates
currenly working on crm 7.0
Please give me inputs for solving this issue
Thanks & regards
Kishore Kumar

Hi,
I assaigned  mini template of type CRM_BILLING_ATTR  to the mini template of type CRM_BILLING_SA.
i maintained values like customer group and currency in mini template of type CRM_BILLING_ATTR  .these values are not showing in BP while assaigning template to bp.
i am able to see onle sales org,dis channel,division
Thanks & Regards
Kishore Kumar

Similar Messages

  • Link to PL/SQL procedure using a Template Manager template.

    Hi,
    I need to link a portal application report (report from SQL query) to a SQL procedure that uses a template manager template. The PL/SQL procedure requires parameters. I'm not be able to create a link based on a PL/SQL procedure. The only solution I found is to setup a link to a Form based on that procedure. But the form is only used to call the PL/SQL procedure by clicking the submit button and redirect to the template.
    Another question:
    Is it planed to support dynamic links based on column conditions?
    I'm using Portal release 3.0.7.6.2.
    thanks in advance
    Jens

    Jens,
    You may want to search the Oracle9iAS Portal Applications forum. It may have the answer you are looking for. This forum is for questions related to the Portal Development Kit.
    Thanks,
    Sue
    Sue

  • Report Template, Column Template, Column Template Condition

    I have a template, Standard Revenue from Standard, I have cloned for a Classic report.
    Application ###>Shared Componets>Templates>Edit Report Template
    Column Template 1 looks like:
    <td#ALIGNMENT# headers="#COLUMN_HEADER_NAME#" class="t1data_revenue">#COLUMN_VALUE#</td>
    I have set Column Template 1 Condition to:
    "Use based on PL/SQL expresiion"
    I have tried several expression in "Column Template 1 Expression" - last one is:
    case
    when #COLNUM# <= 2 then false
    when #COLUMN_VALUE# < 0 then true
    else false
    end case;
    I am trying to use the value in "Column Template 2" when to value of the #COLUMN_VALUE# < 0
    where "Column Template 2" is :
    <td#ALIGNMENT# headers="#COLUMN_HEADER_NAME#" class="t1data_revenue_negative">#COLUMN_VALUE#</td>
    I get the following error when I run the page:
    ORA-01403: no data found
    and
    ERR-1025 Error processing PLSQL expression. case when #COLNUM# <= 2 then false when #COLUMN_VALUE# < 0 then true else false end case;
    Any help will be appreciated.
    thank you,
    jwm

    Hi,
    That's actually easier. See: [http://apex.oracle.com/pls/otn/f?p=267:60]
    The SQL for both reports is:
    SELECT EMPNO, ENAME, NVL(SAL,0) SAL, NVL(COMM,0) COMM
    FROM EMP
    ORDER BY EMPNOThe SAL and COMM columns have been formatted using:
    999G999G999G999G990D00For the Row Template, the Row Template 1 setting contains an empty space (you have to have something in there otherwise Apex adds back in a default row containing five cells!). The condition for this is:
    TO_NUMBER('#COMM#','999G999G999G999G990D00') < 100The template will see the data as a string, so we use the same number format to convert that string back into a number and compare this to 100. If we didn't use formatting on the numbers and we are sure that every row contained a number (hence the use of NVL()), then you could use:
    #COMM# < 100Row Template 2 contains the format for the rows that need displaying:
    &lt;tr&gt;
    &lt;td class="t18Data"&gt;#1#&lt;/td&gt;
    &lt;td class="t18Data"&gt;#2#&lt;/td&gt;
    &lt;td class="t18Data" style="text-align:right"&gt;#3#&lt;/td&gt;
    &lt;td class="t18Data" style="text-align:right"&gt;#4#&lt;/td&gt;
    &lt;/tr&gt;and is unconditional.
    The only other settings on the Row Template are the Before Rows:
    &lt;table class="t18Standard" style="border-collapse:collapse; border:1px solid black;"&gt;
    &lt;tr&gt;
      &lt;th class="t18ReportHeader"&gt;Empno&lt;/th&gt;
      &lt;th class="t18ReportHeader"&gt;Ename&lt;/th&gt;
      &lt;th class="t18ReportHeader" style="text-align:right"&gt;Sal&lt;/th&gt;
      &lt;th class="t18ReportHeader" style="text-align:right"&gt;Comm&lt;/th&gt;
    &lt;/tr&gt;and After Rows:
    &lt;/table&gt;Of course, you will note that the record counters at the bottom still show the number of records in both reports - as the SQL still outputs the same data, this doesn't change.
    Andy

  • Output Module templates: Hidden templates?

    I'm looping through the array of outputModule templates in AE and it is listing templates that do not show up in the list of available templates. When I alert the names of the templates it displays all of the templates that you see normally and then lists additional templates that are hidden and have names like: "_HIDDEN X-Factor 16".
    Any idea what this is or why they are in the array?
    var templates = app.project.renderQueue.item(1).ourputModule(1).templates;
    alert("Templates: " + templates.length");  //tells me that there are 14 templates when there are only 8
    for(i=1; i<= templates.length; i++){
         alert("Template Name: " + templates[i]);

    I've come across those before. Not sure what internal use AE has for them, but they are internal specific. I modified my function to not include them when collecting output modules into an array. They are always at the end of the list so simply changing your loop to stop short by the total number of unwanted items will work. I believe there are 6-8 of these hidden items from what I recall. You will run into hidden stuff like this from time to time when accessing different areas of AE.
    var templates = app.project.renderQueue.item(1).ourputModule(1).templates;
    alert("Templates: " + templates.length");  //tells me that there are 14 templates when there are only 8
    var templatesLength = templates.length - 6; //Change 6 to the actual number
    for(i=1; i<= templatesLength; i++){
         alert("Template Name: " + templates[i]);

  • Generic Column Template - Column Template Conditions

    Hi,
    I have the following sql report snippet (as an example):
    select a,b,c,apex_item.checkbox(1,active_flag,DECODE (active_flag, 'Y', 'CHECKED','')) as "Active"
    from tableA
    Attached to this report, is a report template which I am trying to attach Column Template Conditions as I basically want to display all rows that have an active flag of 'N' as red or leave as default colour but unfortunately I can't seem to get this to work.
    I believe my Column Template Expressions are not correct as I have also tried "ACTIVE" = 'N' and still no luck.
    I have the following setup within the Generic Column Template, i,e:
    Column Template 1 = <td class="t12datavalue"#ALIGNMENT# style="background:red">#COLUMN_VALUE#</td>
    Column Template 1 Condition = Use based on PL/SQL Expression
    Column Template 1 Expression = '#1' = 'N'
    Column Template 1 = <td class="t12datavalue"#ALIGNMENT#>#COLUMN_VALUE#</td>
    Column Template 1 Condition = Use based on PL/SQL Expression
    Column Template 1 Expression = '#1' <> 'N'
    Any ideas what I could be missing?
    Thanks,
    Tony.

    Hi Tony,
    I think the issue here might be because the field you are trying to evaluate in the column template is a Check box. I tried this and it worked :-
    select a,b,c,apex_item.checkbox(1,active_flag,DECODE (active_flag, 'Y', 'CHECKED','')) as "Active",active_flag
    from tableA
    In the report attributes set the second active_flag column to not show (i.e. the one that is not the check box).
    In the Column Template
    Column Template 1 = <td class="t12datavalue"#ALIGNMENT# style="background:red">#COLUMN_VALUE#</td>
    Column Template 1 Condition = Use based on PL/SQL Expression
    Column Template 1 Expression = '#ACTIVE_FLAG#'='N'
    Column Template 1 = <td class="t12datavalue"#ALIGNMENT#>#COLUMN_VALUE#</td>
    Column Template 1 Condition = Use based on PL/SQL Expression
    Column Template 1 Expression = '#ACTIVE_FLAG#'='Y'
    Regards
    Paul

  • Templates as template parameters

    In the Sun Workshop(TM) Compilers C++ 6 Readme there is a list of Standards which are not implemeted ,among them:
    Template template parameters (templates as template parameters).
    Is there any workaround to it instead o changing all my source code?

    when will templates as template parameters be < supported?
    Template template parameters are on the list of things we want to do for the release after Sun One Studio 7, Compiler Collection(formerly called Forete Developer 7). We can't promise we will be able to implement it in time for that release, but we will try. The number one priority for Forte Developer 7 is compile-time performance.
    This was asked before: <http://forum.sun.com/thread.jsp?forum=5&thread=7350>
    - Rose

  • My Template in Template Chooser

    Hello,
    I installed Pages 09 and i can't see My Templates in Template Chooser. The folder in the correct location exists. I tried to save a new template in folder (after forcing permission read/write to my user), but the "My Template" folder is still invisible in Template Chooser.
    Please help.
    Thanks.

    Resolved. I installed trial version by download from Apple site, then i bought iWork09 italian version.
    This has caused a bit of confusion in "My templates"/"Miei Modelli" folder....
    Deleted all and reinstalled. It's all OK.

  • Can you have template inside templates

    hi,
    the templating is very cool but now I want one main template with buttons / pics and want a few templates which include the main template . these templates are for example a master / detail or tree /master /detail
    thanks edwin

    Maybe the declarative component concept can help your scenario.
    You create a template and a bunch of declarative components that you can use in it.

  • To decide save site as a template, web template or site definition

    hi,
    I have to create a generic site template which has few tabs in the home page and on click of these links/tabs
    in this site template it will navigate to the sub sites created under that[this generic site template shud contain 3 sub sites -
    [1 blog, 1 search center sub site, meeting workspace as tabs in the site template’s top navigation] and
    a) 2 Doc Libs
    b) 2 splists by default present in this site template [ most prob. its a team site template]
     What should be the correct approach for creating this site template:
     I have thought of implementing using:
     a) save site as a template and upload this wsp into the solution gallery. and based on this site template
    i will create new subsites. one problem i will be facing is that, mine is a publishing site template not team site template.
     b) create a  web template having the above subsites and doc libs and splists
     c) last option is to create a  site definition [ complex ]
    which one should i choose, assuming that, there would be future changes from customer side in the
    site template.like, adding a new splist, sp doclic or a new custom web part.
    in that case, adding a new addtion to the already existing site template will not affect/reflect the already running
    sites' content.
    only those new sites which is created  based on the updated site template would be having the new additions 
    implemented.
      help is highly appreciated.

    Hi,
    From your description, the most concern you might have is that customers will have the requirements to add other components into their sites and created with them afterwards.
    Since SharePoint 2010, it is recommended to take use of something like “a la carte” pattern to manage SharePoint sites. If there are needs to add sites, lists or other components,
    we can make them as solution(.wsp) and deploy to our sites. By doing this, we will be more flexible and easier to manage the features and structure of sites.
    So you can just create a site template with simple structure and deploy the solutions you want after sites created.
    Here are two links about
    Plan for sites and solutions for your reference:
    http://technet.microsoft.com/en-us/library/cc789336(v=office.14).aspx
    http://technet.microsoft.com/en-us/library/ee476993(v=office.14).aspx
    What’s more, you can take a look at the two links below about
    Custom Web Templates and Custom Site Definitions:
    http://msdn.microsoft.com/en-us/library/office/aa979683(v=office.14).aspx
    http://sharepointchick.com/archive/0001/01/01/site-definitions-vs.-webtemplates.aspx
    Thanks
    Patrick Liang
    TechNet Community Support

  • Creating template from template / editable regions

    Hello all,
    I'm hoping you can help me.
    I am creating an online clothing shop website and am having trouble with creating category pages.
    I have created the template with all headers, logos, footer, a spry menu etc.
    I have then from the template (via new - Page from template etc) pages for mens / womens / shoes
    This part is all fine.
    However each of these pages ie. the 'mens' will have pages per category created from it for mens shirts, mens top etc.
    For example I need a list of each category on the mens page that I dont want to appear on any other pages, just all of the mens category pages (tops, shorts etc) and this will also be done for the womens pages.
    I saved the 'mens' page as a template but due to the section that the category list being in an 'editable region' when I have created new pages from the 'mens' template the changes wont filter through to each category page.
    How can I insert a category list into the 'mens' template that will reflect the changes I make in the category pages? As I don't want to manually update each individual category page.
    I hope this makes sense and someone can help me out
    Thanks

    What is your skill level with HTML and CSS?
    I saved the 'mens' page as a template but due to the section that the category list being in an 'editable region' when I have created new pages from the 'mens' template the changes wont filter through to each category page.
    This is not a good start. You do not want to begin using nested templates for anything.
    One simple way (although not the optimal way) to do what you want to do is to make the place on the page where you want the lists to appear into an editable region in the template.  Then create a variety of Library items (in DW) each of which contains only the list for each of your categories.  On the appropriate child pages, insert the associated list into the editable region. So, for example, the men's page will have the men's list, etc.
    A Library item is like a mini-template in that changes made to any given Library item are automatically propagated to all instances where that Library item is being used.
    Is that what you are after?

  • Adding Description in Upload Template & Input template

    Hi experts,
    In my project i have a situation where the user wants to Upload the Description also , which is not a Master Data type which keep on changing.
    So the issue is How to Upload the description via Flat file Upload.
    Second is the same Description needs to be there in INPUT Template also which the user wants to input based on the situation so this should be a dynamic field rather than a Static Master Data field.
    I tried inserting Comments option , But here i have some doubts like,
    1. Can i get these Comments in reports as a Column against Each Row i.e
      Customer     sales Region    Order 1    Comment 1  1000
      Customer 2  Sales region 2  order 2    comment 2   2000
    2. I know that when u copy this from Version A to B comments are not copied , Is there any Standard way to copy Comments also.
    Your opinions are appreciated.

    Dear Krishna Chaithanya,
    I will try to answer your question:
    1. Can i get these Comments in reports as a Column against Each Row i.e
    Customer sales Region Order 1 Comment 1 1000
    Customer 2 Sales region 2 order 2 comment 2 2000
    ==> You could retrieve comments data in BPC Excel through EVCOMM() function. Those syntax can combine with EVDRE() function. BPC always keep a history of comment. For example: You sent one comment is "ABC" and then update it, BPC keep two data and you will see the last data into BPC Excel.
    2. I know that when u copy this from Version A to B comments are not copied , Is there any Standard way to copy Comments also.
    ==> Maybe you can find copy comment package which SAP provide it as default and you have to add it manually.
    Kind Regards,
    Wandi Sutandi

  • Can you change the language shown in templates, all templates in pages are in Spanish not English?

    Every time that I use pages it offers me templates but when I go to use them they are always displayed in Spanish and not in English.
    Does anyone know how I can change this please?

    It's pseudo-latin filler text and can't changed.  You need to create you own english content to replace the filler.
    http://en.wikipedia.org/wiki/Lorem_ipsum

  • Nesting Templates: Child-Template Pages not Fully Responding to Editable vs. Un-Editable Regions

    M'kay, so first and foremost, all of this is being done within Dreamweaver CS5. How I might explain this is that I have a series of Master-Templates for my website, accompanied then by Child-Templates linked off of / nested from my Master-Templates. So far this is going wonderfully, that is, until I try to make a page from one of my Child-Templates.
    The page from my Child-Template accurately comments-out an un-editable region (Region in which was editable within the Master-Template, but left as ONLY editable within the Child-Template) so long as I add an EDITABLE region WITHIN it. Under the circumstance that I DO NOT add an editable region within the Master-Template's editable region, the region within the Page is still appearing editable.
    For example:
    Master Template:
    <!-- TemplateBeginEditable name="ChildTemplateCSSLinks" -->
         Child Template CSS Links Here.
    <!-- TemplateEndEditable -->
    Child Template:
    <!-- InstanceBeginEditable name="ChildTemplateCSSLinks" -->
         Child Template CSS Links Here.
         <!-- TemplateBeginEditable name="ChildPageCSSLinks" -->
              Child PAGE CSS Links Here.
         <!-- TemplateEndEditable -->
    <!-- InstanceEndEditable -->
    Child Page:
    Child Template CSS Links Here. (Accurately appearing Un-Editable - {Master-Template's editable region tags accurately appearing invisible})
    <!-- InstanceBeginEditable name="ChildPageCSSLinks" -->
         Child PAGE CSS Links Here. (Accurately appearing Editable)
    <!-- InstanceEndEditable -->
    This is an example of an editable regions that WORKS. In the Child-Page the "Child Template CSS Links Here." IS appearing commented out and therefore un-editable within the Child-Page, like it's supposed to be. This then allows the "Child PAGE CSS Links Here" to be ACCURATELY editable within the Child-Page.
    Now for an example of what DOESN'T work:
    Master Template:
    <!-- TemplateBeginEditable name="ChildTemplateCSSLinks" -->
         Child Template CSS Links Here.
    <!-- TemplateEndEditable -->
    Child Template:
    <!-- InstanceBeginEditable name="ChildTemplateCSSLinks" -->
         Child Template CSS Links Here.
         (As you see, I have NOT added an additional editable region within this Master-Template's editable region. This is an area that is ONLY supposed to be editable within the Child-Template and NOT the Child-Page, which SO FAR appears to be accurate.)
    <!-- InstanceEndEditable -->
    Child Page:
    <!-- InstanceBeginEditable name="ChildTemplateCSSLinks" -->
         Child Template CSS Links Here.
         (For some reason, ONLY so long as I DO NOT add an additional Child-Template-editable-region within this Master-Template's editable region, this area is STILL appearing visible as well as editable within the Child-Page.)
    <!-- InstanceEndEditable -->
    So, under this circumstance, it seems that the only way I can leave a Master-Template's editable region ONLY editable within the Child-Template and NOT editable within the Child-Page is by leaving an ADDITIONAL editable region produced via the Child-Template somewhere within EVERY SINGLE editable region produced via the Master-Template. Unless I am doing something seriously wrong, this so far appears to be a potential defect/bug within Dreamweaver CS5. I can't imagine how this would be accurate, otherwise Child/Nested-Templates would not be possible to make. What might I be doing wrong? Is there any way that I can specify in the Master-Template that an Editable Region is ONLY Editable within the Child-Template and NOT within further Child-Pages (A Page based off of the Child-Template)? Or perhaps is there a way that I can specify in the Child-Template that an editable region WILL NOT be editable within the Child-Page? Furthermore, no, I DO NOT want to make them "Optional Regions," so please do not suggest that.
    I know that this is all probably a bit confusing, but hopefully the examples above will help more than the descriptions aside. As you can probably assume, this is definitely a HUGE complication within my website if there doesn't end up being a solution, especially with all the time I have put into making the Child-Templates that I hope to rely on. It really would be a bit ridiculous if I had to script-in an additional editable region within every single Master-Template-editable-region available within my Child-Template just so that I may update my Child-Template, furthermore allowing my edits to drop down to my Child-Pages, especially since it would maintain content that I never wanted to be editable within the Child-Page in the FIRST place.
    Some help would be sincerely appreciated, and as soon as possible, if I might ask politely.
    Thank you. Sincerely,
    ~ Miss Cat

    =____= I cannot believe that I am saying this, after writing ALL of that up, but thanks to "Dreamweaver CS5 for Dummies," I just learned that if you place: @@(" ")@@ within the Child/Nested Template's editable region that you DO NOT want passed down to your Child-Pages, it won't appear editable. Goodness knows why such an inconspicuous formula was the answer, but I guess whatever works. ...WHY WAS THIS INFORMATION SO DIFFICULT TO FIND?!?!?!?! @____@ Information on Nested Templates in general seems rather difficult to find, however, so I'm glad I figured this out /not ever a full hour/ after writing all this up and posting it. #__#  ...At least my Child-Templates can work thoroughly now, though. So... Scenario FIXED. ^^
    I only hope now that such information will appear helpful to anyone else hunting for this information via Google or other Search Engine in the future. And if there is anything at all that I am still officially missing, then do feel free to add it to the feed and let me know, because the last thing I need right now are more surprise difficulties to equally slow down the productivity of this massive project I've been working on... @___@ ..But so far things seem to be going good. ^^ So I can settle myself unbelievably grateful that there ended up being a solution to this ridiculousness after all.
    Sincerely,
    Miss Cat
    [signature promo info removed by moderator]

  • Problem deleting search object connector template in template modeler

    Hi Experts
    By mistake I have created same search object connector in two different software components. Now in adminstration cockpit, template modeler when I try to create a connector, error message is displayed about the conflict in of same object names. Now I want to delete the business template under ESH_COMMON_OBJECTS, which I am not able to do. Please help me out
    Thanks in advance!!
    Goutham

    I resolved it. if delete is disabled,we can delete or rename the template after selecting the option 'resolve conflicts' in 'actions' dropdown. But even this didn't work with ESH_COMMON_OBJECTS templates, so I have created new template with different name.

  • Different Output of the template from Template Builder and Oracle Apps.

    Hi,
    I have created a template with a page layout of 11" X 17" this template has around 18 columns.
    When i load the XML data and run it from XML Template builder 5.6.2 the output is fine but when I run it through oracle applications i get different output basically the output from oracle applications comes in 7 pages (First page has half page output , 2 nd page has 3/4th page output.....) where as from XML template builder the output comes in 6 Full pages.
    Wher am i going wrong.
    Thanks in Advance.

    The output is in PDF format.

Maybe you are looking for

  • Drilldown Issue

    Hi I am using drilldown from table to a chart. In table i am showing 'Country' & in chart i am showing 'States' for the selected country. Now i want to show selected country in the chart. User gets confused on which state is selected, so to avoid thi

  • Service Disconnect for Late Bill Pay

    VERIZON IS AMAZING!!!!!!!!!!!!!!!!!!!  They are quick to disconnect you when you do not pay on time. I was hospitalizedand just got out yesterday. This morning my internet and TV were diconnected and I immediately paid the bill online (using my At&T

  • Display year-month and week information

    Hi, In my application, a resource is assigned to some task between lets say.. 1-jan to 29th feb in 2008. I should get the o/p as 01-2008 1 RESA 01-2008 2 RESA 01-2008 3 RESA 01-2008 4 RESA 01-2008 5 RESA 02-2008 5 RESA 02-2008 6 RESA 02-2008 7 RESA 0

  • Internal Error message - Need help please

    I have the administration aspect of my site done. It tests wonderfully on my testing server. Once I uploaded it to the web-server I get this error: Error: Internal error. Developer Details: tNG_update.getLocalRecordset: Error message: No database sel

  • How to create dublicate row in af:table ?

    Hi All, In my use case i have to add one custom button name as duplicate just above of af:table where user have option to click that button to create a row in table which contains duplicate value of the current row. How would i achieved this scenario