Need APEX document for learning practice

Hi All,
I am new user in Application Express and i want to create a web application for our day to day job.
Data Should be in column: Serial Number,
Analyst Name (Multiple),
Date,
Customer Name,
Status (Pending or completed)
Buttons - submit, cancel
I should be able to enter the data in the application and at the end of the day I should be able to see how many customers has been completed by individual analyst and should be able to download the data in excel
So please provide any link or document
Thanks
Vinod
Edited by: user783485 on Dec 10, 2008 10:31 PM

Hi,
I have an account in apex and Actually I had already created excel(csv file) and loaded the data in APEX.
and its showing the result I had put some 15 rows in that excel and its shows all the data in APEX. but I want to do it with out excel or loading excel into APEZ so that i can create form in APEX do the data entry and at the end of the day if i click some button i should come to know how many customer files i have completed and how much time i took for each customer

Similar Messages

  • Need Refresh Document for APO( SCM 7.0)

    Hi All,
    Need Refresh Document for APO( SCM 7.0) asap,
    we are planning to do refresh of quality system with Production system
    Environemnt is Unix
    Database is Oracle
    Live Cache Max DB

    Hi,
    Please check the upgrade guide in SAP service market place.
    BR

  • Need a document for field exit....urgent

    Can any one please send a document for field exit or have a simple document on how to work on a field exit with screen shots. pls send it ...its urgent
    Thanks and regards
    Nandha kumar R

    Hi,
    A field exit is a type of user exit.
    A user exit is a hook where you can inject your own add-on functionality or behavior to SAP’s standard business applications without having to modify the original applications.
    Field exits allow you to create your own programming logic for any data element in the Dictionary. You can use this logic to carry out checks, conversions, or business-related processing for any screen field.
    Field Exits
    Field exits allow you to create your own programming logic for any data element in the Dictionary. You can use this logic to carry out checks, conversions, or business-related processing for any screen field.  Example: The data element BBBNR identifies a company’s international location number. You might want to set up your R/3 System so that all international location numbers are larger than 100. 
    The field exit concept lets you create a special function module that contains this logic. 
    You assign the special function module to the data element BBBNR. You then assign the module to any programs and screens in which users can add new international location numbers. When you activate your field exit, the system automatically triggers your special routine whenever a user enters a company location number. 
    In 4.6c, you can use "RSMODPRF" program to create field exits.
    An example of a user exits :-
    MODULE user_exit_0001 INPUT 
        CASE okcode.
            WHEN 'BACK OR EXIT'.
                CASE sy-dynnr.
                        WHEN '100'.
                             SET SCREEN 0.
                             LEAVE SCREEN.
                        WHEN '200'.
    Note that you can write any code that satisfy your needs.                                                     ****
    But in this case, this was wrote as a sample code for reference sake.                                    ****
    And you can test it.                                                                                ****
                             SET SCREEN 100.
                             LEAVE SCREEN.
                 ENDCASE.
          ENDCASE. 
    Field exits (SMOD/CMOD) Questions and Answers
    1. Field exit was created with CMOD, but is not processed when calling the screen.
    -  Since the field exit is not processed until PAI, an action must be triggered on the screen (Return, Save, ...).
    -  Set profile parameter abap/fieldexit to YES and restart the system.
    -  After activating the function module FIELD_EXIT... and the field exit, leave the transaction on whose screen the field exit is to be executed. The screen is not generated until the transaction is started.
    - Do not work on different application servers since there may be some delay before the field exit is activated.
    - The profile parameter must be set on all or none of the application servers.
    - If the field exit is to only be active on specific screens, check whether you chose the correct program and the correct screen
          number (take care with subscreens).
    - Using SE51 -> Field list, check that the screen field does have a reference to a data element. In the name of the field exit use the name of the data element and not the field name.
    - After transport, field exits are marked as active but will not be processed. 
       Tip: First try deactivating the field exit once more and then afterwards, activate it again.
    2. How is performance affected by setting abap/fieldexit?
    - If a screen is generated and the profile parameter is set, a check is run on 2 tables (TDDIR, TDDIRS) to see whether a field exit must be generated for the respective field. In practice, the screen load is not generated until the screen is selected after an
    update. The user should not notice any difference because screen generation is very fast.
    3. Can you read the contents of other screen fields in the field exit?
    - In principle, every field exit can store its value in the global variables of the function group (TOP) and hence make them
    available to other field exits. Note here that field exits are always called and not only if an entry is made in the field or if the field is empty. In addition, it is not possible to make any assumptions about the order in which the field exits will be called in the future.
    4. How does the field exit behave on step loop fields ?
    - After the user has entered data, the field exit is called in PAI as often as there are visible fields in the step loop. The system
    variable SY-STEPL is incremented each time. If a new value is assigned to the field, it is displayed in the module between LOOP and ENDLOOP. This module is also called once for each visible step loop line.
    5. Can field exits be debugged ?
    - No. Field exits must be tested separately in the ABAP/4 Development Workbench. For errors which only occur in the screen environment, it is helpful to write interesting variable to the file system using TRANSFER... . These can then be analysed there.
    6. What can you do if the field contents are no longer transported to to ABAP/4.
    - Check whether a value is assigned to the field OUTPUT.
    7. When is the field exit called if a conversion exit is attached to the
       data element ?
    - The field exit is called after the conversion exit. This means that the INPUT field receives the data in the same format as the
    ABAP/4 program also receives it.
    8. Although a global field exit is inactive, a function module is called which does not exist (for example FIELD_EXIT_PROGRAMM_@)
    - This is an error in the kernel which no longer occurs as of 3.0C.  As a temporary measure, it is useful to assign a program and a screen which do not exist to the field exit and then activate the field exit.
    9. Field exit is not visible in CMOD, although created.
    - If you want to create a field exit for a data element, a function module is proposed with the name FIELD_EXIT_. This
    function module must exist for the field exit to work. If you do not create this function module, but do create one with a suffix,
    the data element is not displayed in CMOD.
    10. Field exit is not executed although it is active.
    -  Fields which do not have the 'Input field' attribute usually do not trigger a field exit. The field exit is designed to allow an
    extended input check. It is therefore only called for input fields - even if they are not ready for input at runtime of the         application by LOOP AT SCREEN.
    This rule does not apply, however, if the field is located within a steploop. Here the field will be always activated, even if it is
    invisible.
    - Field exits can only be executed for fields that are directly related tothe dictionary. If the relation is indirect, i.e. via an       ABAP declaration (  LIKE ), no field exit can be executed.
    11. Field exits on check buttons do not work
    -  Field exits are only intended for input fields. As check buttons count as graphical elements, you cannot install field exits on
    them.
    12. Field exits do not work on selection screens
    SAP Field Exits
    From 4.6c onwards, Field exits will no more be supported by SAP.  They removed the function of field exit but they had given lot of flexibility through userexit.
    However, if you still required it, here is how to activate it :-
    First called up transaction  CMOD.
    Then called up transaction PRFB.
    or
    Activation of the field exits and assignment of the dynpros can also be carried out using program RSMODPRF. For this purpose, the program must be started without parameters (input fields remain blank).  If required, new field exits can be created using program RSMODPRF (see the program documentation).
    REFER THIS LINK ALSO.
    defining screen fields using FIELD-SYMBOL
    Thanks,
    Shankar

  • Need test documents for RAC failover Scenarios

    Hello friends...
    By the end of this week i have to produce sum test documents for RAC and Database server including Sun Cluster Failover Scenarios.
    Can sumone guide me to a link where i can get enough help.
    I have already managed to get enough information.. but i want to see to it that i cover most of the topics.
    Thanks, Regards
    Monu Koshy

    Please check the following links.
    http://download-uk.oracle.com/docs/cd/B19306_01/rac.102/b14197/toc.htm
    http://download-uk.oracle.com/docs/cd/B19306_01/install.102/b14205/toc.htm
    -aijaz

  • Books or document for learning linux (oracle)

    Hi,
    Before I drill into Oracle DBA on Oracle Linux, I want to build some basic linux knowledge first. Which book is the best for me to start with my goal? tutorial like?
    Thanks
    Fei Li

    You don't say what your background is, so I'm guessing you are Microsoft Windows literate. You can use the GUI to do some administration acts such as re-arranging folders and searching for files. With the Linux desktop, you will probably feel quite at home after a very short while.
    There is a totally ginormous amount of Linux on the Internet, but be careful: a lot of it is stale. (Read that as was-once-right-but-now-is-wrong.) This is a pretty good place to start browsing:
    http://www.linux.com/learn/new-user-guides
    Go down to the bookstore and get "Linux for Dummies".
    Now, that being said, there is quite a different skill set needed to know about Linux "under the hood", but I don't think you are concerned about that for now. So download a live-cd version of Fedora (http://fedoraproject.org), put it in the CDROM, and reboot. You are now running Linux without doing anything to your hard drive. Browse around the desktop, check out the various programs. Most Windows applications have Linux counterparts under different names; navigate the menus based on what you want to do, not looking for a particular application program name.
    You'll run across frequent references to other distributions (Ubuntu, for one) but I recommend Fedora because it's the most similar to Oracle Linux (OL). Oracle Linux is a server distribution, not a desktop distribution. That means OL probably won't recognize some of your laptop hardware, or do gazillions of triangles per second on the video screen. Avoid frustration by using a distribution oriented to a desktop/laptop paradigm.
    Once you get comfortable with Linux on a live-cd, you'll want to install it to your hard drive. This can be a challenge because Windows usually squats on the whole disk drive leaving no room for Linux. The only tricky part of a Linux installation is to convince Windows to move over and make room. Fortunately, you don't need to do this.
    Having more than one operating system on a disk is called "dual-boot". Dual-boot is so-o-o last millennium :) What I recommend is to download VirtualBox (http://www.VirtualBox.org) onto your Windows or Fedora box and create an Oracle Linux virtual guest. There are even some pre-configured OL setups available via that web site or the http://eDelivery.oracle.com distribution site.

  • Need installation document for OEM 11G on windows 2003(32 bit).

    Hi,
    As a part of my project, i need to install the OEM 11G on windows 2003(32 bit) machines and targets also windows 2003. there i need to install again agent 11g(11.1.0.1) and target DB is 10.2.0.4.
    I have done the installation of OMS successfully and installed the agent 11g on target as well. i am facing challeges in configuring the database from OMS. i tried couple of options but nothing is working out. Finally i decided to cross check the installation procedure once again with the previously completed ones. could any body share the same.
    in breif i have done following.
    1) installed RDBMS 11G on OMS server.
    2) insalled java 1.6.18.
    3) installed WLS 10.3.2
    4) installed the OMS 11G(11.1.0.1)
    On agent side i installed agent 11g(11.1.0.1) to monitor a database which is of 10.2.0.4 version.
    agent,listeners are reflecting on OMS with up status but DB is showing as "metric collection error". i tried all the possible options like removing and reconfiguring and agent clearing and agent restart etc...but no use. also i in the Oracle installation document, they mentioned as we need to set user equavelence between OMS and agent server but not sure of this, which i have not done. is this compulsary?
    Sorry for putting all the things in one single thread.
    Thanks in-advance.
    Regards
    DBA.

    Did you check if the database is configured in GC?
    If you can't connect using sqlplus to the user dbsnmp make a connection to the database: alter user dbsnmp identified by <password> account unlock;
    In GC go to Targets, All Targets select the DB concerned and hit Configure. Enter the dbsnmp user password etc. After a while you will see the result: DB shows Up (I hope)
    Eric

  • Need guide lines for learning XI

    Hi,
        I am just begining to learn XI. I have knowledge in ABAP and JAVA J2EE. I need to start learning XI, Please tell me from where I have to start for it.
    If you have any book or any link related to it, please share it with me.
    Thanx in advance.
    Regards,
    Mridul.

    Hi,
    Please follow the below links for detailed info on XI.....
    /people/prateek.shah/blog/2005/06/08/introduction-to-idoc-xi-file-scenario-and-complete-walk-through-for-starters - IDoc to File
    /people/ravikumar.allampallam/blog/2005/03/14/abap-proxies-in-xiclient-proxy - ABAP Proxy to File
    /people/sap.user72/blog/2005/06/01/file-to-jdbc-adapter-using-sap-xi-30 - File to JDBC
    /people/prateek.shah/blog/2005/06/14/file-to-r3-via-abap-proxy - File to ABAP Proxy
    /people/venkat.donela/blog/2005/03/02/introduction-to-simplefile-xi-filescenario-and-complete-walk-through-for-starterspart1 - File to File Part 1
    /people/venkat.donela/blog/2005/03/03/introduction-to-simple-file-xi-filescenario-and-complete-walk-through-for-starterspart2 - File to File Part 2
    /people/ravikumar.allampallam/blog/2005/06/24/convert-any-flat-file-to-any-idoc-java-mapping - Any flat file to any Idoc
    /people/arpit.seth/blog/2005/06/27/rfc-scenario-using-bpm--starter-kit - File to RFC
    https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/1685 [original link is broken] [original link is broken] [original link is broken] [original link is broken] - File to Mail
    /people/jayakrishnan.nair/blog/2005/06/20/dynamic-file-name-using-xi-30-sp12-part--i - Dynamic File Name Part 1
    /people/jayakrishnan.nair/blog/2005/06/28/dynamic-file-namexslt-mapping-with-java-enhancement-using-xi-30-sp12-part-ii - Dynamic File Name Part 2
    /people/michal.krawczyk2/blog/2005/03/07/mail-adapter-xi--how-to-implement-dynamic-mail-address - Dynamic Mail Address
    /people/siva.maranani/blog/2005/05/25/understanding-message-flow-in-xi - Message Flow in XI
    /people/krishna.moorthyp/blog/2005/06/09/walkthrough-with-bpm - Walk through BPM
    /people/siva.maranani/blog/2005/05/22/schedule-your-bpm - Schedule BPM
    /people/sriram.vasudevan3/blog/2005/01/11/demonstrating-use-of-synchronous-asynchronous-bridge-to-integrate-synchronous-and-asynchronous-systems-using-ccbpm-in-sap-xi - Use of Synch - Asynch bridge in ccBPM
    https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/1403 [original link is broken] [original link is broken] [original link is broken] [original link is broken] - Use of Synch - Asynch bridge in ccBPM
    /people/michal.krawczyk2/blog/2005/08/22/xi-maintain-rfc-destinations-centrally - Maintain RFC destination centrally
    /people/sravya.talanki2/blog/2005/08/18/triggering-e-mails-to-shared-folders-of-sap-is-u - Triggering Email from folder
    /people/sravya.talanki2/blog/2005/08/17/outbound-idocs--work-around-using-party - Handling different partners for IDoc
    /people/siva.maranani/blog/2005/08/27/modeling-integration-scenario146s-in-xi - Modeling Integration Scenario in XI
    /people/michal.krawczyk2/blog/2005/08/25/xi-sending-a-message-without-the-use-of-an-adapter-not-possible - Testing of integration process
    /people/michal.krawczyk2/blog/2005/05/25/xi-how-to-add-authorizations-to-repository-objects - Authorization in XI
    http://help.sap.com/saphelp_nw04/helpdata/en/58/d22940cbf2195de10000000a1550b0/content.htm - Authorization in XI
    /people/michal.krawczyk2/blog/2005/09/09/xi-alerts--step-by-step - Alert Configuration
    /people/michal.krawczyk2/blog/2005/09/09/xi-alerts--troubleshooting-guide - Trouble shoot alert config
    /people/sameer.shadab/blog/2005/09/21/executing-unix-shell-script-using-operating-system-command-in-xi - Call UNIX Shell Script
    /people/sravya.talanki2/blog/2005/11/02/overview-of-transition-from-dev-to-qa-in-xi - Transport in XI
    /people/r.eijpe/blog/2005/11/04/using-abap-xslt-extensions-for-xi-mapping - Using ABAP XSLT Extensions for XI Mapping
    /people/prasad.ulagappan2/blog/2005/06/07/mail-adapter-scenarios-150-sap-exchange-infrastructure - Mail Adaptor options
    /people/pooja.pandey/blog/2005/07/27/idocs-multiple-types-collection-in-bpm - Collection of IDoc to Single File
    /people/sap.user72/blog/2005/11/17/xi-controlling-access-to-sensitive-interfaces - Controlling access to Sensitive Interfaces
    /people/michal.krawczyk2/blog/2005/11/10/xi-the-same-filename-from-a-sender-to-a-receiver-file-adapter--sp14 - The same filename from a sender to a receiver file adapter - SP14
    /people/prasad.illapani/blog/2005/11/14/payload-based-message-search-in-xi30-using-trex-engine - Payload Based Message Search in XI30 using Trex Engine
    /people/sap.user72/blog/2005/11/24/xi-configuring-ccms-monitoring-for-xi-part-i - XI : Configuring CCMS Monitoring for XI- Part I
    /people/michal.krawczyk2/blog/2005/11/23/xi-html-e-mails-from-the-receiver-mail-adapter - XI: HTML e-mails from the receiver mail adapter
    /people/sap.user72/blog/2005/11/22/xi-faqs-provided-by-sap-updated - XI : FAQ's Provided by SAP
    /people/shabarish.vijayakumar/blog/2006/04/03/xi-in-the-role-of-a-ftp - XI in the role of a FTP
    /people/arpit.seth/blog/2005/06/02/file-receiver-with-content-conversion -File Receiver with Content Conversion
    /people/jeyakumar.muthu2/blog/2005/11/29/file-content-conversion-for-unequal-number-of-columns - FCC for Unequal Number of Columns
    /people/morten.wittrock/blog/2006/03/21/validating-messages-in-xi-using-xml-schema - Validating messages in XI using XML Schema
    /people/michal.krawczyk2/blog/2005/12/04/xi-idoc-bundling--the-trick-with-the-occurance-change - IDOC bundling - the "trick" with the occurance change
    https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/1338- [original link is broken] [original link is broken] [original link is broken] [original link is broken] Creating Sales Order through Idoc
    https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/1348- [original link is broken] [original link is broken] [original link is broken] [original link is broken] Creating Purchase Order Idoc through XI
    https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/1310- [original link is broken] [original link is broken] [original link is broken] [original link is broken] Configuration steps required for posting idoc's(XI)
    Please Mark it as helpful info....
    Thanks.,
    Stallin

  • Need the Materials for learning BI7 (Screenshots for creation of Contents)

    Hi Gurus,
    Pl share the Screen shots for Creating the all Business objects(CUBE,ODS,Infosource ....) in BI7.
    MAIL - [email protected]
    I ll share my thanks as reward points .
    Regards,
    Raja

    Hi,
    http://help.sap.com/saphelp_nw2004s/helpdata/en/fc/1251421705be30e10000000a155106/frameset.htm
    modeling:
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/6ce7b0a4-0b01-0010-52ac-a6e813c35a84
    Frequently Asked Questions  in SAP NW 7.0 - Enterprise Data Warehousing, Reporting, Query & Analysis and Business Planning
    https://www.sdn.sap.com/irj/sdn/docs?rid=/webcontent/uuid/93eaff2d-0a01-0010-d7b4-84ac0438dacc
    GTR

  • I need a document saying the serial number and imdi number was replaced with the new iPhone serial number and imel number, i need a document saying the serial number and imdi number was replaced with the new iPhone serial number and imel number

    Hi there.
    I live in Turkey and i purchesed
    IPHONE 5 S withh Serial number DNPLQ1S3FFFM this telephone had a water dammeg. so i ave replaced this phone with iphone 5s Serial F97M80SSFFFM.
    also
    IPHONE 5 with serial number DNPK51PTDTTR this telephne problem was shuts down randomly, replaced this phone with iphone 5 serial DQGL2030FH1F
    In Turkey i need a document for each replacment IPHONE showing the old IMEI number of the old telephone and the new IMEI number the new phone on the same document each replacement telephon.
    I NEED THIS DOCUMENT TO REGISTER THE NEW TELEPHONES WITHOUT PAYING ANY FEES AND NOT LOSSING MY RIGT OF REGISTERING.
    BEST REGARD.
    NEBIL YALCIN.

    Then contact whoever replaced the phone for you.
    No one here can help you & there is no one from Apple here either.

  • Reward Point for providing document for TREX able to search from Documentum

    Hi all,
    I am in need of documents for documentum integration with EP 6.0
    I want to make TREX to be able to search from Documentum.
    Sender will get the reward points.
    Thanks in advance.

    Karan,
    Documentum contains a brief overview of TREX configuration in teh Content services for SAP.
    Documentum provides a tool call Content SErvices fo SAP Portal - Repository Manager.  This software is used to creaet a seamless integration KM / TREX with Documentum.   In my opinion the product is pretty good.
    You will find the documentation you're lookign for on the EMC/Documentum website powerlink.emc.com:
    Content Services for SAP Portal - Repository Manager Release Notes,
    Content Services for SAP Portal - Repository Manager Installation,
    Content Services for SAP Portal - Repository Manager Administrator

  • Need best practice configuration document for ISU CCS

    I am working on ISU CCS project. i need  best practice cofiguration document for
    Contract management
    Collections management
    Invoicing
    Work Management as it relates to ERP Billing.
    Thanks
    Priya
    priyapandey.sapcrmatgmailcom

    Which version are you setting up and what are the requirements? IF you are discussing the use of NIC bonding for high availability beginning in 11.2.0.2 there is a concept of "High Availability IP" of HAIP as discussed in the pre-installation chapters,
    http://docs.oracle.com/cd/E11882_01/install.112/e22489/prelinux.htm, section 2.7.1 Network Hardware Requirements.
    In essence, using HAIP eliminates the need to use NIC bonding to provide for redundancy.

  • BFILE: need advice for best practice

    Hi,
    I'm planning to implement a document management system. These are my requirements:
    (0) Oracle 11gR2 on Windows 2008 server box
    (1) Document can be of type Word, Excel, PDF or plain text file
    (2) Document will get stored in DB as BFILE in a table
    (3) Documents will get stored in a directory structure: action/year/month, i.e. there will be many DB directory objects
    (4) User has read only access to files on DB server that result from BFILE
    (5) User must check out/check in document for updating content
    So my first problem is how to "upload" a user's file into the DB. My idea is:
    - there is a "transfer" directory where the user has read/write access
    - the client program copies the user's file into the transfer directory
    - the client program calls a PL/SQL-procedure to create a new entry in the BFILE table
    - this procedure will run with augmented rights
    - procedure may need to create a new DB directory (depending on action, year and/or month)
    - procedure must copy the file from transfer directory into correct directory (UTL_FILE?)
    - procedure must create new row in BFILE table
    Is this a practicable way? Is there anything that I could do better?
    Thanks in adavance for any hints,
    Stefan
    Edited by: Stefan Misch on 06.05.2012 18:42

    Stefan Misch wrote:
    yes, from a DBA point of view...Not really just from a DBA point of view. If you're a developer and you choose BFILE, and you don't have those BFILE's on the file system being backed up and they subsequently go "missing" i would say you (the developer) are at fault for not understanding the infrastructure you are working within.
    Stefan Misch wrote:
    But what about the posibility for the users to browse their files?. This would mean I had to duplicate the files: one copy that goes into the DB and is stored as BLOB and can be used to search. Another copy will get stored on the file system just to enable the user to browse their files (i.e. what files where created for action "offers" in february 2012. The filenames contain customer id and name as well as user id). In most cases there will be less that 100 files in any of those directories.
    This is why I thought a BFILE might be the best alternative as I get both: fast index search and browsing capability for users that are used to use windows explorer...Sounds like it would be simple enough to add some metadata about the files in a table. So a bunch of columns providing things like "action", "Date", "customer id", etc.... along with the document stored in a BLOB column.
    As for the users browsing the files, you'd need to build an application to interface with the database ... but i don't see how you're going to get away from building an application to interface with the database for this in any event.
    I personally wouldn't be a fan of providing users any sort of access to a production servers file system, but that could just be me.

  • SAP Best Practice document for Extended Warehouse Management

    Hi,
    Does SAP have any Best Business Practice document for SCM Extended Warehouse Management solution?
    Request to please provide me link if any?
    Thanks and Rgds,

    Hi Reddy,
    Thanx  for the link but I have a requirement to install the BI content for Quality management to present it to the client. So I need to install as a whole not for a particular requirement.
    I want to know do I need to install all the datasources like masterdata and Transactional which are available in RSA5.
    Regards,
    Santhosh.

  • Need help in creating documents for Contacts in Oracle HRMS

    We are trying to add documents to Contacts in Oracle HRMS. (11.5.10.2)
    Navigation: Oracle HR Super User -> Fastpath -> Documents of Record
    Search for a Contact -> Manage Documents of Record -> Create Document of Record.
    In Document Information -> Type is mandatory field but the LOV is not returning any values.
    The LOV works fine for both system defined and custom document types when trying to create documents for Employees or External Contractors.
    But we would need to be able to add documents for Contacts also.
    Please let us know if this expected functionality or if there is any setup that is needed.
    Any help in this regard is highly appreciated.
    Thanks,
    Kiranmayi.

    We are trying to add documents to Contacts in Oracle HRMS. (11.5.10.2)
    Navigation: Oracle HR Super User -> Fastpath -> Documents of Record
    Search for a Contact -> Manage Documents of Record -> Create Document of Record.
    In Document Information -> Type is mandatory field but the LOV is not returning any values.
    The LOV works fine for both system defined and custom document types when trying to create documents for Employees or External Contractors.
    But we would need to be able to add documents for Contacts also.
    Please let us know if this expected functionality or if there is any setup that is needed.
    Any help in this regard is highly appreciated.
    Thanks,
    Kiranmayi.

  • What is the best External Hard Drive for a Macbook Leopard 10.5.8?  I need more memory for documents, pictures, videos, and music.  Thanks!

    What is the best External Hard Drive for a Macbook Leopard 10.5.8?  I need more memory for documents, pictures, videos, and music.  Thanks!

    Hi, does your MacBook have Firewire, or just USB?
    FW is far faster if you have that.
    Avoid Bus powered ones.
    http://eshop.macsales.com/shop/firewire/1394/USB/EliteAL/eSATA_FW800_FW400_USB
    USB only...
    http://eshop.macsales.com/shop/firewire/usb/eliteclassic

Maybe you are looking for

  • I can't install itunes to windows 7 64 bit because of computing space requirements

    I tried to install iTunes 10.7 on my computer but it stops when the installation says :computing space requirements. Then it just says "rolling back action", "the installation was unsuccessful". I don't know what's going on because I have more than 4

  • Error while importing a port theme

    Hi all, I've downloaded a portal theme which displays correctly. Unzipped it and, immediately afterwards, without changing a thing, I've re-zipped the theme. However when I try to import the file I'm getting: "An exception occurred while processing t

  • How do I get my keypad back on the bottom of my screen on my iPad. Somehow it swiped up and split.

    Help, I couldn't find anything in my help section.

  • HP Auto Update

    My HDMI video and audio were fine. However, after HP Auto Update prompted me to update with out any cancel button, and it automatic updated by itself, there was no sound from my TV, and also, the display was bigger than my TV. After that I did a syst

  • Will ATV play .avi files/films?

    Hi, I am thinking of getting rid of my Cisco Kiss 1600 as I am having codec error messages spring up frequently. Does anyone know if ATV will play my library of .avi files that I have? Will I have to convert or import them to iTunes? Any advice aroun