Can we show total enrolled employee and employee no field as well

guys
we are using oracle Learning Administrator 11.5.10,i have two query for enrollment screen in self service page,one is regarding total count show of enrolled employee ,because we have to count manually no of participant instead of automate,and 2nd one is ,we need to show to employee no field as well,right now we can't understand by name becuase in same case may appear name duplicate,
please help this regard.. thanks for supporting.

Thanks for your reply and supporting..
When we go in class detail ,where we can see information about the class like tile ,calass location etc,at the left sied of top there are four option link which are,
Clasee
Enrollments
Resource Booking
Learner Access
But when we click to entrollment link system display all enrolled employee those who pertain that class,after appearing enrollment page ,there is not field(Total enrolled employee) and we have to count manually. How can we display total filed at the bottom.
second query is,we need to display employee no field as well,is there any possibility,
hope you understand...
Thanks.

Similar Messages

  • How can I show Totals in at the footer?

    Hi,
    I want to create a List (Report) with a Number column say (Amount), and there are certain number of transactions on the page. How can I show Total Amount at the bottom of report?
    Thnx in advance.

    BalusC, thnx for ur help. This means there is no other way that v we can add some number columns using jsp. In anyways we will have to populate totals using backing beans.
    Thank u very much :)

  • Difference between Sales employee and Employee responsible

    Hi,
    Can somebody explain the difference between sales employee and employee responsible
    Thanks in advance
    Reddy

    hello, friend.
    both sales employee and employee responsible have employee numbers and fall under partner type "PE".
    an Employee Responsible is a more general term and could refer to someone who is supposed to maintain documents, who may be dedicated to service a customer or a set of customers, a credit employee or a quasi-manager.  he can even be a sales employee.
    a sales employee or sales personnel is more specific.  usually this refers to the salesman who has a defined set of customer accounts.  the sales employee is also specifically tracked in Sales Info System (e.g. t-code MCTI).  this position carries the SAP standard code/partner function of "VE" (in German).
    hope this helped you.
    regards.

  • I cannot backup because no more storage is displayed when the storage statistics shows Total Storage 5GB and Available Storage 5GB - basically i haven't used any memory but i cannot backup! please help

    i cannot backup my iphone4s because no more storage is displayed when the storage statistics shows Total Storage 5GB and Available Storage 5GB - basically i haven't used any memory but i cannot backup! please help. i am only trying to back up my notes and contacts. that's it. and i don't think it will use up 5GB

    On your iPhone, go to Settings>iCloud>Storage & Backup>Manage Storage.  There you should be able to see how much of your used storage is allocated to different things (ex., iphone backup, ipad backup, mail).  From there you should be able to figure out what is going on.

  • When sending e-mails, how can I show only the name and not include the e-mail address?

    When sending e-mails, how can I show only the name of the recipient and not include their full e-mail address?

    Hi beverlyfromnull,
    Have you added the recipients to your address book?

  • How to show 'No Records Found' and 'Employee Name Unknown' in oracle report

    Hello,
    I'm using 6i and building a report to show employees who have incorrectly input their time. I have an input parameter so a user can select a specific employee by emp_id or can leave it empty to show all. That part works. I also have date parameters that are required. That works too. However I am having trouble displaying 'NO Records Found' if the date parameters have no late or rejected employee time records. I currently have it as a text field arranged behind the emp_name field which i filled white. It works...however i have a pretty good feeling there is a better way to do this. Also, I have some data that is null since i am using two tables. There are time stamps with no emp_name or emp_number. I still need to show these records but want them to show up as "Employee Name Unknown" that way the user doesnt get confused and thinks the emp_name in the row above also includes this row.
    select e.location "Clock Location",
    e.emp_no "Emp No",
    l.first_name ||' ' || last_name "Name",
    e.time_stamp "Time",
    from emp_time e, master_all l
    where e.emp_no (+) = l.emp_no
    and e.status = 'rejected'
    --and e.emp_no  = nvl (:p_emp_no, emp_no)
    --and e.time_stamp between :p_start_date and :p_end_date                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    Hi,
    So, when the join between emp_time and master_all produces no rows, you still want one row of output, saying 'No Records Found'; is that right?
    If so, you can outer-join the result set to dual, with some join condition that accepts anything.
    Use CASE (or equivalents) to get special values (like 'No Record Found' or 'Employee name unknown') when certain columns are NULL.
    For example:
    SELECT     j.location     AS "Clock Location"
    ,     j.emp_no     AS "Emp No"
    ,     CASE
              WHEN  j.name     IS NULL
              THEN  'No Records Found'
              ELSE  j.name
         END          AS "Name"
    ,     time_stamp     AS "Time"
    FROM     dual     d
    ,     (     -- Begin in-line view j, join of emp_time and master_all
              SELECT     e.location
              ,     e.emp_no
              ,     CASE
                       WHEN  l.first_name IS NULL
                       AND       last_name    IS NULL
                       THEN  'Employee name unknown'
                       ELSE  l.first_name || ' ' || last_name
                   END     AS name
              FROM      emp_time     e
              ,     master_all     l
              WHERE     e.emp_no (+)       = l.emp_no
              AND      e.status (+)       = 'rejected'
    --           AND     e.emp_no (+)        = NVL (:p_emp_no, emp_no)
    --           AND       e.time_stamp (+)  BETWEEN :p_start_date
                                             AND        :p_end_date
         ) j     -- End in-line view j, join of emp_time and master_all
    WHERE     d.dummy     != j.name (+)
    ;In an outer join, all conditions involiving the optional table need a + sign; otherwise, the effect is the same as an inner join.
    The message 'No Records Found' is a string, so it has to go in a string column.
    I put it in the "Name" column, just because I knew that "Name" was a string.
    You can put in in any other column if you wish. If that column is not already a string, then use TO_CHAR to make it a string.
    You could also have a column just for this message.
    I hope this answers your question.
    If not, post a little sample data (CREATE TABLE and INSERT statements, relevant columns only) for all tables, and also post the results you want from that data.
    DOUBLE U wrote:
    I've tried nvl in the select statement but since emp_name is a concatination of first and last name it doesnt work. This is what i have tried
    nvl(l.first_name|' '||l.last_name,'NO EMPLOYEE RECORD FOUND') "Employee",I assume you meant to have two | characters, not just one, after first_name.
    The first argument to NVL will never be NULL in that case; it will always contain at least a space, whether or not the other columns are NULL. You could say:
    NVL ( NULLIF ( l.first_name || ' ' || l.last_name
        , 'NO EMPLOYEE RECORD FOUND'
        )        "Employee",bujt I find it less confusing to use CASE, as shown above.

  • How can I show only text edits and not text formatting when using print comments summary?

    Acrobat 9.3.0 for Mac.
    Here is the scenario: I used the Compare command to see the changes between 2 PDFs. The resulting file some edits are inserts and some are deletions. I want to print a comments summary only showing the text edits. In the Compare Option pane, I select Text and deselect Images, Annotations, Formatting, Headers/Footers, and Backgrounds. Now on the screen I see inserts are highlighted in blue and deletions are marked with sort of a caret and vertical bar symbol. So all looks good at this point. However, when I show the Comments List, I see addtional comments that indicate "Replace - The following text attributes were changed: fill color." Those comments do not appear in the page view unless I check the Formatting check box to show them. With Formatting unchecked, I print a comments summary and all of the "Replace - Fill Color" comments" appear on the resulting comments summary.
    I only want to show text edits, not text formatting changes. So questions are:
    1. Why, when the Formatting checkbox is unchecked, do the text formatting comments still appear in the comments list when they do not appear on the page display.
    2. How can I print only the text content edits and not show the text formatting changes when using Print Comments Summary.

    Hi,
    You can set ExecuteWithParams as default activity in the task flow then method activity to return total no of rows passing to Router activity if your method has value 0 then call Create insert operation else do directly to page.
    Following idea could be your task flow
    Execute With param (default) > SetCurrentRowWithKey > GetTotalNoOfRows (VOImpl Method)
    |
    v
    Router
    1. If pageFlowScope outcome is 0 then call CreateInsert > MyPage
    2. if pageFlowScope outcome > 0 then MyPage
    hope it helps,
    Zeeshan

  • How can I show a error popup and cancel navigation?

    I am using JDeveloper 11.1.1.6 with WL 10.3.5. I am new to ADF / JDeveloper...
    My use case is as follows:
    I have a bounded task flow with two view activities linked by a control flow case. The from activity is a simple table that allows a user to click a commandLink to go to a details page to modify the record (the to activity in described task flow).
    When a user clicks the commandLink to edit the record I need to execute a AM method that returns a boolean based on a PL/SQL procedure. If this AM method returns false I need to inform the user that the record is ineligible for editing and cancel navigation to the details page (stay on the current page). If true is returned I need to allow the user to proceed to the edit page.
    What is the best way to accomplish this? I have looked at http://andrejusb.blogspot.com/2011/10/how-to-disable-action-conditionally.html but I kept getting "navigationContext resolved to null". I have also tried inserting a method call activity in the task flow between the two view activities. Using this approach I am able to execute the AM method but I cannot figure out how to route the user based on the return.
    Am I even close? Any pointers?
    Thanks.
    Edited by: errodr on Apr 18, 2013 12:00 PM

    Hi,
    As another option you can try this way as well,
    1. From View Activity2, put a return control flow case saying "back" to View acitivity1 (this output will be used to go to first view activity from either view activity2 (back button) or loop inside view activity 1
    2. On your command button, in Action property (not Action listener), create a managed bean method and use it to drive the navigation (it expects a string return value)
    3. Inside your managed bean, invoke your AM method and based on true/false of AM value you return either "Back" or <viewactivit2 outcome>
    4. If giving "Back" doesn't work, try to return null and see if that works.
    Ravi Nuka

  • How can I Show PDF in C# and disable user interaction

    I am testing the C# example project BasicIacOCX. I can run the project and there I can hide the toolbar of the Acrobat-control (pdfWindowLeft.setShowToolbar(false);). But if I press F8 the toolbar is visible again. Now I found out nothing how I can disable that the user can press F8.
    Any ideas?

    Correct, there is no support for permanent hiding of the toolbar.  Also, with Acrobat X, the whole idea of a "toolbar" has changed.

  • How can I show the "file," "view," and "format" drop down menus on my tool bar?

    I am a new mac and Pages user.  So far, I think I have a handle on the inspector, but a lot of what I have been looking up requires clicking on the "insert" drop down menu...I don't show that on my screen.  How do I get those menus to appear?  I have discovered how to place the different icons on the tool bar, just not those drop downs.
    I took a screen shot of how it looks.

    For details of how to restore it, see the [[menu bar is missing]] article.

  • Can EBS show the last date and time of a user login

    We have a requirement to display users their Last sucessfull login date and time. We would like to display after user have entered username/pwd i.e. Could someone guide how can we schive this ?
    Thanks in Advance
    Dinesh

    Hi,
    This is available through "Signon Audit Unsuccessful Logins" concurrent program.
    How do you audit an Oracle Applications' user? [ID 395849.1]
    Need A Way To Notify Users About Previous Failed Login Attempts [ID 357009.1]
    Thanks,
    Hussein

  • Can it be that OS 10 and Flash don't work well together? Internet browsers are freezing up

    I started this discussion on the macbook pro forum but no one has figured this out and I'm beginning to think this could be an OS 10 problem, so I'm posting here.  No matter what browser I use (Safari or Firefox), after a little bit of surfing, the browser freezes and I get the spinning circle of death. Only thing that works to fix it is to reboot. But then the cycle repeats. I've found discussions of other fixes for this but nothing has worked. So far I have:
    Added open source DNSs
    Updated all software
    Scanned for malware with Sophos (none found)
    Cleared browser caches
    Run disk utility and repaired all permissions
    Reset Flash settings to disable hardware acceleration
    Moved large files to an external hard drive to free up more disk space
    Checked to see if I have a bad Shockwave plug-in that was the culprit for others (didn't have it)
    Called Mac support and was advised to use disk utility
    None of this has worked. In other cases, people felt the problem had to do with flash. For them, changing the hardware acceleration setting (as I did) or removing the bad plug-in fixed the problem. This has not helped me, and I'm at a loss of what to try next. Of note, nearly every other instance I turned up about this involved SLeopard 10.6.6. That's what I was using. I updated to 10.6.8, but it didn't help. Any suggestions?
    I'm on a Macbook pro with 10.6.8, 4GB of ram and a 320GB hard drive showing 120GB free.

    First level Console messages are usually too general. Those are kind of generic and I'm not seeing anything related there to your problem. You need to open Console and navigate inside to system.log.
    This really needs fine some tooth troubleshooting. It could be so many things causing the problem. I'd call Apple back and get on the phone with a senior tech who can take the time to walk you through everything that needs to be looked at. Sounds like the tech you got either wasn't too skilled or ready to do that.
    One of the first things to try is to create a new admin user and test for this there. The Apple tech should have suggested this. If it doesn't happen there, you know it's specific to your regular account and not system wide.
    You could take a shotgun approach and throw Applejack at it. Make sure you do the underlined steps as well.
    Download:
    http://sourceforge.net/projects/applejack/
    Article on using:
    http://reviews.cnet.com/8301-13727_7-10334620-263.html?tag=mfiredir
    It runs in single user mode, where it runs more safely than other maintenance/cleaning programs because there is less chance of interference from the OS. After installing (you won't see it in the Applications Folder) hold CMD-S at startup. You will get a black screen with MS-DOS like text. Just follow the prompts: type in "applejack AUTO" and it will run through the following:
    Correct any Disk problems.
    Repair Permissions.
    Clear out Cache Files.
    Repair/check several plist files.
    Dump the VM files for a fresh start.
    Trash old Log files.
    You can also run tasks selectively and for specific users by typing in "applejack." After running in "AUTO,"  you can go back and run it again as "applejack," steps 3 & 4 only, for your user.
    The first reboot will take much longer than usual, as it rebuilds caches. It may take several restarts to see the benefits. Because of the deep cache cleaning in AUTO mode some applications may tell you they are being opened for the first time.
    NOT YET UPDATED FOR LION (although it is reported by some that it is working)
    (Adapted from post by BDAqua)

  • IOS 5.0.1 Can't Show OS X Lion Address Book Profile Fields?

    In OS X Lion, Apple introduced Profile fields into the Address Book:
    Social network profiles
    Address Book lets you quickly access the social network profiles of your contacts, including Facebook. Press and hold an email address to select the appropriate profile.
    So, I filled this all in on my Mac. But then I synced my iPhone (running iOS 5.0.1) with my iMac, and discovered that the Contacts app on the iPhone doesn't show these fields. Is this true, or have I done something wrong?

    I'm going to try that next.
    What I just tried was creating a New Card in Address Book on my Mac and filling in these fields:
    • First Name
    • Last Name
    • Twitter
    • Facebook
    • Flickr
    I then synced my iPhone with my Mac, via iTunes.
    The new card showed up in Contacts on my iPhone, but only the First Name and Last Name are visible. The three Profile fields I filled in are not there! Clearly this is a bug.

  • Employee group and Employee Subgroup....

    Hi Experts,
    I am just learning SAP now..... 
    I had created employee group(1 Employee) and employee subgroup(3Y executive), and i assigned employee group to subgroup, and i checked in the table T503Z,, even though it is showing an error while creating relationship.... the error is "entry 1 3Y doesnot exist in T503 check your entry" .
    please reply me with IMG Path(SPRO)
    regards
    gosammy

    spro>Personnel Management>Personnel Administration>Organizational Data>Organizational Assignment-->Define employee attributes(V_503_C)
    I think u missed this table , here u have Activity Status, Employment status, Training Status.Keep the cursor in the relevant feilds and go for f1(help) and  fill the data
    Best Regards,

  • My iphone 3gs has started showing the wrong time  and date. All was fine until this afternoon when it changed.  My apps have the right time and date. However the world clock is wrong. I have to turn off the automatic time setting to get the right time.

    My iphone is showing the wrong time and date. All was well until sometime this afternoon when it changed...  to Nov 5 (2 days prior to today), and about 9 hours and some minutes before the actual time.  The world clock for my time zone shows the same wrong date and time. My calender shows the same wrong date and time.  The phone can not find my time zone any more.   The only fix I found was to turn off the automatic setting for time.  What is  happening? Ideas?

    just sorted mine went to
    settings-mail,contacts,calender-timezone support
    then turned it off then on tapped time zone and typed london
    this did sort mine

Maybe you are looking for

  • Kendo Combobox Issue

    Hi Experts, In My Project iam facing one problem with kendo Combo box actually my Application Requirement is Left Menu – Combobox Fields search has to Freeze on all inner frames but am facing problem with Cascade From when i kept  Cascade From in my

  • Let's test and compare..... G5 vs. Inte

    I'm wondering if anyone is running 7.2 on a intel Mac yet? I would love to hear how the intel chip performs w/ Logic compared to the G5. Also I think it would be a great idea if someone w/ the know how and capability could post a Logic prodject song

  • I have a 9300 and the track ball is not working how do i fix this?

    I have a 9300 and the trackball is not working how do I fix this?

  • HTML5 Xtra?

    I haven't seen any new Xtras for Director lately. I think it would be financially attractive for a programmer to develop an Xtra to export simple projects as HTML5. It would revitalize Director.

  • Alv reports Display variants

    how to make a variant default so that i can fetch that using function module reuse_alv_variant_default_get.