Org Chart in tree structure

Hi Friends,
How to Create a tree structure  for org. unit in  web dynpro ABAP
and call the tree in F4 Help of a input box.

Good advice there guys.
I myself just finished such an implementation at one of my customers. It took 2 days to complete. I can't give you the solution as the customer retains the immaterial rights for the solution but I thought I would tell you the steps involved to get you on the right track.
1. Context. Build a context node that on the top level has the orgunit, it's attributes (such as otype, objid, stext, etc) and the recursive node that points to the orgunit node. Inside the orgunit create a node for the position. Inside the node place the attributes for the position (like before) and a recursive node that points to the position node. Finally inside the position node place a node for the person and it's attributes (like before), but no recursion node this time.
2. Layout: Place a tree element in your view. Inside the tree element insert two node types and one item type. First node is for orgunit, second one is for position. The only item is for the person. You might want to add respective icons, to get nicer UI. Add the load children action for orgunit and position. Depending on what you want to select from the tree, add a select action for either orgunit, position or person.
3. Code #1: as Chris points out, use RH_STRUC_GET to get the organization tree. I myself used O_S_P. You might want to create a FM that returns all 3 itabs returned by RH_STRUC_GET to the WDA. Create a freely programmed value help as suggested in many threads, it's pretty straight forward. In the WDA utilizing the VH, mark one or more items in the context as freely programmed VH and connect to your implementation.
4. Code #2: At start up, for example in the WDDOINIT method, create only the root node and call it for example "All organization units". Then create one action that is called when children nodes have to be loaded, one method for figuring out what do when a child is being requested (and what kind of child: orgunit, position or person) and finally a method for actually creating the node.
5. Code #3: The magic comes from RH_STRUC_GET. Use the STRUC itab at runtime to find the objects at certain levels and to determine their parent(s) and children. The most important values in the STRUC itab in this case are LEVEL, OTYPE, OBJID and PUP.
Pretty straight forward and the solution is quite nice indeed. I'm sorry if I forgot something, I wrote this without access to the system.

Similar Messages

  • Download Org Chart in Graphical Structure

    Dear Experts
    Can anybody tell me how to download the Org Chart in Graphical Structure. All my options are disabled and  am unable to download and even Print outs too.
    Kindly tell me the solution for this
    Regards

    hi
    it is possible , but you should have print access , you can download the structure u see on screen on a .ps file (post script ) file and then convert to pdf via pdf converter. Ask your basis guy to help.
    Regards
    sameer

  • Shows all Org Structure in Org Unit Listing in Nakisa Org Chart

    Hi,
    We are using Org Chart 3.0SP2.
    The issue is when we search the Org Units in Org Unit listing it also shows other Org Units from other org structure which does not lie inside our selected Org Structure (already given the root org unit ID in Org chart config)
    But i cannot restrict the org unit listing because we cannot find any option to give root org unit ID in org unit listing configuration.
    How can we restrict this Org unit listing which should show only the org units below the selected org structure.
    Because already several org structure exists in back-end,but we have given one org structure (entered the root id) which we need for org chart.
    Thanks,
    Sakthi.

    Hi Sakthi,
    The search uses a listing report that pulls all active OrgUnits from HRP1000. This will include objects not within your org structure. The only way to do this is to add a data filter to the search data element that filters out these objects (e.g. filter by a short code or name). Please note that you cannot filter by the key field (ID).
    Best regards,
    Luke

  • Mapping Org Chart to a specific role

    Hi All,
    I’m in the process in implementing NAKIZA V4.1 in my company but I’m facing difficulty in one of the requirements, I have two Org Charts configured, first one (main Org Chart) is displayed for all users which it’s rooted by User ID, it’s working fine.
    My problem is with the other Org Chart (Second Org Chart) which is limited to a group of users(HR User) & it’s rooted to Org Chart root, I checked this Org Chart in the secured items & make sure it’s not displayed for all, then went & mapped it to the role related to those group of users(HR), but when I check the user access it’s still no appearing.
    I already remove the user name and password from connection string, We are using Single sign-on with logon tickets (Portal integration).
    Example:
    There are two Org Chart,
    One called Org unit Hierarchy Organization Structure ( Root ) and I need it to display it to the HR user by mapping it to HR role, in the authorization Tree I make it as Green color and  mapped it to the HR role.
    Second one called  Org. unit  Company Structure  (User Record ) and I need it to display to the Manager user by mapping it to Manager role, in the authorization Tree I make it as Red color and  mapped it to the Manager role. (working fine).
    When I log in as Manager I can see the Company Structure org chart, however when I log in as HR it does not shows me the Organization Structure,  it shows me only  Company Structure org chart.
    I’m not sure where to check more, any directions are appreciated.
    Regard.

    Hi Rami,
    Kindly provide cds.log.Based on my experience this is related on new session and to many browser open the same time.
    Please inform technical portal to change the IView configuration from http://nakisaportal/OrgChart/default.jsp to http://nakisaportal/OrgChart/logout.jsp .
    Regards
    Mohamad Firhad Samuri

  • Order of display in Org chart for ESS

    Hello,
    Is there any way to change the order of display of org chart based on per.No.
    Thanks, Abdul

    Hi Abdul,
    As name suggest ORG CHART it’s the image of your organization and its maintains certain hierarchy in SAP Standard … for e.g. You will get to see Orgunit  Then SubOrgunit  Head Position/Positions (Multipal)  Person Holding those positions.
    If you break this Hierarchy it will be difficult to trace the Employee and Duplication of records will take place …. There are Reports which displays Employee to Position and Orgunit … and the diplay of such report will be in Table and Colum Format .. it wount be in a Tree Format... you may go for Custom Development.
    But do Check these report they all are Report based on Object type.
    RHXSTR01  Organizational Structure with Positions
    RHXSTR02  Organizational Structure with Persons
    RHXEXI00  Existing Organizational Units
    ~Bhawanidutt.

  • How to store a Tree Structure in Memory

    hi all!
    I wanted to show a Org Chart on web page. Recursion is used for constructing.Based on B/S architecture,(get Org from DataBase)this is not a effective way!! How can I store a tree structure(Org object are stored as TreeNodes) in memory for recursion??? Thanks!

    My English is too poor! So I posted the interfaces blow.
    I used these interface to construct a org tree(which will displyed in browser ),but it's
    efficiency is low. (recursion)Because the org infor. are stored in database(thounds of
    orgs are stored).(I think this is the bottleneck)
    Now I want to store the tree structure in memeory! Then jsp page only needs to build the tree
    from memory!Needn't make a DbConnection every time. A timer will updated tree org(in memory)
    automatic
    So I want to use a N dimensions array to store the data (N is the number of orgs)
    but I don't konw how to make a compositor for sorting!
    after sorting .look at the matrix I poster blow(eg.)
    Matrix:(a,b,c,d are orgs 1 mean's is parents 0 means not, this is a Sparse Set huh? ^_^ )
    * a b c d
    a 0 0 0 0
    b 1 0 0 0
    c 1 0 0 0
    d 0 1 0 0
    Org tree:
    a
    b c
    d
    so O(n(n-1)/2)
    question:
    1)How to sort orgs?
    2)Any good suggestion is wanted!
    Thanks!
    interfaces
    public interface IOrg {             //entity class
    public String getName(); //get Org Name
    public String getId(); //get Org Id
    public String getLevel(); //get Org Level (as String)
    public String getParentId(); //get parent org Id
    public String getDescription(); //get the description
    public boolean isActive(); //is Org active
    Org Factory
    import java.util.*;
    * Description of the Interface
    *@author ymruan
    *@created 2002��1��4��
    public interface IOrgFactory {
    public IOrg getOrgById(String orgId);
    public IOrg getOrgByObjId(String objId);
    public Enumeration getManagers(String orgId);
    public Enumeration getManagers(IOrg org);
    public Enumeration getEmployees(String orgId);
    public Enumeration getEmployees(IOrg org);
    public Enumeration getOrgsByLevel(String level);
    public Enumeration getAllOrgs();
    public Enumeration getOrgsLikeName(String name);
    public IOrg getParentOrg(IOrg org);
    public IOrg getRootOrg(); //get Root Org
    public Enumeration getChildOrgs(IOrg org); //get Ogg's children
    public boolean hasSubOrgs(IOrg org); // is leaf
    public boolean hasActiveSubOrgs(IOrg org);
    public boolean isInOrg(String orgId, String empId);
    public boolean hasEmployees(IOrg org);

  • How do I get a specific node in Elixir org chart?

    The problem now is, how do I get a node from the org chart?  I have seen various methods like, getChild, getChildAt, getChildByName, but none of them seem to get the node I'm looking for.  Each node has a unique attribute of DistID.  I don't know how to use that or if I can to get the node I"m looking for.  If I can do that, then I will have solved my problem and have the tree load as the results come back from my web service.

    recomendation for a program that optimizes your disc
    IMO defragmenting the HD is a waste of time. I used to use Norton Speed Disk in the Mac OS 6-7 era but then gave up on that and haven't noticed any ill effects.
    iMovie has behaved OK if I have kept a few GB free on the import drive (only the very last MBs of the drive are so fragmentated that the iMovie import starts to drop frames). Another option is to import the a dedicated partition and reformat it occasionally.
    For more info and about applications see also:
    http://db.tidbits.com/article/7254

  • JPA  -  tree structure mapping    with toplink essential

    I'll try to explain it correctly.
    I store a tree structure in a database. I have just two tables:
    Node which contain a id , and some other info.
    Tree which contain a parent and child
    parent and child are ids from node.
    Since each node can have several childs, and each node can have several parents, I had try a @ManyToMany relationship without sucess.
    Here one small example of my tries :
    @Entity
    @Table(name="node")
    public class Node {
    @Id private int id;
    private List<Node> childs;
    private List<Node> parents;
    @ManyToMany
    @JoinTable(name="Tree")
    public List<Node> getParents(){
         return parents;
    @ManyToMany(mappedBy="parents")
    public List<Node> getChilds(){
         return childs;
    }But I always got several error.
    Anyone have a working example that look like mine ?
    Even after googling for several hours I still find nothing.
    If it helps, I use toplink essential for my persistance layer.

    Please see http://www.oracle.com/technetwork/middleware/toplink/index-085257.html for information on TopLink JPA support.
    So as of TopLink 11, you will need to use EclipseLink's org.eclipse.persistence.jpa.PersistenceProvider as the provider class for JPA support, which is in the eclipselink.jar.
    Best Regards,
    Chris

  • t:tree component is not rendering tree structure for my page

    Dear dudes,
    I want to create a simple tree structure in my jsf page backed by a backing bean.
    But my jsf page is getting executed but my tree is not getting displayed.
    my jsf page:<ui:composition xmlns="http://www.w3.org/1999/xhtml"
         xmlns:ui="http://java.sun.com/jsf/facelets"
         xmlns:h="http://java.sun.com/jsf/html"
         xmlns:f="http://java.sun.com/jsf/core"
         xmlns:s="http://jboss.com/products/seam/taglib"
         xmlns:rich="http://richfaces.ajax4jsf.org/rich"
         xmlns:t="http://myfaces.apache.org/tomahawk"
         xmlns:a4j="https://ajax4jsf.dev.java.net/ajax">
    <f:view>
         <html>
              <body>
                   <h:form>
                        <t:tree id="tree" value="#{mytreeBean.myTree}" styleClass="tree"
                             nodeClass="treenode" selectedNodeClass="treenodeSelected"
                             >
                        </t:tree>
                   </h:form>
              </body>
         </html>
    </f:view>
    </ui:composition>Mybacking bean:
    package org.test.tree;
    import java.util.Iterator;
    import java.util.List;
    import org.apache.myfaces.custom.tree.DefaultMutableTreeNode;
    import org.apache.myfaces.custom.tree.model.DefaultTreeModel;
    import com.srit.framework.web.BasePage;
    import com.srit.healthcare.common.lookupentity.repository.ILookupRepository;
    import com.srit.healthcare.common.tree.domain.RcareTree;
    public class MyTreebean {
         private DefaultTreeModel myTree;
         public DefaultTreeModel getMyTree() {
              return myTree=getTreeModel();
         public void setMyTree(DefaultTreeModel myTree) {
              this.myTree = myTree;
         /*public MyTreebean() {
              DefaultMutableTreeNode root = new DefaultMutableTreeNode("XY");
              DefaultMutableTreeNode a = new DefaultMutableTreeNode("A");
              root.insert(a);
              DefaultMutableTreeNode b = new DefaultMutableTreeNode("B");
              root.insert(b);
              DefaultMutableTreeNode c = new DefaultMutableTreeNode("C");
              root.insert(c);
              DefaultMutableTreeNode node = new DefaultMutableTreeNode("a1");
              a.insert(node);
              node = new DefaultMutableTreeNode("a2 ");
              a.insert(node);
              node = new DefaultMutableTreeNode("b ");
              b.insert(node);
              a = node;
              node = new DefaultMutableTreeNode("x1");
              a.insert(node);
              node = new DefaultMutableTreeNode("x2");
              a.insert(node);
              myTree = new DefaultTreeModel(root);
         public DefaultTreeModel getTreeModel() {
              DefaultMutableTreeNode root = new DefaultMutableTreeNode("XY");
              DefaultMutableTreeNode a = new DefaultMutableTreeNode("A");
              root.insert(a);
              DefaultMutableTreeNode b = new DefaultMutableTreeNode("B");
              root.insert(b);
              DefaultMutableTreeNode c = new DefaultMutableTreeNode("C");
              root.insert(c);
              DefaultMutableTreeNode node = new DefaultMutableTreeNode("a1");
              a.insert(node);
              node = new DefaultMutableTreeNode("a2 ");
              a.insert(node);
              node = new DefaultMutableTreeNode("b ");
              b.insert(node);
              a = node;
              node = new DefaultMutableTreeNode("x1");
              a.insert(node);
              node = new DefaultMutableTreeNode("x2");
              a.insert(node);
              return myTree = new DefaultTreeModel(root);
    }Also i've configured my tomahawk-taglib file in my web.xml .
    My backing bean is configured in my faces-config.xml
    But i'm not able to get my tree structure in my page .
    Any help would be appreciated.
    Regards

    Dear akash,
    yes i'm seeing the jsf tags <t:tree>
    But when i modify my jsf page , in my configuration files i'm getting the following errors:
    In web.xml
    <web-app 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"
         version="2.4">
    </web-app>
    error message:  cannot find the declaration of element web-apps
    error message: failed to read schema document http://java.sun.com/xml/ns/j2ee             http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd  because 1) couldnot find the document 2) the document could not be read 3) the root element of the document is not <xsd:schema>In another configuration file:
    <?xml version="1.0" encoding="UTF-8"?>
    <beans xmlns="http://www.springframework.org/schema/beans"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xmlns:aop="http://www.springframework.org/schema/aop"
         xmlns:tx="http://www.springframework.org/schema/tx"
         xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
                http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd
                http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.0.xsd">
    Error: cannot find the declaration of element 'beans'I'm a novice to JSF technology and plz guide me properly.

  • Nakisa Org Chart 2.1 - excluding org units from extract and saving chart

    Hi,
    Is it possible to exclude specific org units from the org chart that is extracted to Nakisa? These (and all subordinate) org units should not be included in the chart which is to be published on the intranet.
    Also, what is the easiest way to create a file (e.g. PDF, PowerPoint) of all org units and positions in the structure? I've looked into using the ChartBook functionality but this did not seem to work too well, and there was no option to Save or Print the chart.
    We have Nakisa OrgChart 2.1 SP1 running on SAP CE. This is with a staged extract out of SAP ERP which is hosted on Windows and SQL.
    Thanks.

    Thanks Stephen and Luke.
    I will look into your comments re: excluding org units from the directory searches etc when next at the customer site.
    As for the Chartbook issue - the customer is looking to create a file (e.g. HTML, PDF) of the entire org structure which they can then make available on the intranet. (They currently only have license for a couple of HR users so ESS access is not an option right now). We have looked at using the standard Print/Export options as well as the Chartbook and neither seems to work particularly well....the customer keeps referring back to how easy it is to create a HTML file using OrgPublisher....
    What is the recommended and best approach for creating a file which can be published on a company's intranet? (There are about 1000 positions/employees in total so not a huge file).
    Hopefully v3.0 is a whole lot easier to use
    Thanks, Ron

  • Regarding Tree structure display in Webdynpro ABAP

    Hi Experts,
    I am very new to webdynpro ABAP , I was asked to implement some functionalities of RWBE transaction in webdynpro , in RWBE transaction list can be displayed as Tree structure , in webdynpro how i can implement this ? using ALV UI element is it possible . Please help .
    Regards,
    Ratheesh BS

    Hi ,
    I need an output like the below
    <material number                 a1           a2        a3
              < plant                       b1          b2        b3
                 . org                        c1          c2        c3
    <material number                 A1          A2       A3
    is it possible to show the output as in this format using ALV ?.
    I have tried with the help provided by SDN , but not succeed .
    also i need to capture double click event and show the currosponding result in a seperate view.
    here material number is the parent node , plant and org were child nodes
    Regards,
    Ratheesh BS
    Edited by: Ratheesh Bhaskaran on Oct 7, 2008 4:22 PM
    Edited by: Ratheesh Bhaskaran on Oct 7, 2008 4:26 PM
    Edited by: Ratheesh Bhaskaran on Oct 7, 2008 4:29 PM

  • Tree Structure Implementation in Java.

    1>
    How should i implement a "Tree Structure" in Java Based application.?How would i map the entries to the database table?how many tables will i require for this implementation.?
    List records<String> = new ArrayList<String>();
    records.add("null");
    records.add("Product");
    records.add("Category");
    records.add("P1");
    records.add("P2");
    records.add("P3");
    records.add("C1");
    records.add("C2");
    records.add("C3");
    so how should i implement a Tree Structure for the above record set.
    //P1,P2,P3 belong to Parent {Product}
    //C1,C2,C3 belong to Parent {Category}
    Sample code provided will be helpful

    How should i implement a "Tree Structure" in Java Based application.?The quotes suggest you don't know what a tree structure is, regardless of the development language. Fix that first (your understanding of what a tree structure is). [url http://en.wikipedia.org/wiki/Tree_structure]Here is probably a good start.
    How would i map the entries to the database table?how many tables will i require for this implementation.?It depends on what your tree structure represents, in particular it depends on whether the leaves and intermediate nodes of the trees have are homogeneous (e.g. have a common interface). There is no general rule.
    I suggest you start by looking in the Java API at all the classes whose names start with 'Tree' (TreeSet and TreeMap are probably the best ones to start with) and read the documentation carefully. Then try to write some code that uses one and come back if/when you have any problems.(sorry Winston) I think this is a very bad advice.
    These classes are particular implementations, respectively of a set (in the mathematical sense) and of a map (associative table), which happen to use a "tree structure" for their internal business. Their API doesn't help building a custom "tree structure" (they may be used that way, but it's certainly not the easiest nor even a particular handy way to build tree structures).
    Maybe their implementation may be a good example of how to build a Tree structure, but they use a particular type of tree (+red-black tree), not a general one. This may or may not be the OP's case, I wouldn't bet on it.
    OP you're welcome to come back with more specific questions and details. Good luck with Java.
    Edited by: jduprez on Oct 16, 2010 2:45 PM
    Edited by: jduprez on Oct 16, 2010 2:49 PM
    After checking the Javadoc: indeed TreeSet only uses a TreeMap for its implementation, so the only one out of the two which does directly uses a tree structure in its implementation is TreeMap.
    Edited by: jduprez on Oct 16, 2010 2:51 PM
    And, to reiterate, I stand by my claim that TreeMap is not a good example of a general Tree structure: in particular it uses a tree to map keys to values, its main business is the "mapping" part, not the tree as a storage medium. Neither the keys nor the values know anything about their "children".

  • Process chains - change tree structure

    I am making a process chain for the first time. I am able to see my chain only in "Tree" format but I want to view and work as "Org Chart". How can I do it?

    I think you are talking about "Flow Chart".
    Your present setting is "Tree Display". Just go to the top menu "Setting" which is third from right, and Click on "Network Display" which is at the bottom. It will then display your process chain in the "Network" format, which is like flow charts...

  • Nakisa 4.1 - Org Chart does not display

    Hello gurus,
    I do have an issue with our fresh implementation of SOVN 4.1 (Org Chart, Build 0911012400, SAP_live build). I did set up the authentication to Logon Screen, and configured the org chart settings (very basic). I did not set up any Role mapping. My connection strings all have the same parameters, including the RFC username and password. They all test succesful.
    When I log in the frontend, I get the famous message: "Cannot find the root of your orgchart. The orgchart box may have been deleted or
    incorrectly specified, or no valid org structure can be found for the selected effective date. Please change the root of the chart or select another effective date. "
    I did a capture of the log, and there is an error in the RFC wizard code, it seems:
    7. 24 Apr 2014 08:06:25 INFO com.nakisa.Logger - Tenant ID: 000
    8. 24 Apr
    2014 08:06:25 INFO com.nakisa.Logger - LoginSettingsObject Load: 19
    9. 24 Apr
    2014 08:06:25 INFO com.nakisa.Logger - com.nakisa.framework.login.Main : LogIn :
    Credential provider ActiveDirectory
    10. 24 Apr 2014 08:06:25 INFO
    com.nakisa.Logger - com.nakisa.framework.login.Main : LogIn : User to
    authenticate znakisa_org
    11. 24 Apr 2014 08:06:25 INFO com.nakisa.Logger - com.nakisa.framework.login.Main : LogIn : Authentication provider SapStandard
    12. 24 Apr 2014 08:06:25 INFO com.nakisa.Logger -
    com.nakisa.framework.login.Main : LogIn : User authenticated znakisa_org
    13.
    24 Apr 2014 08:06:25 INFO com.nakisa.Logger - com.nakisa.framework.login.Main :
    LogIn : Authentication row is null
    14. 24 Apr 2014 08:06:25 INFO com.nakisa.Logger - com.nakisa.framework.login.Main : LogIn : User population provider is Database
    15. 24 Apr 2014 08:06:25
    WARN com.nakisa.Logger - Configuration merge warning: : Right configuration is
    null - Merge skipped!
    16. 24 Apr 2014 08:06:25 INFO com.nakisa.Logger
    - ApplicationConfigurationManager:mergeConfigurations 0
    17. 24 Apr 2014 08:06:25 WARN com.nakisa.Logger -
    Configuration merge warning: : Right configuration is null - Merge
    skipped!
    18. 24 Apr 2014 08:06:25 INFO com.nakisa.Logger -
    ApplicationConfigurationManager:mergeConfigurations 0
    19. 24 Apr 2014 08:06:25 ERROR com.nakisa.Logger -
    com.nakisa.integration.sap.manager.SAPConnector_RfcWizard :
    java.lang.NullPointerException: while trying to invoke the method
    com.sap.mw.jco.JCO$Function.getImportParameterList() of a null object loaded
    from local variable 'function'
    20. 24 Apr
    2014 08:06:25 ERROR com.nakisa.Logger - java.lang.NullPointerException: while
    trying to invoke the method com.sap.mw.jco.JCO$Function.getImportParameterList()
    of a null object loaded from local variable 'function'
    21. at
    com.nakisa.integration.sap.manager.RfcWizardIntegrationClassParameterSetter.setParameters(RfcWizardIntegrationClassParameterSetter.java:25)
    22.
    at
    com.nakisa.framework.data.commandProcessor.impl.sap.BaseFunctionProcessor.call(BaseFunctionProcessor.java:104)
    23.
    at
    com.nakisa.integration.sap.manager.SAPConnector_RfcWizard.getDataSet(SAPConnector_RfcWizard.java:50)
    24.
    at
    com.nakisa.integration.sap.manager.RfcWizardIntegrationClass.getDataSet(RfcWizardIntegrationClass.java:106)
    25.
    at
    com.nakisa.framework.data.commandProcessor.impl.sap.BaseFunctionProcessor.getDataSetFinal(BaseFunctionProcessor.java:120)
    Would you happen to know what is the issue here?
    Thank you for your help!
    M.E.

    Hi Matthew,
    How about the directory search function ? Does it work ?
    I would follow below troubleshooting steps.
    1. Validate If Transport Pack and ABAP Add-on are installed properly
    2. Restart the Nakisa application and check
    3. Check If User ID has correct authorizations in SAP
    4. Check If Data is correct
    5. Do the RFC trace
    Regards,
    Dipak Bujjad

  • Position order under org chart not reflecting SAP

    Hi,
    I I am having a problem at the moment where the position under the org chart boxes in nakisa do not reflect the order in SAP. Is there any setting to enable the true reflection of order in nakisa or is this a schema change?
    Thnaks

    Hi there,
    Yes, you need to define the object sort order for each hierarchy in each orgchart. You can do this in the Admin Console by going to the OrgChart module, selecting your orgchart (e.g. Organisation Structure) and then going to Sort Fields. You will need to do this for any subsequent linked hierarchies too (where applicable) as you might want a different order for each type of object.
    I hope that helps!
    Luke

Maybe you are looking for

  • SRM Installation error during abap import

    Hi SAP Gurus, This is the error during the ABAP Import. >>>Import_Monitor.log INFO: 2007-10-07 14:25:17 Import Monitor is started. CONFIG: 2007-10-07 14:25:17 Application options: dbCodepage=4103 dbType=ORA extFiles=yes importDirs=C:\Documents and Se

  • How to tranfert music from an ipod to my computer?

    I want to transfert songs from my friend's ipod to my computer's itune. He is jut visiting me so it's a little be urgent. I'll be glad if somebody could help me Thanks for your consideration

  • [BUG] Upgrade corrupts photo book layouts!

    Here's something to add to the plethora of bugs in iLife'11. Whenever I open a photo book that was created with an earlier version, I briefly see the "Upgrading photo book-" message, and after that, all photos are default-zoom and centered at their s

  • IPhoto crash when creating photobook

    I am trying to create a Book through iPhoto.  iPhoto is consistently shutting down when I try to purchase the book.  The error message states a crash in Thread 40.  I have not yet attempted to re-install iPhoto.  Any ideas or help would be appreciate

  • Invalid url error message

    I am trying to use my xmradio online software, and after I choose the station, the quicktime symbol comes up. Then I get an 'invalid url' message and can go no further. What could be my problem?