Script for forward mail as attachment

Hi,
I think there is no direct call for creating forward mail as attachment. I tried "forward" reply and other things.Its working fine.
Please let me know if any one have idea for creating script for apple mail "forward as attachment".

hm... perhaps these two functions do what you wanna do :-/
on createmail_emlx_files_attachment_ofselection()
tell application "Mail"
-- get the mail selection
set myMessages to selection
--do it to every selected mail
repeat with m in myMessages
--get the folder where the emlx file is stored in
set mypath to quoted form of POSIX path of ((account directory of account of mailbox of m) as alias)
--get the id of that message (should be unique within each account)
set myid to id of m
--find the folder where this unique email (by id) is stored in
set myfolder to quoted form of (paragraph 1 of (do shell script "find " & mypath & " -name '" & myid & ".emlx' -exec dirname {} \\;"))
--create a compressed tar archive of this message and open this gzipped files with Apple Mail (-> attach it to a new message).
do shell script "cd " & myfolder & ";tar -rf " & myid & ".tar " & myid & ".emlx;gzip " & myid & ".tar;mv " & myid & ".tar.gz /tmp/;open -a /Applications/Mail.app /tmp/" & myid & ".tar.gz"
end repeat
end tell
end createmail_emlx_files_attachment_ofselection
on createmail_source_attachment_ofselection()
tell application "Mail"
-- get the mail selection
set myMessages to selection
--do it to every selected mail
repeat with m in myMessages
set myid to id of m
set mysource to quoted form of ((source of m) as text)
do shell script "cd /tmp/;echo " & mysource & "|cat>/tmp/" & myid & ".txt;gzip " & myid & ".txt;open -a /Applications/Mail.app " & myid & ".txt.gz"
end repeat
end tell
end createmail_source_attachment_ofselection

Similar Messages

  • Script for getting mail if database is down

    Hi Friends,
    OS Version : IBM AIX 5,2
    Oracle version : 9.2.0.7
    I am executing the following script for getting mail alert if database is down. some how the script is not working
    check_stat=`ps -ef|grep ${ORACLE_SID}|grep pmon|wc -l`;
    oracle_num=`expr $check_stat`
    if [ $oracle_num -lt 1 ]
    then
    exit 0
    fi
    # Test to see if Oracle is accepting connections
    $ORACLE_HOME/bin/sqlplus -s "/as sysdba" > /tmp/check_$ORACLE_SID.ora
    select name from v$database;
    exit
    # If not, exit and e-mail . . .
    check_stat=`cat /tmp/check_$ORACLE_SID.ora|grep -i error|wc -l`;
    oracle_num=`expr $check_stat`
    if [ $oracle_num -ne 0 ]
    then
    mailx -s "$ORACLE_SID is down!" [email protected] < /tmp/check_$ORACLE_SID.ora
    exit 16
    fi
    I am saving this as .sh file and executing at command prompt. It is just hanging, but not throwing any error.
    I would like to know if there is anything to be modified in the script or please provide me any such script. Thanks in advance

    HI there.
    I have a script I use that works really well. It sends out an email only if the database is down and also reads an ini file to process a blackout period and a priority level of the database... High priority databases are monitored every 5 minutes and Medium priority databases every hour.
    There are two scripts, the shell script and the .ini file and I have two cron entries...
    Check script:_
    #!/bin/ksh
    # check_oracle_status.sh
    # Script to check if Oracle db's are up and running.
    # Script is passed a priority field and reads check_oracle_status.ini
    # to determine which db's to check. If db is down an email is sent.
    # Priority Levels:
    # H - Checks db's with "H"igh Priority every 5 minutes (cron)
    # M - Checks db's with "M"edium Priority every hour (cron)
    # L - db's with "L"ow Priority currently not checked
    # Script Change History:
    # ======================
    # October 29th, 2009 - Initial Creation
    # Set environment
    export SCRIPTHOME=/opt/oracle/admin/scripts
    export INIFILE=$SCRIPTHOME/check_oracle_status.ini
    export PRIORITY=$1
    . $HOME/.profile
    db=`grep -i ":$PRIORITY" $INIFILE | cut -d":" -f1`
    check_database()
    sqlplus <<! > $SCRIPTHOME/check.out
    / as sysdba
    select * from dba_data_files;
    exit
    grep ORA- $SCRIPTHOME/check.out > $SCRIPTHOME/error.out
    if (( $? )); then
    echo ""
    else
    mailx -s "Oracle instance $i is currently UNAVAILABLE" +<email address>+ < $SCRIPTHOME/error.out
    fi
    for i in $db ; do
    fields=`grep $i $INIFILE | awk -F':' '{ total = total + NF }; END {print total}'`
    export ORACLE_SID=$i
    if [ $fields -gt 2 ]; then
    BLACKOUT_START=`grep -i "$ORACLE_SID" $INIFILE | cut -d":" -f3`
    BLACKOUT_END=`grep -i "$ORACLE_SID" $INIFILE | cut -d":" -f4`
    CURRENT_HOUR=`date +%H`
    CHECK_BASE=YES
    if [ $BLACKOUT_START -gt $BLACKOUT_END ]; then
    (( $CURRENT_HOUR >= $BLACKOUT_START || $CURRENT_HOUR <= $BLACKOUT_END )) && CHECK_BASE=
    else
    (( $CURRENT_HOUR >= $BLACKOUT_START && $CURRENT_HOUR <= $BLACKOUT_END )) && CHECK_BASE=
    fi
    if [ -n "$CHECK_BASE" ]; then
    check_database
    fi
    else
    check_database
    fi
    done
    rm $SCRIPTHOME/check.out $SCRIPTHOME/error.out
    INI File:_
    oracle1:L
    oracle2:M:17:08
    oracle3:M
    oracle5:M:17:08
    oracle6:H
    oracle7:M:17:08
    oracle8:M
    oracle9:M
    Where oracle1,2,3 etc is your sid
    L M and H your priority level
    17 is blackout start (5 PM)
    08 is blackout end (8 AM)
    Note: Blackout is just a start hour and an end hour and must contain both or none and my script can only process one blackout per database. I guess if you
    needed a second blackout you could add another line with different times for that sid
    Cron entries:_
    # Check Oracle Status
    # The check_oracle_status.sh script monitors "H"igh priority databases every 5 minutes
    # and "M"edium priority databases every hour
    0,5,10,15,20,25,30,35,40,45,50,55 * * * * /opt/oracle/admin/scripts/check_oracle_status.sh H > /dev/null 2>&1
    0 * * * * /opt/oracle/admin/scripts/check_oracle_status.sh M > /dev/null 2>&1
    Not sure if you require blackouts or priority levels but this setup works great at our site.
    Hope this helps.

  • Forward mail with attachment (not WorkItem) from SBWP to Outlook

    Hallo,
    we want to forward mails (not WorkItems) form SBWP to Outlook.
    The forwarding works fine for the mail but if the mail includes an attachment from type object  (e.g. send object with note in MM03) we are not able to open the object in the mail. We want to open the object so that automatically SAP GUI is started and the corresponding object is shown in SAP.
    In SBWP we are able to open the attachment in Outlook not. Are there any settings in SAP where we can define that.
    Have we to define something parameters of the Integrated ITS?
    We want the same behaviour for mails with attachments as for WorkItems if they are forwarded to Outlook.
    We get an HTML mail in Outlook like
    If you are not forwarded automatically, use the following link:
    If the link is not to a valid server, log on to the SAP system and check the following object:
    System: XYZ 
    Client: 300 
    BOR Object Type BUS1001006 
    BOR Object Key 0000700075 
    But there is no link to follow in the mail and nothing happens.
    Thanks
    Edited by: Arnfried Doetsch on Sep 29, 2010 10:28 AM

    Hello,
    Check if your SMTP node in transaction SCOT is configured to send attachments of all types.
    Have a look at the following link:
    http://help.sap.com/saphelp_47x200/helpdata/en/08/e043c4c18711d2a27b00a0c943858e/frameset.htm
    Regards,
    Siddhesh

  • Scripts for setting mail message colors quickly

    I've been frustrated at how difficult it is to set the color of a message subject etc in a mailbox. Sometimes applying a color would work, sometimes not, and many clicks required. Finally I wrote a simple script that appears in the Finder's Scripts menu, which applies a particular color to all emails that are selected. I made one version for each color I use (I use these to keep track of emails that are useful references, or that require some action, etc.) I added a leading space to the script names so they would appear at the top of the scripts menu. I wish I could connect them to buttons in the Mail window, but don't know a way to do that, and this is nearly as conveniet.
    Here's one of the scripts. Colors can be none, red, orange, blue, gray, green, purple, yellow:
    tell application "Mail"
    set selectedMessages to selection
    set nm to count of selectedMessages
    if (nm) is equal to 0 then
    display alert "No Messages Selected" message "Select the message(s) you want to color red before running this script."
    else
    repeat with nn from 1 to nm by 1
    set theMessage to item nn of selectedMessages
    set the background color of theMessage to red
    end repeat
    end if
    end tell

    HI Disha
    Check out these links. They will surely help
    http://www.geocities.com/mpioud/Z_EMAIL_ABAP_REPORT.html
    http://www.thespot4sap.com/Articles/SAP_Mail_SO_Object_Send.asp
    If you find this answer useful, please reward me for the same.
    Good luck
    Karthik Potharaju

  • Script for no sound when receiving spam

    Hi there, I'm looking for a script for Apple Mail that shuts off sound when a message that's labeled as spam comes in. I have several e-mail accounts running in Apple Mail. It happens often that while checking for new mail only spam comes in. It would be great if the notification stays silent in that case. Any ideas? TIA.

    EITHER YOUR RINGER IS NOT ON OR YOU HAVE GONE INTO SETTINGS AND TURNED SOUNDS DOWN THERE HOPE THIS HELPS

  • One-liner script for displaying BLACKLIST sendergroup ip/sbr

    MFC (or possibly M-series) does not log BLACKLISTed SG connection information.
    This make sense, because 95% of connections belongs to BLACKLIST. :cry:
    To verify whether setting too strict of SBRS score for BLACKLIST SG, I have a script
    For one mail.log file
    tac mail.current | \
    awk '/REJECT SG BLACKLIST match/ { a = $NF; getline; printf "%s ",$0; print a } ' | \
    grep 'verified yes' | awk '{ print $15,$19,$NF }'|sort |uniq -c|sort -n
    Fpr process multiple mail.@*.s file
    tac `ls -1t mail.*s|head -3` | \
    awk '/REJECT SG BLACKLIST match/ { a = $NF; getline; printf "%s ",$0; print a } ' | \
    grep 'verified yes' | awk '{ print $15,$19,$NF }'|sort |uniq -c|sort -n
    Example output
    834 122.218.211.93 122x218x211x93.ap122.ftth.ucom.ne.jp -10.01
    892 77.45.131.75 75.131.c10008-a77.dsl-dynamic.vsi.ru -10.01
    920 70.56.148.214 70-56-148-214.bois.qwest.net -4.91
    923 200.158.73.159 200-158-73-159.dsl.telesp.net.br -10.01
    963 93.124.99.106 host-93-124-99-106.dsl.sura.ru -10.01
    982 85.136.139.99 85.136.139.99.dyn.user.ono.com -7.31
    983 82.255.81.30 lns-bzn-42-82-255-81-30.adsl.proxad.net -4.21
    984 200.120.226.165 pc-165-226-120-200.cm.vtr.net -10.01
    997 68.90.116.121 adsl-68-90-116-121.dsl.rcsntx.swbell.net -10.01
    1031 80.7.70.213 cpc2-pool4-0-0-cust724.sotn.cable.ntl.com -10.01
    1060 189.19.211.97 189-19-211-97.dsl.telesp.net.br -10.01
    1127 210.202.82.21 nk210-202-82-21.vdslpro.static.apol.com.tw -7.81
    1174 65.25.105.170 cpe-65-25-105-170.neo.res.rr.com -7.31
    1253 82.41.145.16 82-41-145-16.cable.ubr04.grth.blueyonder.co.uk -10.01
    1301 61.227.71.96 61-227-71-96.dynamic.hinet.net -4.51
    1415 79.86.157.30 30.157.86-79.rev.gaoland.net -10.01
    1450 189.58.225.74 189.58.225.74.dynamic.adsl.gvt.net.br -10.01
    1646 91.67.109.82 91-67-109-82-dynip.superkabel.de -10.01
    1843 77.192.81.76 76.81.192-77.rev.gaoland.net -10.01
    1994 89.78.204.79 chello089078204079.chello.pl -10.01
    2164 86.21.9.87 cpc2-stap6-0-0-cust342.nott.cable.ntl.com -10.01
    2298 118.8.196.173 p1173-ipbf1408souka.saitama.ocn.ne.jp -4.01
    (Btw, we set BLACKLIST SBRS <= -3.5)

    It could be as simple as
    lgrep -O conn <IP> access
    If you have more logs you can cat them and pipe the output to lgrep in a pipeline, like:
    cat access.1 access.2 ... access.n | lgrep -O conn <IP>
    Just make sure that the logs are listed in sequence. The script won't produce reliable results if the log is non-sequential.

  • Can mail be forwarded as an attachment?

    In order to forward SPAM to my ISP I have to forward the spam as an attachment in RFC_822 MIME format. Can this be done with Apple Mail in Tiger? If so, how?
    (It is a simple endeavor in practically every other mail app on the PC, but I cannot seem to figure it out in Mail on the Mac.)

    Buck,
    This comes up routinely in this forum. I do not think there is a difference in forwarding with the Long Headers fully displayed, versus "as an attachment", which Mail does not directly provide for. If sending to only forward, and not for abuse reporting, check you Mail Help for "Forwarding several messages" and the use of the Append Selected Messages function.
    For general background, read the following pasted comments I have made to others:
    As I have read and researched this question, it appears that many email clients do not send the Headers of the messages during forwarding (this style is called Inline Forwarding) unless you specify forwarding as an attachment. Mail is not in this category -- it will send the full message, including Headers depending upon how you have your Mail Preferences set for Composing.
    In Mail, if you click on View in the Menubar, and then Message, and choose Long Headers, the entire Header detail, including any Reply To Header (if present) will open, and if you forward with these headers showing, then the recipient will see them. Further more, if you change your Viewing Preferences to Customize your header view, and then forward the entire message, that detail will accompany the message.
    It is important to check your Preference settings for Compose, and also, are you using Smart addresses or are you showing Name and Address -- this is controlled by clicking on View in the Menubar, and then Addresses, and choosing between Smart Addresses and Show Name and Address.
    Among the sources I have checked for expressing this opinion are:
    http://mailformat.dan.info/quoting/forwarding.html
    http://pages.prodigy.net/michael_santovec/decode.htm
    and others.
    A reason sometimes cited in reference to Forwarding as an Attachment, is to send a potentially dangerous message to the abuse desk of your ISP, and not activate any links, etc. I do not believe Mail can perform this, as it is generally thought of. There may be some scripts that accomplish this, but I do not think it is necessary in reporting suspect messages.
    I hope this helps.
    Ernie

  • Automator/applescript to forward junk mail as attachment...how?

    I finally came up with a real use for Automator and Applescript -- I was delighted.
    I want to modify my junk mail rule to run an Applescript that forwards a mail message as an attachment (not just a regular forward) to Spamcop.
    It has to be forwarded as an attachment. First shot, I simply went to modify my junk mail rule but, alas, found that "forward as attachment" is not an option for Mail's rules. Fortunately, there is a "run Applescript" option so...
    I fired up Automator, hoping to see how to tell Mail to forward a message as an attachment. Again, alas, no "as attachment" option there. So then I started exploring how to invoke the Mail menu item Message > Forward as Attachment but, haven't been able to figure it out.
    Any help would be appreciated. Especially since this will be the first time I've actually found a use for Automator, which is great... I just know it's not merely eye candy...

    Here is some starter code, to be saved into the current users' '~/Library/Scripts/Applications/Mail/' folder - as a script file ...
    using terms from application "Mail"
    on perform mail action with messages tMessages
    repeat with i in tMessages -- Cycle throught the list of incoming 'Rule' filtered e-Mail messages.
    -- File path file Name of temporary attachement file.
    set file_Name to (((path to home folder from user domain) as string) & (do shell script "date +%Y%m%d%H%M%StempFile.txt"))
    try -- Capture any unexpected AppleScript error.
    set FREF to open for access file file_Name with write permission -- Create temporary attachement file.
    write ((source of i) as string) to FREF starting at 0 -- Write to temporary attachement file.
    close access FREF -- Close temporary attachement file.
    -- Make new outgoing e-Mail message, and attach respective attachment file.
    set tMessage to make new outgoing message with properties {visible:true, subject:"My Subject", content:("My Body" & return & return)}
    tell content of tMessage
    make new attachment with properties {file name:(file_Name as alias)} at after last paragraph
    end tell
    end try
    try -- Capture any unexpected AppleScript error.
    tell application "Finder" to delete file file_Name -- Trash temporary attachement file.
    end try
    end repeat
    end perform mail action with messages
    try -- Capture any unexpected AppleScript error.
    tell application "Finder" to empty trash -- Delete all temporary attachement files (plus all other items) in the trash can.
    end try
    end using terms from

  • Send PDF form to e-mail as attachment with a PHP script on the server

    Hi,
    For several days I've been searching though the internet looking for a solution, a quite simple one in my opinion, but I got a little desperate not getting any result I want.
    Okay. The Situation.
    I have a PDF form to order sandwiches and drinks.
    The PDF has serveral area's and columns where customers fill in the amount of the products they would like to order.
    At a position of a field, the kitchen can almost blindly see what products a customer ordered.
    Therefore, when someone fills in the form, I want to send the filled PDF by e-mail to the kitchen's e-mail adress. And important: the PDF in the kitchen's mailbox should be completely identical to the form the customer filled in.
    So, I have an Order button in my form. I set the action as 'Submit a form'.
    In the settings under 'Enter a URL for this link' I used just some PHP mailer script I also use on my website contact form.
    IF I check 'HTML' under 'Export Format' the PHP mailer works fine. I receive an HTML e-mail listed the ordered products.
    BUT
    I do want the original filled PDF in my mailbox instead of an HTML e-mail.
    So, for 'Export Format' I checked 'PDF The Complete Document'.
    But then my PHP mailer script doesn't work anymore.
    It gives errors like 'no valid e-mail adres' , etcetera etcetera.
    Who has a solution?
    Who has a working standard PHP script for me what just sends the kitchen an empty mail with the original PDF as attachment?!
    There is no need to use any database or other more complex functionality. Just mail the filled PDF.

    You can submit whole PDF format as long as you enable usage rights on the PDF.
    Normally Adobe Reader users can only submit the data, XFDF, FDF, XDP, XML.
    To enable usage rights on the PDF you will need to use Adobe Acrobat Std/Pro.
    As for the PHP Script; it depends on your PHP web server capabilities.
    The script will be slightly different, if the server uses PHP Mail or PHP PEAR.
    Just attach the submission to an email and send.
    If the client is submitting the form from a standalone pdf reader app, you can also respond with a success or failure FDF \status message; otherwise, you can redirect to a success / failure URL.
    For more information and online examples:
    http://www.pdfemail.net/examples/

  • Convert Script output data to Text(.txt) file & send mail with attachment.

    Hi All,
    Requirement: I shulb be able to conver th Script output data to Text(.text) file & send a maill with attachment with this text file. Formant of text file should be like output of Print priview.
    Plese sugget with Function modules to cover as Text file.
    I am able to converting the Script output data to PDF and sending mail with attachment. So I don't want PDF file now.
    Thanks in advance.

    Hi, Thanks for responst.
    We can convert the Scirpt output to PDF file by using OTF function module and the PDF file looks like Print Privew output.
    Same like this I want Script out in NOTEPAD (.txt). Is that possible, Plz sugget with relavent Function Modules.
    Thanks.

  • Sending SAP Script output as a PDF attachment through mail

    Dear Guru,
    I am using SAP 4.0B version, DATABASE Oracle 8i, OS is sun solaris 7.5.
    I want to send SAP script output as a
    PDF attachement through mail.Please suggest a solution.
    Regards,
    Rajesh

    Hi Rajesh,
    In your print program, while calling OPEN_FORM, pass options-TDGETOTF = 'X'. This is used for returning print output in OTF format.
    Then in CLOSE_FORM, get the table OTFDATA returned from the function module. for example
    DATA: OTF_DATA LIKE ITCOO OCCURS 0 WITH HEADER LINE.
        CALL FUNCTION 'CLOSE_FORM'
          IMPORTING
            RESULT  = RESULT
          TABLES
            OTFDATA = OTF_DATA.
    now you can convert this OTF data to PDF using function module CONVERT_OTF
    Then send this data as attachment to a mail using function module SO_NEW_DOCUMENT_ATT_SEND_API1
    Regards,
    Komal.

  • Apple Script For Opening External EML File With Apple Mail

    Hi folks,
    

 I am working with Apple Script for implementing numerous function related to Mail App.
    

I am using the following Apple Script lines for opening the mails which are in Mail app for each modes.
    

View Mode : open theMsg

    Reply View Mode : reply theMsg opening window yes

    Reply All Mode : reply theMsg opening window yes reply to all yes

    Forward Mode : forward theMsg opening window yes



    I want to know how we can open external eml file in different view modes (View, Reply, Reply All and Forward) using Apple Script or Apple Event programmatically with a similar mechanism available through script in Mail App.

    
Thanks in advance.

Regards
    
Nisar

    I'm not sure what you're doing here, but this isn't anything I recognize as compilable applescript. what is this 'mode' thing you're talking about.
    at any rate, if you have a loose emlx file sitting around somewhere you can simply open it in mail (use the 'open' command and the file specification for the emlx file) and work with it appropriately. if you're talking about an actual eml file (e.g. from Outlook Express) you'd have to GUI script Mail's 'import mailbox' command (the applescript handler for importing mail only works with Mail.app mailboxes)

  • Forward mail to specific email id without remove attachment - Exchange 2010

    Hi,
    How can I forward mail to another email id without attachment or by removing attachment. in Exchange 2010
    i.e the another email only includes message body and subject not the attachment file.
    is it possible.
    Thanks,

    Hi,
    Based on the description, you want to remove attachments from email when you forward to another user. Per my knowledge, there is no way to meet this requirement. Here is an article about attachment inspection in transport rule for your reference.
    Introducing Attachment Inspection in Transport Rules
    http://blogs.technet.com/b/exchange/archive/2009/05/11/3407435.aspx
    Best regards,
    Belinda
    Belinda Ma
    TechNet Community Support

  • HT5361 Apple Mail looses attachment when forward rule is applied

    Hi,
    Seems Mail does not include the attachment with the rule: "forward mail". It happens with pop, imap regardless the attachment size or type.
    After making a small research i found that this problem is not so new. I found articles back from 2005.
    Could you pls provide some support on this?
    thanks,
    Greg

    Care to share which OS version you are using? 
    iOS is for mobile devices.

  • How can I send just 1 message for 2 mail accounts under mail forwarding

    Hi everyone
    I have a question for mail forwarding.
    I have 2 inbound mail servers,4 outbound servers and many store servers.
    User A set his mail forwarding address to B, and B set his mail forwarding address to A.
    So 2 guys can receive each others message.
    In this case, If two users have same "mailhost' value(ex, x.test.com), forwarding mail goes just once for each accounts.
    If "mailhost' values , however, are different (ex, x.test.com and y.test.com - and also two mail servers connected as internal server),
    forwarding mail goes 4 times for each accounts.
    So sender gets 4 messages and receiver gets 5 messages.
    How can I set mail server configuration to send just once not 4 times for 2 users?
    Any advices would be welcomed.
    Thanks
    Message was edited by:
    1231dugi
    Message was edited by:
    1231dugi

    Hi,
    User A set his mail forwarding address to B, and B
    set his mail forwarding address to A.
    So 2 guys can receive each others message.You have just created a mail loop. This is not a good thing.
    Any advices would be welcomed.I would advise creating a mailing list which has both userA and userB as members, and then have emails sent to that address OR have a third account which they can both access (IMAP shared folders) and have email sent to that OR have them share each-others INBOX.
    The fact that userA & B didn't get multiple copies when they were on the same mailhost is due to good luck only.
    Shane.

Maybe you are looking for

  • Local Adjustment Brush does not work in Windows 7, 64-bit

    All other tools and functions work OK.  My issue is just with the Adjustment Brush;  The Adjustment Panel opens when the brush is selected and the brush moves, but none of the adjustments are applied to the image.  The problem is clearly related to t

  • Email excel truncating the output - why?

    Using the foloowing code to send a report output as and excel attachment in e-mail. But the final Excel Spread Sheet at SCOT / SOST does not show all the rows.       CALL METHOD DOCUMENT->ADD_ATTACHMENT         EXPORTING           I_ATTACHMENT_TYPE  

  • Popup witth: question, table and YES/NO buttons

    Hi there. Maybe You have encountered such a popup window in which I could display informations: 1) Question text, sth like... "You hadn't saved Your changes. Do You wish to save them now?" 2) list of changes (list contains 1-10 items), sth like ... -

  • Formatted Text Edit - Formatting icons not visible

    Hi, I  am using Formatted Text Edit in a view. The problem is that the formatting icons  (bold, italics etc.) are not rendered on the browser for a user with Arabic locale.Instead of the icons, I see a cross. This happens in IE, Mozilla as well as in

  • Problem In finding a collection

    Hi Friend, I am having two different ways to get a data value. The data value is mapped with respect to a number or a name. By that I mean a data value can be found out on the basis of name or number. Can anyone suggest a collection or method to impl