Recruitment: Send email to applicant automatically through App.Activity

Dear friend.
I want to send internet email to applicant automatically through app.activity
This meean that I want to invite applicant to our interview. After carrying out action 'Interview Applicant', an activity is created automatically and send to applicant .
I don't know how to do this.
Please help me.
Thanks so much
Best regards,
Sushi_Intel

HI
In  PB60 - Maintain Applicant Activities we have make the necessary changes and also you have to create RFC for sending a mail to the applicant . Connect the basis team for the same.
and Please find the T-codes hope it helps you.
PB00   Recruitment
PB04   NumberRangeMaintenance: RP_PAPL
PB10   Init.entry of applicant master data
PB20   Display applicant master data
PB30   Maintain applicant master data
PB40   Applicant actions
PB50   Display Applicant Activities
PB60   Maintain Applicant Activities
PB80   Evaluate vacancies
PBA0   Evaluate advertisements
PBA1   Applicant index
PBA2   List of applications
PBA3   Applicant vacancy assignment list
PBA4   Receipt of application
PBA5   Recurring tasks: Print letters
PBA6   Recurring tasks: Print letters
PBA7   Recurring tasks: Data transfer
PBA8   Recurring tasks: Transfer data
PBA9   List of planned actions
PBAA  Evaluate recruitment instrument
PBAB  Maintain vacancy assignments
PBAC  Applicant statistics
PBAD  Recurring tasks: Print letters
PBAE  Applicant pool
PBAF  Vacancy assignment list
PBAG  Screening
PBAH  Decision
PBAI   All applicants via qualifications
PBAJ   Recruitment info system
PBAK  Recurring Tasks: Print Labels
PBAL  Bulk processing
PBAM             Variable Applicant List
PBAN  Ad Hoc Query
PBAO  ABAP Query
PBAP  Internal Applicants Via Quals
PBAQ  External Applicants Via Quals
PBAT  Choose SAPscript or WinWord
PBAU  Maintain T750C
PBAV  Display T750C
PBAW             Maintain T750B
PBAX  Display T750B
PBAY  Maintain T750X
PBAZ  Display T750X
PBCX  Cust. Account Assign. Reference (MM)
PBCY  Cust. Account Assign. Reference (FX)
PBCZ  Cust. Account Assign. Reference (DE)
PBW1  CareerCenter
PBW2  Career Center: Status tracking
PBWW            Customizing standard text in WinWord

Similar Messages

  • Recruitment - Send email for applicants in body text

    Hello, im trying to send email to applicants in body text, i send email to applicants but arrives always in attachment.
    someone know where i need to change configuration?
    regards and thanks in advance
    Mário

    Hi Mário,
    please have look at transaktion SODIS.There you could maintain "Disclosures for External Communication". In my opionion this will result in attaching mail text.
    Regards Bernd

  • Recruitment : Send email Via SAp System

    Hi,
    I am facing a big problem when I send email to application to cofirm that their application was received. I use Tcode PBAT to send email to application. In result screen, there is list of applicants that I sent email to . But all records noticed that "No fax or internet adress" .  I have already inputed internet adresses in IT0105
    I don't khow why System can't read data in IT0105 (Comunication).
    Please help me to undersatnd more about the Recruitment Module.
    Thanks so much
    Best Regards,
    Edited by: Sushi_intel on Dec 9, 2009 10:09 AM

    Hi all,
    Sorry for my delay. I went to SCOT and SOST to configure but the error still appear. I can send email to other internal address. But internet address is not. I don't kow why system can not read data in infotype Communication. Is there something wrong? I went to Mail Connection and configured as follow:
    *001  Mail confirmation of Receipt
    IDTXT RECEIPT
    RECV1
    RECV2 X
    RECV3 X
    SUBTY 0001
    OUTBX X*
    Please tell What I can do to send email to applicants automatically .
    Thanks so much.
    Edited by: Sushi_intel on Dec 15, 2009 9:21 AM

  • Sending email with HTML report through a button

    Hi,
    I've noticed in APEX 4 there is a default option (through Action Menu -> Download Formats: email) to send an email with report in HTML format...
    may I know how to accomplish it using a Button... seems like APEX is using javascript:gReport.email.show(); function to accomplish it but I don't know how to implement it...
    Please advice
    Thanks in advance

    qwe12654 wrote:
    GokhanAtil,
    I've posted a sample on APEX.ORACLE.COM... LOGIN DETAILS ARE SAME AS ABOVE...
    ON the page now I have both the SQL based report and interactive report...
    On the top right you may see 2 icons.. one for downloading report in PDF (using SQL Report as the source) and the second for sending email (using interactive report, similar logic as what you've recommended)...
    Is there a way I may be able to send report via email, using SQL report as the source (rather than interactive report)...?
    You can always use APEX_MAIL to send emails.
    http://download.oracle.com/docs/cd/E10513_01/doc/apirefs.310/e12855/apex_mail.htm
    or the alternative option would be:
    to convert all my SQL reports into interactive, would require a bit of efforts (I'll go with it if the above option is not available)... but would need to know how to download INTERACTIVE reports in PDF, excel and CSV formats using a button ... similar logic to what you've done for sending emails
    Thanks again for all your assistanceIt's very easy to make buttons for downloading the interactive reports in HTML, CSV or PDF.
    I have created a PDF button and put the link:
    http://apex.oracle.com/pls/apex/f?p=40418:11:1316531694094700:PDF
    "1316531694094700" is the value of p_instance. You can find it from HTML codes of your page:
    <input type="hidden" name="p_instance" value="1316531694094700" id="pInstance">
    You can change PDF to CSV or HTMLD (so your visitor download the report in CSV or HTML)
    Best Regards,
    Gokhan
    If this question is answered, please mark appropriate posts as correct/helpful and the thread as closed. Thanks

  • Cannot send email using PL/SQL through Enterprise Manager 10g

    Hi
    I need to schedule a job that sends email periodically. I am using the scheduler in Oracle Enterprise Manager 10g for this. For sending the email, I am creating a PL/SQL job. The code is as follows:
    PROCEDURE send_test_message
    IS
    mailhost := 'iwblrcormsg001.sci.local';
    sender := '[email protected]';
    recipient := '[email protected]';
    mail_conn utl_smtp.connection;
    BEGIN
    mail_conn := utl_smtp.open_connection(mailhost, 25);
    utl_smtp.helo(mail_conn, mailhost);
    utl_smtp.mail(mail_conn, sender);
    utl_smtp.rcpt(mail_conn, recipient);
    utl_smtp.open_data(mail_conn);
    utl_smtp.write_data(mail_conn, 'This is a test message.' || chr(13));
    utl_smtp.write_data(mail_conn, 'This is line 2.' || chr(13));
    utl_smtp.close_data(mail_conn);
    utl_smtp.quit(mail_conn);
    END;
    I have setup the smtp server and received a test email from the EM notifying me of successful configuration. When the above job is run, the scheduler shows status as successful. If I go to the command step, it displays the following output:
    Output Log
    SQL*Plus: Release 10.1.0.2.0 - Production on Thu Feb 19 19:04:29 2009
    Copyright (c) 1982, 2004, Oracle. All rights reserved.
    SQL> SQL> SQL> SQL> Connected.
    SQL> SQL> 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 Disconnected from Personal Oracle Database 10g Release 10.1.0.2.0 - Production
    With the Partitioning, OLAP and Data Mining options
    Now, the only issue is that I do not receive any email at the address specified! I would be very grateful if someone could point out the error here.

    I would use APEX4.0 for this.
    Create an interactive report based on your data. Add a chart to that report and use the NOTIFY feature to send you the email.

  • Send email attachments using Java through Outlook Express

    Hi
    Can anyone suggest how we can interface Outlook Express with java in
    order to send email?
    I want to add 'Email Friend' link in my project, on clicking on this
    link Outlook Express should open with a specified file attached.
    I searched on net also, but I am getting only JOC everywhere which is
    not freeware.
    Please suggest me on the same that how it can be done?
    Thanks
    Ashi

    You can send files to Outlook Express using following:
    using a windows exe runmenu. exe
           File file = new File("./lib/runmenu.exe");
            try
                String commandForNotesMail =
                    file.getCanonicalPath() +
                    " \"/exec: send to\\mail recipient\" " + filename;
                System.out.println("Cononical Path :" + commandForNotesMail);
                Runtime.getRuntime()
                    .exec(commandForNotesMail);
            catch (IOException e)
                e.printStackTrace();
            return true;
        }

  • Unable to send emails to multiple recipients through oracle storedprocedure

    I have the email code working with single email in the To address but I am looping through the table and getting a semicolon separated emails and assining to_mail and I am unabl to send any emails to any users in To address but works for cc_address users. I am getting the following error in the stored procedure when compiling. Please help if any suggestions or any one came accross this issue. Thanks.
    ORA-29279: SMTP permanent error: 501 #5.1.1 bad address @abc.com
    ORA-06512: at "SYS.UTL_SMTP", line 29
    ORA-06512: at "SYS.UTL_SMTP", line 110
    ORA-06512: at "SYS.UTL_SMTP", line 252
    ORA-06512: at "abc_owner.SendMail", line 101
    ORA-06512: at line 10

    900045 wrote:
    I have the email code working with single email in the To address but I am looping through the table and getting a semicolon separated emails and assining to_mail and I am unabl to send any emails to any users in To address but works for cc_address users. I am getting the following error in the stored procedure when compiling. Please help if any suggestions or any one came accross this issue. Thanks.
    ORA-29279: SMTP permanent error: 501 #5.1.1 bad address @abc.com
    ORA-06512: at "SYS.UTL_SMTP", line 29
    ORA-06512: at "SYS.UTL_SMTP", line 110
    ORA-06512: at "SYS.UTL_SMTP", line 252
    ORA-06512: at "abc_owner.SendMail", line 101
    ORA-06512: at line 10when all else fails, Read The Fine Manual
    http://docs.oracle.com/cd/E11882_01/appdev.112/e25788/u_smtp.htm#i1002798
    RCPT Function
    This subprogram specifies the recipient of an e-mail message.
    "To send a message to multiple recipients, call this routine multiple times. "
    "Each invocation schedules delivery to a single e-mail address."

  • Can't send email with lotus inotes through forefox server but can through yahoo - what do I need to do to correct this?

    when accessing my teacher email through firefox I can receive and open email but can't send any (the teacher email uses IBM Lotus Inotes

    I am running Lotus iNotes version 8.5.2 on Firefox version 6.02. I am not seeing any errors in a red bar. I click "send" and nothing happens.

  • Send email an attachment automatically every month

    Hi All,
    Could anybody send me a step by step procedure for creating Email procedure
    to send to 10 users every month automatically an attachment
    Thanks for your help
    [email protected]

    You asked this question almost a month ago. What have you done in the intervening time? Have you downloaded the maildemo from OTN?
    "Step by step" sounds to me like you're hoping somebody will do your job for you. Well, there's a couple of Oracleers who are between jobs at the moment, they might be prepared to help out.
    But my position is this: this forum is to provide help and guidance to people who need it. But in return they must be willing to do work themselves.
    Regards, APC

  • ITunes not sending email notifications to iTunes and App Store gifts recipients

    I sent several iTunes and App Store gifts from my Apple ID... I set the date to be sent of Dec 25. The gift recipients have not received email notifications about their gifts. I went into my iTunes account and resent the gift, but the people I sent gifts to are still not getting emails from iTunes. However I got the iTunes email informing me my credit card had been charged.

    I'm having this issue as well. I was really hoping to surprise people on Christmas Day, really disappointed right now., doesn't look like anyone has got an email about the apps I gifted them.

  • Error while trying to send a report link/page through email

    Hi,
    I was trying to send a bam report url through email but the following error occurs when i click on send button :
    The Message Center component is not configured correctly.The "Email Account for Alerting" field isn't specified correctly.Contact your system administrator to fix this
    Anyone help me by giving a solution
    Thanks in advance

    Hi, firstly I would like to ask whether, are you trying to send report URL in an alert mail? If it is so, then you have to configure your SMTP settings in your 'Message Center'. The steps to configure are as below-
    To configure the Message Center settings:
    1. Select Message Center Management from the drop down list.
    Some table cells are blank the first time you install the Oracle Business Activity
    Monitoring applications.
    2. Click Edit.
    3. Enter the mail server machine name or IP address in the SMTP Server Name field.
    The mail server must have the capabilities to send email to other SMTP servers
    that Active Viewer users specify in their personal settings.
    4. Enter an email account including the domain used by the Oracle BAM service in
    the Email Account for Alerting field. This is the account that will appear in the
    From header of e-mailed alerts.
    5. Click Save to save your changes.
    6. Restart the Oracle BAM Event Service to make the changes effective.
    Let me know if this helps. If this is not the requirement, please mention your requirement precisely.
    Harsha.

  • Why can't I send Emails from iPad apps?

    When I am using iBooks, or Evernote, or Hootsuite, or just about any application on my iPad that allows me to Email items from within the application, the following happens when I try to send an Email:
    1) I click the share button.
    2) Choose Emaill
    3) Write the Email.
    4) Click Send
    5) Hear swoosh sound and it appears the Email is sent.
    However, the Email is never actually sent.  I've tested this mutiple times to various Email addresses and it just isn't sending the Email.  The only exception is when I send Emails from within the Gmail app, in which case they send fine.
    After discovering this I took our my iPhone 5 and tried to do the same from there with the same applications.  I was able to send Emails from within the iPhone applications just fine so this problem is specific to my iPad.
    I checked my mail settings and didn't see anything out of order.  As I said, I can successfully send Email from the iPad using the Gmail app or just sending it from within a Chrome window.
    Thoughts?

    I used to be able to send e-mail from within apps on my iPad. Then all of a sudden, I was unable to do it. I changed none of my settings, and my regular e-mail works just fine.  One day I could e-mail from within apps, and then next I could not.
    When I hit the share button within an app, I then select the e-mail button. An e-mail message opens for composition. It has the subject line filled in, but that's all. It will not allow me to enter the address and it contains no message or link. It's just dead. Sometimes I wait for a while to see if anything changes, but it doesn't.
    Did apple change something without telling us?

  • How to send emails using Automatic Work Items in Collections using XML Publ

    Hi,
    We are using XML Publisher to send correspondances in Advanced Collections.
    We want to send email correspondances using Automatic Strategy Work Items.
    Can anybody please help on how to send these?

    I believe you have to define your dunning template and assign that template to the strategy work item.
    Let me know if you are still not able to do it.
    Thanks,
    Anil

  • Sending emails with attachments through outlook 2003

    Hello,
    I have recently switch from cablevison to Fios. With Cablevison, I never had a problem with email. However, now I am having problems sending emails with attachments using outlook 2003. I have called Verizon and we troubleshooted the problem and they feel this is a Microsoft problem.
    I can send email's without attachments through outlook and verizon.net, but I can't send emails with attachments through outlook, I can send them though verizon.net.  All my settings are correct for sending and receiving email.
    I called Microsoft and they say it a Verizon problem...
    HELP, does anyone have a solution?????
    Thanks
    Len628

    Which antivirus software do you run on your computer? Are there any errors posting?  Have you shut off any email firewalls temporarily to attempt to isolate your issue?  Do you have outlook 2003 on more than 1 pc in your home?  Have your tried to attach a small text file and send it to see if that goes thru successfully?
    Joe D
    Verizon Telecom
    Fiber Solution Center
    Notice: Content posted by Verizon employees is meant to be informational and does not supercede or change the Verizon Forums User Guidelines or Terms or Service, or your Customer Agreement Terms and Conditions or Plan.Follow us on Twitter™!

  • Sending email through outlook

    Hi,
    i got a email functionality requirement , i need to send the report output to recipient inbox as an attachment, through outlook.
    i know how to send email from sap, but through outlook i am not aware,
    how to send email through outlook.
    can any one please help me.
    Thanks In Advance
    raagati

    Hi,
       check below link.
    How to send email from outlook to SAP inbox

Maybe you are looking for

  • How can I edit an html file in Firefox using View Source?

    I have created an html webpage and saved it to my pc. I can't edit the html file in firefox when I right click on the page and select "View Source". I can view the code but I can't edit it. I can do this in IE9. I thought I was able to do this before

  • ECC 6.0 upgrade to EHP4 via EHPI - Problem

    I'm upgrading an ECC 6 system to EHP 4. In the extraction process I get the a strange error message: Error: unknown hostname "<hostname>"        The message server of your SAP system is not running,        or the hostnames known by the message server

  • IOS 8.3 Airplay

    I just bought a new iPhone6 64 gb and updated it to iOS 8.3 I waas using a compact stereo Sony CMT-BT80WB via Airplay and never experienced a problem with iphone5 and iOS 8.2 after update the system doesn't see the stereo anymore, and Airplay doesn't

  • Flex Charting DateTimeAxis

    I have a problem in the Flex Charting with the DateTimeAxis. I have requirement to show more than 60 days data in days using the line chart. When I tried that, chart showing x-axis data point in months instead of days even though dataUnits mentioned

  • Camera not working macbook pro

    This is crazy. I just went to turn on my photo booth to take a picture of something. And it tells me there is no camera detected. I don't think i have used the camera since i upgraded to mavericks and that was months ago. and there is nothing in syst