Can't see Tree

I recently installed Suse Enterprise Desktop 10 SP1 and tried connect to an
existing Netware 6.5 sp3 tree. But it doesn't show a Tree on the list. I can
able to login if I use an IP instead of Tree name. I saw some articles
related with this issue that everyone mentioned about SLP but no details how
to troubleshooting. Can someone explain to me how to fix this issue?
Richard

you are going to need a slp DA running on your Netware box.
SYS:etc/slp.cfg
DA IPV4, xxx.xxx.xxx.xxx
/* more slp options & parameters e.g SCOPES you can set in monitor*/
load slpda
display slp da
for more information consult the netware documentation
Novell Documentation
preconfigure your novell client or do it by hand
then you will need to configure slp on your client to point to your da
/etc/slp.conf
net.slp.useScopes = GLOBAL
net.slp.DAAddresses = xxx.xxx.xxx.xxx,xxx.xxx.xxx.xxx
/etc/init.d/slpd restart
more infos here:
Novell Documentation
Service Location Protocol - Wikipedia, the free encyclopedia
OpenSLP Home Page

Similar Messages

  • Can't see Tree or Servers

    Converting from Netware to SLES. Built a server with SLES 11. I believe it is handing out DHCP addresses as my two test station have picked up IP address from the pool. Built eDirectory with a test user account on the server. My workstations do not see the new tree, context or server. The server and workstations are off our production network and in a test environment. They are the only three machines connected in this environment. Both workstation have IP addresses from the new server. They can ping each other, and the server. The server can also ping their address. They also can login into iManager for the server. I can see the objects in the tree via iManager from both stations.
    Uninstalled and re-installed the client on the workstation. Went into properties of the Novell client on the workstation and manually entered Preferred Server and Preferred Tree. Also entered Tree and Name Server. Used the name and IP address of the server. I have tried two different clients OES SP2 Novell Client 4.91 SP4 and Novell Client for Windows 4.91 SP5. Tried both of these option with zdfagent and without.

    Originally Posted by jdelucaka
    Another update on the situation. Went into YaST on the server and configured SLP for Multicast. In /etc/sysconfig/network/routes file I made the following entry 224.0.0.0 0.0.0.0 240.0.0.0 eth0. However when I run SLPTOOL findsrvs service. It doesn't list anything. I was expecting to see the server IP address.
    On the workstation I made adjustments to the Novell Client. I sent to the Service Location Tab and entered the server IP in the Directory agent list. Still no luck. The machine will not see the tree, but does see the context and server. If I enter the IP address of the server in the tree field, I can enter a valid eDirectory username and password, but I am then presented with a Windows login screen.
    I don't recall having to ever make a changes to the routes file on the Linux server. multicast should just work unless your routers are filtering it out (by default most Cisco routers do not enable multicast in the IOS).
    Again--how is your NetWare servers configured for SLP? You should configure your OES server the same way (there's a few exceptions).

  • Can't see the wood for the trees!

    I can't seem to get this gridlayout of textfields to work for me! I have:
    void jbInit() throws Exception {
    panel1.setLayout(gridLayout1);
    panel1.setMinimumSize(new Dimension(400, 400));
    panel1.setPreferredSize(new Dimension(400, 400));
    getContentPane().add(panel1);
    for (int i=0;i<SIZE;++i)
    field[i] = new TextField();
    field.setEditable(true);
    this.getContentPane().add(field[i]);
    and I have the array declared as a property of the Frame class:
    Textfield [] field = new TextField[6];
    I only seem to get one textfield though! Can anyone see what's going on?
    Thank you for any reply.
    Regards
    Yad.

    (Code tags are nice when posting code)
    Thanks...so i now have:
    >       panel1.add(field);>
    but now get 10 textfields! I would have thought that I
    would only get 6?!
    Hmm. Are you sure you haven't set 'field' to have ten items in it? What's that SIZE variable you use in your for loop?

  • Can not see the menu of New Business Components Package in jdeveloper

    I am just follow the developer guide.
    and when I create the Business Components Package, the guide said that
    ========================================
    In the JDeveloper Navigator, select the OA Project where you want to create your package.
    From the main menu, choose File > New to open the New Object Gallery.
    In the Categories tree, expand the Business Tier node, and select Business Components (BC4J).
    In the Items list, select Business Components Package to open the Business Components Package Wizard. You can also right-click on the OA Project and select New Business Components Package to navigate directly to the Business Components Package Wizard.
    =====================================
    In fact I can not see the menu about Business Components (BC4J) in the File/new/buisness tier/Business Components (BC4J).
    I can only see the File/new/buisness tier/ADF Business Components.
    And can not find the "Business Components Package" under ADF Business Components either.
    I am using the JDev Extension for OA (p5856648_R12_GENERIC.zip) and EBS 12.0.0.
    And I create an OA Workspace and OA Project.
    can anyone help?

    James,
    Use search facility on forum. Chk thread Re: OAF Toolbox Tutorial Help - Search
    --Shiv                                                                                                                                                                                                                                                                       

  • How can an ADF Tree be configured to work with varying levels of heirarchy?

    We have a need for a Locations tree that represents the Locations heirarchy for any one of our clients. Depending on the client the number of levels in a location heirarchy could range from 1 to 9.
    I have created 9 different tree bindings and I can change the tree binding in the jsp page - the example below is for a client with 4 location levels.
    <af:tree value="#{bindings.ScdLocs4View1.treeModel}" var="node"
    binding="#{backing_locations.tree2}" id="tree2">
    For a client with 5 location levels, I'd like to programatically change the value to
    #{bindings.ScdLocs5View1.treeModel.  How can I do this?
    I was thinking I could use the setValue method on the tree control in my page's backing bean.  But I have been unable to get a reference to the tree binding.
    I don't see an appropriate method for finding a Tree Binding.  There are methods for finding an Iterator Binding, an Executable Binding, or a Region Binding (whatever that is).  But how do I "find" a reference to a Tree Binding?
    I have also given consideration to using a single Tree Binding with 9 levels (or rules in the Tree Binding Editor) and finding a way to  programatically "start" the rendering at a particular level (or rule) - in effect telling the ADF Tree control to ignore some number of rules and begin with the specified rule.  But I haven't been able to figure out how to do this either.
    Help would be greatly appreciated.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    Bill,
    A tree binding is a particular kind of control binding, so you can find it as a control binding and then cast it to the more specific interface to work with it.

  • Can't see LabVIEW Colour Picker (Evaluation 2014 for Mac)

    Hi all,
    I am new to LabVIEW, and am trying to make a chart I made appear transparent.  According to http://forums.ni.com/t5/LabVIEW/Using-LabView-s-Color-Picker/m-p/575619/highlight/true#M269839, the colour picker is available as one of the numeric controls, however I can't see it in there, nor by shift and right mouse click, nor within the tools menu.  I have attached a screenshot of what I see.  Is anyone able to help me please?
    Solved!
    Go to Solution.
    Attachments:
    Screen Shot 2015-02-07 at 7 Feb 2015 15.48.01.png ‏375 KB

    "Context-clicking" is the generic, non-platform-specific term used to describe how to get a contextual menu to pop up on a node. On Windows this is commonly called right-clicking. On the Mac it can be accomplished by control-click. I am not sure what Linux uses.
    After you have run the VI the color box control is no longer visible. From the block diagram context-click on the terminal. In the menu which pops up choose "Show Control" which will be about 1/3 down the menu. This will bring the front panel forward with the color box control positon (probably behind the chart) shown by dashed lines. If you cannot move it by clicking on it with the arrow cursor, then use the keyboard arrow keys to slide it out from behind the chart. Once is is exposed on the front panel, context click on the control and choose "Allow Transparent" from the pop-up menu (near the bottom of the list). Then the next time you run the VI the "T" box in the upper right corner of the color picker box should be available.
    The Pop-Up_Color_Dialog.vi was written to be a simple demonstration of how to get access to the color picker. If you want to make is usable as a subVI, you need to associate the indicators or controls on the front panel with terminals on the connector pane. You do that by clicking on the conpane with the wiring tool cursor and then clicking on the control/indicator you want connected to that terminal. You will also need to find a way to stop that subVI. As long-time Forum particpant Ed Pickens has said, "Using the Abort button to stop a running VI is like using a tree to stop a car. It works but may have undesired consequences." I am not sure how you want to use that subVI (or whether you even really want a subVI), so I cannot tell you what changes to make.
    That subVI has a chart but it appears that you probably want a graph.  You might be better learning how the subVI works and applying the process to the graphs you already have.
    Lynn

  • Can't see the ECC 6 infoset listed from CR 2008

    Hi there,
    I think I went over all CR/ ECC6 integration steps but I still can't see my InfoSet when I run the wizard from CR 2008...I m getting NO error just no InfoSet listed under Global or Local tree
    Any input will be helpful!
    Thanks,
    Fouad,

    Hi,
    is your SAP account assigned to the InfoSet user group ?
    ingo

  • Can't see file code

    I'm using DW 8.0.2 on this computer (30-day trial of full
    version CD I
    have). On my home computer I have DW MX 6.1. I am trying to
    edit existing
    website files from a website that I didn't design. It has
    ".htm" files,
    ."html" files, and ".asp" files.
    At home (with DW MX 6.1), I can access the website files,
    download them, see
    the html and edit the code, and upload them to the website.
    This works for
    all file types (htm, html, asp).
    On this computer (with DW 8.0.2), I can access the website
    files and
    download them. But I can't see the html code for some of them
    in order to
    edit the code. All I see when I open those files is jibberish
    symbols.
    This is true for all 3 file types -- in other words, some of
    the html files
    work, some of the asp files work, and some of the htm files
    work. By
    "work", I mean I can see the code when I open them.
    I just reinstalled DW 8.0.2 and HomeSite, and Extension
    something, and
    ColdFusion hoping somehow that would fix things. What
    happened is that now
    I can "see" some of the files whereas before I couldn't see
    any.
    Any ideas what else I could try?
    I'm using Windows XP Pro.

    Okay, thanks. I'll have to try that.
    "Murray *ACE*" <[email protected]> wrote
    in message
    news:[email protected]...
    > DW would do that if you used it to validate the page, I
    believe.
    >
    > --
    > Murray --- ICQ 71997575
    > Adobe Community Expert
    > (If you *MUST* email me, don't LAUGH when you do so!)
    > ==================
    >
    http://www.dreamweavermx-templates.com
    - Template Triage!
    >
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    >
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    >
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    > ==================
    >
    >
    > "Newbie56" <[email protected]> wrote in message
    > news:[email protected]...
    >> Thanks again. I appreciate you taking the time to
    explain things. I am
    >> the type of person that finds it helpful to
    understand the concept and
    >> underlying reasoning involved in how things work.
    That helps me apply
    >> the concepts to other situations.
    >>
    >> I know this is probably overkill or too much to
    expect, but I wonder if
    >> it would be possible (and practical) for future
    versions of DW to build
    >> in error messages when certain syntax errors are
    encountered instead of
    >> just producing a blank page or producing a page with
    all unrecognizable
    >> gibberish.
    >>
    >> For example, if DW encountered a problem with an
    unrecognized code in the
    >> charset=whatever coding, maybe it could produce an
    error message that
    >> says "error in reading charset command" or
    "unrecognized charset" in line
    >> "charset=whatever". So, if someone accidentally
    entered UTF-61 (a typo)
    >> instead of UTF-16, the unrecognized charset error
    message could appear.
    >>
    >> Or, in the common error you described, maybe DW
    could produce an error
    >> message that says "error -- multiple or conflicting
    <body> tags found,
    >> unable to proceed".
    >>
    >> Or, in general, "unknown error(s) in code detected ,
    unable to proceed".
    >>
    >> I'm sure it can't accommodate every coding error,
    but maybe some are
    >> common enough that DW could provide a feedback
    message for them.
    >>
    >>
    >> "Alan" <[email protected]>
    wrote in message
    >>
    news:C0EC64F9.29AFB2%[email protected]...
    >>>
    >>>
    >>>> Thanks. That makes sense and it helps me
    understand what the problem
    >>>> was.
    >>>
    >>> no problem and good luck with things.
    >>>
    >>> suggestion- you could do a Find and Replace, or
    just a Find for
    >>> charset=unicode sitewide
    >>>
    >>> a difficult to understand thing that seems like
    a contradiction at
    >>> first, is
    >>> that with each new version of dreamweaver, as
    features and capabilities
    >>> are
    >>> added; it gets less tolerant of code syntax that
    isn't just right.
    >>> That's
    >>> why folks ask to see the page/code. Dw can't be
    as tolerant or failure
    >>> resistant as a browser can be- a browser just
    has to display something.
    >>> Dw
    >>> has to know exactly what the code is and where
    the cursor is in the tree
    >>> of
    >>> syntax so it can decide what's proper code to
    insert in the current
    >>> cursor
    >>> location.
    >>>
    >>> it's probably a weekly occurrence of someone who
    says design view is
    >>> blank
    >>> YET the page renders fine in browsers- when the
    page is checked they are
    >>> using SSI includes where the included files are
    complete html docs with
    >>> <head> and <body> tags. Browsers
    render the page because the browser
    >>> programmers can code it to to deal with
    imperfect pages- but dreamweaver
    >>> sees multiple body tags and gives up trying to
    make sense of it.
    >>>
    >>
    >>
    >
    >

  • Where can i see Logical Databace and what exacttly use LDB

    Hi SAP Experts,
    Where can i see these three logical database. Please let me know what exacttly use of logical data base.
    PAP Applicant master data
    PCH Personnel Planning
    PNP HR Master Data
    PNPCE HR Master Data (Incl. Concurrent Employment)
    Thank you,
    Regards,
    GKReddy.K

    Hi,
    Logical databases are programs that read data from database tables and pass it to other programs for processing. The order of reading the database tables is determined by a hierarchy.
    Many tables in the R/3 System are linked using foreign key relationships. Parts of these relationships form tree-like hierarchical structures. Logical databases allow you to read data easily from database tables that form parts of these structures
    Retrieving Data Using a Logical Database:
    GET EVENT
    This is the most important event for executable programs that use a logical database. It occurs when the logical database has read a line from the node <table> and made it available to the program in the work area declared using the statement NODES <table>.
    When you define the corresponding event block in the program, you can specify a field list if the logical database supports field selection for this node:
    GET <table> [FIELDS <f1> <f 2>...].
    Refer the The logical database F1S .
    Transation is se36
    Regards
    Vijay

  • How can I make tree view for hierarchical data from select with connect by?

    If we have selected hierachy with connect by clause, how can we make it to see in tree view?

    You can't do this using the ADF, Tree Binding used by JHeadstart.
    However, If you have a recursive relationship (for example managerid) you can get a tree what you want as follows:
    - create one root ViewObject that returns the top-level employees without a manager by setting the where clause to managerid=null
    - create a second ViewObject that simply queries all employees
    - Create a ViewLink between the two view objects, and create a nested VO usage in the app module for the second view object
    - Create corresponding nested group in the application definition file and set the layout style to "tree-form" on both groups.
    See Developers Guide, chapter 3, section recursive trees for more info.
    Steven Davelaar,
    JHeadstart Team.

  • Can't see the forest . . .

    I can't see the forest through the trees.
    The forest here is the expression "code to the interface".
    The trees are Java interfaces.
    I think I understand interfaces:
    1. a way to get classes to promise to implement code
    2. a way for un-related classes to exhibit the same behavior
    3. a way to get around single inheritance
    I'm having trouble making the connection between what I know about interfaces and the expression "code to the interface".
    Can anyone explain this in plain English?
    e.g.
    It means;
    1. you should . . . . .
    2. you shouldn't . . . . .
    3. try to . . . . .
    Thank you.

    It means do this:
    public void someMethod(SomeInterface s) {and not this:
    public void someMethod(SomeClassThatHappensToImplementSomeInterface s) {or to do this:
    SomeInterface s = new SomeClassThatHappensToImplementSomeInterface();and not this:
    SomeClassThatHappensToImplementSomeInterface s = new SomeClassThatHappensToImplementSomeInterface();

  • Can't see Complex Section in Smartforms...

    Hi All,
    i m using SAP 6.4 , i m working on smartforms in that i can't see Complex section under tree Pages and Window --> %page1 new page --->
    main window ---> Creat --> in creat dropdown i can see only till Refrence after that there is no other option,
    pls help ...
    Thanks in advance..
    Regards,
    yunus

    Hi,
    The complex section was present only in 4.6C version. It was removed in the subsequent versions.
    Regards,
    Ravi
    Note : Please mark all the helpful answers

  • Time Machine - can't see backups

    I have a 1T LaCie attched via USB and have been using since Sept 2008 - when i enter TM all I can see is back ups for Sept & Oct 2008, but nothing since. It seems to be backing up on a regular basis, and I get no warning messages. Can I just delete the backup file on the LaCie and start over if I don't care about files prior to what is on my HD now?

    So, thanks to a rotten power supply I have a freshly dead 17.5 month old 1 TB Time Capsule which is out of warranty. To try and preserve the utility of my prior Time Machine backups and what seems to be a perfectly good 1 TB HD, I bought a 3.5" SATA enclosure with USB 2.0 and pulled the drive out of the TC and put it in the HDD enclosure. Now following Pondini's Tip #17 in the FAQ I can browse to my prior backups.
    The big question is: How can I get Time Machine use the same HD from the Time Capsule (now attached by USB instead of Ethernet) to pick up where it left off making further incremental backups as it had been making for 1.5 years up until the TC's power supply died? I'd like to not have to back the whole thing up separately again and bifurcate the backups.
    In Finder I can see a 104.93 GB file titled:
    Mjmckay's Mac Mini_0016cba344dd.sparsebundle and dated the date I started using the TC.
    Using the Disk Utility I can also see the name and info of the HD as follows:
    Name : Hitachi HDS721010KLA330 Media
    Type : Disk
    Partition Map Scheme : GUID Partition Table
    Disk Identifier : disk2
    Media Name : Hitachi HDS721010KLA330 Media
    Media Type : Generic
    Connection Bus : USB
    USB Serial Number : 200904130782
    Device Tree : /PCI0@0/USB7@1D,7/@2:0
    Writable : Yes
    Ejectable : Yes
    Mac OS 9 Drivers Installed : No
    Location : External
    Total Capacity : 931.5 GB (1,000,204,886,016 Bytes)
    S.M.A.R.T. Status : Not Supported
    Disk Number : 2
    Partition Number : 0
    I also see 3 sub-drives listed as subsidiaries of the Hitachi:
    #1
    Name : APconfig
    Type : Volume
    Disk Identifier : disk2s1
    Mount Point : /Volumes/APconfig
    File System : Mac OS Extended (Journaled)
    Connection Bus : USB
    Device Tree : /PCI0@0/USB7@1D,7/@2:1
    Writable : Yes
    Universal Unique Identifier : BD51DD81-2084-392A-8D03-BEA700498F7B
    Capacity : 1 GB (1,073,741,824 Bytes)
    Free Space : 1,003.5 MB (1,052,262,400 Bytes)
    Used : 20.5 MB (21,479,424 Bytes)
    Number of Files : 43
    Number of Folders : 9
    Owners Enabled : No
    Can Turn Owners Off : Yes
    Can Be Formatted : Yes
    Bootable : Yes
    Supports Journaling : Yes
    Journaled : Yes
    Disk Number : 2
    Partition Number : 1
    #2
    Name : APswap
    Type : Volume
    Disk Identifier : disk2s2
    Mount Point : /Volumes/APswap
    File System : Mac OS Extended (Journaled)
    Connection Bus : USB
    Device Tree : /PCI0@0/USB7@1D,7/@2:2
    Writable : Yes
    Universal Unique Identifier : B6B860F2-09EB-3678-AEE5-3C38BE6755C1
    Capacity : 1 GB (1,073,741,824 Bytes)
    Free Space : 1,003.5 MB (1,052,266,496 Bytes)
    Used : 20.5 MB (21,475,328 Bytes)
    Number of Files : 42
    Number of Folders : 9
    Owners Enabled : No
    Can Turn Owners Off : Yes
    Can Be Formatted : Yes
    Bootable : Yes
    Supports Journaling : Yes
    Journaled : Yes
    Disk Number : 2
    Partition Number : 2
    #3
    Name : Time Capsule Disk
    Type : Volume
    Disk Identifier : disk2s3
    Mount Point : /Volumes/Time Capsule Disk
    File System : Mac OS Extended (Journaled)
    Connection Bus : USB
    Device Tree : /PCI0@0/USB7@1D,7/@2:3
    Writable : Yes
    Universal Unique Identifier : 680A57E2-84F9-3176-8D2A-ECC1D034725F
    Capacity : 929.5 GB (998,057,361,408 Bytes)
    Free Space : 824.4 GB (885,197,500,416 Bytes)
    Used : 105.1 GB (112,859,860,992 Bytes)
    Number of Files : 13,483
    Number of Folders : 17
    Owners Enabled : No
    Can Turn Owners Off : Yes
    Can Be Formatted : Yes
    Bootable : Yes
    Supports Journaling : Yes
    Journaled : Yes
    Disk Number : 2
    Partition Number : 3
    #1 & 2 have orange USB drive icons; #3 is a green Time Machine drive icon
    Further down the Disk Utility frame I have the disk image:
    Name : Mjmckay's Mac Mini_0016cba344dd.sparsebundle
    Type : Disk Image
    Disk Identifier : disk3
    Media Name : Apple sparse bundle disk image Media
    Connection Bus : Disk Image
    Disk Image Path : /Time Capsule Disk/Mjmckay's Mac Mini_0016cba344dd.sparsebundle
    Full Path : /Volumes/Time Capsule Disk/Mjmckay's Mac Mini_0016cba344dd.sparsebundle
    Partition Map Scheme : Apple Partition Map
    Writable : Yes
    Ejectable : Yes
    Mac OS 9 Drivers Installed : No
    Total Capacity : 929.5 GB (998,057,361,408 Bytes)
    Disk Number : 3
    Partition Number : 0
    and subsidiary to that disk image is:
    Name : Backup of Mjmckay's Mac Mini
    Type : Volume
    Disk Identifier : disk3s2
    Mount Point : /Volumes/Backup of Mjmckay's Mac Mini
    File System : Mac OS Extended (Case-sensitive, Journaled)
    Connection Bus : Disk Image
    Writable : Yes
    Universal Unique Identifier : 6C96AD5C-772F-3710-98E3-9E233560AC0C
    Capacity : 929.5 GB (998,057,328,640 Bytes)
    Free Space : 825.5 GB (886,406,656,000 Bytes)
    Used : 104.0 GB (111,650,672,640 Bytes)
    Number of Files : 1,370,273
    Number of Folders : 209,366
    Owners Enabled : Yes
    Can Turn Owners Off : Yes
    Can Repair Permissions : No
    Can Be Verified : Yes
    Can Be Repaired : Yes
    Can Be Formatted : Yes
    Bootable : Yes
    Supports Journaling : Yes
    Journaled : Yes
    Disk Number : 3
    Partition Number : 2
    I'm sure there's information here which no one needs to answer my question, and other info I haven't provided.
    Right now, TM doesn't see any oldest or latest backups
    Are there settings I can change to get it to seamlessly pick up? I think I have seen some references in the user forums to a distinction made by Time Machine between backing up to a Time Capsule (wherein maybe TC is the only "easy" Network Attached Storage destination) with "sparsebundle" files and the way Time Machine backs up to direct, USB 2.0, direct-attached external hard drives (which is what my Time Capsule HD has now become). Or is that the problem at all?
    Any one have suggestions?

  • How can I see Calendar event END times at a glance?

    How can I display my Calendar event titles exactly as I type them? I do not want Calendar to remove duration from the titles of my events. Otherwise I can't see event END times at a glance in month view; only start times. How can I "trick" Calendar to just show my titles as I type them - as I always could before I upgraded. I used to be able to enter "Seminar 9am-5:45" and it would appear that way regardless of how or what I chose to enter (or not enter) for duration.
    I am running OSX 10.9.3.

    It's a bit weird, but if you type in the time info TWICE into the event title then Calendar uses/deletes one of them to populate the event details and leaves the other.
    Apple - Mac OS X - Feedback

  • Can not see any Data in OKE.OKE_K_FUND_ALLOCATIONS

    I am looking in this table with SQLPlus and TOAD and can not see any rows.

    Hi Hussein;
    First I ran:
    select fu.user_name, fr.responsibility_name
    , fu.user_id, fr.responsibility_id resp_id
    , furg.responsibility_application_id resp_appl_id, furg.security_group_id sec_group_id
    from apps.fnd_user_resp_groups furg
    , apps.fnd_user fu
    , apps.fnd_responsibility_vl fr
    where furg.user_id = fu.user_id
    and upper(fu.user_name) = upper('&User_Name')
    and furg.responsibility_id = fr.responsibility_id
    order by 1, 3
    Passing in SYSADMIN
    Taking this row:
    SYSADMIN,General Ledger Super User,0,20434,101,0
    I ran:
    I ran exec fnd_global.APPS_INITIALIZE (0,20434,101,0);
    I still get no rows returned.
    Is thier a way in the App to ensure the SYSADMIN,General Ledger Super User can see this data? Or am I missing something else?

Maybe you are looking for