Display on page several territory hierarchies?

Hi,
We've tried to figure out is it possible to use several territory hierarchies on Contact page? We've implemented hierachy so that parent territory is district and level under that is department:
Parent territory district could be one of the following:
Helsinki
Oulu
Lahti
Next territory hierarchy level is department. If district is Helsinki then available departments could be:
Kallio-Käpylä
Lauttasaari
Eira
So Contact page should contain following fields:
District -> End-user could see parent territories and she could select one; let's say it is Helsinki.
Department -> At this phase after selecting district 'Helsinki', she could select only departments which belong to district Helsinki.
So is there anyway to implement with territories above issue?
BR Mervi

In CRMOD, we have a concept of cascading picklist, where selection of one picklist values will provide a selection of values in another picklist.
You can go to Admin- Application Customization -> Contact -> Cascading picklist and to the required configuration. Once code, please add these two fields on the layouts and verify if this is what you are looking at.
Hope this helps..
Regards,
Som

Similar Messages

  • Displaying a page in a particular region

    Hi
    We have several tabs for different pages. One of our tabs is "Inofrmation and resources" within this page we have a region on the left handside with a list of departments within the company. I'd like to be able to open a new page within the right hand side region of this page depending on which department you click on.
    I've tried to create seperate pages but when these open we loose the tabs at the top. I dont want to be recreating the tabs on all the different pages we create.
    So my question is how can I display a page within a particular region depending on which link is clicked?

    Hi Neil,
    How about having two portlets inter-communicating with each other ... Did you have a look at the Site Indexing Portlet available on the Portal Integration Solutions site (http://www.oracle.com/technology/products/ias/portal/point.html) ?
    thanks,
    Harsha

  • How to display multiple page images in forms ?

    Hi,
    What is the best method to display multiple pages image(100 pages) in forms 10g?
    Thanks

    Hello,
    <p>this is a link to a tutorial that contains several sample forms.<br> One of them (ALBUM.FMB) demonstrates how to display hundred of images.<br><br>The tutorial is in French, but you can simply download the samples on the introduction chapter</p>Francois

  • Problem displaying error page of web.xml when using JSF, Ajax4jsf

    Hi,
    My application is using MyFaces, RichFaces and Ajax4jsf. When i try to display error page configured in web.xml, i am getting exception "Error while processing error page".
    my web.xml contents are as follows:
    <?xml version="1.0"?>
    <web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
    <filter>
    <display-name>RichFaces Filter</display-name>
    <filter-name>richfaces</filter-name>
    <filter-class>org.ajax4jsf.Filter</filter-class>
    </filter>
    <filter-mapping>
    <filter-name>richfaces</filter-name>
    <servlet-name>faces</servlet-name>
    <dispatcher>REQUEST</dispatcher>
    <dispatcher>FORWARD</dispatcher>
    <dispatcher>INCLUDE</dispatcher>
    </filter-mapping>
    <filter>
    <filter-name>extensionsFilter</filter-name>
    <filter-class>
    org.apache.myfaces.webapp.filter.ExtensionsFilter
    </filter-class>
    <init-param>
    <description>
    set the size limit for uploaded files. Format: 10 - 10 bytes 10k
    - 10 KB 10m - 10 MB 1g - 1 GB
    </description>
    <param-name>uploadMaxFileSize</param-name>
    <param-value>100m</param-value>
    </init-param>
    <init-param>
    <description>
    Set the threshold size - files below this limit are stored in
    memory, files above this limit are stored on disk.
    Format: 10 - 10 bytes 10k - 10 KB 10m - 10 MB 1g - 1 GB
    </description>
    <param-name>uploadThresholdSize</param-name>
    <param-value>100k</param-value>
    </init-param>
    </filter>
    <filter>
    <filter-name>Seam Redirect Filter</filter-name>
    <filter-class>org.jboss.seam.servlet.SeamRedirectFilter</filter-class>
    </filter>
    <filter>
    <filter-name>KTServletFilter</filter-name>
    <filter-class>com.kenexa.core.system.KTServletFilter</filter-class>
    </filter>
    <filter-mapping>
    <filter-name>extensionsFilter</filter-name>
    <url-pattern>*.jsf</url-pattern>
    </filter-mapping>
    <filter-mapping>
    <filter-name>extensionsFilter</filter-name>
    <url-pattern>/faces/*</url-pattern>
    </filter-mapping>
    <filter-mapping>
    <filter-name>Seam Redirect Filter</filter-name>
    <url-pattern>*.jsf</url-pattern>
    </filter-mapping>
    <filter-mapping>
    <filter-name>KTServletFilter</filter-name>
    <url-pattern>*.jsf</url-pattern>
    </filter-mapping>
    <!-- seam Listeners -->
    <listener>
    <listener-class>org.jboss.seam.servlet.SeamListener</listener-class>
    </listener>
    <listener>
    <listener-class>com.kenexa.kr.web.KRServletListener</listener-class>
    </listener>
    <servlet>
    <servlet-name>faces</servlet-name>
    <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
    <servlet-name>faces</servlet-name>
    <url-pattern>*.jsf</url-pattern>
    </servlet-mapping>
    <error-page>
    <exception-type>java.lang.Throwable</exception-type>
    <location>/rc/systemError.jsf</location>
    </error-page>
    </web-app>
    As per the configuration, when exception is thrown out of the application, container tries to display systemError.jsp page. If we want to include the JSF tags in systemError.jsp page, the request should pass through FacesServlet, so in the <error-page> <location> tag systemError page is specified with the extention systemError.jsf though it's actual extention is .jsp
    When exception is thrown from the application container invoke the error page but, while rendering systemError.jsf page exception is thrown saying "Exception processing error page "systemError.jsp" "
    To solve this problem i've gone through several forums, materials.
    In one forum a guy said, JSF1.1 spec has some problem in displaying error pages. To solve this don't write <f:view> tags in the error page, use <f:subview> intstead. By reading this, i again changed the contents of systemError.jsp page replacing <f:view> by <f:subview>. But the error is still repeating.
    Finally what i found is, when we use Ajax4jsf in the application, its AjaxViewRender class is throwing exception while rendering error pages configured through web.xml.
    So what i did is i changed error page extention from .jsf to .jsp in the <location> tag. Now jsf won't come in the picture and remove JSF related tags from the systemError.jsp page.
    <error-page>
    <exception-type>java.lang.Throwable</exception-type>
    <location>/rc/systemError.jsp</location>
    </error-page>
    Any comments are welcome----------------------------------------------------------------

    I too iam facing the same problem could you advise if you have found any solutions
              -Ram

  • Tray displaying all Pages

    It would be awesome if there was a tray or tab that displayed all pages so we wouldn't have to keep jumping back and forth between the site map and page.

    When this happens with a Word document opened in Pages is is usually due to the tables in Word is different handled in Pages. Word can have tables spanning over many pages and cells spanning over several pages and Word happily split the cell. This Pages can't do. Pages can only split between rows. If the cell is too large the table will not split properly. The table will only be partly shown.
    Ask the creator of the Word document to split the rows/cells in smaller parts and Pages will be able to open the whole document.
    You can also create a Custom paper size the are 3 - 4 - 5 - times longer than the usual size and change the paper size for the document . Now you will probably be able to split rows so that are not so high . When you are done you change the paper size again.

  • Display php page ok vs ko because of oracle client or cache or buffer size?

    Hello everybody,
    Excuse me for my english,
    I searched every where but ...
    linux ubuntu
    php 4.4.6
    apache 2.2.4
    oracle client XE
    VS
    win xp
    php 4.4.6
    apache 2.2.4
    oracle client 9i
    same database 9i
    a sql query :
    - select statement cost 25
    - execution time : 0,2 sec
    - rows number : 4238
    My problem : When I want display in an array all the résults in a web page with php, I always manage to display my page via win box
    BUT on linux box the display depends :
    1 - firsts times : on IE (impossible d'afficher la page) on ff (white page)
    I tried to change my directive in php.ini and httpd.conf and try to display this page nothing better
    2 - the more I tried to display the page, the more the query is execute (I log my php code, and it executs until the last line). After several tried, I manage to display my page. But if I execute other queries and come back to my page -> etape 1.
    in my php code, I use successively :
    OCIPLogon,OCIParse,ocisetprefetch(5000),OCIExecute
    Is someone had the same problem?
    Edited by: crazykangourou on Oct 24, 2008 1:08 AM : Indications on php code

    Make sure to check the return code from each OCI call. If an error occurs, try to
    resolve the problem.
    The version of the OCI8 extension with PHP 4.4 is unstable. If possible, upgrade
    at least OCI8. See the section "Installing PHP 4 on Linux" on the bottom of page 81
    of the current version (1.4) The Underground PHP and Oracle Manual

  • XML Publisher report output in RTF format does not display full page

    Hi,
    We have one XML Publisher report, the output of report in RTF format is not getting displayed in Full Page in normal way (MS Word -->View menu --> Print layout) but we can see full page display when we do MS Word -->View menu --> Outline.
    Appreciate your valuable inputs on this.
    Is this a template issue or any profiles needs to be set.
    Thanks
    Vijay

    Do you have any header and footer on your template?
    If you have any header and footer then try to adjust it as of to display full page.
    Thanks
    Yasar

  • SharePoint Foundation 2010 - Display Site Pages on the Quick Launch

    how do you display site pages on the quick launch?
    sukai

    Try below:
    http://sharepoint.stackexchange.com/questions/28056/how-to-display-subsites-and-their-sitepages-via-the-quick-launch-navigation-menu
    http://office.microsoft.com/en-in/sharepoint-server-help/configure-the-quick-launch-for-site-navigation-HA102130960.aspx
    http://stackoverflow.com/questions/3636366/display-quicklaunch-on-webpartpage-in-sharepoint-2010

  • Can display Web pages from servlet but not applet?

    I have been able to display real-world Web pages from a simple servlet using JDeveloper 3.0, but can't figure out how to do the same from an applet. Any hints?

    My previous post had the detail...Probably a simple question from a relative novice. I'm having a problem just viewing web pages by calling them from a "list" of URLs in an applet. I built an applet with a split pane that has a JTree on one side and an "HTML viewing pane" on the other. I can click JTree nodes to display local html files, but I don't understand how to display web pages from the Internet. Do I need something like HyperlinkListener to make the jump to "hyper-world"???

  • Whydo i keep getting asked to display the page ff must send info that will repeat action performed ealier this is only happening using lexolous how can i stop it thank u

    message reads
    to display this page firefox must send information that will repeat any action (such as a search or order confirmation)that was performed earlier
    resend cancel
    how do i stop keep getting this pop up

    I assume that you mean a Greasemonkey script for KoC ?
    Try [/questions/780792]

  • Displaying two pages on a single screen on iPad

    In the desktop version Adobe Reader can display two pages of a document on a single screen within the app. I hope Adobe will bring that feature on iPad which will be available if the iPad is in the landscape mode.

    In the desktop version Adobe Reader can display two pages of a document on a single screen within the app. I hope Adobe will bring that feature on iPad which will be available if the iPad is in the landscape mode.

  • How to display multiple pages in smart forms

    Hi Experts,
        I am facing one problem in Smartforms. here i am using one page & main window, Mainwindow consists  one TABLE, it contains 100 records. While printing this smartform, i am getting only one page and mainwindow was filled with only 80 records...remaining 20 records has to display in 2nd page but it was not displaying 2nd page at all.
    Can any one please help me.
    Thanks,
    sreelakshmi.

    Hi,
    Use the same page name in the general attributes-> next page of your created page.
    Thanks
    Arul.

  • How to display two pages at a time in smartform

    Hi folks,
    I have requirement that i need to display  two pages for each record of the output table . the page 1 is not simillar to page 2 . page1 contains few templates and page2 contains other templates not simillar to first one.
    my case, it displays only the first page eventhough i tried using command line.
    Is there any exact step to followed  to over come this problem.
    Please suggest the solution.
    Thanks ,
    Hemum.

    hi,
    can u please tell me how and where u are looping throuhg the internal table
    check that.
    regards,
    Ravi Valluri

  • How to display the Page Numbers in AP Check Print Report

    Hi
    I am using <?for-each@section:G_CHECKS?> at form field. But It did not works for me.
    Please guide me inthis regard.
    Thanks
    Namitha

    In your case,
    <?for-each@section:G_CHECKS?>
    Table (A word table)
    Put the Form-Fields that you want to display
    Just type 1 of 1 where you want to display the page number.
    End Table
    <?end for-each?>
    Now on Microsoft Word
    Go to Insert -> Page Number -> Format
    Select Number Format: 1,2,3.....
    Under Page Numbering: select Continue from previous section
    That should do it.
    Thanks,
    Shaf

  • WHile playing a game why am i getting this.....To display this page, Firefox must send information that will repeat any action (such as a search or order confirmation) that was performed earlier. [Resend][Cancel]......and what can i do to get it to quit?

    I am playing a facebook game called Kingdom of Camelot. This come up when I refresh the game. To my knowledge no information is sent. I need it to stop interfering with my page when i refresh . I have deleted/uninstalled my extensions and plug ins and i am still getting the message.

    Perhaps someone should report this to MarketWatch. There are ways for web developers to work around this issue (GET after POST, for example).
    This is a longstanding issue. Examples:
    [https://support.mozilla.com/en-US/questions/668932 how do i stop this-To display this page, Firefox must send information that will repeat any action (such as a search or order confirmation) that was performed earlier.?]
    [https://support.mozilla.com/en-US/questions/780884 To display this page, Firefox must send information that will repeat any action (such as a search or order confirmation) that was performed earlier]
    In past discussions about this message, I have never seen an easy solution. Arguably it should be made a user preference: those who prefer to be warned about the risk that they will double-submit a transaction or instruction on a poorly designed site can have their warning, and those who prefer to take their chances can take their chances. Not sure whether that is on anyone's "to do" list.
    Separate issue: I wasn't aware of any difference between 3.6.12 and 3.6.13, but both are riddled with security vulnerabilities so it's hard to recommend using either of them at this point.

Maybe you are looking for

  • File Receiver using FCC

    Hi All, I want to generate a file with structure like below: "100","Field1","Field2","Field3" "200","Field41","Field51","Field61" "200","Field42","Field52","Field62" Here 100 n 200 are row identifiers. My data type for receiver side is as follows: <D

  • Can't auto update applications

    I have a problem with updating applications. When i confirm an application to update itself, it downloads the new version and tries to install and relaunch but fails and gives me "__ application does not have permissions to write to the applications

  • Is there a way to put text msgs on Dropbox for archiving?

    Ray A Torch 9860 7.0.0.440 AT&T - no BIS

  • Ora-03113 on dbms_java.grant_permission in oracle 10.1.0.4

    Hi. I recently installed Oracle 10.1.0.4 enterprise edition. when I try to grant a user java permissions I get the error: ERROR at line 1: ORA-03113: end-of-file on communication channel this happens when I try to create a java source object too. I'v

  • I keep gettin sign in prompts for iCloud since I updated to Yosemite

    I keep getting sign in prompts for iCloud since I updated to Yosemite.  I repeatedly get them for Face Time and iMessage also. Haven't found any way to stop them.  I click cancel on every one and then they show up again about 5 seconds later. I final