OLM Catalog Administrator content is empty

Hi,
I have an issue with one user that has Oracle Learning Management Administration responsibility assigned but he goes to Catalog administrator it show No Results found and he can't view, add, move category as they are hidden and unshown. however a different user with the same responsibility can view the content and see all course and move catalog.
One additional thing, that more functions are assigned to user 2 than user 1 even though they both has the same responsibility. for example user to has enrollement, organization, setup in their menus while user 1 doesn't.
both users has the following functions
•Catalog Administration
•Resources
•Resource Bookings
•Learner Enrollments and Subscriptions
•Learning History
•Content Administration
•Cost Transfer Finance Headers
•Setup Administration
Your help is very appreciated

Thank you for your reply. Is it possible to do it with a different user than sysadmin but he has System Administrator and User Management Respoinsibilities assigned to him or it will cause setup problems.

Similar Messages

  • How to create a root category in OLM catalog?

    How do we create a root category in the OLM catalog? We are on R12.

    When you navigate to the Oracle Learning Management Administrator responsibility and go to the Catalog Administration tab, there should be a Create drop down list. Leave Category selected and dropdown list and click the Go button.
    If you don't see this drop down list or button, you may not have the Learning Administrator role assigned to your user.
    Anne

  • When opening a word document, I get this:The table of contents is empty because none of the paragraph styles selected in the Document Inspector are used in the document. Is there a way to solve this?

    The table of contents is empty because none of the paragraph styles selected in the Document Inspector are used in the document.
    The above is what I get when I open a word document. Is there a way to solve this?

    Hmmm. Apply the styles?
    Peter

  • How to create a backend administrator content management system?

    How to create a backend administrator content management system using SQLyog515 and JSP only.
    Can give suggestions?
    Thanks,
    JSPnewbie*
    Message was edited by:
    Liting_JSPnewbie

    Have a look at Perch
    Perch - The really little content management system (CMS) - Perch
    It requires a php/mysql database to run but the tables and set up are all automated through the Perch set up files - you just need a server that runs php/mysql. It works on the same principals as the one Ben suggested but its a lot cheaper for a one off site - however if you intend to build more CMS driven sites the one Ben suggested might be more financially viable in the long run.
    The nice thing about Perch CMS is it fits in with your workflow unlike Wordpress/Joomla where you have to jump through hoops to change anything.
    Plus I think you can take Perch for a spin before buying (or at least you could when I was exploring CMSs) - you can't with Power CMS. I never investigated Power CMS beacuse I would not buy something before trying it. It looks good but it might be a bit dated as it doesnt seem to be in continuous develoment. Perch is in a constant state of development and the guys are working to make it better on a daily basis.

  • SRM-MDM CATALOG PI Content Import

    Hi All,
    We have imported SRM-MDM CATALOG 3.0 in Integration Repository.
    When we imported .tpz files all the objects are imported in SWC SRM-MDM CATALOG
    except CatalogueUpdateNotification_Out (Message Interface and its corresponding datatype and message type)
    are not imported.
    Could you please give me path from where I can download PI content for SRM-MDM CATALOG 3.0 that wil have CatalogueUpdateNotification_Out (Message Interface and corresponding datatype and message type objects)?
    Best Regards,
    Harleen Kaur Chadha

    Hello,
    You can download required content through link provided below.
    service.sap.com\swdc ->
    Support Packages and Patches -> Entry by Application Group->" SAP Content"-> ESR Content (XI Content)" -> XI CONTENT SRM-MDM CATALOG -> XI CONTENT SRM-MDM CATALOG 3.0
    BR,
    Dzmitry

  • Tab content is empty when tab is dragged

    I have two TabPanes which can move tabs each other. This is the code of the TabPane which receives the dragged tabs from the user:
    tabPane.setOnDragDropped(new EventHandler<DragEvent>()
                @Override
                public void handle(DragEvent event)
                    final Dragboard dragboard = event.getDragboard();
                    if (dragboard.hasString()
                            && TAB_DRAG_KEY.equals(dragboard.getString())
                            && DragBuffer.getDraggingTab().get() != null
                            && DragBuffer.getDraggingTab().get().getTabPane() != tabPane)
                        final Tab tab = DragBuffer.getDraggingTab().get();
                        tab.getTabPane().getTabs().remove(tab);
                        tabPane.getTabs().add(tab);
                        tabPane.getSelectionModel().select(tab);
                        event.setDropCompleted(true);
                        DragBuffer.getDraggingTab().set(null);
                        event.consume();
    I noticed that when I drag the tab into the target TabPane the content of the tab is empty. But when I swith to the next tab of the target tabPane and return back I can see the content. This is couced by this line:
    tab.getTabPane().getTabs().remove(tab);
    Can you tell me how I can change the logic in order to prevent the empty tab body?
    Ref javafx 2 - Tab content is empty when tab is dragged - Stack Overflow

    This looks like a bug; I see the same thing in the context of your other thread. I can't seem to find a workaround. I have some sample code below which demonstrates the same problem without cluttering the code with drag and drop. This should move the selected tab in the bottom tapPane to the top tabPane ("Up" button) or the selected tab in the top tabPane to the bottom tabPane ("Down" button). When a tab is moved it is automatically selected; moving a tab to the top tabPane fails to show its content. (Strangely, moving a tab to the bottom tabPane works fine.) You should probably file a JIRA; reference this thread ("discussion" in the new forum-speak).
    import java.util.Random;
    import javafx.application.Application;
    import javafx.beans.binding.Bindings;
    import javafx.event.ActionEvent;
    import javafx.event.EventHandler;
    import javafx.scene.Scene;
    import javafx.scene.control.Button;
    import javafx.scene.control.Label;
    import javafx.scene.control.Tab;
    import javafx.scene.control.TabPane;
    import javafx.scene.layout.HBox;
    import javafx.scene.layout.Pane;
    import javafx.scene.layout.VBox;
    import javafx.stage.Stage;
    public class TabSelectionTest extends Application {
    @Override
      public void start(Stage primaryStage) {
      final TabPane tabPane1 = new TabPane();
      final Random rng = new Random();
      final int NUM_TABS = 4 ;
      for (int i=1; i<=NUM_TABS; i++) {
        tabPane1.getTabs().add(createTab(rng, i));
      final TabPane tabPane2 = new TabPane();
        for (int i=1; i<=NUM_TABS; i++) {
          tabPane2.getTabs().add(createTab(rng, i+NUM_TABS));
      final Button moveToPane1Button = new Button("Up");
      final Button moveToPane2Button= new Button("Down");
      final HBox buttons = new HBox(10);
      buttons.getChildren().addAll(moveToPane1Button, moveToPane2Button);
      moveToPane1Button.setOnAction(new EventHandler<ActionEvent>() {
          @Override
          public void handle(ActionEvent event) {
            Tab selectedTab = tabPane2.getSelectionModel().getSelectedItem();
            tabPane2.getTabs().remove(selectedTab);
            tabPane1.getTabs().add(selectedTab);
            tabPane1.getSelectionModel().select(selectedTab);
        moveToPane2Button.setOnAction(new EventHandler<ActionEvent>() {
          @Override
          public void handle(ActionEvent event) {
            Tab selectedTab = tabPane1.getSelectionModel().getSelectedItem();
            tabPane1.getTabs().remove(selectedTab);
            tabPane2.getTabs().add(selectedTab);
            tabPane2.getSelectionModel().select(selectedTab);
        moveToPane1Button.disableProperty().bind(Bindings.isEmpty(tabPane2.getTabs()));
        moveToPane2Button.disableProperty().bind(Bindings.isEmpty(tabPane1.getTabs()));
        VBox root = new VBox(10);
      root.getChildren().addAll(tabPane1, buttons, tabPane2);
      primaryStage.setScene(new Scene(root, 600, 500));
      primaryStage.show();
      private Tab createTab(Random rng, int i) {
        Tab tab = new Tab("Tab "+i);
        Pane pane = new Pane();
        pane.setMinSize(600, 400);
        String style = String.format("-fx-background-color: rgb(%d,  %d, %d);", rng.nextInt(256), rng.nextInt(256), rng.nextInt(256));
        pane.setStyle(style);
        pane.getChildren().add(new Label("This is tab "+i));
        tab.setContent(pane);
        return tab ;
      public static void main(String[] args) {
      launch(args);

  • Discoverer portlet error: blob content is empty.

    I created 6 disco reports and some are giving error, Failed to retrieve an entry from the cache in the Discoverer Portlet Repository. The BLOB content is empty.
    This error only happens with certain users. The users can log directly into discoveer viewer and see the reports. Just not in portal. It also gives me this error randomly and I have to delete the portlet and recreate it. Has anyone else experienced this problem.
    BH

    I copied and pasted the above code to my jsp. It works fine for me . I get the content correctly. Tried on a ps 7.1
    hope the additional character "/>" is not intended
    <td>city</td><td><input name="city"value="city"/>/></td>

  • Error while trying to edit in Bea Portal Administration Content Management

    Hi,
    we are exploring the weblogic portal administration 9.2 and we encounter an exception when editing a content in the Content Management feature. We use the weblogic default workflow, we create a user attached to a group, add that group to a role, then delegate the edit and view capability of a content node in the Content Management to that role, we login using the respective user, check out the content, try to edit the property but then the exception occurs.
    It says "A Repository Exception was thrown: User does not have view privileges on the node"
    the detail exceptio on the property page was:
    "javax.servlet.jsp.JspException: Could not find a node at the key: nodeReqAttr
    at com.bea.jsptools.content.node.ViewPropertyTag.doStartTag(ViewPropertiesTag.java374)
    at jsp_servlet._contenet._node._nodeselected._properties._listpropertiescheckout._jsp_tag46 ...."
    Could u help us what step we went wrong, because we previously try this in the WLP 8.1.4 portal administration the exact same step but never encounter this error before.
    And is there anyway I can atteched screenshots to help better explain this problem?
    Thank you for your help.

    Hi,
    You have to set your activex control properly. then only edit locally in KM will work.
    Also check the below wiki
    https://www.sdn.sap.com/irj/scn/wiki?path=/display/KMC/HowtotroubleshootproblemswithLocalEditing
    Hope that helps
    Raghu

  • File Content Conversion: Empty File

    Dear Experts,
    I'm doing a file to file scenario with FCC. My file gets picked up from the source folder but the communication channel doesn't send the file for processing ahead. This is the error I get in Communication channel monitoring:
    Channel Send_Acceptance_File: Entire file content converted to XML format
    2008-10-10 12:09:38| Warning |Channel Send_Acceptance_File: Empty document found. Proceed without sending message
    2008-10-10 12:09:38| Success |Confirmation mode test found. File will be resent next time
    I don't see any entry in sxmb_moni.
    What could be the possible reason for this.
    Thanks and Regards,
    Merrilly

    Hi Merrily
    Problem is with your FCC.
    Are you using Key field in FCC with and keyFieldInStructure      as ignore?
    This problem arises due to incorrect keys or Data type mis match for the record structure in FCC.
    Thanks
    Gaurav

  • Srm-catalog portal content

    hi!
    does anybody know what is the special content that SRMMDMCAT01_0.sca have?  
    different iViews?
    if i'm implementing srm-portal-mdm-r3   it's necessary?
    because i'm not using all the srm catalog, and only installed the mdm portal content, i'll have some problems?
    thanx

    The purpose of SRM-MDM is to use MDM as the catalog.  You would store the data in MDM and SRM will then reference MDM ad-hoc.  As part of the implementation, SAP delivers a webdynpro application which is deployed on a Netweaver Java stack, and that's what the user uses to search the catalog.  The two applications (iViews) are called SearchUI and AdminUI.  If you aren't going to use these, how are you planning on searching the catalog from SRM?

  • MS - contention with empty materialized view on demand - 10.2.0.4

    Could somebody explain what is MS - contention? I've searched everywhere and got just that it is used to setup materialized view log. I need more deeper explanation. Why is it needed? And the main thing - I have this materialized view:
    CREATE MATERIALIZED VIEW "CLIENT_MV"
    ORGANIZATION HEAP PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 NOCOMPRESS LOGGING
    STORAGE(INITIAL 1048576 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
    PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)
    BUILD IMMEDIATE
    USING INDEX
    REFRESH FAST ON DEMAND
    WITH PRIMARY KEY USING DEFAULT LOCAL ROLLBACK SEGMENT
    DISABLE QUERY REWRITE
    AS SELECT CLIENT_ID FROM CLIENT WHERE 1=0
    And mlog on it. What activity can cause MS-contention on it? I tried concurrent updates on a master table, refreshed it at the same time, but can't get contention. May be it is important that I saw this contention in v$active_history view
    Edited by: user6895786 on 26.02.2010 6:11

    user626582 wrote:
    Hi all
    I have trouble on a 10.2.0.4. All Users have lost their Passwords, that means that the column password in the view dba_users is empty an Users can't login anymore.
    I didn't found a logfile or something else. Have you got an idea ? Profiles eg ?
    Thanks for your help.What is the error that the users are getting, invalid user name and password, is it? Did you do any recent patching of your system/db? I would suggest that you raise an SR with oracle as it would highly descreuctive to play with base tables on your own.
    HTH
    Aman....

  • Effect and Content Panel Empty

    HI
    have iMac Intel Core i3 OS 10.6.6.
    Bought Adope Photshop Elements Software with DVD, made full install, however the "Effect" and "Content" panels are empty.
    No effects, no frames etc. to choose from!
    Where is the stuff, how can I get it installed?
    Many thanks
    A from CH

    Go to your hard drive>library>Application Support>Adobe>Photoshop Elements>9.0>Locale>en_US (or wherever you are) and delete mediaDatabase.db3. The next time you start PSE don't do anything till the contents of the panels show up.
    Note that you have 3 library folders: system>library, your username>library, and the one at the top level of your hard drive. You want the last one.

  • Archiving OLM catalogs and associated classes, courses, offerings and enrollment histories

    Hi,
    As a comoany continues to use OLM, the catalog will expand and cause space constriants as a result.
    I am curious to hear how other clients handle archiving of vintage catalog objects and enrollmets and histories in OLM. Is there a tool that could be used?
    A workaround to get this done?
    Look forward to your response.
    Many Thanks

    Hi!
    It is possible to use the APIs or third-party extensions to archive Catalog objects, but typically the enrollment information is not purged from the database itself.  I have not seen environments where having this historic information has caused an issue with space constraints, even with decades of data.  Deleting enrollment information would cause data integrity issues with Learner transcripts and could pose a problem with reporting.
    If you're interested in just archiving Catalog objects such as Learning Paths, Courses, Offerings, Classes, Forums, and Chats so that they do not clutter the main view of the Catalog, my company offers a package of clean-up extensions.  These extensions work together to:
    Allow Administrators to tag Catalog items that should be archived
    Offer recommendations on which items should be end dated and moved to an archive folder based on the last time they were accessed
    Archive Catalog objects that have been tagged for archiving, along with all of their children by end dating them and/or moving them to a designated archive directory
    Here is a link to a PDF Guide that explains how they work:
    http://bit.ly/OLMArchivePackage
    Here is a link to additional details on how to try the extensions in your own environment:
    Oracle Learning Management Archiver
    I hope this helps!
    Best,
    Anne
    Anne Saulnier | Synergy Codeworks LLC
    [email protected]
    603-864-9942

  • Error While creating OLM - catalog - course

    Dear All,
    I am facing an error while creating OLM COurse.
    There error i am getting is ' The mandatory column TAV_INFORMATION1 ( also known as ACTUAL TRAINING COST ) has not been assigned a value.
    I checked in the page but there is no field named after actual training cost to enter the information. And also we are not using financial costing.
    Request you to kindly suggest on how to remove this error.
    Regards
    Sowmya.

    Hi,
    What is the application release?
    Please see if these docs help.
    OLM: Copying a Courses Errors out With "The mandatory column TAV_INFORMATIONXX (also known as %) has not been assigned a Value" [ID 403721.1]
    Ota.I Not Able To Create Category & Class in OLM [ID 364237.1]
    Cannot Create Offering & Course From Learning Object If Mandatory Dff On Course [ID 458178.1]
    OLM: How To Manage One Common Catalog In A Global Business Group With Several HR Employees Business Groups ? [ID 423186.1]
    Thanks,
    Hussein

  • Effects / Contents folder empty, Elements 9 on Mac 10.6.8

    Hi. My Effects / Contents folders are showing empty, and of course they are both checked in Window. Various forums suggest doing un-install on previous Elements versions and reloading, which I have done without success. Another suggestion is deleting Mediadatabase.db3 from Locale/en_US, but I am not seeing the Mediadatabase file in Locale.
    Any suggestions please ?
    Thanks.
    Dave.

    Then are you sure you're in the correct folder? It should be in library (the one at the top level of your hard drive, not system>library or your username>library)>Application Support>Adobe>Photoshop Elements>9.0>Locale>en_US (or wherever you are).

Maybe you are looking for

  • How do I make an updateable Recordset in CS4

    Hello, I've been searching for a couple hours now and have been unable to find an answer to this question. I was using MX 2004 until recently (yes I know very old) but I was pretty set in my ways This is currently my enemy "Current Recordset does not

  • How do I delete photos from the gallery that were downloaded from FB or google?

    New user.  I am trying to delete photos from my gallery in the Samsung S4.  If I had taken the photos with the camera phone, the trashcan shows up and I can delete.  But if I select the downloaded photos- no trashcan icon shows up.  I have tried stop

  • How do I slowly pan across photos in a slideshow

    trying to build a dynamic slideshow in dreamweaver.  Saw a site that I liked where the photo appeared to actually slowly move in the window it was being viewed in.  Have also seen some that will zoom in a bit or zoom out.  Is this a dreamweaver capab

  • Yosemite startup with iCloud

    Yosemite startup with a box saying there is a problem login with my email to iCloud is anyone else having the same problem if so how do you fix it this happens nearly every time i startup the mac and go to the main screen i go system preferences then

  • PE7 - burned widescreen DVD played as "normalscreen"

    Hi, I recently started my "video career" by buying Premiere Elements 7 and a Sony Camera. The camera produces 720x576 widescreen mpgs, so I use the according PE7 widescreen template for editing. After resolving some big problems (they weren't big, bu