Email data to BI

Hi Gurus,
I need to load Vendor E-Mail address data from R/3 to BI and this data is coming from the table ADR6 through the field SMTP_ADDR
so i added the field SMTP_ADDR to the 0VENDOR_ATTR data source and populated it with data using code in CMOD
but my problem is the field SMTP_ADDR is having length ''241''
i need to display the vendor email address in th BEX reports
How i can create a field at Bi side having length ''241'' and how to map it to SMTP_ADDR
please advice
Thank you

Hi preet, Thank you for your reply
You have to append this e-mail IDs into multiple characteristics and in reporting concatenate the data from these characteristics.
How to append this EMail id to multiple characteristics
and please explain about concatebation also
Thanks in advance

Similar Messages

  • I want to move all my email data over the past several years from one yahoo account to another. I am told that I can use Thunderbird to copy and paste . How?

    I wish to close down one email account but have no time to indivuidaully send emails out piecemeal to my newly set-up email address/account.
    I want to keep the same InBox and Sent data columns as I have always had with dates associated with each email.
    I was told that setting up Thunderbird to deal with emailing can facilitate this copying and pasting between two accounts.
    Once done I wish to close my first email account ( its unfortuneately contractually linked to my old iphone 4 and I have changed cell phone companies so I am still keeping that account alive while I sort out how to move my data out into my new email account) and stick to using the new account.
    Both are yahoo.co.jp email accounts. Yes, I live in Japan.
    The Thunderbird program seems to have accessed and stored all of my email data . It did so quickly.
    Please advise what to do next.
    Thanks
    JW

    two ipods wrote:
    I have my husband Iphone and an Ipad on one account.  I have my own phone on another account. I want to move the Ipad from my husbands account to my account so I can purchase him an Ipad2 and I can use the old one with all the settings and apps as they are now and then update with my contact information.
    How do I do this?
    He will run into a problem when he wants to use his own account.  Some apps will have been purchased on one Apple ID and other apps will have been purchased on a different Apple ID.  That's a nuisance situation when the apps need updating and, unfortunately, there is no resolution at the present time (IDs can not be combined).

  • Storing Email Data on SD Card

    Hi, I have inserted 64gig SD Card in my new Z2. Since I will be using a lot of email, with heavy attachments, I want to store the emails on SD card and not on the main device storage. This way, I can keep eons of data handy. Any bright ideas how to achieve this? Again, I moved from iphone to Z2, and in iPhone i was able to keep at least three months of email handy with 16 gigs total. Here, on Z2, with 16+64 = 80 gigs, I should be able to keep huge email data. Help will be appreciated

    Hi, 
    Email data will be stored on the internal storage in Xperia Z2. It's not possible to use the memory card for email storage. You can download attachments and move them from the internal storage using the file manager. The attachments will be saved in the folder called 'downloads'. 
    What are your thoughts about this forum? Let us know by doing this short survey.

  • Ironport Email Encryption及RSA Email Data Loss Prevention在Ironport中分别起哪些作用?

    What are the functions do in both Ironport Email Encryption and RSA Email Data Loss Prevention in Ironport?

    As noted there is no good solution. If it has never been backed up, then when you restore through iTunes on a computer, all of the information on it will be erased. Restoring it is the only way to get it working again.

  • HT201300 My email date of the day the email is posted will not change it stays on 12-8-13

    Email date doesn't change it stays at 12-8-13. I do not know the actual date of my on coming email.

    email date doesn't change it always stays at 12-8-13. I do not know the actual date of my on coming email. (gmail)

  • TS3899 Email data issue

    Why is it that I have deleted all emails off my phone (as in from my Inbox, Sent Items, Drafts and Trash) and my Status says I still have 6.1GB if email data on my iPhone (5). It is a POP email account, and the only one on the phone.

    The only way to do that is to set it up as an IMAP account. And you can only do that if your email provder supports IMAP.

  • How do I transfer my email data from windows live to my mac

    How do I export all my email data from my old PC which was running on Windows Live, to my Mac

    To access a web based email service you just need to go to the site and log in. There will be nothing to transfer.

  • How to email data in a table using BODI

    Dear Pals,
    I have a table with 1000 records, I want to send this data through mail as an attachment(EXCEL)  every day at 9:00 AM . Can we do it using BODI?
    Please do post if there is any way?
    many many thanks in advance.
    Regards,
    Suneel Dirasanchu

    Assuming BOE is consuming the data you have in your tables.
    - Create a WebI Report on this table via universe OR Create a Crystal Report (via Universe or directly ) on the table and save it to BOE.
    - Create a file event in BOE for this webi report to be kicked off.
    - In the DI Job, use the exec command to place the file in the location that the file wait event on BOE is looking for.
    - If you place the WebI or Crystal report to be scheduled to wait for the file event and choose the type of format (Excel, webI, etc) and destination(email as attachment).
    I implemented this as part of hand off from DI to BOE system for a recent project. The WebI reports have been created by the reporting team and I place the files via the exec command. The reports are scheduled to run and send the email as an attachment.
    Hope this helps!
    Thanks & Regards
    Tiji

  • Help creating applescript to select email data and insert in existing Excel workbook

    Hi there
    I'd really appreciate some help.
    I want to select three types of data, specifically Name, Email address, and a Date, from the body text of emails in Mac Mail, and export them into columns in an existing Excel workbook.
    I've set up a rule in Mail based on the sender, and specified an Applescript action based on the script below. I've sent test emails to meet the rule conditions, and included in the body of these emails the text items below to trigger the script rules, but the Applescript doesn't do anything.
    Where I am going wrong?
    using terms from application "Mail"
      on perform mail action with messages theMessages for rule TravelRule
      tell application "Mail"
      repeat with each_message in theIncomingMessages
      -- reset the variables
      set thetext to content of each_message
      display dialog thetext
                                            set {thename, theemail, thedates} to {"", "", "", ""}
      -- get the message text
      set message_text to content of each_message
      -- setup text item delimiters
      set {old_delims, my text item delimiters} to {my text item delimiters, ": "}
      -- iterate through the lines of the message looking for the keywords
      repeat with each_para in (paragraphs of message_text)
                                                      if text item 1 of each_para = "Name" then
      set thename to text item 2 of each_para
                                                      else if text item 1 of each_para = "Email" then
      set theemail to text item 2 of each_para
                                                      else if text item 1 of each_para = "Dates" then
      set thedates to text item 2 of each_para
                                                      end if
      end repeat -- each para
      set my text item delimiters to old_delims
      end repeat -- each_message
                                  tell application "Microsoft Excel"
      activate
                                            open workbook "/PathDetailsHere/Workbook1.xls"
                                            set formula of range "G6" of worksheet "sheet1" to thename
                                            set formula of range "G9" of worksheet "sheet1" to theemail
                                            set formula of range "G12" of worksheet "sheet1" to thedates
      end tell
      end tell -- application "Mail"
      end perform mail action with messages
    end using terms from
    I'm a complete Applescript newbie, so any help would be really appreciated! Thank you.

    my variables are global for all data providers since I use the same query for my data providers.
    It's just the values (some of them : ex: conso version) that differ from one data provider to another.
    ex : here for 2 diff Data providers based on the same query i need to enter the following values for mandatory variables
    Different versions / different years but same conso group / data entry year/ posting period.
    i would like to have the possibility to enter these values out of the "select values for variable" window (not convenient when we have 7 or 8 DP...), but directly in the workbook.
    But maybe this is not possible...
    In DP1                 
    conso version = A_PL                         
    conso group = FR01
    data entry year = 9999
    fiscal year = 2010
    Posting period = 12
    In DP2
    Conso version = P4_MAG
    Conso group = FR01
    Data entry year = 9999
    fiscal year =2011
    Posting period = 12

  • How to email data from web form?

    I need some direction please. I have created a web page (.htm) that has several textboxes, a submit and clear button. The purpose of this web page is for users of the company intranet to input data into the textboxes and then clicking on Submit will email the data to those responsible for filling the user’s request. The web page will be served up on the company’s intranet using the Apache web server that is running on Solaris 10. It seems to me that I will need an email server, but I do not know what Sun program to install and how to configure it. Thank you for any guidance you can provide.

    You need an amp (apache2, mysql, PHP/Python) stack - that's exactly the kind of thing they're for. I have the exact setup you're describing at my job. I set up an intranet server where the secretaries could input client information, and then hit "submit." If they didn't fill out the form correctly, it complains at them and makes them do it over, otherwise it emails the form data to me and I input it in our database.
    Php has a mail function that uses the system mailer (most likely sendmail?)
    See here:
    http://www.w3schools.com/php/php_mail.asp
    Edited by: John_2.0 on Mar 6, 2009 9:23 PM

  • Cannot view the detailed Email date and time about the meeting request

    Hi,I am unable to view the detailed message and Date and time of a meeting request in the default Email app in my Sony Xperia P mobile. Even when i select the calender it does not defaultly go to the meeting date. I need to manually select the date to see the meeting. I cannot see the meeting details without accepting it.I have seen the better behaviors on HTC One V and Galaxy Nexus where full meeting details including message, Date, time, venue appears in the meeting request message.Is there any setting which needs to be changes or is it the limitation of the phone app.Regards,Pratik Ranjan

    Hi Johan,Im also seeing this on my xperia s, ICS.  Here's some additional info i have after some testing:Work have Exchange 2010, I have sent calendar invites from outlook 2007 and 2010 clients and it works for the 2007 clients as it automatically adds the meeting details into the body of the request, something it doesn’t do in 2010, so it may be the way the calendar form has changed in 2010.   It also works fine when i get an invite from an external person.This however is just adding the text into the body, I too have tested with the HTC One S and Samsung Galxay S3, bith use the stock email and both display the time as part ofthe invite no tin the body of the invite,
    In doing the testing I have also found another issue. I have found that it doesn’t inform you of a calendar conflict.ThanksMike

  • Email date format

    I have a query regarding the default date format in regard to email messages.
    When sending email the message from my pc appears to the recipient the date format is for example:
    From: me <************@btinternet.com>
    To: Someoneelse <**********@btinternet.com>
    Sent: Sunday, 16 February 2014, 10:28
    Subject: Re: subject.
     When sent from my ipad it is
    From: me <************@btinternet.com>
    To: Someoneelse <**********@btinternet.com>
    Sent: Sunday,  February 16 2014, 10:28
    Subject: Re: subject
    When sent from my ipad it is
    I have an account with my company the date format for this account is always:
     From: me ************@company.org
    To: Someoneelse <**********@company.org.com>
    Sent:16 February 2014, 10:28
    Subject: Re: subject
    What determines the date format? Is it the pc or ipad or are these formats set by the provider?
    Robin

    I think it is set by your device and I don't think you can change the date format in your ipad from US to UK.

  • How do i change the email dates to UK style

    I have my emails coming in with American style dates - how can I change to UK style ie change 2/6/08 to 6/2/08

    I think this should help you..
    System Preferences -> International -> Formats
    From the "Region" pop-up menu, you can change your date and time formats to UK style. Hope this helps. Cheers!

  • Email data messages

    I just downloaded and started using Desktop 4.5.  I am now getting up to 50 times a day the following message on my email:
    This message is used to carry data between the BlackBerry handheld and an associated server. Please do not delete, move or respond to this message - it will be processed by the server.
    How do I make this stop????

    In your PC Go to Control Panel -> Click Add / remove programs -> select Blackberry Desktop Manager -> click  Change/Remove -> click modify ->  then instead of selecting the checkbox for Enterprise Server/Redirector select the checkbox next to Blackberry Internet Service. This should will solve the problem. 
    tanzim                                                                                  
    If your query is resolved then please click on “Accept as Solution”
    Click on the LIKE on the bottom right if the post deserves credit

  • Need directions to erase all contact/calendar/email data so that I can start fresh again

    I have a Blackberry 8830 that I want to pass on to another family member, but I need to erase all of my current data including contact/calendar/email. Can someone help in providing the procedure to accomplish this.

    You don't want to save anything?
    If you do, perform a backup using Desktop Manager of the device before you proceed with the following.
    On the BlackBerry > Options > Security > General Settings > press the Menu key > Wipe Handheld and proceed.
    This will delete all the settings, preferences, data, messages, contacts, calendar, etc. 
    It will NOT wipe or delete anything from the Media Card should you have one in the device.
    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

Maybe you are looking for

  • Is anyone else still having there iMessages fail to send on iPhone 4?

    Ever since the iOS 7 started I've had nothing but problems with my iMessage.  I have to sign out of iMessage restart my phone and then sign back in. Even then it only works for a few hours, and then I start the whole process over again. My software i

  • Skype for Blackberry in Australia?

    Hi i have been trying to find out for a while now what Blackberrys can have skype installed in Australia. There is very little info out there and it seems to be favouring US customers. Also if anyone has skype installed whats it like? If you have IM

  • Where Is    /weblogic/lib/weblogic_sp.jar in WLS 6.1.0.0

    As per WLS 6.1 documentation,The following must be included as values to the -classpath option on the java command line: /weblogic/lib/weblogic_sp.jar http://e-docs.bea.com/wls/docs61/adminguide/startstop.html#1038523 I couldn't find weblogic_sp.jar

  • Coping items to Time Capsule on Lion take for ever.

    I upgraded to OS X Lion, and since then, the time capsule has been so slow.  It would take 20 mins to drag and drop a 756k file from the desktop to the time capsule. Can anyone lend some advice?

  • Where did my free font go?

    When I upgraded to PS CS4, as is the usual case in upgrading PS, there are some Adobe offers including a free font.  I selected the free font and it went through the downloading process but did not give me a location to save it -- and it was so quick