Adding email address in file export form

Hi,
i m creating file export form to run campaign.
my requirement is to add email address to file export form because i m working with 3rd part mail sender company.
but this attribute isn't in attribute list.
how can i add this attribute?
Any help in solving the issue is greatly appreciated.
Regards
Sevtap

Hi Sevtap,
for any fields that you not provided from standard you can easily create your own attribute context and use BAdi CRM_IM_ADD_DATA_BADI to fill the fields during campaign execution when generating the export file.
best regards,
Johannes

Similar Messages

  • Set default File Export Form for Communication Medium?

    Hi,
    Does anyone know whether it's possible to set a default File Export Form for Communication Medium.
    For example, I created communication medium 'Direct Mailing'. Everytime when a user selects this communication medium in a Marketing Campaign, I would like the File Export Form 'Z_DIRECT_MAILING' to be selected automatically. Is this possible?
    Regards,
    Jeroen

    @ Rienk - That isn't my issue, what I was looking for was to have the last setting I selected (either in Batch Export or in QT Movie Export) "Stick" so when I go to do the next set I don't have to re-select all of my settings.
    @ Nick - Not a good thing in this case. I need to send out QTs that have the speed change "baked-in" and convert the format(to ProRes, so the Color Grading session using "Color" doesn't choke. I changed my Sequence: "Settings > QuickTime Video Settings > Compressor" to ProRes, but the "Current Setting" seems to stick to the original clip's capture format (XDCAM EX).

  • Unable to verify account, old email address on file

    I am unable to verify my My Best Buy account. I have an old email address on file that is no longer accessible to receive verification emails. I created a new account, but I am not receiving any verification emails. Is it possible to merge the accounts together?
    Thank you.

    Hi blouieee,
    Welcome to the Best Buy forum.
    Is it possible to merge your My Best Buy™ accounts?  If they share the same information, then the answer is YES!  I am going to need some additional information from before I can actually consider a merge, so please send me a private message with the below information and I will see what I can do to help.  You can send a private message by clicking on the blue button in my signature labeled "Private Message."
    Name
    Phone #
    Mailing address
    Email address (old and current)
    My Best Buy™ ID #s
    Merging My Best Buy™ Accounts
    Thank you for posting and for being a My Best Buy™ member.
    Derek|Social Media Specialist | Best Buy® Corporate
     Private Message

  • Bold 9000: problem while adding email address to TO:

    Hi Guys!!
    I am facing a problem while adding email addresses (whcih are already stored in my BB Bold 9000). while adding "To: or CC:" only 1 email stored contact is displayed. others are not.
    please help me some solution.
    regards
    Thanks & regards
    Ajay Jain

    If I understand you correctly, while adding email addresses to any particular email IDs you're can't see multiple email IDs. Email addresses are stored under the contact names. You can save multiple email address under one contact. Now while putting name in To/CC field you should be typing the names of the contact and when pressing/selecting names you would be prompted with multiple email addresses.
    Try this -
    When you device is POWERED ON, remove the battery for a minute, and then reinsert the battery. This make a reboot to your device which minor issues with the BlackBerry device.
    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

  • How do I edit Send button designated email address on a web form in Dreamweaver CS6?

    I have a webform on our website for folks requesting information. There is a country button which folks select. The send button submits the form and there is some script somewhere that sends submissions from say a USA based enquirer to a USA email address, UK based enquirer to a UK address, etc. How can I edit the script that controls that function? I am a newbie in CS6 but am learning fast!

    Hi Fritz
    In the source code I have:
    <td height="30" colspan="2"><div align="center">
                      <input type="submit" value="Send" />
                  </div></td>
                </tr>
              </table>
            </form>
    If I click on </form> in Properties the action box shows an asp file /gdform.asp on the root. I opened that and it has no site specific info, i.e. my URL or any email address.
    The webform can be viewed on www.aboutmeco.org/opportunities/index.html   Ther you see the Send button is at the bottom of the webform, which corresponds to the source code.   Do you think I am looking at the right form tag?
    Stephen

  • Updating an email address for an e-form...

    Please ensure that it is really just this simple...
    You find the .txt file associated with the page that has the
    particular e-form, and simply change the email address within the
    .txt file.
    And then it will send to a new person, right?! : ) -- You
    don't need to update anything within the actual HTML file, correct?
    Thank you!

    r_tist wrote:
    > Hi!
    >
    > Whoops...I think I met to say the .PL file within the
    CGI bin. Does
    > that help at all?
    > I don't have the page or link ready yet, but someone
    wanted to check
    > if I could help them out with that.
    >
    > How complex could a task like that get, by the way?
    >
    > Many Thanks!
    If it's just a .pl file containing the script with the email
    address in,
    then yes, it should just be a case of editing the file and
    reuploading it.
    Your reference to a .txt file made it sound like something
    that could get
    complex!
    Regards,
    Pete.
    Peter Connolly
    http://www.acutecomputing.co.uk
    Derby
    UK
    Skype ID: acutecomputing

  • How to prevent users from seeing my email address in a mailto: form?

    I've created the form but everytime I test it my email opens up and shows who the form would be mailing to. I do not want users to be able to see my email address. Is there anyway to encrypt it or black it out, etc? 

    Alright, I have created my php form and everything works like I would like except for the information in the email. When I tested it I recieved an email with the body of my form but none of the information that was typed in. What do I need to do?
    php
    /* Subject and Email Variables */
        $emailSubject = 'Test Form';
        $webMaster = 'I blacked out my email';
    /* Gathering Data Variables */
        $emailField = $_POST['email'];
        $stateField = $_POST['state'];
        $districtField = $_POST['district'];
        $votersField = $_POST['voters'];
        $body = <<<EOD
    <br><hr><br>
    Email: $email <br>
    State: $state <br>
    District: $district <br>
    Voters: $voters <br>
    EOD;
        $headers = "From: $email\r\n";
        $headers .= "Content-type: text/html\r\n";
        $success = mail($webMaster, $emailSubject, $body, $headers);
    /* Results rendered as HTML */
        $theResults = <<<EOD
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title>
    </head>
    <body>
    <p>Your email has been sent</p>
    <p> </p>
    </body>
    </html>
    EOD;
    echo "$theResults";
    ?>

  • Capture only the email address in a muse form

    How do you create a form in Muse where you capture only the email address?

    If it is actually an Acroform as you imply, then open the form tools, double click the submit button (or right click and select properties), go to the last tab, highlight the submit, and edit it. You can change the submit properites there. If you used Designer for the form, then ask in the LiveCycle forum. The process for Designer is quite a bit different.

  • Adding Email Addresses from Mail to Address Book

    I send out a lot of emails that I would like to save in my address book. Address Book automatically sorts the address by first name or last name. This makes it virtually impossible to locate daily or hourly all the emails that you saved to your Address Book. Especially when your Address Book has over 3,000 addresses. Is there anyway to save email addresses using Mail directly to a Group in the Address Book?
    Thank you.
    MacBook Pro Mac OS X (10.4.8)
    MacBook Pro   Mac OS X (10.4.8)  

    Welcome to the discussions, Big.
    If you select an address in an email message you can drag it and drop it onto a group in Address Book, making a new contact and adding it to the group in a single operation. You can't do this from Mail's Previous Recipients window, though you can use the PR window, ordered by date, to see who you sent email to three days ago - but not hourly.
    AK

  • Deleting auto added email addresses

    How can I delete auto added and wrong email addresses ?
    Doe the new o's 5.1 do this ?

    The only way that I know of to delete incorrect or old email addresses is to restore the iPad back to defaults (which I assume that you don't want to do) - I'm not aware of anything having been added in iOS 5.1 that allows you to edit that list of email addresses. You could try leaving feedback, and maybe in a future update we'll be able to : http://www.apple.com/feedback/ipad.html

  • Single key access to email address on file

    I want to insert an email address into a document with a single key entry rather than type the whole thing out each time. Foxfire does this for my name -- how do I set this feature up for other names?

    Hi blouieee,
    Welcome to the Best Buy forum.
    Is it possible to merge your My Best Buy™ accounts?  If they share the same information, then the answer is YES!  I am going to need some additional information from before I can actually consider a merge, so please send me a private message with the below information and I will see what I can do to help.  You can send a private message by clicking on the blue button in my signature labeled "Private Message."
    Name
    Phone #
    Mailing address
    Email address (old and current)
    My Best Buy™ ID #s
    Merging My Best Buy™ Accounts
    Thank you for posting and for being a My Best Buy™ member.
    Derek|Social Media Specialist | Best Buy® Corporate
     Private Message

  • I have change email address on file

    I tried to log in but request for lost password but was sent to old email address. My new email address is [email protected] or [email protected] I need to update my profile
    Website is http://tinyurl.com/22o5t8n

    You need to handle that with the web site involved. Mozilla or Firefox doesn't have anything to do with that situation.

  • Adding email address

    Hello, I tried to add another email address. I have been looking for the confirmation email to that address but I have not yet received it. I wondered if I have the PayPal email address blocked for some reason.Can you give me the email address that PayPal will be using so I can see if it is on my block list, please.That is the only reason I can think of for not receiving their email yet to confirm.

    Hello!
    For you Windows Mobile device.  You go into the address book, open the contact, and can them select the e-mail address to send e-mail.  Another way is in you new message start typing out the e-mail address or contact name and it then should auto-populate suggestions.  It has to be in your contacts list for it to autopopulate.
    It will not automaticly add alien e-maill addresses  by design.  The email client does not have its own address list but uses the contacts list for e-mail addresses.  So to add one, just tap on the sender and hit save.  That will take you to the contacts list, to either add it to an existing contact OR add a new contact for that e-mail address.
    Post relates to: Treo 650 (Unlocked GSM)

  • Adding email addresses from numbers to address book

    I am a high school coach and recently I had my players put their names and email addresses directly into my computer using numbers 08. My problem is that every time I try to drag them into my address book, it opens up Mail as if to send out an email. Please help! I can't even copy and paste because it automatically opens Mail. Thanks!

    Open your Numbers spreadsheet.
    Use the arrow keys to move the cursor to the email address cell without clicking on it.
    Command+C (Same as Control + Click, and select Copy) to copy the contents of the cell.
    Open Address Book.
    Click Plus to add a new card.
    Command+V (same as Control + Click, and select Paste) to Paste the contents of the cell into the email address field.
    Back to Numbers, Copy the next email, back to Address Book, Plus to add card, Paste into the email field, and so on.
    Alternate idea: Depending on how many names you have to enter, just print the spreadsheet and find a fast, accurate typist, and put them to work entering info in Address Book.
    Using the shortcuts Command+C to copy and Command+V to paste, versus using the menus has literally saved me hours of time over the years!

  • Open Channel - Address Data File Export

    Hi,
      I have created a Mail Form to do Customer address Export into csv file. Everything went fine except 2 fields has not extrated succefully, BAPIBUS1006_CENTRAL_PERSON-FIRSTNAME and BAPIBUS1006_CENTRAL_PERSON-LASTNAME. I have checked the the business partner contact person is maintained.
       Do anyone know where else should i maintain in the business partner details in order to get these 2 fields extracted?
    Thanks,
    Vivienne

    Hi Srinu,
      Thanks for your prompt reply, however, I don't understand your answer. These 2 fields are retrived from the structure BAPIBUS1006_CENTRAL_PERSON, how do i use the function you've mentioned?
    Thanks,
    Vivienne

Maybe you are looking for

  • Bubble chart in Xcelsius

    Hi, I am building a report which uses the below data Region______Verticals________calyear____Revenue APJ________Banking_________2007_____10 EmEA______Insurance________2008_____20 Central______Media___________CAGR____6.8 I need to have 3 filters for R

  • Enabling JHeadStart to Generate Automatically RollBack Button

    How to modify JHeadStart Templates so it generates automatically a Rollback Button in every Uix Page. Best regards

  • Wrong icons in column view

    Hi! yesterday I installed a new applications that set itself as the default application for .java files. I managed to restore the file type association to default (TextEdit), but now the icon of java files in column view and list view is wrong (execu

  • Basic behavior question

    I created a slice and a simple behavior that onrollover to add a pop-up menu. How do you next add another behavior that indicates onroll off to make the menu disappear? Thanks.

  • Lightroom 2 colour difference in lightroom vs. export and print

    Hi, I am currently using Lightroom 2 and Windows Vista, monitor profile is Dell's E248WFP Color profile. The problem I have is that everything looks fine in lightroom, I was able to see the black backdrop with some defining detail on it. However, whe