Self-Registeration Question

I have enabled self-registeration, but where do I get the approval notifications for admin to approve the account and send an email to the user.
Is there any configuration steps I need to follow. As I have specified my SMTP HOST and PORT under Global Settings and followed exactly as specified in the Documentation, but whenever I register a new user where do I go to approve the user and send an email back to user, how is the admin notified. Thanks

Hi, Paul,
Paul Vidal wrote:
... 4- Create a report to display employees’ last name and employee number along with their manager’s last name and manager number. Label the columns Employee, Emp#, Manager, and Mgr#, respectively. Don't forget the column alias for manager
... The Question 5 says
5- Modify lab_05_04.sql to display all employees including King, who has no manager. Order the results by the employee number. Don't forget the last requirement. You need an ORDER BY clause for that.
Place your SQL statement in a text file named lab_05_05.sql. Run the query in lab_05_05.sql
So i modified like this ..
SELECT e.last_name Employee, e.employee_id EMP#, m.last_name, e.manager_id Mgr#
FROM employees e JOIN employees m
ON (e.manager_id = m.employee_id )
WHERE m.manager_id is null
But King do not appear in the last_name colunm ..
Any help...To mkea sure you get all the rows in one table, even if they have no matching row in the other table, use an Outer Join .
SELECT      e.last_name      Employee
,      e.employee_id      EMP#
,      m.last_name     AS manager
,      e.manager_id      Mgr#
FROM           employees      e
LEFT OUTER JOIN employees      m      ON      (e.manager_id      = m.employee_id)
;" *LEFT* OUTER JOIN" means "make sure all rows from the table to the left (that is, before the keyword) are included".

Similar Messages

  • Email Notification after User Self Registers in OIM

    Hello there,
    Can you please tell me how can send an email notification to users as soon as they register themselves in OIM using the OOTB OIM Self Registration.
    Actually I am generating a unique User ID as a Post Insert in Create User Event Handler. By real question is to actually send this particular generated User ID to the user in an email - how can I do that?
    Thanks.

    The exact scenario is an end-user directly self registers himself providing all the necessary values of User ID, First Name, Last Name, Email, Password (mandatory fields). But I want this request to be directly completed/approved. I don't want any kind of administrator intervention in creating these users in OIM such as providing approval details, etc. So I have added the remaining necessary fields on self registration page itself for users to be filled out - Organization Name, User-Type, Employee Role. The user provides all these details on OIM self registration and it directly gets created in OIM.
    I have made an email definition of type "provisioning related" and included the necessary UDF's in it. And I have added this email defn to the "Email Notify" task of "Xellerate User" process. I have already checked the "Assignee", "Requester", "User" option box in the "Notification" tab. So now the problem is after user creation - the administrator is receiving an email containing the UDF values but the user is not receiving that. But the user is receiving the "Self Registration" email definition email which I don't want to send.
    So really speaking I want to send an email on User creation containing the UDF values - but it is not sending it. I have integrated the "Email Notify" task with "tcCompleteTask" system adapter. Am I missing anything?
    Please let me know as this func. needs to be in place asap.
    Thanks.

  • ISE guest self service question

    Hi experts
    Is there any way to implement this scenario on ise 1.2.1:
    guest registers himself on the portal and either selects or enters sponsor details
    sponsor gets notified by mail and can approve or deny
    guest gets a sms text message with password and can use the guest wlan
    Grateful for any hint
    Cheers
    Albert

    No,  to enable SMS messaging, you need to be running v1.3.
    Good news, though.  With a current Service Agreement, ISE upgrades are free.  If you can schedule downtime, you can upgrade from 1.2.1 to 1.3 without stress.
    Please Rate Helpful posts and mark this question as answered if, in fact, this does answer your question.  Otherwise, feel free to post follow-up questions.
    Charles Moreton

  • Trying to teach self Java-question with arrays

    I have a question with arrays. I have a simple inventory program that I am writing(very simple). I have declared and created my array. Is this the time I should build a new class outside of my main in order to hold my array? I am still trying to sort through classes and when to create them. My thought is that because it is a hierarchy I should have a new class. For example, Albums is at the top and then there are specific types of albums, like TributeAlbum, PremiereAlbum, etc. Do I need a class for each of these? When I create the class, do I use the same name as the array?
    More info, just in case: My original class is AlbumInventory. I have created an array to hold 25 TributeAlbums which has 4 instance variables.
    Question 2: Why can I not refer to an album variable like TributeAlbums[0].itemNumber?
    Thanks in advance for your input.
    Denise

    I have a question with arrays. Okay.
    I have a simple
    inventory program that I am writing(very simple). I
    have declared and created my array. Is this the time
    I should build a new class outside of my main in
    order to hold my array? In an OO language classes are usually a good idea.
    I am still trying to sort
    through classes and when to create them. My thought
    is that because it is a hierarchy I should have a new
    class.This sounds a bit confused. You should have a new class when it is appropriate to do so.
    For example, Albums is at the top and then
    there are specific types of albums, like
    TributeAlbum, PremiereAlbum, etc. Do I need a class
    for each of these? Not sure. Why is the type not an attribute of the Album class? This (attribute) seems at first glance to be the way to do it.
    When I create the class, do I use
    the same name as the array?
    ? I am going to say no but I'm not following what you are really asking here.
    More info, just in case: My original class is
    AlbumInventory. I have created an array to hold 25
    TributeAlbums which has 4 instance variables.
    Can you please post some of your actual formatted code? It would also be helpful to know what the attributes for an Album are as you have them.

  • SQL query -- self-join question?

    SQL> l
    1* select originator,destination,oaddress,daddress from (select * from activity where rownum<=3)
    SQL> /
    10099 10004 16196344392 16199375530
    10064 10002 18454644069 18456563415
    10065 10006 18302650166 16416609306
    looking at the above query, i am just performing a simple select from one of my tables. Now i require the carriername for both originator and destination columns, and the names for these are found on another table carrier.
    so, i am re-write the above query as: (join with carrier table)
    SQL>
    SQL> select originator,destination,oaddress,daddress,carriername from (select * from activity,carrier where originator=carrier_code and rownum<=3);
    10006 10099 19182772772 19189553062 USA1
    10004 10311 15096701636 15096692171 USA2
    10000 10003 15125898141 15122930569 USA3
    Now, i got the carrier name for my originator, how would i find the carriername for my destination also (in the same query). One way of doing it is joining the carrier table twice, but is there any other better approach.
    Hope i am clear, any help will be greatly appreciated. Thanks.

    select
             A.originator, A.destination, A.oaddress, A.daddress
           , B.carrier_name name_originator
           , C.carrier_name name_destination
       from
             activity  A
            ,carrier  B
            ,carrier  C
      where
             A.originator  = B.carrier_code
         and A.destination = C.carrier_code

  • Self join question

    Hi everyone,
    In the below employee table, I require the foll output, if the ID and mgr_id of employee table are same then only that output needs to be displayed, so the output should be only
    ID Data mgr_ID
    1 sss 1
    If the reference of 1 is there in mgr_ID for ID 2, then it should not be displayed, only the refernce of 1 to itself or 2 to itself should be displayed.
    Employee table:
    ID data mgr_ID
    1 sss 1
    2 aaa 1
    3 bbb 2
    4 ccc 3
    How should the query be written ?

    Must have missed your point. Based on your required output I thought just
    select *
      from emp
    where id = mgr_idRegards
    Etbin

  • Test questions for cerfitication on SBO2007

    Hi all,
    i am a sbo consultant and have about 2 years experience.  I am currently studying the E-learning curriculum with view to the get the certification as a SBO 2007 implementation consultant.  There are some self-test questions available with the curriculum, but it would be better if there were more. 
    any info on how get more test exam questions would be greatly appreciated.
    best regards,
    michael

    Hi,
    Please go through the first book and third book ( ie. Logistics  & Implementation ) . Why i am saying is you have some direct questions. when you go into the accounts book there wont be direct question. all the questions are based on business scenario.
    But my advice is to get learn all have knowledge in all the books, do the test well my best wishes to get success for you online examination.
    Regards
    Chidambaram

  • Solaris 10 Patch Question

    Assuming two identical systems installed side-by-side
    and operated by the same owner. Both machines are
    registered with Sun Microsystems and possess valid
    licenses for Solaris 10. The owner has determined the
    same Software Update (formerly called a �patch�) is
    required for both systems. The SWU (Software Update)
    is only available from Sun Microsystems. Only one of
    the systems is covered by a Sun Service Plan that
    provides access to the SWU, the other is a
    self-maintained system without any service plans
    whatsoever.
         System A     System B
    Valid Solaris 10 License     yes     yes
    Active Sun Service Plan     yes     no
    Service Method     Sun Service Plan     Self Maintained
    Questions:
    Can SWU obtained from Sun for System A be used on
    System B?
    a.     if the SWU is only made available with a Sun Online
    ID + Service Plan? (In other words, a �restricted� or
    �behind-the-firewall� SWU)
    b.     If the SWU is only made available with a Sun Online
    ID? (In other words, a �public� SWU, such as a
    hardware driver update).
    c.     Will Sun accept time and materials POs for software
    troubleshooting?
    d.     Will Sun accept time and materials POs for hardware
    troubleshooting?

    No, it doesn't have an OBP, instead it uses a BIOS, which is quite different from the OBP.
    Normally; doing init 0 on a x86 box will just bring you to a state where it offers to reboot.
    On x86 you also have the "Configuration Assistant", which does some tasks which would be performed by the OBP on the SPARC architecture.
    //Magnus

  • Self registration with Approval

    Hi,
    I need to understand how this self registration with approval works. What we need in something on these lines
    user self registers -> approver approves -> user gets access to portal
    Can i create a user without any role assigned the him and when the approver approves, automatically some pre-designated role gets assgined to the user? I want my approver to just click on approve YES and not actually get into UME stuff.
    Please help
    -Alpana

    Thanks for the reply Michael.
    Yes, i have already gone thru company based self registration. But it does not specify the role assignment part :(. What i read was ok ... you register then u get assigned to the portal as guest user and then if approver approves the request the user becomes a COMPANY user. But then when the approver approves the request, does he assign the company related roles to the user? Or can that be coded somewhere?
    Please help.
    -Regards,
    Alpana

  • A question from my text

    In my text there's a self-test question that looks easy but I couldn't figure out., as follows. Note that every detail exactly appers in the text. The question asks what output is produced. The answer is "Positive." Why?
    int number = 7;
    boolean isPositive = (number>0);
    if (number>0);
    number = -100;
    if (isPositive)
    System.out.println("Positive.");
    else
    System.out.println("Not positive.");

    In my text there's a self-test question that looks
    easy but I couldn't figure out., as follows. Note
    that every detail exactly appers in the text. The
    question asks what output is produced. The answer is
    "Positive." Why?
    int number = 7;
    boolean isPositive = (number>0);
    if (number>0);
    number = -100;
    if (isPositive)
    System.out.println("Positive.");
    else
    System.out.println("Not positive.");Why? Here's why,
    int number = 7;1.) You declare a variable (A variable is a named placeholder for storing information during program execution) that can hold an int value and you assign literal 7 to it. "number" is our identifier here. (An identifier is a name given to a specific variable).
    boolean isPositive = number > 0;2.) You test if identifier number is greater than to 0 (which is logically wrong because a positive number is greater than or equal to 0) and assigned the boolean value to a variable named "isPositive". Now what will be the value of isPositive? is 7 greater than or equal to 0? Of course true. (remember that after evaluating the expression 7 >= 0, the isPositive now holds a true value okay? And you are also wondering why 7 >= 0 is evaluated first before the assignment, thats because assignment operator in Java is right associative, remember?
    PUC3A (Prefix, Unary, Creational, Conditional, Cast, Assignment) operator are all right associative meaning they are evaluated from right to left, okay? Review your Java Operator Precendence and Associativity). I remove the () operator because it isnt necessary because >= operator has a higher precendence than = operator. Okie!
    if (number>0) ;3.) Now, a single selection stucture (A single selection structure is used to select or ignore an action) "if" tests if identifier number is greater than 0 (as I said logic error, this should be >=) which is evaluated to true because 7 is greater than or equal to 0, but it follows an empty statement ";" see? So nothing is executed. I think you just mistype and what you really want is to change the value of identifier number to -100 if that identifier number is positive, Am I right?
    number = -100;4.) You change the value of identifer number to -100, from 7 to -100. Does this statement change the value of our identifier isPositive? Definitely NO!
    if (isPositive) // #snif
            System.out.println("Positive.");5.) This statement tests isPositive and what is the value of identifier isPositive again? The value is true right? Then what happen is it prints "Positive".
    else
             System.out.println("Not positive.");6.) This statement will only execute if expression (see #snif) evaluates to false.
    By the way
    if(expression)
            statement;
    else
            statement;is double selection structure because it selects between two courses of action. Thats why. Okay? Am I clear? Am I right? ^_^ Thank you.
    -Ronillo

  • Self Register customization

    Hi experts, how can new fields be added to Self Register page.

    you need to add your user defined field (UDF) in OIM design console first and then you need to modify the Formmetadata.xml file to display that filed on the self registeration page. Check this URl, the steps are same for the lastest version as well.
    http://download.oracle.com/docs/cd/B32386_01/generic.902/b32145/custselfreg.htm
    Thanks,

  • Why make registering to ask a question so stupidly difficult?

    A self explanatory question.

    Thanks for the reply.
    I asked the question because I thought I had registered to be able to contribute to the 'forum' many months ago but when I tried the username/password I'd thought I'd registered I continually received wrong password error messages.
    So I then tried, in turn, the three options on the login page for those who have forgotten what they had registered. These prompts were, apparently, sent to the email address associated with this account but nothing was turning up in my inbox.
    There was no indication at any time that there was actually no registered account but eventually I came to that realisation. That's when I tried to 're-register' and discovered how Byzantine the real registration process was.
    Anyway sorted now and the question I wanted answered about how, after the latest Firefox update, to get my alternative search engine options displayed again as for previous versions, was answered in another thread I found later. Why that had been changed I can't guess.
    IMHO constantly visible icon/text confirmation of the user chosen or default search engine in the search box should be the Default Firefox display setting.
    With its instantly available drop down menu for the other available search engines it is a more sensible and better designed GUI feature than a blank search box which will only show that information after you start to enter a search term.

  • Hi programers simple question

    hi
    i am a beginner programer
    i have a littile problem with my program
    that is i want to kill my self
    my question for expert programers
    i want to know if u have some good reasons
    to not kill your self
    sometimes

    hi
    i am a beginner programer
    i have a littile problem with my program
    that is i want to kill my self
    my question for expert programers
    i want to know if u have some good reasons
    to not kill your self
    sometimesWhat? Do you want to kill your self because the program doesn't work, or do you want to know how to terminate the application?

  • MM questions

    Hi,
    Can anyone provide some link where i can get the MM questions?
    Thanks
    Srini

    Hi
    Refer this links
    http://www.sap-img.com/materials/common-sap-mm-questions.htm
    http://www.sap-img.com/mm015.htm
    http://www.sap-img.com/materials/sap-mm-self-test-questions.htm.
    Make use of the SDN forum,if u are facing any problems in SAP.
    For questions ,u can search in google

  • Aaron G: How do I register a new version of BVOPCClient.dll on Win9x machine?

    This is a followup to a previous post that was answered by Aaron G...not sure if you guys see the additional comments after the answer.
    I think I need to get the BVOPCClient.dll registered on my machine before I can do "OPC Browsing" (as mentioned in another KB article). But the .dll does not seem to be self-registerable...I get a "DllRegisterServer entry point not found" error when I use regsvr32.exe. I've also tried the regsvr32.exe /i /n options (which uses DllInstall instead of DllRegisterServer) but that fails as well.
    What program does this .dll come with and can I get it in order to install and register this .dll? Or is there a workaround to register it manually?
    Thanks,
    Eric
    Process Instruments Inc.

    Eric,
    For the problems with registering the DLL's and the communication between DataSockets and the OPC Server, you are probably better off posting in the Measurement Studio category. I can answer most FieldPoint related questions, but this has to do with specific problems with DataSockets and I do not have the necessary knowledge to help you.
    Sorry,
    Aaron

Maybe you are looking for

  • Jar file is not working after deleting all packages from the same directory

    hello i have created a jar file named as server.jar in the same directory in which i have all the packages(for which i have created this jar file).This jar file was working correctly when i had all the packages in the same directory.But after deletin

  • Transfer an Email from one account to another and ...

    Dear Team, I joined BT recently this month and I have a btinternet Email for more than 5 years when i was living with my brother. Now I want to tranfer my email from my brothers account to my account and make it my primary email. I called 3 times the

  • Very Urgent - About Deploying the project on to OAS 10g

    Hi, We are in a serious problem.We are done with our project which is done using oracle portal development kit (PDK). We are using oracle portal 10g release2. Our Application server is also 10g. At the time of development we use to work on standalone

  • Fonts are overlapping in converted PDF using *.DWG through autovue 20.2.3

    We were seeing this issue in 20.0.0, 20.2.2. But after installing the 20.2.3. we did not see this issue, but after few days again this issue started reproducing. Please let us know if any session, cache or any such aspects causing the issue. However

  • Putting Video to Preview Monitor HELP!

    I have a question about viewing video on a TV in real time. Our old video rig had a canopus internal video card that allowed me to plug in a regular tv to see the output of what I am making. This time around I have a beefed up Dell that has dual Nvid