SXMB_MONI ----- "Display Nodes"

Hi,
In my SXMB_MONI Exactly in "Display XML Message Versions"
I am on XI 3.0 SP 9
I have only 3 nodes under XML message
<u><b>1.</b></u>
XML Message
       Inbound Message (central) (Green Flag)
       Receiver Grouping
       Response (checkered Flag)
But I have seen many nodes
<u><b>2.</b></u>
XML Message
    Inbound Message
    Receiver Identification
    Interface Determination
    Receiver Grouping
    Message Branch According to Receiver List
    Request Message Mapping
    Technical Routing
    call Adapter
    Response
I dont want to have 1.
I want to have like what i have mentioned in 2.
Is is possible ?
Is there any setting that  I have to change to display like above (2)
Is this just because my version ?
If I do multimapping , How I would be able to see message in SXMB_MONI ?
or I can not do anything ?
Pls help
Thanks
srinivas

Hi  Jai Shankar,  Koen de Vries,  Udo Martens
Thanks for the replies, I am bit confused.Pls clarify         
In sxmb_adm--->Integration Engine Configuration-> F8
Click on Change Specific Configuration
In
Display View "Configuration of the Integration Engine" : Overview
<b>Category:</b> Runtime
<b>Parameters:</b>what should I have to enter ?    LOGGING_PROPAGATION  or LOGGING
<b>Subparameter:</b> what should I have to enter ? should I enter 1 (one)
<b>Current Value:</b> What Should I enter ?  should I enter 1 (one)
<b>Default Value:</b>What Should I enter ?
<b>According to Udo Martens</b>
put parameter TRACE in TA SXMB_ADM / Configuration Integration Engine to 3.
<b>Category:</b>Runtime
<b>Parameters:</b>TRACE
<b>Current Value or Subparameter Value</b> is 3 ?
Do I have to enter both parameters logging_propagation/logging and Trace ?
After this configuration I need to restart my instance ?
Any wrong config will lead to any harm in sxmb_moni ?
I am bit confused. Pls clarify.
Thanks
srinivas
Message was edited by:
        srinivas

Similar Messages

  • How to not display nodes in a tree if Oracle roles are NOT used?

    How to not display nodes in a tree if Oracle roles are NOT used?
    We don't use Oracle DB roles to grant users access to Forms from the menu. We use a template and role system of our own. Basically a few tables with templates and roles.
    We want to convert our normal Forms menu to a tree menu and one of our key requirements is that when the tree is populated ONLY nodes with programs (i.e. forms) he has been granted to execute is shown.
    Since we don't use Oracle Roles how to do this in a tree?
    I created a function to show/hide LEAF nodes, BUT problem is that there are sub-menu nodes showing even if the leaf-nodes under it has not being displayed. My function has suppressed it.
    My tree query is like this:
    SELECT
         t.status, LEVEL, t.label, t.icon, t.node VALUE
    FROM
         tma_tree_menu t
    WHERE
    tma_authenticate_sys_chk_role(USER, t.node) = 1
    CONNECT BY
         PRIOR t.node = t.master
    START WITH
         t.MASTER IS NULL
    ORDER SIBLINGS BY
    t.position
    The tma_authenticate_sys_chk_role will return 1 only if the user has access to the form under that node.
    I tried the FTree functions in Forms but even that has nothing.
    Any help would be greatly appreciated.
    Edited by: Channa on Mar 17, 2010 6:49 AM

    Would you share the source code? I guess what I need is how exactly you retreive the user credentials from the DB table and set that boolean variable.
    and then how to condition it in UIX?

  • JTree first displayed node

    Hi,
    I was looking at JTree API and I find a difference between viewable and displayed nodes: a viewable node is a child of an expanded node, and a displayed node is a viewable one that is indeed displayed in the screen (it falls in the tree visible area).
    Now I want to know the first displayed node in the tree, but I don't see how to obtain it.
    Any help would be appreciated.

    Thanks, tjacobs.
    I tried it but it is difficult to determine it this way.
    I have a JScrollPane; then I try this:
    int x = 50;
    int y = getVerticalScrollBar().getValue() + 5;
    TreePath firstPath = _tree.getPathForLocation(x, y);x = 50 is an attempt to know where the child is; as long as the tree gets expanded, it is greater, but I don't know at which level the tree is expanded in that location.
    Any ideas?

  • Throwing Custom Exception in SXMB_MONI( Error Node)

    Hello all,
                The requirement is to Throw an Custom Error Exception in the SXMB_MONI, which we are able to do and generate the custom error message to stop the message in moni . I have created the UDF to call API's Classes such as BaseRuntimeException or RuntimeException.
    Above API's -Able to populate the Custom Message in the TRACE Node of the Request Message mapping Step.
    Not Able to Populate the error Message in the ERROR Node of the Request Message mapping Step,so I want to know is that any API's can be used to populate the custom message in error Node or Can i raise the OSS notes ? .
    Any OSS notes helps me to do that?
    Thanks,
    Kamal

    Hi,
    There is no API to provide this functionality. The reason is the XI message processing is through pipeline as you know. And this is nothing but SAP specific services. So you can not alter them as they are. For the request that you are asking, you will have to edit the pipeline step that populates the SAP:ERROR node. For this, we need to identify which service does this and then if it is possible to write a user exit, etc...So in this case, I would suggest you go with raising an OSS note.
    However, can you please tell us why is this required? I can understand to send a message/mail if you get an error or something like that. But I am not able to figure out in what scenarios would you require this kind of error display.
    Thanks and Regards,
    Sarath.

  • Displayed nodes in a JTree

    Hi, i'm creating a JTree with TreeModel, and make the root as my c: drive. when the tree displayed, i found that it display some files that are actually not available in my c: drive. so, can anyone please tell me what's wrong in this case? thanks in advance!

    OK, these are two java files, please check for me. Thanks!
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.event.*;
    import java.io.*;
    public class MyTree extends JFrame implements ActionListener{
    File[] rt;
    File drive;
    private DefaultComboBoxModel comboModel;
    MyTreeModel model;
    File root = null;
    JTree tree;
        public MyTree() {
            initComponents();
    public void initComponents() {
    setLayout(new BorderLayout());
      setDefaultCloseOperation(javax.swing.WindowConstants.DISPOSE_ON_CLOSE);
    panelB = new javax.swing.JPanel();
    panelB.setLayout(new BorderLayout());
    comboModel = new DefaultComboBoxModel();
    selectDrive = new JComboBox(comboModel);
    rt=File.listRoots();
      for (int i=0; i<rt.length; i++)
           drive = rt;
         comboModel.addElement(drive);
    selectDrive.setModel(comboModel);
    selectDrive.addActionListener(this);
    selectDrive.setActionCommand("sel_drive");
    tree = new JTree();
    tscrollPane = new JScrollPane(tree);
    displayTree();
    panelB.add(selectDrive,BorderLayout.NORTH);
    panelB.add(tscrollPane,BorderLayout.CENTER);
    add(panelB,BorderLayout.NORTH);
    pack();
    public void actionPerformed(ActionEvent e) {
         String cmd = e.getActionCommand();
         if(cmd.equals("sel_drive")){
                   displayTree();     
    public void displayTree(){
         Object obj = comboModel.getSelectedItem();
         String str = obj.toString();
         File f = new File(str);
         model = new MyTreeModel(f);
         tree.setModel(model);
    public static void main(String args[]){
         MyTree treefr = new MyTree();
         treefr.setSize(500, 500);
         treefr.setVisible(true);
    public JComboBox selectDrive;
    public JPanel panelB;
    public JScrollPane tscrollPane;
    import javax.swing.tree.*;
    import javax.swing.event.*;
    import java.io.*;
    class MyTreeModel implements TreeModel {
    public File root;
    public MyTreeModel(File rt) {
         root = rt;
    public Object getRoot() {
         return root;
    public boolean isLeaf(Object node) { 
         File leaf = (File)node;
         return leaf.isFile();      
    public int getChildCount(Object parent) {
         File p = (File)parent;
         if(p.isDirectory()){
              System.out.println("Total Files="+p.list().length);
              return p.list().length;
         }else{
              return 0;
    public Object getChild(Object parent, int index) {
    File p = (File)parent;
    String[] children = p.list();
    File child = new File(p,children[index]);
    try
         return child;
    catch (ArrayIndexOutOfBoundsException e)
    e.printStackTrace();
    return null;
    public int getIndexOfChild(Object parent, Object child) {
    String cname;
    String[] children = ((File)parent).list();
    if (children.length>0){
         cname = ((File)child).getName();
         for(int i = 0; i < children.length; i++) {
         if (cname.equals(children[i]))
              return i;
    else{
              return -1;
    return -1;
    public void valueForPathChanged(TreePath path, Object newvalue) {}
    public void addTreeModelListener(TreeModelListener l) {}
    public void removeTreeModelListener(TreeModelListener l) {}

  • SXMB_MONI displays Errors only

    hi all,
    Due to some reason SXMB_MONI is displaying ERRORS only even if I select all the messagse. Is there a config setting that need to be changed ?
    Please advise, Thanks.
    FS

    On SXMB_MONI Screen, Make VIEW Button = Standard
    Make Length of Output List for 2000.
    Status Group & Status, Make these BLANK.
    Date from - give date of 1 year back.
    SENDER & RECEIVER, make it BLANK.
    & RUN.

  • SXMB_MONI Display Information

    Hi,
    Can some one please explain what controls how many days worth of details are displayed via SXMB_MONI?
    The SXMB_MONI output in our XI system seems to drop or not include items that are older than a week while our SRM system retains the information a lot longer.
    Ultimately we want to be able to increase the period in our XI system. Any help would be appreciated.
    Regards,
    Jerry Martinek

    Hi Jerry,
    in SXMB_MONI, depending on the selection criteria for time period, the XML msgs will be shown of that time period......you will have to just see that no archive program in backgroud is archiveing your XML msgs......if no archive program is running, then in SXMB_MONI, you can give your time period and the XML msgs of that time period will be displayed to you......
    Thanks,
    Rajeev Gupta
    Message was edited by:
            RAJEEV GUPTA

  • How to Display Node Data ( 100 Lines ) in INteractive form UI Element

    HI All,
    I have requirement to display Standard report output in interactive form UI element .I have taken the Stadard report Output to an internal table and converted into xstring format and trying to exporting to the node with attribute type xstring . and binding this attirbute to interactive form UI element PDf Source property.
    But I am getting the error 'File Does not begin with %pdf- '.
    pls find the below code which i am using for converting Itab Data into Xstring
    CALL FUNCTION 'SOTR_SERV_TABLE_TO_STRING'
        IMPORTING
          text     = wa_string
        TABLES
          text_tab = it_itab.
      DATA: lv_xstring TYPE xstring.
    CALL FUNCTION 'SCMS_STRING_TO_XSTRING'
       EXPORTING
         text   = wa_string
       IMPORTING
         buffer = lv_xstring
       EXCEPTIONS
         failed = 1
         OTHERS = 2.
    CALL FUNCTION 'SCMS_FTEXT_TO_XSTRING'
      EXPORTING
        input_length       = '7285'
      FIRST_LINE         = 0
      LAST_LINE          = 0
      MIMETYPE           = ' '
      ENCODING           =
    IMPORTING
       BUFFER             = lv_xstring
      tables
        ftext_tab          = it_itab
    EXCEPTIONS
      FAILED             = 1
      OTHERS             = 2
    Please help me on this..
    Thanks in advance .
    Kiran.

    HI
    You cannot just simply convert one string to xstring and then set it in pdfsource to get the pdf.
    what is required is little bit lengthy than wht you are doing right now.
    you need to use adobe live cycle designer to design the form first and bound the layout UIs there to the context and then
    when the pdf wll be generated it will have the data.
    1. Go to transaction SFP ad create one interface there with some parameter say data.
    2. create a form based on this interface.
    3. in the template source property of the UI give the form you have created it will automatically create context for the import
    parameter that you have given in the interface.
    4. now you need to double click on the interactive form UI to open Adobe live cycle designer to design the layout of the form to
      display the data that you will get form the import parameter.
    5. pass the required data to the context which is created as the import parameter
    these are the steps required to create a PDF form having the data passed by you from the programm dynamically.
    here is a link for a demo tutorial.
    [http://wiki.sdn.sap.com/wiki/display/WDABAP/CallAdobeFormthroughABAPWebDynpro|http://wiki.sdn.sap.com/wiki/display/WDABAP/CallAdobeFormthroughABAPWebDynpro]
    thanks
    sarbjeet singh

  • How do I control the order in which JTree displays nodes?

    I'm trying to display the nodes in a JTree in a specific fashion, but I can't figure out how to change the order JTree displays them in. It seems the default is alphabetically, with leaves first and nodes with children second. I've spent a few hours pouring through the documentation, but I haven't been able to find out what I need to do. Anyone know?

    They are displayed in the order they are added on the same level.

  • Tree control erroneously displays nodes multiple times

    I'm attempting to use a Tree control to display some data.
    I'm using an HierarchicalCollectionView as the dataProvider. All
    the data displays, but it appears on the wrong level. For instance,
    on the root level, it displays the root node (correctly marked with
    the folder icon as having children), plus all the children (on the
    root level!) If I expand the root node, underneath it it displays
    its children as expected -- now there are 2 copys of all the
    children, one in the correct place and one at the root level. If I
    expand 2nd-level nodes, their children (and children's children,
    etc) display underneath them... the pattern continues. It looks
    like every level of the hierarchy displays ALL the nodes underneath
    it, no matter how many levels down.
    I think I know why this happens: a
    HierarchicalCollectionView's createCursor() function returns an
    IViewCursor that treats the collection as linear instead of
    hierarchical. The Tree then uses this cursor to visit every node in
    the tree, displaying it. When expanding a node, it again uses one
    of these linear-type cursors, but on the children of the node
    clicked on, so it displays all the children underneath it and their
    children, etc. This seems like a major bug in the library -- I'm
    pretty sure this isn't a problem with my code. Doesn't it seem
    natural to use a HierarchicalCollectionView with a Tree control?
    Has no one else ever experienced this issue? I'd expect it to work,
    especially since HierarchicalCollectionView extends
    ICollectionView, which is what the dataProvider wants. I've looked
    through the source of the Tree class (and List, and ListBase) and I
    think it all boils down to not using the dataDescriptor's
    getChildren() method and instead using createCursor() directly on
    the dataProvider. The dataDescriptor's getChildren() method returns
    an ICollectionView that correctly only contains the next-level
    nodes, not all of the ones all the way to the bottom of the
    hierarchy. I think the bad behavior is inherited from ListBase (and
    in that class, it actually makes sense... too bad nobody overrode
    it in Tree).
    Am I wrong? Am I making a mistake somewhere in my code? If
    not, is there a workaround? Has a bug report been filed, and should
    I file one if this is indeed a bug? Any help or insight would be
    greatly appreciated.

    OK, after banging my head against this for a day and a half,
    I finally have an answer. It seems that the problem is my root node
    (and possibly others; I didn't delve that deep) is "open". I guess
    something, somewhere is calling
    IHierarchicalCollectionView.openNode() on it. Closing the node(s)
    makes the problem disappear. I've attached a reproduction script
    that's about as simple as I can make it (I guess it could be
    simpler with less data, but oh well). Why does this happen? Should
    I open a bug report? It seems to me that the correct behavior would
    be to have the open node(s) disclosure controls start out open
    rather than incorrectly displaying their children as on the same
    level as them.

  • Displaying nodes in a JTree with different icons

    Please can you help me? I have set up a JTree that handles different icons for each item in the tree. The items are all independent and there is no way of grouping them together, so to get around the problem of displaying them in the tree I have stored them in array of images, such that each row in the tree maps to the correct element of the tree (or so I thought).
    However, my overridden version of getTreeCellRendererComponent() displays interesting behaviour. If one of the branches in tree is collapsed, then the number of rows displayed in the tree differs from when it is expanded. This renders my use of an array useless because it doesn't map to what I thought was the structure of the tree and my icons do not align to the correct textual information.
    How can I map my images to the tree so that it displays correctly when the branches are expanded or collapsed?

    You need to be able to figure out what icon to display based on the object that the tree cell is rendering. In other words, the object should have an attribute that you can query that tells your cell renderer what icon to use. If all else fails, change your object to contain a reference to the icon that should be displayed next to it.

  • JTree problem displaying nodes

    I have created a GUI, in which part of it allows the user to view files in a selected folder in a JTree format.
    The tree only shows selected files with certain extensions (such as ".txt", ".doc", etc.. see code below)
    I'll try to show what it looks like, for example:
    - RootFolder
        - SomeOpenFolder
            - someFile
            - anotherFile
        + SomeClosedFolder
        - File_in_RootFolder
        - Another_file_in_RootFolder Anyhow, when I shipped it to my boss he occasionally cannot view the full file names..
    for example:
    - RootFolder
        - SomeOp....
            - some....
            - anothe...
        + SomeClo...
        - File_in_R...
        - Another_fil...I have the JTree inside a JScrollPane with horizontalScrollBarPolicy set to "AS_NEEDED"
    I have run several tests, with both LONG and SHORT names... and it all works just fine for me
    For example:
    - RootFolder
        - SomeOpenFolder
            - someFile
            - anotherFile_With_A_VERY_VERY_VERY_VERY_LOOOOOOOOOOOOOOOOOOOONG_NAME
        + SomeClosedFolder_With_A_VERY_VERY_VERY_VERY_LOOOONG_NAME
        - File_in_RootFolder
        - Another_file_in_RootFolder And i am able to scroll left&right to view the full name within the scroll panel.
    But for some reason, on my Bosses computer sometimes it has the full name,
    and other times it cuts the name short with "FolderNa..."
    Is anyone aware of why such a problem could happen?
    Here is my code setting up the tree.
    public void setMyTree(String myFolder)
    File rootFile = new File(myFolder);
            JTree targetTree = new JTree(TreeSetup(rootFile, InputIncludeFilter()));
            targetTree.getSelectionModel().setSelectionMode(TreeSelectionModel.DISCONTIGUOUS_TREE_SELECTION);
            targetTree.setCellRenderer(new TreeCellRenderer() {
                  public Component getTreeCellRendererComponent(JTree tree, Object value,
                                boolean selected, boolean expanded, boolean leaf, int row, boolean hasFocus) {
                      JLabel label = new JLabel(value.toString());
                      TreePath p = tree.getPathForRow(row);
                      if(p != null){
                          File node = getInputFile(p);                    
                      if (selected) {
                             label.setOpaque(true);
                             label.setBackground(tree.getBackground().darker());
                          return label;
                  private File getInputFile(TreePath path) {
                      StringBuffer fName = new StringBuffer();
                        boolean isroot = true;
                        for (Object s : path.getPath()) {
                                  fName.append(s + File.separator);                          
                      return new File(getUserDomain()+File.separator +
                                 fName.toString().substring(0, fName.toString().length() - 1));
    }Any ideas? Do would it help to see my method "InputIncludeFilter()"

    DefaultTreeCellRenderer extends from JLabel, so whatever you are doing to the JLabel you create you can do to the DefaultTreeCellRenderer too.
    This would be more like it:
           targetTree.setCellRenderer(new DefaultTreeCellRenderer() {
                  public Component getTreeCellRendererComponent(JTree tree, Object value,
                                boolean selected, boolean expanded, boolean leaf, int row, boolean hasFocus)
                     super.getTreeCellRendererComponent(tree,value,selected,expanded,leaf,row,hasFocus);
                      TreePath p = tree.getPathForRow(row);
                      if(p != null){
                          File node = getInputFile(p);                    
                      if (selected) {
                             this.setOpaque(true);
                             this.setBackground(tree.getBackground().darker());
                          return this;
                  }

  • Analysis Authorization based on Hier node with multiple display hierarchies

    Hi guys - I've got a problem where s.o. might have an idea of how to switch on the light at the end of the tunnel, I am currently standing in:
    Requirement:
    Cost Center Authorization should be given through RSECADMIN, reporting should be possible for any hierarchy that exists for the authorization relevant info object.
    Preferred solution:
    The Cost Center Analysis Authorization should be given through RSECADMIN - Hierarchy node assignment.
    u2022     A dedicated Authorization Cost Center Hierarchy will be maintained in ECC6 as an alternative cost center hierarchy and extracted into BW.
    u2022     The RSECADMIN Hierarchy node assignment should be based on a particular node (Type 2).
    u2022     The display level will be specified as required (here: Level 7)
    u2022     The Authorization granted should be independent of hierarchy name and version (validity 3).
    Reporting Scenario and technical impact:
    As mentioned above, when designing and running a query the user should be able to freely select other (i.e. than the authorization) display hierarchies for the authorization relevant reporting object 'Cost Center' as well. The technical names of the semantically relevant hierarchy nodes could therefore vary. E.g. cost centers 1, 2 and 3, being assigned under hierarchy node u2018Au2019 of the RSECADMIN relevant authorization hierarchy, could be subsumed by hierarchy node u2018Bu2019 in another display hierarchy, which the user may want to display in accordance to his reporting needs. Ideally, the alternative display hierarchy should therefore display node u2018Bu2019.
    My findings so far (based on prototyping) turn out that this is not possible as long u2018Bu2019 (and its hierarchy) is not authorized in RSECADMIN. Can these findings be confirmed? And if not, would anyone have an idea of how to facilitate the reporting scenario?
    Would there be any other way to grant access, possibly based on RSECADMIN single values, and also enable the user to flexibly display hierarchies with only those hierarchy nodes whose single cost center values the user has been given access to?
    Thanks everyone for your input...
    Claus
    Edited by: Claus64 on Jul 13, 2009 4:10 AM

    HI CLause,
    On Jul 14 2009, you wrote in SDN and said:
    FYI: Found a solution...
    The hierarchy analysis authorization will be based on a navigational attribute of cost center.
    With analysis authorizations it is possible to declare the Auth object (e.g. 0COSTCENTER__RACCAUT0) as authorization relevant and leave the superior object 0COSTCENTER auth irrelevant.
    The auth will be given for 0COSTCENTER__RACCAUT0. This object will be placed as a filter of the query, being restricted by an Authorization variable for hierarchy nodes.
    Due to the concept of Analysis Authorizations, this variable will automatically pick up the nodes granted as part of RSECADMIN Hierarchy based Authorization.
    As mentioned above, 0COSTCENTER as the regular reporting characteristic remains auth irrelevant and can therefore take any hierarchy thatu2019s available. Reporting on single values will be possible, too. Only those nodes show up that hold the authorized cost centers in accordance to the authorization.
    If the auth relevant 0COSTCENTER__RACCAUT0 is not used in the query definition by either not taking it in as a filter or skipping the Auth variable, the query will launch the message that the authorization is missing. No data show up at all.
    Claus
    See this thread:
    Analysis Authorization based on Hier node with multiple display hierarchies
    I am also in the same situation as you and need to understadn your solution. I understand that you created a Nav Attr on 0COSTCENTER and made this auth relevant whilst ensuring that 0COSTCENTER is NOT auth relevant. This is all fine. The issue was you have multiple hierachies for 0COSTCENTER, how did the new Nav Attr help you solve your issue. When loading 0COSTCENTER what values did you load ino the new Nav Attribute and how did that link to the hierachies? Also, in RSECADMIN you created hiearchy nodes based on the Nav Attribute but I am confused as to what values you have in the Nav Attr.
    I appreciate if you can share your solution from the past in more details.
    many thanks

  • How to filter hierarchy node in BEX query designer

    Dear experts
    We are working on FI balance sheet with hierarchy infoobject 0GLACCEXT. Example of our balance sheet is as follow:
    Parent Node A = 20
         Sub-parent Node A1 = 10
             Leaf A11 = 5
                 Leaf A12 = 5
    Parent Node B = 20
         Sub-parent Node B1 = 10
                   Leaf B11 = 5
                   Leaf B12 = 5
    We require only:
        Sub-parent Node A1 = 10
        Leaf B12 = 5
    So I filter those out in BEX restriction;  however, after we examine the report in tcode RSRT, "Sub-parent Node A1" is not shown in BEX Report, and the result is as follow:
    Parent Node B = 5
         Sub-parent Node B1 = 5
                 Leaf B12 = 5
    Are there solutions for us to show merely A1 and B12 ?

    Hi Chu
    Try the following steps.
    Initial Output
    In this example I will restrict the query for only displaying Node 8603 and leaf 9000
    Proceed to restrict the Characteristic. Please be aware of the difference between hierarchy nodes and leaf characteristic values. Also set the Hierarchy display properties to expand up to level 1.
    Execute the query again:
    Please be aware that users will still be able to expand node 8603 and see the lower level nodes/leaf. In order to restrict users from doing this set up users authorizations.
    Regards,
    Carlos

  • RE: Regarding : Creation of child nodes in a outlinefield

    Hi, Balasubramaniam:
    Try to set the isFolder attribute of your parent display node to TRUE.
    This may solve your problem. Also, check isFilled attribute of display
    node, you might find the answer.
    Hope this helps.
    Tien Wang
    Indus Consultancy Services
    http://www.indcon.com
    Phone 201.261.3100 x233
    Fax 201.261.1399
    E-mail : [email protected]
    -----Original Message-----
    From: owner-forte-users [SMTP:[email protected]]
    Sent: Friday, October 03, 1997 5:32 PM
    To: '[email protected]'
    Subject: Regarding : Creation of child nodes in a outline field
    Hi,
    I am facing a few problems in creating a child node. I read elements =
    from an array to populate the outline field. The array has exact =
    definitions as to what should be a parent and child respectively. While =
    I am able to create nodes at the parent level, I am unable to create =
    child nodes for any parent. I discovered that the value for the parent =
    node is getting lost. I have tried to use some of the methods to arrive
    =
    at the parent node, but to no anvil. Could some one suggest how exactly =
    to get the value of the parent node so that the child node can be =
    assigned to the parent.
    Thanks In advance.
    Balasubramaniam Sures
    [email protected]
    P.S : I have seen the examples Simple Outline field and File Browser. No
    =
    clues from here.

    I take it that you are traversing through the array and loading each
    element into the OutlineField. At the risk of stating the obvious, for
    each element you must also identify it's parent. This is necessary to
    set the relationship from the child to the parent or vise versa.
    If you are already doing this and are still having difficulty, the
    problem may be as simple as setting the IsFolder property of the parent
    node. Unless this is done, it's child nodes will not be visible.
    Van Vuong
    Lead Technical Analyst
    Office: 972.985.5289
    VoiceNow: 972.330.0822
    Internet: [email protected]
    PAGE NET
    From: bala[SMTP:[email protected]]
    Sent: Friday, October 03, 1997 12:32 PM
    To: '[email protected]'
    Subject: Regarding : Creation of child nodes in a outline field
    Hi,
    I am facing a few problems in creating a child node. I read elements from an
    array to populate the outline field. The array has exact definitions as to
    what should be a parent and child respectively. While I am able to create
    nodes at the parent level, I am unable to create child nodes for any parent.
    I discovered that the value for the parent node is getting lost. I have
    tried to use some of the methods to arrive at the parent node, but to no
    anvil. Could some one suggest how exactly to get the value of the parent node
    so that the child node can be assigned to the parent.
    Thanks In advance.
    Balasubramaniam Sures
    [email protected]
    P.S : I have seen the examples Simple Outline field and File Browser. No
    clues from here.

Maybe you are looking for

  • HT5552 I am not able to use my itunes gift card after inputting card

    How can I use my iTunes giftcard after been entered in iTunes and shows the amount

  • Mountain lion won't accept dvd in slot

    I've a brand new DVD drive hooked up to new Mac Mini via USB. There's a glimmer of life there: the drive sort of clears its throat when you plug it in. But I simply cannot push a DVD or CD all the way into the slot. I've tried cleaning it by insertin

  • GR Cancellation after stock posting

    Hi Gurus, QM persons have done result recording and posted the stock to unrestricted stock.Now the production person want to cancel the GR. But system is not allowing cancellation of GR.Is there any way to cancel GR after stock posting. Regards Amit

  • Where to go to learn how to build a matrix database

    Does anyone know where to go to build  a matrices database

  • Not able to do GR

    Hi all, I am working on production in an alternative plant SPQ 80 scenario. I have done all config and customize. the problem what I am facing is while doing the GR in production plant I am getting this error. Document 1000162   does not contain any