Oracle of learning management class additional information descriptive Flexfield

Hello team,

We have activated the additional class Information Descriptive Flexfield store class addition details, but we have not seen the value of de facto in class OLM screen, here is the configuration of the FDF screenshots. Could you let me know how to find the value of de FACTO in the class page.

Additional Class Information DFF.jpg

Additional Class Information DFF- Segments.jpg

Thank you

Riadh

Hey, Raju.

You will need to add personalization to the class details page that is read-only and editable class details page.

There are two items that you will need to show:

  • Column default: additional information
  • Flex: (EventsDescriptiveFlex)

The specific names of Document are:

  • / Oracle/Apps/OTA/admin/Event/WebUI/ViewEventPG
  • / Oracle/Apps/OTA/admin/Event/WebUI/EventMaintainPG

I hope this helps!

Anne

--

Anne Saulnier

Thematise synergy

http://www.synergycode.com

Tags: Oracle Applications

Similar Questions

  • HRMS Oracle install types of additional information for the classification

    Hello

    We ran out of segments of de FACTO screen Orgn. To capture additional information on organizations.

    As a work-around, we plan to capture additional information by adding the NEW type of rating information 'HR'.

    Appreciate if one can provide some advice on that.

    Thank you

    Rambeau

    1. define the EIT in Org Developer DF

    2. run this registry information Types (EITs) program

    Thank you

  • getCustomDatum not implemented for the oracle.jdbc.driver.T4CNamedTypeAccessor class

    Hello world

    running mapviewer Ver11_1_1_7_3_B140717 we met the error above in newspapers trying to create maptiles.

    Installation program:

    -Table with a column of type ordimage (no available georaster here, we have to keep the files in the file system)

    -Spatial index for column in mbr, metadata are

    -All the files using the 31466 (Gauss-Krueger 2) coordinate system

    -Image theme in mapbuilder shows images

    -Bottom of mapbuilder card shows images

    Trying to create the maptiles by using mapviewer administration - manage tile layers creates the above error (same details in the excerpts above).

    AM PIZZABOTEN: Query [p ImageTheme] = SELECT ROWID, RAS_DOB MBR WHERE MDSYS. SDO_FILTER (MBR, MDSYS. SDO_GEOMETRY (2003, 31466, NULL, MDSYS.) SDO_ELEM_INFO_ARRAY (1, 1003, 3), MDSYS. SDO_ORDINATE_ARRAY(:mvqboxxl,:mvqboxyl,:mvqboxxh,:mvqboxyh)), 'querytype = WINDOW') = 'TRUE' AND (pyramid = 25)

    August 14, 2015 15:36:37 oracle.sdovis.theme.ImageThemeProducer loadImagesFromDBCached

    FEINER: Fetch size: 100

    August 14, 2015 15:36:37 oracle.sdovis.theme.ImageThemeProducer loadImageBlock

    AGAIN: Ungultiger Spaltentyp (invalid column type?): getCustomDatum not implemented for the oracle.jdbc.driver.T4CNamedTypeAccessor class

    August 14, 2015 15:36:37 oracle.sdovis.theme.ImageThemeProducer loadImagesFromDBCached

    WARNUNG: unable to load keyframe: AAAVuOAAMAAAACFAAB

    August 14, 2015 15:36:37 oracle.sdovis.theme.ImageThemeProducer loadImagesFromDBCached

    INFORMATION: Exec sql [RAS_DOB_2014_TEST] time: 7ms, 0 images of loading time: 1 ms.

    August 14, 2015 15:36:37 oracle.sdovis.DBMapMaker renderEm

    INFORMATION: * the time spent on the loading features: 14ms.

    MapTiles records only show the background color.

    Has anyone else experienced this problem?

    Best regards

    NilsO

    Hi Nils

    12.1.3 WebLogic jdbc libraries are located in the MW_HOME/oracle_common/modules/oracle.jdbc_12.1.0 directory level.

    For this WLS jdbc driver is ojdbc7.jar which is loaded on startup of WLS.

    As mentioned on the post preceding this is is not compatible with the 11.1.1.7.3 MapViewer to display the ORDIMAGE. Seems that even the ojdbc6.jar that exists in this directory cannot be used.

    What to do is make the WLS Server uses the ojdbc6.jar for 11.1.1.7.3. There are different ways to use a different pot in WebLogic.

    This page http://docs.oracle.com/middleware/1212/wls/JDBCA/third_party_drivers.htm was noted in this regard.

    As a quick test, you can try to make the ORDIMAGE with the following steps;

    (1) on page MapViewer OTN, Oracle Fusion Middleware MapViewer access downloads and download the quick start for the 11.1.1.7.3 Version.

    You will find the glassfish3/glassfish/domains/Domain1/lib folder a file jdbc ojdbc6.jar.

    (2) on your installation of a WebLogic domain:

    Navigate to the oracle_common/modules/oracle.jdbc_12.1.0 directory

    make a backup of ojdbc7.jar

    copy the ojdbc6.jar on top of ojdbc7.jar

    (3) start Weblogic server and try to make your theme ORDIMAGE.

    As I mentioned before, there are different ways to add a jar to WebLogic classpath. The quick test above is just replace the original ojdbc7.jar in a facility that is not good, as you lose you original ojdbc7.jar.

    Best regards.

    João

  • How to fire a manager class when consuming web service in java - weblogic

    With the help of Axis 1.4 I created client application that consumes the external server services.

    The response of the application server with the soap message that include tags header as well as the body tag.

    My problem with the header tag, I'm trying to find away to get the header element.

    What happened so far:

    I found that I need to use a handler that extends BasicHandler using this class, I can get the header tag. source: dealing with SOAP in the axis headers

    But how this handler to operate during the use of web services? I mean how to call this handler whenever I received the response from the server to get his header .

    Some articles suggest I should use .wsdd file. I use 11.1.1.7 with weblogic 10.3.6 Jdeveloper environment where I don't know web.xml configuration file.

    Question: How to bind this information (Manager class, .wsdd file and web.xml ) to collect and the Manager works for the heading tags?

    The best start was to check the Axis guide on: Apache-Axis reference Guide where you will have an overview of the workflow. (Thanks to Timo)

    To configure the handlers be trigger on the client side you need to do the following:

    1- Create class Manager basically something similar to the following:

    package mypackge; 
     import javax.xml.soap.SOAPException;
     import org.apache.axis.AxisFault;
     import org.apache.axis.MessageContext;
     import org.apache.axis.handlers.BasicHandler;
     import org.apache.axis.message.SOAPHeader;
     import org.apache.axis.message.SOAPHeaderElement; 
    
     public class SoapHeaderConsumerHandler extends BasicHandler
     { 
         public void invoke(MessageContext messageContext) throws AxisFault 
         { // Your logic for request or response handling goes here. 
          // Basically you need to make use of the parameter 
         // messageContext where you can access the soap header and body tags. 
         } 
    }
    

    2- Create the client-config.wsdd file. It will look like the following:

    http://xml.apache.org/axis/wsdd/" xmlns:java="http://xml.apache.org/axis/wsdd/providers/java">
      
           
               
          
      
     
    
    
    

    You can see that I only use handlers for incoming response side server. So whenever the client application receives a response from the server the class Manager SoapHeaderConsumerHandler is triggered and the method invoke will be called by default.

    Note: if you want to access the outgoing request before sending to the server you need to add an additional label for to add the request handler.

    Check the Reference Deployment (WSDD) of the guide of the axis:

    3- Where to place the client-config.wsdd file?

    You will need to place the .wsdd file in the working directory. You can easily find the location of the working directory using:

    System.out.println("Working Directory = " + System.getProperty("user.dir"));
    

    Source: Get the Current Working Directory in Java

    You just place the .wsdd file here.

    Useful links:

    Where to place the file client - config.wsdd in Railo

    Handler axis V It is an example to managers of the side server.

    Dealing with SOAP headers in the axis

  • Oracle Primavera Portfolio Management 9.0 Ports

    Hello
    We seek to deploy Oracle Primavera Portfolio Management 9.0.
    We have the database and the Web server.
    Can someone tell me what ports must be open between the two servers, so that on the Internet, I don't find that information anywhere.
    Thank you.

    It depends on what database used for the backend.

    For the front end for the customer, you will need 443 (user name a password screen is always 443) and maybe 80 if you allow access http through the browser of the user.

    For the database (check with your DBA) but normally:
    MSSQL is 1433
    Oracle is 1521

    In addition, the system must msdtc to access. This can be a little tricky because MSDTC expects not only the TCP 135 port, out of the box but also uses RPC dynamic port allocation. Is there a way to configure MSDTC to use a specific dynamic port range.

    http://support.Microsoft.com/kb/306843

    Gene

  • Windows Media Center error: signature of the problem of additional information about the problem

    Description

    Signature of the problem

    Additional information about the problem

    original title: Windows Media Center in Windows 7 Home Premium

    then, it looks like some Windows Update is causing a problem.
    Two options-
     
    1 do a restore and immediately go into Windows Update and change the setting for
    Download, but let me choose what to install. Then install the updates one
    until you find the one that breaks the system. Do another restore, turn off
    updates and when one appears that is the problem, right-click and then
    Select HIDE this update. Let us know what is the update.
     
    2. you can go in Panel, programs and features, see the installed updates
    Sort by date and uninstall the updates one at a time until you find bad.
    Then set Windows Update to download and install not and notified on the
    updates, right-click to hide. Let us know...
     
     
    Barb
     
    MVP - Windows/entertainment and connected home
     
     
    Please mark as answer if that answers your question
     
     
     
     
  • Additional information about the calendar CSS does not appear

    We are on Apex 5.0 and I'm running it on Chrome.

    I created a CSS calendar using the universal theme, the model Standard region.

    I activated the option of tool tip and put in #UNIQUE_ID # in the additional information box. Is the name of one of the elements of the query Source region.

    The ToolTip resulting adds the literal "#UNIQUE_ID #" to the content of the display column. Whatever name so that I put in the additional information box.

    I saw another thread that describes it, but the answer was that it could not be reproduced.

    Anyone else seeing this?

    BHenderson104 wrote:

    We are on Apex 5.0 and I'm running it on Chrome.

    I created a CSS calendar using the universal theme, the model Standard region.

    I activated the option of tool tip and put in #UNIQUE_ID # in the additional information box. Is the name of one of the elements of the query Source region.

    The ToolTip resulting adds the literal "#UNIQUE_ID #" to the content of the display column. Whatever name so that I put in the additional information box.

    Use the syntax of substitution of standard static text for reference calendar query column values:&UNIQUE_ID.

    Oracle are standardizing on this syntax, in order to have a coherent approach to the reference to the values of new components.

  • Can anyone tell me about Oracle Data Governance Manager? How to do with it?

    Hai all,

    We plan to implement Oracle Master Data Management.Please Oracle customer hub should be read the following link and tell me how to work on Oracle Data Governance Manager.

    Where can I find it?

    What are the steps in the implementation?

    http://www.Oracle.com/us/products/applications/master-data-management/Oracle-customer-hub-439838.PDF

    Hello Nandini,

    DGM software build can be downloaded from My Oracle Support via the "Patches and updates" tab with the name/number of patch 9329831 (currently password protected; please connect to a service request and ask for a password).

    Installation of the DGM: for more information on how to install the CMD are documented in siebel Guide Version to maintain 8.1.1.x, O Rev., Section: management and governance of data installation (DGM).

    Steps to customize the application of governance (DGM) (Doc ID 1323952.1) data management
    Document provides steps to customize the application of the DGM, makes it easier to change the skin via CSS stylesheet changes in the application of OOTB DGM.

    Reference: Oracle Master Data Management - Information Center Customer Hub (Siebel UCM) - installation of the life cycle (Doc ID 1081980.1).

    Thank you

    Shilpi

  • How to add additional information to the files of the House

    Is it possible to add additional information to home video and TV shows/movies that I imported my self not that store from iTunes.

    I did some research and it seems that you can use a third-party software to do.

  • The getCurrent method on the oracle.adf.share.ADFContext class is not allowed

    Hi all

    I've migrated my old project i.e 12.1.3 to new version 12.2.1.

    After the migration of the project where ever, we use ADFContext.getCurrent () .getSessionScope () .put ("dummy", 1);

    put the variable in the session. We receive the exception as Houston-25150: the getCurrent method on the oracle.adf.share.ADFContext class is not allowed. In the earlier version, but its works very well.

    What will be the question. Please can someone let me know.

    Thank you

    Amar

    This error except for security, so try to use the expression adf.context.current.sessionScope.get ("dummy") (or attempt to use this as a groovy adf.context.sessionScope.dummy expression) attribute EO and trustMode = "true" for this attribute set.

    For more details check this url

    Tarek Fathy: oracle.jbo.ExprSecurityException Houston-25150

  • Why can I I is no longer fill out additional information on my adobe PDF Forms. At the time, he was an opposition. It will only allow me to type limited information?

    Acrobat Reader

    Why can I I is no longer fill out additional information on my adobe PDF Forms. At some point, you can insert an icon that allows you to enter additional information. It will only allow me to put limited information?

    He has not responded.

  • Need to display additional information to the hideshow in advanced table

    Dear all,

    I have a requiremnt as below.

    I have an advanced table and displaying data between a VO below and which, I need to display additional information after clicking on one of the field on the line.

    Basically, I need hideshow kind of features when you click a field in the row.

    Please help me on this

    Hello

    Fallow under steps it will work for you.

    Step 1: Select advanced table right click and create detail area for table advanced. (detail)

    Step 2: Create Message component provision under the detail Section. (DetailRN)

    Step 3: Add (point information) under DetailRN and correct view Instance and view attribute.

    Here's how structure component look.

    TableRN (advanced table)

    col1

    col2

    Components AdvancedTable

    in detail

    DetailRN

    COL3 (additional information)

    COL4 (additional information)

    Let me know any questions.

    Thank you

    Dilip

  • Demo PeopleSoft Enterprise Learning Management 9.1

    Hello

    Anyone know what is the user ID default for the demonstration of PeopleSoft Enterprise Learning Management 9.1 database? I can connect only on the data mover in bootstrap mode. Even have no chance to connect to the application designer.

    Thanks for your help

    VP1 or PS is a good thing to start.
    I assume that you have already run the wizard database using Data Mover in bootstrap mode.
    After you have created your database of ELM, examine the PSOPRDEFN table
    Select * from PSOPRDEFN;

    All PeopleSoft user account are defined in this table and the password is equal to the id of the operator when installing.
    Just see if VP1 or PS resides in this table.

    Halin

  • PeopleSoft Enterprise Learning Management 9.1

    Hello

    I installed peopletools 8.53 and demo for PeopleSoft Enterprise Learning Management 9.1 on SQL 2008 database.

    How can I check which version of the application of the ELM is on?

    Thanks for your help

    Log in to PeopleSoft and select "Customization Options" in the main menu. It's just a random component. Now press Ctrl + D on your keyboard.

  • Oracle (R) Enterprise Manager Console Version 9.2.0.1.0 error?

    Hello

    I just took someone as a DBA, and I want to clarify something that I saw in Oracle (R) Enterprise Manager Console Version 9.2.0.1.0 Production.

    My default temporary Tablespace, TEMP. DBF is currently sized at 6144 MB, used size is MB 6140 99,93% with full auto expand on.

    Automatically expand the data file when it is full (Auto expand) K 20480 bytes.

    Maximum size - K 8192 bytes. (-> Issue of State here <-)


    I think that most likely my ex-personnel clicked wrongly, "Ko." It should be "M bytes. However, I would like to know how is it possible that console OEM version 9.2.0.1.0 allows the maximum size (8192 K bytes) less than 6144 MB? Is this allowed? If Yes and left clear, what the impact will be on the TEMP tablespace?

    Has anyone ever encountered this problem?

    Concerning
    Hahnhahnhahn

    940854 wrote:
    Hi CKPT

    Thanks for your explanation, it has been very useful indeed. However, for the second part of my question, what happens if the size of the user was to exceed 250? I am right to say that the size Max of 200 will be disabled and since the auto expand is on, the size of the data file will then have a size of "unlimited"?

    You are welcome, the user must not exceed 250 MB. Unable to extend temp Yes you must be mention more value than "bytes" or mention autoextend up to maxsize or fixed size.

    What is your opinion on that?

    Check autoextend with the largest value of maxsize, please see below exit carefully. After reaching 250 mb, each spread now that he needs another 10 m up to 300 m.

    SQL> alter database tempfile 'C:\ORACLE\APP\ORADATA\CKPT\TEMP_TEST01.TMP' autoextend on next 10m maxsize 300m;
    
    Database altered.
    
    SQL> select tablespace_name,file_name,bytes/1024/1024,user_bytes/1024/1024,maxbytes/1024/1024,autoextensible from dba_temp_files where tablespace_name='TEMP_TEST';
    
    TABLESPACE_NAME                FILE_NAME                                                    BYTES/1024/1024 USER_BYTES/1024/1024 MAXBYTES/1024/1024 AUT
    ------------------------------ ------------------------------------------------------------ --------------- -------------------- ------------------ ---
    TEMP_TEST                      C:\ORACLE\APP\ORADATA\CKPT\TEMP_TEST01.TMP                            "250                     249                300 YES"
    
    SQL>
    

    Hope this clears.

Maybe you are looking for