Sendmail , cyrus not deliveruing mail

Hello ,
I have a problem on solaris 10 with sendmail and cyrus.
What happens is that i\m using virtual domains in cyrus and i cannot receive mail for any domain except the default which is domain1.
The following is my sendmail.mc and imapd.conf file
Also in local-host-names i added the other domain except the localhost domain ( i dont know if i have to do makemap tro that file )
Please help i need this mail server working
sendmail.mc
divert(-1)dnl
include(`/opt/csw/share/mail/m4/cf.m4')dnl
VERSIONID(`solaris8')dnl
OSTYPE(`solaris8')dnl
define(`confDEF_USER_ID',``8:12'')dnl
dnl define(`confAUTO_REBUILD')dnl
define(`confTO_CONNECT', `1m')dnl
define(`confTRY_NULL_MX_LIST',true)dnl
define(`confDONT_PROBE_INTERFACES',true)dnl
define(`PROCMAIL_MAILER_PATH',`/opt/csw/bin/procmail')dnl
define(`STATUS_FILE', `/opt/csw/etc/mail/statistics')dnl
define(`UUCP_MAILER_MAX', `2000000')dnl
define(`ALIAS_FILE', `/opt/csw/etc/mail/aliases')dnl
define(`confPRIVACY_FLAGS', `authwarnings,novrfy,noexpn,restrictqrun')dnl
define(`confAUTH_OPTIONS', `A')dnl
define(`confTO_IDENT', `0')dnl
define(`confDONT_BLAME_SENDMAIL', `GroupWritableDirPathSafe')dnl
define(`confLOCAL_MAILER',`cyrusv2')dnl
define(`CYRUSV2_MAILER_PATH', `/opt/csw/sbin/deliver')dnl
define(`CYRUSV2_MAILER_FLAGS', `A5 <at> /:|')dnl
define(`CYRUSV2_MAILER_ARGS', `cyrdeliver -e -q -m $h -- $u ')dnl
define(`CYRUSV2_MAILER_ARGS', `FILE /opt/csw/var/cyrus/config/socket/lmtp')dnl
FEATURE(`no_default_msa',`dnl')dnl
FEATURE(redirect)dnl
FEATURE(local_procmail,`',`procmail -t -Y -a $h -d $u')dnl
FEATURE(`access_db',`hash -T<TMPF> -o /opt/csw/etc/mail/access.db')dnl
FEATURE(`blacklist_recipients')dnl
FEATURE(`accept_unresolvable_domains')dnl
FEATURE(use_cw_file)dnl
FEATURE(use_ct_file)dnl
EXPOSED_USER(`root')dnl
DAEMON_OPTIONS(`Port=smtp,Name=MTA')dnl
MAILER(local)dnl
MAILER(smtp)dnl
MAILER(cyrusv2)dnl
imapd.conf
configdirectory: /opt/csw/var/cyrus/config
partition-default: /opt/csw/var/cyrus/mail
admins: cyrus
virtdomains: yes
defaultdomain: domain1.com
sendmail: /usr/sbin/sendmail
hashimapspool: true
sasl_pwcheck_method: auxprop
sasl_auxprop_plugin: sasldb
loginrealms: domain2.com
cyrus.conf
# standard standalone server implementation
START {
# do not delete this entry!
recover cmd="/opt/csw/sbin/ctl_cyrusdb -r"
# this is only necessary if using idled for IMAP IDLE
# idled cmd="idled"
# UNIX sockets start with a slash and are put into /var/imap/sockets
SERVICES {
# add or remove based on preferences
imap cmd="imapd" listen="imap" prefork=5
# imaps cmd="imapd -s" listen="imaps" prefork=1
pop3 cmd="pop3d" listen="pop3" prefork=3
# pop3s cmd="pop3d -s" listen="pop3s" prefork=1
sieve cmd="timsieved" listen="sieve" prefork=0
# these are only necessary if receiving/exporting usenet via NNTP
# nntp cmd="nntpd" listen="nntp" prefork=3
# nntps cmd="nntpd -s" listen="nntps" prefork=1
# at least one LMTP is required for delivery
# lmtp cmd="lmtpd" listen="lmtp" prefork=0
lmtpunix cmd="lmtpd" listen="/opt/csw/var/cyrus/config/socket/lmtp" prefork=1
# this is only necessary if using notifications
# notify cmd="notifyd" listen="/opt/csw/var/cyrus/config/socket/notify" proto="udp" prefork=1
EVENTS {
# this is required
checkpoint cmd="/opt/csw/sbin/ctl_cyrusdb -c" period=30
# this is only necessary if using duplicate delivery suppression,
# Sieve or NNTP
delprune cmd="/opt/csw/sbin/cyr_expire -E 3" at=0400
# this is only necessary if caching TLS sessions
tlsprune cmd="/opt/csw/sbin/tls_prune" at=0400
}

you can easily verify that the messages do or don't exist by opening the files and checking. you should do this so you know whether you need to reconstruct from that folder, or if perhaps the data is elsewhere.
Did you move your mailstore from it's default location?
You can look in the mailbfr script or man page to see what exactly it does. In brief:
mailbfr -o repairs permissions of the mail db and store folders.
mailbfr -f reconstructs the database. It uses the same routine apple suggests, but automates it (lessening chance for error)
To get more help, make sure you find out whether the mail exists in the mail store (or not). This decides which path to take.
Jeff

Similar Messages

  • SendMail: can not send mail with body more than 1000 caracters

    Hi,
    I can not send mail with a body wich is more than 1000 caracters.
    FUNCTION SendMail(SMTPServerName IN STRING,                     
                        Sender IN STRING,                     
                        Recipient IN STRING,                     
                        CcRecipient IN STRING,                     
                        BccRecipient IN STRING,                     
                        Subject IN STRING,                     
                        Body IN STRING,                     
                        ErrorMessage OUT STRING,                     
                        Attachments IN ATTACHMENTS_LIST) RETURN NUMBER IS      
                        AttachmentList VARCHAR2(4000) := '';      
                        AttachmentTypeList VARCHAR2(2000) := '';   
                          BEGIN       ParseAttachment(Attachments,                      
                                                      AttachmentList);      
                                      RETURN JSendMail(SMTPServerName,
                                                       Sender,                       
                                                       Recipient,                       
                                                       CcRecipient,                       
                                                       BccRecipient,                       
                                                       Subject,                       
                                                       Body,                       
                                                       ErrorMessage,                       
                                                       AttachmentList); 

    Hi,
    I can not send mail with a body wich is more than 1000 caracters.
    FUNCTION SendMail(SMTPServerName IN STRING,                     
                        Sender IN STRING,                     
                        Recipient IN STRING,                     
                        CcRecipient IN STRING,                     
                        BccRecipient IN STRING,                     
                        Subject IN STRING,                     
                        Body IN STRING,                     
                        ErrorMessage OUT STRING,                     
                        Attachments IN ATTACHMENTS_LIST) RETURN NUMBER IS      
                        AttachmentList VARCHAR2(4000) := '';      
                        AttachmentTypeList VARCHAR2(2000) := '';   
                          BEGIN       ParseAttachment(Attachments,                      
                                                      AttachmentList);      
                                      RETURN JSendMail(SMTPServerName,
                                                       Sender,                       
                                                       Recipient,                       
                                                       CcRecipient,                       
                                                       BccRecipient,                       
                                                       Subject,                       
                                                       Body,                       
                                                       ErrorMessage,                       
                                                       AttachmentList); 

  • Alert not sending mail even if executed successfully.

    hi all,
    I have created alert in R12 environment. it is periodic alert which will fire everyday.
    There are 2 actions
    1. Run the Concurrent program and insert values emp_no,emp_name,manager_name,manager_mail into custom table.
    2. Send mail to manager_mail containing data like emp_no and emp_name.
    I encapsulated both the action in one action set. Sequencing 1. Concurrent Program ( Detail Level) 2. Send mail (detail level)
    When i am executing alert, it is ending with completed successfully. It is inserting data into custom table but it is not sending mail to manager mail id.
    When i tried to check history, it is showing 'n' number of exceptions, but all those exception are not available in FIND EXCEPTION tab.
    I m not able to find out, what exactly wrong i have done.
    Query is:
    Select emp_no,emp_name,manager_name,manager_mail into
    &l_emp_no,&emp_name,l_manager_name,l_manager_mail from xx_alert_table_data;
    and I am passing &l_manager_mail into 'To' section of send_mail action. it is not containing any null data. all the email address are present in that field.
    please suggest if i m doing anything wrong.

    Just putting the data into tables is not the actual process, performing the connection to the email server and sending email.
    Underneath it's a multilayered process .
    Oracle Alert uses Oracle Workflow Notification mailer for sending requests, which in turn uses mailer program to send mails.
    So, you need first to check the state of Notification mailer then locate logs of the mailer utulity used by these and see whether there were any connection/negotiation errors and what information in header fields has been actually sent.
    To see notification mailer program status change responsibility to Workflow Manager, then go to "Service Components" section and find there Workflow Notification process.
    To find the mailer type, change responsibility to Alert Manager, then go to System->Options and see which mailer is in use.
    Usually on Unix, sendmail is used, so you may easily turn on debug logging and see the mail headers and complete negitiation logs, if you need them.

  • Can Not Open Mail CNOM

    -The application Mail quit unexpectedly. Mac OS X and other applications are not affected. Click Relaunch to launch the application again. Click Report to see more details or send a report to Apple.
    The above error message appears after I attempt to open the Mail application. Recently the Mail icon was a question mark, however it was found but still clicking on it I can not open Mail. After attempting to click Relaunch twice in a row, during a third time the follow error message appears:
    -Do you want to resent application settings for Mail? The application quit unexpectedly after itwas relaunched. Resetting the application settings may fix the problem. You will be givethe opportunity to restore your original settings when you quit the applications.
    When I click Reset and Relaunch I am brought back the error mentioned I previously encountered first, ergo the whole problem beings again, and the same thing happens again when I click Relaunch.
    When I click Ignore or Do Not Relaunch the application quits, of course. When I click Report the application sends a 'report' page.
    Somebody please help me get my mail working again. Thank you.

    Really? Nobody has any idea?

  • TS3276 Mail account set up. Can not receive mail-Everything is green in Connection doctor but when checking activity it shows stop signs.  Was able to receive mail until last week  then all of a sudden stopped receiving mail but no changes were made.

    My mail account has been set up and working to send and receive mail for several months.  All of a sudden I can not receive mail.  The connection doctor shows all green lights.  No changes have been made and nothing has been changed on preferences on IMAP and SMTP.  I can send mail.  My other accounts all send and receive mail.  When you click on activity the list shows stop signs. All accounts show that they are online. 

    UPDATE:
    I deleted all the messages off the server of the offending email address and everything works fine now.

  • Bursting Program not sending mails

    Bursting Program is not sending mails , we have checked everything and looking good , not generating logs.
    XML Publisher: Version : 12.0.0
    Copyright (c) 1979, 1999, Oracle Corporation. All rights reserved.
    XDOBURSTREP module: XML Publisher Report Bursting Program
    +---------------------------------------------------------------------------+
    Current system time is 14-JAN-2014 07:50:56
    +---------------------------------------------------------------------------+
    XML/BI Publisher Version : 5.6.3
    Request ID: 101436869
    All Parameters: Dummy for Data Security=Y:ReportRequestID=101245852:DebugFlag=Y
    Report Req ID: 101245852
    Debug Flag: Y
    Updating request description
    Updated description
    Retrieving XML request information
    Node Name:RPC5150
    Preparing parameters
    null output =/u000/oracle/PTCCON/apps/apps_st/appl/xdo/12.0.0/out/ESCM1/EM185082.101436869
    inputfilename =/u000/oracle/PTCCON/apps/apps_st/appl/ncr_custom/ncrx/12.0.0/out/ESCM1/EM185082.101245852
    Data XML File:/u000/oracle/PTCCON/apps/apps_st/appl/ncr_custom/ncrx/12.0.0/out/ESCM1/EM185082.101245852
    Set Bursting parameters..
    Temp. Directory:/tmp
    [011414_075107900][][STATEMENT] Oracle XML Parser version ::: Oracle XML Developers Kit 10.1.3.130 - Production
    [011414_075107910][][STATEMENT] setOAProperties called..
    Bursting propertes.....
    {user-variable:cp:territory=US, user-variable:cp:ReportRequestID=101245852, user-variable:cp:language=en, user-variable:cp:responsibility=51687, user-variable.OA_MEDIA=http://ESPROD.daytonoh.ncr.com:8008/OA_MEDIA, burstng-source=EBS, user-variable:cp:DebugFlag=Y, user-variable:cp:parent_request_id=101245852, user-variable:cp:locale=en-US, user-variable:cp:user=EM185082, user-variable:cp:application_short_name=XDO, user-variable:cp:request_id=101436869, user-variable:cp:org_id=152, user-variable:cp:reportdescription=NCR_MFS_ACKNWLG_PDF_REP, user-variable:cp:Dummy for Data Security=Y}
    Start bursting process..
    +---------------------------------------------------------------------------+
    Start of log messages from FND_FILE
    +---------------------------------------------------------------------------+
    +---------------------------------------------------------------------------+
    End of log messages from FND_FILE
    +---------------------------------------------------------------------------+
    +---------------------------------------------------------------------------+
    Executing request completion options...
    Finished executing request completion options.
    +---------------------------------------------------------------------------+
    Concurrent request completed
    Current system time is 14-JAN-2014 07:51:08
    +---------------------------------------------------------------------------+

    I was troubleshooting my own issue noted above and tried to send the attachments via gmail's web interface (bypassing Apple Mail). This time, gmail provided an error message stating that the file contained a virus.
    Since it was a zip of several Word docs, I saved them as PDFs and then rezipped, and Apple Mail sent them off like a champ.
    Evidently, Mail does not have a method for relaying the precise nature of the error message that gmail sends (in this case that the attachment had what gmail thought was a virus). This would be a prime area for some software developers to tackle on a future version of Mail.
    By the way, the files almost certainly do not contain viruses; they are extremely old Word Docs that have been on my successive Mac hard drives for at least 9 years. Too old a format for gmail to recognize?
    Hope this helps someone who may be having the same trouble.

  • How to use Notes in Mail?

    .. e.g.
    1. Where are Notes saved on a MacBook after File > New Note ... write note ... File > Save?
    2. Can you write a Note in OS X Lion Mail / MacBook, and end up with it in Notes on an iPad/iPhone?
    The above covers it, the rest is a rant.
    First, when apps have generic names like Mail or Notes, it makes it difficult to search for anything useful about them .. got to live with this. I have a cold too .. got to live with that, but I mention it as I feel under the weather and am getting fed up trying to do something simple and having to trawl the Support Community and Web with searches about Notes in Mail, just to find out how I should make effective use of Notes in OS X Lion Mail.
    My question is in the heading. We all create Notes on our iPhone or iPad etc., and either end up with them in the Mail app on our Mac(Book) using IMAP or are using iCloud and can interact with the Notes there. However, I thought I'd try creating a new Note in the Mail app on my MacBook and push it the other way, to my iPad, or whatever. Although I'm using iCloud, my current set up uses IMAP to move my Notes around so forget iCloud for a minute. Great news in Mail, using File > New Note, was that the Note can have attachments, and if you attach a GIF say, you get the image in the Note - maybe everyone knows this and I'm the idiot.
    So, I create a Note with attachments and just want to save it so it will end up on my iPad etc. .. File > Save is available, simple. However, where is the Note saved? It looks a lot to me like it's not saved anywhere and if you close it, have fun trying to find it again.
    My research found a thread talking about making Notes searchable again by running the following Terminal command: mdimport ~/Library/Mail, but I really am not in the mood to press every button when all I am trying to do is basic functionality that I would expect to find in the "OS X Lion Applications User Guide" that other research here tells me doesn't exist (happy to be wrong).
    Sorry to go on but it is mildly theraputic. Back to where the Note is saved, I did find that if you hit Send on the Note and then hit File > Save, you do get a copy of your draft email with No Recipients etc., in Drafts. However, it's an email with a Note in it, not a Note as found under Reminders > Notes, that you get when syncing a Note from your iPhone/iPad - it's also not going to end up in Notes on the iPad. Hmmm, another way to put these questions is: How do you write a Note on your Mac and end up with it in Notes on your iPhone/iPad? This cold must be really bad because this has to be such a dumb question.

    I had the same issue. I found the answer on another thread written by an user named "hhoeksma". Here's what he/she wrote:
    "You may be able to retrieve your Notes. They are probably in your Home folder under Library/Mail/V2/Mailboxes/Notes.mbox. You should make a copy of this folder and save it elsewhere; then look through the folders within this mailbox for files with a .emlx suffix. These files are your actual notes. If you open them they will open in mail and look like messages. You can then copy the contents elsewhere.
    If your Library folder is not visible, go to the Finder, hold down the option key and select the Go menu--it will appear in the list.
    I still do not have a way to synchronize (without iCloud) the Notes on my iPhone with those on my Mac, but at least I have the Notes accessible on my Mac."
    hope it works for you too.

  • I get a message the message " Can not get mail. Not connected to server" Yet I am connected with Wi-fi and can access all other websites. Can you advise? My iPad is only a month old!

    Has any one experienced not being able to send mail and only receiving some? I get the message " can not get mail. No connection to the server! " Yet I get some mail but can not send out any. My iPad is only 1 month old! It worked perfectly for about 10 days.
    Thx
    Agnes

    Hey agnesfromcopenhagen k,
    Thanks for the question. I understand you are experiencing issues with Mail on your iPad. The following resource provides some troubleshooting steps. What kind of account are you using? Some internet providers require that you be connected to your home Wi-Fi (or for work accounts, inside your corporate Wi-Fi/firewall). Also, some email accounts require two-step authentication. For more information, see this resource:
    iOS: Troubleshooting Mail
    http://support.apple.com/kb/TS3899
    Thanks,
    Matt M.

  • Iphone 4s in settings can't access Notes or Mail.  Also can't access mail from home screen. Can't send email. All else is good.

    I need help. I have reset my iphone. I have turned it off then on. Still can't launch my built in mail app from home screen. When I try it goes to blank page then right back to home screen view.
    In settings for the iphone 4s I can not access Notes or Mail, Contacts,Calendars. When I tap either of the two they highlight in blue and then go right back to Home Screen view. I seem to be able to access everything else in settings with no trouble.
    From home screen I have no trouble I can launch the built in utility Notes with no problem. I also can launch Calendars from Home Screen view. My Contacts are still reachable by tapping Phone from H/S view then clicking on contacts.
    I can not launch mail. nor can I send email. Also the built in mail app is not showing it is recieving mail either. All else seems fine.
    I can log in to my email from Safari on iphone and from my laptop with no problem.
    Anyone have any suggestions?  My iphone is out of warranty. Apples only suggestions are To pay for support.
    Thanks in advance

    Just had a thought....was trying to rememberif anything changed last night. I think I installed a mac OS X Security update. That's about the time the trouble started. Any ideas? Thanks.

  • After installing the new Yosemite OS on my iMac I can no longer send email. I can receive email, but not send. I use gmail and can send email on the gmail (google) site, but not on "mail" on my iMac. Any others with this problem? What should we do?

    After installing the new Yosemite OS on my iMac I can no longer send email. I can receive email, but not send. I use gmail and can send email on the gmail (google) site, but not on "mail" on my iMac. Any others with this problem? What should we do?

    My gmail, which is correctly configured for Mail with gmail SMTP and Google IMAP, works for awhile on Mail, which I leave open while working on other applications. But several times a day I get msg from Google: "We recently blocked a sign-in attempt to your Google Account" . . . and requiring me to verify my account details, re-enter passwords, confirm security settings (or change them from "disable" to "enable less secure methods" and so on). In Mail I also have tried "taking all accounts online", and re-entering my gmail password inside Mail account settings. These steps successfully re-set comms between gmail and Mail ... for awhile, then it happens again. Enough occurrences over a work day that I just quit Mail and revert to accessing gmail directly. Apple Care advisor and an Apple knowledge base article say that Apple can't deal with this, as gmail is third-party app, and they refer me to gmail, and so far I've found nothing helpful there.
    From today I also have several instances of a window saying "Mail has unexpectedly closed" and asking me to Re-open it.
    I also use Yahoo mail, which stops working with Mac Mail at the same time as gmail, but I do not receive notices to re-verify from Yahoo.
    I recently upgraded from Mavericks to Yosemite. The Mail problem happened occasionally with Mavericks but is far more frequent with Yosemite.

  • HT204075 I am not receiving mail to one of my email accounts. I can send mail from this account and all other accounts seem to be working.

    I am not receiving mail to one of my email accounts. I can send mail from this account and all other accounts seem to be working.

    Is this work email account on a BES server?
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Can get mail but can not receive mail.

    Had a problem with receiving mail on an account so we deleted the account and re-added it. And it worked. Same thing is now happening to another user ad we tried the same thing but the user is still not getting mail.
    Running 10.4.10. any help would be great. Not entirely new to server, but to troubleshooting the mail side I am beginner.
    Also having a weird problem where old accounts, after they have been deleted still show up under server admin- mail - maintenance - accounts. Not a big problem just weird.

    OK... to recap: You have a user, you send email to user, user checks email, user does not get email?
    On the server, can you check the mail queue (in Server Admin or on the command line with mailq) to see if mail for that user's id is stuck in the queue? Mail can be stuck in the active queue without throwing any error messages your way. In my experience, and the experience of a few others on the board, this can be due to problems connecting to the user's home directory server.

  • Since downloading Firefox 4, I am unable to open attachments in my Lotus notes e-mail account, but not if I open Lotus notes via Internet Explorer.

    I recently downloaded the latest version of Firefox (I have been using older versions for the last two years). However, when using my Lotus Notes e-mail account (through the University of Dayton), I immediately was unable to open e-mail attachments (both new e-mails and older, saved e-mails with attachments that had previously been opened. The word "attachment" appears at the end of the message (in light grey), but does not respond to the cursor. I have delayed working on this problem, because if I open Internet Explorer instead of Firefox, my Lotus Notes account will allow me to view new and past attachments. It seems that the new Firefox has changed some security setting that does not relay attachments with my incoming or stored e-mails. Suggestions--or should I continue to just always open with Internet Explorer?

    Maybe the "Remote XUL Manager" add-on mentioned in these threads will help?
    [http://support.mozilla.com/en-US/questions/798338 Since I upgraded to Firefox 4, my Lotus Domino Web access program is not working and I can't load emails. | Firefox Support Forum | Firefox Help]
    [https://support.mozilla.com/en-US/questions/814413 The Webmail version of Lotus knows keep giving the following error message: A problem has occurred which may have caused the current operation to fail. How do I fix this? | Firefox Support Forum | Firefox Help]

  • Hi I want to change your e-secret questions because I forgot the answers I have tried sending reset questions on my mail and I have not received mail

    hi I want to change your e-secret questions because I forgot the answers I have tried sending reset questions on my mail and I have not received mail
    New mail that I want is [email protected]
    Alternative to the Old one

    From  King Penguin
    If you have a rescue email address set up on your account then you can try going to https://appleid.apple.com/ and click 'Manage your Apple ID' on the right-hand side of that page and log into your account. Then click on 'Password and Security' on the left-hand side of that page and on the right-hand side you might see an option to send security question reset info to your rescue email address.
    If you don't have a rescue email address set up then go to Express Lane  and select 'iTunes' from the list of 'products' in the middle of the screen.
    Then select 'iTunes Store', and on the next screen select 'Account Management'
    Next choose 'iTunes Store Account Questions' or 'iTunes Store account security' (it appears to vary by country) and fill in that you'd like your security questions/answers reset.
    You should get an email reply within about 24 hours (and check your Spam folder as well as your Inbox)

  • Can I add a document link to a Note in Mail?

    I know you can insert a URL link, but I wanted to link to a document or .pdf on my system within a Note in Mail. Thanks so much!
    -- Grace

    I just tried to drag and drop the document in the Note and it worked!

Maybe you are looking for

  • Workflow for blocked sales orders

    HI all, I have a requirement in sales in service order . when a credit check is done for a customer ,sales order will get blocked  and in the service order for the corresponding sales order will get a status with Not OK. To release the block on this

  • Export to ProRes problem. Please help!

    I am getting very strange results when exporting to ProRes from Shake (Just "snow" on all frames). Export to uncompressed, DV etc works fine. Is there something I can do to fix this? Exporting to ProRes from FCP works fine.

  • How to launch HTTPS based web template?

    Hello All, My requirement is to launch a Web template using HTTPS protocol(SSL encryption). Now in this case, I need to replace HTTP with HTTPS in a web template URL (Correct me if I am wrong). Please clarify the below queries....... 1. How do I chec

  • Issue with function module HR_INFOTYPE_OPERATION in badi HRPAD00INFTY

    Hello All, I have a business scenario wherein, when user saves data for infotype 0002 from tcode PA30, i have create a new record for infotype 0105 by copying existing record and just changing the date. For the same I am using funtion module HR_INFOT

  • How to change render settings...

    Hello, I need help with FCP. I have noticed that I need to render almost every time when I add something or delete something. I wanted to know if there was a way to change the render settings so you don't need to render as much? Thanks very much in a