Sending a form to 2 different partner e-mail ids at the same time

Hi,
A case where a shipment has two deliveries with two different partners(e-mail partner function YM)and a form(eg. picking list) should be sent to both the partner e-mail ids. Is there any option to pass two e-mail ids to the structure SWOTOBJID that is passed to the open_form function module?
Regards,
Asha

See the response to your other post

Similar Messages

  • Why does mountain lion "bunch up" all my microsoft office documents that I have open when I hit f3? When I had snow leopard for example, if i had 4 or 5 different microsoft office documents open at the same time I could hit f3 and easily pick one of them

    Why does mountain lion "bunch up" all my microsoft office documents that I have open when I hit f3? When I had snow leopard for example, if i had 4 or 5 different microsoft office documents open at the same time I could hit f3 and easily pick one of them.
    Notice how in the photo, I can't identify which MS office document I would like to switch too. Perhaps since the Dashboard and Desktop windows are at the top of my screen now Apple doesn't let you have all the applications take up the full screen and be sized individually so that you can have a better idea on what to pick.
    I like the idea of grouping to an extent... If you have a bunch of random things it was hard for me to decifer between what was safari, chrome, or word. But now that they grouped them like this, if you have multiple pages of one program running, you can't switch between those pages easily like before.

    If I wanted to open any of my Applework documents I had to open them one at a time and resave them with pages. This could take weeks.I have 1000s of apple work documents.
    You don't have to open and re-save every AppleWorks document you have right now. Just wait till you need one, then do it. The documents aren't going anywhere.
    Am I dealing with Microsoft? This was a BIG surprise to me that Apple would release an OS without testing all programs.
    Frankly, it is not Apple's responsibility to ensure compatibiltiy with every piece of software available for OS X. That is the responsibility of the software vendor. Lion has been available to developers for several months before it's release, so Microtek had plenty of time to update their software. Yet they did not. How is that Apple's fault? I think Apple was very generous to give you a refund for Lion.
    I'm not trying to belittle your frustration but I do think your ire is misplaced.

  • How do I open multiple Firefox home pages? I want all of my different Firefox email accounts open at the same time. I recently upgraded to Win7 and now I have to close and open Firefox to access another email acount!

    I want 3 separate, distinct Firefox home pages for each of my 3 email accounts to be open at the same time.

    Questions are typically followed by a question mark. My answer answered your question.
    Firefox doesn't do email, so there are no "Firefox email accounts". If you are accessing "email" with Firefox, you are using web mail. Some web mail services don't allow for direct access, they want their users to access their email from a "portal" or "main" page and will re-direct any attempt to load an "internal" web site page back to the main page.
    As far as loading 3 different web mail accounts at the same time, if they are in the same domain it won't work on Firefox without a Firefox addon. http://br.mozdev.org/multifox/
    IOW, if those three email accounts all with Yahoo, without that add-on you would have to logon to each email account separately and log out of the first before logging into the 2nd. Then log out of the 2nd before logging into the 3rd. Firefox isn't capable of having multiple session cookies for simultaneous logon's to the same server. That add-on provides that "multiple sessions cookies" feature.

  • Is there a way to view different portions of a document at the same time?

    Is there a way to view different portions of a document at the same time?

    No. I suggest you leave feedback for the Pages team regarding this. You can find it under the Pages menu > Provide Pages Feedback. That takes you to the same page as this link.

  • Two different streamings on two AppleTV at the same time?

    Hey guys, I'd like to buy a second Apple TV.
    First:
    Is it possible to stream different content on each AppleTV at the same time by using one computer with only one iTunes?
    Second:
    If the first question is answerred by "no", is it possible to stream the SAME content on the second AppleTV at the same time?
    Thx 4 helping out. By the way, sorry if my english sounds bad, but I am from Germany

    MMWH wrote:
    First:
    Is it possible to stream different content on each AppleTV at the same time by using one computer with only one iTunes?
    Yes that's possible, I do it all the time with multiple Apple TV's, it's worth mentioning though that the more streams you have running the better your network will need to be.
    Second:
    If the first question is answerred by "no", is it possible to stream the SAME content on the second AppleTV at the same time?
    The first answer is yes but to answer this one too:
    Yes its possible to stream the same content to both Apple TV's at the same time. Although it's worth mentioning that at the same time means at very nearly the same time, I wouldn't want to imply the streams would be in sync. Basically you could start a movie from one Apple TV then go to the second one and start the same (or indeed a different) movie.

  • How to export 2 different report with a link at the same time

    Hi,
    Do anybody know how to export 2 different report with a link at the same time. I currently create a report which link to another report. But when I want to export the 1st report I also want the 2nd report also be exported.
    Thank you very much.
    Best Rgds,
    SL Voon

    Export all the three components individually.
    It will generate 3 script files. Now run them from SQL>
    null

  • Is there a way to open different books on various apps at the same time like in android devices?

    hello good peolpe, i bought an ipad mini retina for books reading and i would like to know if there is a way i can open a book with different apps like  i do on android device where you can use various apps to open differents books at the same time, i would like to also know if there is a way to do the same thing but with power point and word files, and how can i open them on my ipad and transfer them, thanks every one for their time

    Currently you can't. Maybe in iOS 8 that will be released soon.
     Cheers, Tom

  • Opening Form in Insert mode but making a query at the same time

    My problem is that I want to open a Portal Form in Insert mode but at the same time making a query.
    If I call a form with patameters the form opens automatically in update mode (to be more precise with FORMSTATE = UPDATE_AND INSERT). In that case the insert button is not shown.
    I have come very close to a solution by running this code:
    BEGIN
    p_session.set_value(
    p_block_name => 'DEFAULT',
    p_attribute_name => '_FORM_STATE',
    p_value => 'QUERY_AND_INSERT');
    END;
    under "... before processing the form". The form-state changes to QUERY_AND_INSERT' and I get the record from the table that I want but I still see no insert button!
    I think that I can solve this problem in some table-triggers in the database but it would be interesting to know weather it is possible to do this in the portal.

    Kari,
    You can workaround the disappearing Insert button by creating a custom button instead.
    If you look at the "standard" Insert button code it looks like this:
    --- Type your PL/SQL code here...
    doInsert;--- This is the default handler
    --- ...and here, thanks...
    in the generated forms package doInsert just calls internal insert handler:
    procedure doINSERT
    is
    begin
    onINSERT(
    p_block_name => p_block_name ,
    p_object_name => p_object_name,
    p_instance => p_instance ,
    p_event_type => p_event_type ,
    p_user_args => p_user_args ,
    p_session => p_session);
    end doINSERT;
    If you add a custom button to your form and from PLSQL event combobox select "Custom", then copy&paste this code to the event code:
    onINSERT(
    p_block_name => p_block_name ,
    p_object_name => p_object_name,
    p_instance => p_instance ,
    p_event_type => p_event_type ,
    p_user_args => p_user_args ,
    p_session => p_session);
    You will get a custom button which does exactly what the Insert button does and it will not disappear from the screen.
    Thanks,
    Dmitry

  • Different OS X's installed at the same time

    Is it possible to have different OS X's installed in different partitions at the same time?

    Niel wrote:
    Yes. Choose Utilities from the Finder's Go menu, use the Disk Utility to create as many partitions as you need, and install a different Mac OS X version onto each.
    (120810)
    Hi, Niel!
    Thanks for your answer. But it leads me to another question: in case of different OS's installed, would I be allowed to choose which one to start the machine? Besides, would I need to clone my personel files on each platform, or would I have access to the same one folder regardless the OS?

  • HT3529 How do I send a text message to more than one phone number at the same time?

    How do I send the same text to more than one phone at the same time?

    You'll need to see if there's an app in the App Store that does what you want. Search for "Group SMS" or similar.

  • How do I send photos to multiple e-mail recipients at the same time

    Mac Mini, iphoto version 9.5.1.  I can send a set of the photos to one person.  However it will not allow me to send these photos if I put the addresses of all the people I want to send it to with the same message.

    See the response to your other post

  • Devices with different Apple IDs ring the same time when some one facetime me.

    I have iPhone 5s and iPad mini.  Each has its own Apple ID.  But, when some one facetime me on one of them, both are ringing.  Even one is in London, and one is in Austin.
    How to fix to have iPad mini rings when facetime to it, or iPhone rings when facetime to iPhone, not both.
    Thanks.

    TJBUSM1973, rbrylawski...,
    Thank you for helping me on this problem.  To answer your questions,
    - No, each device has different contact, i.e. "reach me.." to different email address.
    - No, one of the Apple ID is totally new one for my iPhone 6s.
    - I have done some testing.  My son set up two different entries of my devices, i.e., one for each device.  But, it is still ringing one both devices when he facetimes me using one of his entries.
    But, it seems that if someone just has setup to reach me on one device in her device, then, only this device is ringing.  So, I am not sure why.  My son's set up are two different contacts to my devices. 
    I will do more testing when my son brings his device back home.
    Thanks again.

  • HP ProDesk 400 G1 Small Form Factor Business PC using vga and dvi at the same time.

    Looking into purchase a HP ProDesk 400 G1 Small Form Factor Business PC which has a VGA and DVI-D ports on the integrated video card.  Can you use both ports simultaniously. one screen connected to vga and a 2nd monitor connected to the DVI port?

    Hi,
    You might get better assistance on the HP Enterprise Business Forum.
    HP DV9700, t9300, Nvidia 8600, 4GB, Crucial C300 128GB SSD
    HP Photosmart Premium C309G, HP Photosmart 6520
    HP Touchpad, HP Chromebook 11
    Custom i7-4770k,Z-87, 8GB, Vertex 3 SSD, Samsung EVO SSD, Corsair HX650,GTX 760
    Custom i7-4790k,Z-97, 16GB, Vertex 3 SSD, Plextor M.2 SSD, Samsung EVO SSD, Corsair HX650, GTX 660TI
    Windows 7/8 UEFI/Legacy mode, MBR/GPT

  • Same songs from different albums won't download at the same time

    Hi Guys I need your help. So i purchased some albums, Some of them have the same songs, and I want those songs to appear on both albums they're in, but it wont. When the song is downloaded on Album 1, it would disappear from album 2. For example, i purchased an EP and then the deluxe version of it later on., the songs i already have from EP, would no longer download to appear in the deluxe version.. Can I do  something about it so I can have the complete copy of each album I purchased?

    Historically, I've always kept prior versions installed because sometimes, albeit infrequently, I need to access extensions that aren't compatible with the newer versions of CS. Since I can run DW & Fireworks CS4 together, I'm inclined to leave them installed.
    I've thought about uninstalling CS 5, but I don't think that would resolved my issue. I've already tried most of what's in the Adobe troubleshooting suggestions save for creating a new administrator account.
    I think I'll hobble along with my current workarounds since I'll be migrating to a new computer very soon, which should acomplish what creating a new administrator account would. I'll probably limit the reinstall to CS 6 to eliminate any issues that might be related to having multiple versions installed, which in reality shouldn't be an issue because again, I've always done that successfully in the past.
    Thanks for the suggestion just the same.

  • How top open multiple forms at the same time in HRMS menu

    Hi,
    When enabling "Close Other forms" in HRMS menu by excluding the function ‘Navigator: Disable Multiform’ Function in the Responsibility Definition (System Administrator -> Security -> Responsibility -> Define), mutliple forms works fine but I'am facing another error.
    My problem is: when this option is enabled, I tried to run Payroll run request but it turned out that payroll list of values is returning empty values and I'am unable to select any payroll from list of values. the only way to do so is to remove back ‘Navigator: Disable Multiform’ Function from exclusion section in responsibility.
    My requirment is: to have multiple form and payroll run list of values working at the same time
    Thanks

    Reason for this , if ur request is attached to more than 1 responsibility , i think this issue will come , we got same issue
    we remove it from responsibility list , then it is working fine

Maybe you are looking for