Email Actions with duplicate partners

HI All,
    I am sending out 'automatic' emails using Actions to all partners having a "Z0000134" partner function on creation of a transaction. The other partner functions in the transactions are of the type Employee responsible and Z copy of Activity partner. The transaction is configured to have only one partner for a partner function. Also I have configured manual trigger of email actions for other partner functions.
My issue is that the automatic action determination fails, whenever the same partner is present for both Z0000134 and employee responsible or activity partner. I am not sure why this is happening and i have noticed that its a non issue if i schedule the automatic action to trigger for employee responsible on create of a transaction instead of Z0000134.
I think this has got to do something with the way sap merges the action with duplicate partners.
Can anyone help me with this?
Thanks
Reddy

Hi Reddy
Please see the oss note no. 621183 which explains this behaviour
(and also note 895546 point 4).
"If you want all partner functions/partner function categories to be
included in the action determination, deactivate BAdI implementation
CRM_ACTION_BADI or you program a new implementation that meets your
requirements."
Since the same business partner exists more than once, this behaviour is
seen. So please deactivate the Badi, and then retest, as this should resolve the issue.
Best Regards
Gavin

Similar Messages

  • Ongoing problem with newsletter-eMail-actions: CF is hanging

    Hi forum-members, we have an ongoing problem with
    newsletter-eMail-actions.
    We use CFMX 7.02 Entperprise on Win 2003 Server. (between
    100.000 and 200.000 receivers).
    The deep links into the shops are of the following structure:
    http://www.xyz.com/shop.cfm?ml=171,92560,21,24,1,nhs1381639,03081,nsletter,03081-138163966 958-nl-3eb938532a4be8b9e94cb5002154789e
    In the highest hours we have between 80 and 200 current
    users/connections
    per second. We are running two HP 380, 3 GB, CF-Servers in a
    static loadsharing.
    From time to time CF gets unresponsive and I don't know why.
    We use fusion reactor and there are no long running requests
    from
    what I have seen, when CF is hanging. There is nothing in the
    logfiles which is obvious to what it could
    be related what is casing it. Does anybody have any idea what
    else to look into ? Uwe: confused;

    Direct link to http://www.imgburn.com/index.php?act=download (send the author a PayPal donation if you like his program)
    I use Imgburn for ALL of my disc writing... backup files/folders as well as Encore output

  • Yahoo email in box fllooded with duplicate emails

    Last night my webmail inbox was flooded with duplicate emails.  I now have over 22000 emails in the box.  Have reported the problem but no-one has got back to me. Has anyone else had this problem, or know how to get around it?

    See http://community.bt.com/t5/Other-BB-Queries/Multiple-emails-downloaded-on-webmail/td-p/386381
    There are some useful help pages here, for BT Broadband customers only, on my personal website.
    BT Broadband customers - help with broadband, WiFi, networking, e-mail and phones.

  • Several partner recipients for Automatic action with partner determination

    Hi everybody
    I did define one action inside my Lead action profile to inform several employees about the Lead details.
    I did customize the action with:
    -Processing time: 1 Processing Using selection report
    -Processing times not permited: No restriction
    -Schedulle automatically
    -Changeable  in dialog
    -Executable in dialog
    PARTNER DEPENDENT:Partner Function Z3
    action Mergin:Set Highest Number of Processed Actions
    In the tab Action Merging i did choose  One unprocessed action for each partner
    I would like to send  the same  mail to several recipients,(each partner with the same partner function in the "Parties involved" tab).
    My problem is that  although  there are as many actions generated  as  partner with Z· partner fuction,  the mail is sended  always to  the main partner. (the first one with z3 partner function).
    Can anyone help me with this?
    Thanks.

    Thank you very much   for those quick answers.
    I did try yet this  customizing  and it generates as many activities as partners with the same  partner function. But when you execute them, the mail is sended to the  first Partner introduced mail recipient  althoug  all them has the same partner Fuction.
    For example:
    Lead 111:
    -Parties Involved:
    Partner Function: "Employee Responsible" Employee: Frank Ellis
    Partner Function: "Z3 Mantain Informed to" Employee: Michael Smith
    Partner Function: "Z3 Mantain Informed to" Employee:Sara  Ferguson
    Actions:
    Action 1 E mail to "Mantain Informed Partners"
    Action 2 E mail to "Mantain Informed Partners"
    When  the action is executed both actions send the email to  Michael Smith.
    Why? I dont´t Know.
    I can confirm yo that I did customize the action merging:
    Action Merging: Set Highest Number of Processed Actions
    Number of unprocessed actions: Une unprocessed action for each partner and processing type.
    Thanks Again
    Edited by: ribes marga on May 27, 2009 1:49 PM

  • Automator action with dropdown to make folders with predetermined names

    Is there an action/workflow that will allow me to create Folders using a dropdown menu of predetermined names for those folders?

    I haven't seen one, and since no one has posted about one yet, I'll throw this out.
    I modified a couple of handlers I have laying around into a Run AppleScript action that will make folders from a list of names. The list can be set in a Get Specified Text action, with the "menu" being a Choose from List action:
    Tested workflow:
    1) Get Specified Text (your folder names, separated by returns) for example:
    Testing
    Another test
    My Spiffy New Folder
    2) Filter Paragraphs (Return paragraphs that are not empty)
    3) Choose from List (Prompt: Please choose folder names:)
    4) Run AppleScript:
    <pre style="
    font-family: Monaco, 'Courier New', Courier, monospace;
    font-size: 10px;
    margin: 0px;
    padding: 5px;
    border: 1px solid #000000;
    width: 720px; height: 340px;
    color: #000000;
    background-color: #FFDDFF;
    overflow: auto;"
    title="this text can be pasted into an Automator 'Run AppleScript' action">
    on run {input, parameters}
    make folders with names from a list
    input: a list of names (text items)
    output: a list of Finder items (aliases) created
    set output to {}
    set DestinationFolder to missing value -- set the destination path here if desired
    try -- verify that the path is valid
    set DestinationFolder to DestinationFolder as alias
    on error
    set DestinationFolder to (choose folder with prompt "Choose the location to make the selected folders:")
    end try
    repeat with AnItem in the input
    GetUniqueName for AnItem from DestinationFolder -- avoid duplicates
    try
    tell application "Finder" to make new folder at DestinationFolder with properties {name:the result}
    set the end of the output to the result as alias
    end try
    end repeat
    return output
    end run
    to GetUniqueName for SomeName from SomeFolder
    check if SomeName exists in SomeFolder, creating a new unique name if needed
    parameters - SomeName [text]: a name.extension to check for
    SomeFolder [mixed]: a folder to check
    returns [text]: a unique name
    set {Counter, Divider} to {"00", "_"}
    set Here to -(offset of "." in ((reverse of text items of SomeName) as text)) - 1
    set TheName to text 1 thru Here of SomeName
    if Here is -1 then -- no extension
    set TheExtension to ""
    else
    set TheExtension to text (Here + 1) thru -1 of SomeName
    end if
    set NewName to TheName & TheExtension
    tell application "System Events" to tell (get name of items of folder (SomeFolder as text))
    repeat while it contains NewName
    set Counter to text 2 thru -1 of ((100 + Counter + 1) as text) -- leading zero
    set NewName to TheName & Divider & Counter & TheExtension
    end repeat
    end tell
    return NewName
    end GetUniqueName</pre>
    - the output from the Run AppleScript action is a list of aliases to the folders created, if you want that information to do something with.

  • Can I use photoshop text styles and photoshop actions with creative cloud photography?

    I'm really confused by this subscription pricing. If I purchase the $9.99/month, do I get the full desktop app of Photoshop and Lightroom? But I see on this page Products they list something called Photoshop CC that costs twice as much. How is that different from the Creative Cloud Photography?
    My main question is whether I can use photoshop text styles and photoshop actions with Creative Cloud Photography, since I just purchased a bundle that includes these and I want to be able to use them. But I'd also like to understand what comes with all of the various products and how they are different.
    My other question is how is Lightroom different from Photoshop? I have a sense of what you can do in Photoshop but I don't know much about Lightroom at all.
    One more question: the free trial -- is it limited in any way besides the time length? If I do that, will I get a clear idea of all that I will be able to do once I subscribe, or are the functions limited in the trial?
    I tried to just send an email to Adobe to ask these questions but apparently they are not interested in responding to emails from people who are not yet paying customers, so I was directed here. Thanks very much for your help!

    I always like to trot this bit about Bridge once in a while or in the voice of the "Two Bobs" from Office Space,
    "Can you tell us exactly what it is you do around here?"
    What Adobe Bridge does:
    Bridge is the coordinating hub of the Creative Suite. Synchronizing color management settings for all suite programs is done from Bridge, and can only be done from Bridge, to take one important use.
    Bridge displays actual thumbnails of many more file types than Finder or Explorer. It also allows instant play of sound or video files more readily than the native OS file managers.
    Bridge allows direct access to file metadata, to embed copyright information  and keywords where appropriate (e.g., for corporate logo vector and raster files). It also displays the fonts used in an InDesign file, the swatches in an INDD or AI and the output plates (including spot color plates) they use.
    When managing the assets for a design project, Bridge allows quick and simple sorting, rating and custom labeling (with color flash indications) of assets. I can rate images according to whether they are rejects, possibles, for review by client, or approved. The filters built into Bridge allow instant isolation of only the approved images or designs in a folder, only the rejects (for deletion) or only files with certain ratings, no matter how many files it contains. It recognizes aspect ratios, so if I only need a landscape or a 16:9 image in a folder of hundreds of images, I turn off the aspect ratios I don't need.
    Once filtered, the remaining visible files can be selected and copied, moved, or deleted without affecting the rest of the contents of a folder.
    Collections are a massively useful feature. One of my clients is a performing arts center, and in a season we turn out dozens of ads, flyers, brochures, web banners, playbills, billboards and other collateral using the same assets over and over. These assets are organized by artist and/or show on disk, but I set up each season's repeating assets as a Collection in Bridge, so that I just have to open the collection and drag and drop these assets into new INDD, AI, PSD, HTML (in Dreamweaver), FLA or AE projects without having to navigate from folder to folder picking up individual files.
    Bridge's Favorites is another place I stack frequently-accessed folders, such as stock photography, backgrounds, and top-level folders for active projects.
    Assets can be divided into subfolders, but a quick toggle of "Show items from subfolders" exposes all of the assets in a single view while maintaining their organization. I will typically keep AIs, PSDs, EPSs, stock photography and client images in separate subfolders within a project. When I'm ready to start pulling assets into an InDesign layout, I toggle this on and simply drag what I need into the layout.
    Bridge comes with Adobe Camera Raw built in, which is many times faster than using Photoshop to adjust jpegs or tiffs for things like tonal range, white balance, cropping, spotting and sharpening, and is non-destructive.
    One tremendously useful Bridge function for InDesign CS5+ users is the "Show linked files" feature, which opens all the linked files in a layout into a single view, regardless of where they are physically located. I often use this when doing alternative layouts from a client-approved mockup for a campaign, to be certain the same assets are used in each piece, or when creating a motion graphic or interactive piece for the campaign in After Effects or Flash.
    The batch and image processing scripts built into Bridge automate things like creating web-ready small jpegs from multiple images, renaming large numbers of files in place or by copying to an alternative location, creating sets of PSD, png, jpeg or other file types from an assortment of image files, and so on.
    Bridge is so much a part of my daily workflow that on my main workstation I have one monitor dedicated to it almost 100%. Bridge just sits open 24/7, ready for use. I would run at half speed without it, no question.

  • Attach to email action not working in reader X

    I have created a form in Adobe Acrobat Pro 8 with a button to execute the "attach to email" action. This button works fine when in Acrobat Pro 8, but when I view it in Reader X, nothing happens when I press the button.
    I need to do it this way as the email address won't be constant.
    I'm running Windows 7.

    I found an answer to my own question:
    1. Create a button and select Submit a Form as your action.
    2. Select PDF The complete document (to have the document attached as a PDF document)
    3. In the URL link type: mailto: (This will open an email but have no email address selected)
    4. If you want to customise the subject line then type: mailto:?subject=yoursubjecthere
    This works in reader unlike executeMenuItem.

  • Bug in cursor behaviour with duplicates

    Dear Oracle guys and girls,
    first of all: it sucks that i HAVE to provide business information (company name, address, even phone number) even if i just want to participate in this forum for private reasons. I even have to "unsubscribe" to the newsletters although i never subscribed. Then i have to re-enter my timezone information and email address for the forum, because the settings in my profile are ignored. I think there's some room for improvement in this registration process.
    OK - back to topic. i think i found a bug in the cursor behaviour with duplicate keys. But the behaviour is very consistent, so maybe it's not a bug, but a bad design. (I call it bad because it's totally unexpected and not logical to me).
    I insert some dupes with DB_KEYFIRST; then i create a cursor and iterate over all items in the reverse order (!) with DB_PREV (i also tried DB_PREV|DB_NEXT_DUPE) - no keys are shown.
    Alternatively:
    I insert some dupes with DB_KEYLAST; then i create a cursor and iterate over all items in the reverse order (!) with DB_NEXT (i also tried DB_NEXT|DB_NEXT_DUPE) - no keys are shown.
    cursor->c_get returns the error code -30989 (DB_NOTFOUND).
    Why is it not possible to traverse duplicates in the reverse order? To me it looks like a bug.
    I tested against db 4.5.20.
    Regards
    Chris
    PS: I would love to hear if the bug i reported here: http://groups.google.com/group/comp.databases.berkeley-db/browse_thread/thread/ed471cf6837cb2a6/dd9cda0ad105f401#dd9cda0ad105f401
    will be fixed in the next version.
    Here's a test program:
    int
    main(int argc, char **argv)
    unsigned i;
    int st;
    DB *db;
    DBT key, record;
    DBC cursor, cursor2;
    unlink("test.bdb");
    st=db_create(&db, 0, 0);
    if (st)
    error("db_create", st);
    st=db->set_flags(db, DB_DUP);
    if (st)
    error("db->set_flags", st);
    st=db->open(db, 0, "test.bdb", 0, DB_BTREE, DB_CREATE, 0);
    if (st)
    error("db->open", st);
    memset(&key, 0, sizeof(key));
    memset(&record, 0, sizeof(record));
    st=db->cursor(db, 0, &cursor, 0);
    if (st)
    error("db->cursor", st);
    st=db->cursor(db, 0, &cursor2, 0);
    if (st)
    error("db->cursor", st);
    for (i=0; i<LOOPS; i++) {
    record.data=&i;
    record.size=sizeof(i);
    st=cursor->c_put(cursor, &key, &record, DB_KEYFIRST);
    st=cursor->c_put(cursor, &key, &record, DB_KEYLAST);
    if (st)
    error("cursor->c_put", st);
    while (!(st=cursor2->c_get(cursor, &key, &record, DB_NEXT))) {
    printf("%d\n", *(int *)record.data);
    st=cursor->c_close(cursor);
    if (st)
    error("cursor->c_close", st);
    st=db->close(db, 0);
    if (st)
    error("db->close", st);
    return (0);
    }

    st=cursor->c_put(cursor, &key, &record, DB_KEYFIRST);
    st=cursor->c_put(cursor, &key, &record, DB_KEYLAST);
    if (st)
    error("cursor->c_put", st);
    please delete the first line, it was a cut and paste error. as i said earlier: insert with KEYLAST, query with NEXT.

  • Configuring email action block in Xmii 11.5 BLS editor

    Hii Everybody ,I am bit new to the xmii  and trying to learn it by doing some exerciss along with the training going on ,
    so i was doing a Sending an HTML email in xMII using dynamic data tutorial but I got stuck on the very first step i.e configuring the send email action block
    When i am clicking on email tab of the bls editor i am not getting any content inside it thats why not able to configure the same so could anyone please let me know wat can be the possible reason for the same..It would realy help me .
    Thanks in advance.
    Edited by: vijaykdhaka on Sep 7, 2011 8:56 AM

    I see a couple of problems already.  The jre should 1.4.2_XX (check the installation instructions as there are 3 builds which are not compatible).  Also you are pretty far behind on the service packs.  I think it is at SP 11 so SP2 is a bit out of date.
    Good luck,
    Mike

  • Email action

    Hi,
    I have several email actions configured in CRM system. Some smartforms should be sent as PDF attachment (it is currently working this way) and some needs to be sent in the body of the email.
    Can I know how is this set? Thanks..

    Hi,
    The processing type is already Smart Forms Mail.
    Just that i have a requirement to send out some smartforms as PDF attachment and some in the email body. I would like to know if this has to do with settings, or through manual development.
    FYI, currently, all the forms are being sent out in the PDF attachment..

  • Email reports with graphs as HTML (via schedule)

    == W2K machine with Oracle Reports Server 6i R2 ==
    How can I schedule/design a report if sent via email (in HTML format), so the graph that is part of the reports shows up? Currently, the gif is missing. I can use the "hyperlink" in the web setting to point to the file on the web server, but this means my "customers" need to click the missing object.
    If I send the report as PDF, all is well but again, my customers need to "open" the file.
    Is there a way to email reports with graphs as HTML?
    In any other format where the receiver does not have to take any other action?
    Thx
    Josh

    My bursting SQL query:
    SELECT DISTINCT
    ip.APPL_ID KEY,
    '11F_Search_Prospect_Email' TEMPLATE,
    'RTF' template_format,
    'en-US' locale,
    'HTML' output_format,
    'EMAIL' DEL_CHANNEL,
    ip.email PARAMETER1,
    '[email protected]' PARAMETER3,
    'Welcome' PARAMETER4,
    'true' PARAMETER6
    FROM ugrad.inquiry_prospect ip,
    ugrad.correspondence f,
    ugrad.address e,
    ugrad.f_lookup fl
    WHERE ip.appl_id = f.appl_id
    AND ip.APPL_ID = e.APPL_ID
    AND fl.TYPE_CODE='C'
    AND ip.record_stage = 'Prospect'
    AND e.COUNTRY_CODE=fl.code
    AND e.table_name = 'INQUIRY_PROSPECT'
    AND e.address_type =
    NVL ((SELECT gg.address_type
    FROM ugradadm.address gg
    WHERE gg.address_type =
    DECODE (f.mailpref,
    'Home', 'HOME',
    'Best', 'LOCAL',
    'HOME'
    AND gg.table_name = 'INQUIRY_PROSPECT'
    AND gg.APPL_ID = ip.appl_id
    AND((gg.address_type='LOCAL' AND NVL(gg.address_expir_date,sysdate)>sysdate)
    OR gg.address_type='HOME')),
    'HOME'
    AND f.batchid = :Batch_ID
    This report when bursted sends an email with the layout template as html body.
    The EMAIL configuration is set with a server Port number and its host address.

  • Make send email action open in a different tab or window

    Made text a link in a smart shape with Cp7.Due to a shortcoming in the Google Chrome browser the email client doesn't open. So, I click the back button and it goes back to the first slide of the project. I am not looking for a resolution of the Chrome browser issue (but it would be nice to have:), I am wondering if the send email action can open a new tab or window to avoid the back-arrow-to-first-slide issue.
    thanks.
    Michael

    When you say: "Click the Back button", I'm assuming you're referring to the Back button in the browser, not a button in your Captivate slide, correct?
    If so, this will happen in all browsers when playing Captivate SWFs.  Clicking the browser back button essentially reloads the page, not just the slide.

  • RECENT PROBLEMS WITH DUPLICATE CONTACTS

    I have an IPhone. All has been well for months until 2 days ago (possibly after the update I did on IPhone).
    Since then my contacts - which are getting synced via ICal - have duplicated - both in Entourage and Plaxo.
    I have run the "De-duper" in Plaxo and get back to single set.
    Yesterday I painstakingly manually deleted almost 700 contacts from Entourage.
    I reset "Sync Services".
    But this morning the duplicates are all back.
    In my ITunes/IPhone Info tab, it does not show where the contacts are coming from - just says Personal.
    On the calendars, I see 3 calendars that are synching - Home, Work & Personal.
    Plus - and this may be unrelated - it seemed to have chnaged the default email address for some contacts in Entourage.
    Help !!!!
    I am afraid to sync my IPhone for fear I will end with duplicates in my contacts & on my calendar.
    How do I stop this madness?
    Thanks.

    I had the same problem after 1.1.3. I'm on Windows XP using Outlook. I need something to clear the dups off the iPhone.

  • I wanted to trigger Email Action directly without using any Job or Job Event. Want to execute using REST API only.

    Is it possible to execute Email Action and set its component like Subject,EmailTo,Email From using REST API only ?
    Please help me out with this.

    Hi,
    The DBA_SCHEDULER_NOTIFICATIONS show the notification settings, not the notifications that were sent. To see that, run the follwoing query:
    select queue,
           msg_state,
           enq_time,
           enq_user_id,
           deq_time,
           deq_user_id,
           t.user_data.event_type,
           t.user_data.object_owner,
           t.user_data.object_name,
           t.user_data.event_timestamp
      from sys.AQ$SCHEDULER$_EVENT_QTAB t;
    Does it show anything for your job?

  • Email Action Script

    Simple question, is there a way to add an email link with
    Action Script? Sorry if this is basic, but it is all I need to
    know.

    quote:
    Originally posted by:
    mailingitin
    Simple question, is there a way to add an email link with
    Action Script? Sorry if this is basic, but it is all I need to
    know.

Maybe you are looking for

  • Can I stop Windows 7 from warning about security on every linked PDF?

    I am working on a project for which I have created one central document (an index) and 120 linked documents. Each document, on every page, has links to the next alphabetical document and back to the central index. This project will be distributed on

  • How do I access and use my iTunes library on a different computer?

    How do I access and use my i Tunes library on a different computer?

  • Problem with kernel patch 127128-11

    I am a bit stomped trying to install this patch successfully. I log into single user mode. The patch file is currently located in "/var/sadm/spool" when I run "patchadd 127128-11" i get the following: "Patch 127128-11 failed to install due to a failu

  • External touch monitor

    I'm interested in purchasing 1-2 touch screen monitor(s) for my Macbook Pro. What external touch monitors are recommended and/or are compatible with the macbook pro?

  • Transferring Starbucks ap to Passbook

    There is a problem if you are a current Starbucks ap user with benefits (ie gold card).  When paying with the Starbucks card ap earned discounts are applied to the total.  If paying for the same item with the Starbucks card in Passport no discounts a