Processchain through events

Hi friends,
please help me, how to execute the process chain through events,
what i am required is execution of second process chain based on first process cahin, please give me the complete step by step procedure.
thanks & regards
JP

hi
in the existing process chain(first process chain) just drag & drop the second process chain & link the process chain to the event(in first chain) after which the second chain is to be run.
for further info refer
http://help.sap.com/saphelp_nw70/helpdata/en/8f/c08b3baaa59649e10000000a11402f/frameset.htm
Assign points if helpful

Similar Messages

  • Email through Event receiver in SharePoint Online

    Hi,
    I am creating an event receiver for custom list which will send email to users in sharepoint online.
    I am using the following code to send email through event receivers in sharepoint.
                MailMessage mMailMessage = new MailMessage();
                mMailMessage.From = new MailAddress("[email protected]");
                mMailMessage.To.Add(new MailAddress("[email protected]));
                mMailMessage.Subject = "subject1";
                mMailMessage.Body = "just a body";
                mMailMessage.IsBodyHtml = true;
                SmtpClient client = new SmtpClient("smtp.office365.com", 587)
                    Credentials = new NetworkCredential("[email protected]", "****"),
                    EnableSsl = true,
                   UseDefaultCredentials = false,
              client.Send(mMailMessage);
    NOTE: I am using MailMessage() because it is in the sandbox solution.
    However I am facing the following error :
    Request for the permission of type 'System.Net.Mail.SmtpPermission, System, Version=4.0.0.0,
    Culture=neutral, PublicKeyToken=b77a5c561934e089' failed.
    It may be because I am trying to use SMTP server of sharepoint Online,However I am not able to connect it.
    Can anybody help me and can advice how to send email programmatically from sharePoint online ?
    Thanks
    Jhalak

    In Office 365, there's no direct way to send an email programmatically because the SPUtility.SendEmail
    Method isn't available in sandboxed solutions. The workaround is to use the Send an Email action in a list workflow.
    For further detail: http://visualstudiomagazine.com/blogs/tool-tracker/2012/04/send-an-email-in-office-365.aspx

  • FPCJ Cash Desk fields populate through event 6060

    Hi All,
    I have a requirement to populate fields of Cash Desk tcode FPCJ through event 6060 ( reading bar code) but no idea how this event will get trigger .I checked it is not getting trigger through FPCJ.
    For testing , Contract Acc (VKONT) is filled in screen field RFKH1-SELW1 but not getting pouplated on screen.
    Any suggestions will be appreciated.
    Thanks

    Hi
    SAP Customizing Implementation Guide
    Financial Accounting (New)
    Contract Accounts Receivable and Payable
    Business Transactions
    Payments
    Processing Incoming and Outgoing Payments
    Cash Desk/Cash Journal
    Maintain Specifications for Cash Desk/Cash Journal:
    flag field XBRCD (Display Entry Field for Barcode)
    This falg has the effect that the entry field for the barcode is displayed in the cash desk or in the cash journal.
    If the barcode field (RFKH0-BARCD) in FPCJ filled, then the event 6060 is called.
    Best regards.
    Christiane

  • How to get the name of correlation item in OM through event processing scripts?

    I am trying to write a groovy script in OM event processing scripts, I want that script to read the event correlation and set custom attributes accordingly. I am unable to read the correlation item. Please guide me how to get it? What method should I use to get the correlation item? I am using OPR library.

    Hi there,
    the name property would be the correct attribute to get the subform name, just by looking at the code it doesn't seem like it's doing the right thing
    I am assuming that you send Main in the function countChk() which would look something like this
    countChk(Main);
    And you probably want to make sure you are entering the right subform so you need to keep that loop at the end of the function
    but if you want to get through all the checkboxes inside that subform you must do a loop through that node to find each checkbox
    I am assuming that the function would probably look something like this
    function countChk(vNode) {//Starts vNode with Main
         for (var i = 0; i < vNode.nodes.length; i++) {
              if (vNode.nodes.item(i).className === "field") {
                   if (vNode.ui.oneOfChild.className === "checkButton") {
                        if (vNode.items.nodes.length > 1) {
                             if (vNode.value.oneOfChild.value == 1) {
                                  nChk++ ;
              }else if (vNode.nodes.item(i).className === "subform"){
                   if (vNode.nodes.item(i).name === "Door_Subform"){
                        countChk(vNode.nodes.item(i));
         }//endloop
    Hope this help!

  • Process chain is not triggering through event after BW Upgrade

    Many of our process chains are event based.
    After BW upgrade 7.0  to BW 7.31 we tried to trigger the event through  SM64 Tcode. But the process chains are not getting triggered.
    Could anyone please guide me what might be the issue.

    Hi Bharan,
    Can you please check once the start variant of process chain which are based on event.I think it should trigger after event is triggred.
    Regards,
    Ganesh Bothe

  • My preferences are set to 'show informational overlay' but when I scroll through events I do not see the date as I'm supposed to. I only see the date underneath the event. What am i doing wrong?

    I so not see the date as I scroll through my events and I have my preferences set to 'show informational overlay'. They only date I see is below the event. What am I doing wrong?

    Make a temporary, backup copy (if you don't already have a backup copy) of the library and try the following:
    1 - delete the iPhoto preference file, com.apple.iPhoto.plist, that resides in your
         User/Home()/Library/ Preferences folder.
    2 - delete iPhoto's cache file, Cache.db, that is located in your
         User/Home()/Library/Caches/com.apple.iPhoto folder. 
    Click to view full size
    3 - launch iPhoto and try again.
    NOTE: If you're moved your library from its default location in your Home/Pictures folder you will have to point iPhoto to its new location when you next open iPhoto by holding down the Option key when launching iPhoto.  You'll also have to reset the iPhoto's various preferences.
    OT

  • Database Connection through Event Handler

    Hi,
    i wanted oim database connection through post event handlers . Any idea how to achieve this.
    Thanks In Advance
    Swati Pandey

    Got the solution.
    - Swati Pandey

  • First time data is not transported to pop up window through event handler

    Hi all,
    I am using NWDS 7.0, Now I want to open a pop up on click of a action link.
    There are two DCs DC-A and DC-B.
    I am calling action from DC-A to DC-B. DC-B contains view of pop up window.
    In DC-A I am using intreface controller of DC-B by using used coponents.
    Now In the DC-B used components I have created one fireplugin which is connected ith pop up view of DC-B and that firplugin is called from DC-A action to transport data from Dc-A to DC-B.
    Problem : when I click first time to open pop-up window then event handler is not called but the windows opened. When I close that window and again open the transported data start displaying on pop up window.
    So can you please help me that why first time data is not transported to pop up window.
    Thanks
    Kaushal

    You'll need to use an OARawTextBean. Oracle doesn't support opening links in new windows using OAFormattedTextBean. Just be aware that you'll need to set the CSS class in the HTML as well if you need it formatted a certain way.

  • Workitem ID  / Workitem through event Question

    Hi I have a requirement that I need to send few details from an ABAP report as a workitem to certain users.Iam using the module 'SWE_EVENT_CREATE' to trigger an event linked to a task which sends the workitem. This is working fine.
    I need to send an EXCEL attachment in the same workitem is it possible?
    I tried using SAP_WAPI_ATTACHMENT_ADD in the method but didn't know how to retrieve the work item ID in the run time..is there  a better way to achieve this requirement or a way to find the work item ID in the method
    Thanks for your help!
    Larry

    Hi,
    Please use any of follwing Fm to start for the workflow directly. You can find the workitem id in as the export paramenter.
    SWW_WI_START_SIMPLE   : General Task not required
    SWU_START_WORKFLOW   : General Task not required
    SAP_WAPI_START_WORKFLOW  : General Task Required
    EWW_WORKFLOW_START   : General Task not required
    Thanks and regards,
    SNJY

  • IPhoto import through Events

    Is there an option to import photos back to iPhoto 08 (after I have instaled it from scratch) but automatically to make new events according to photo dates (as I had before).
    Problem started when I have extracted all my photos (many events) before I uninstaled iPhoto, and now it only imports into one event, not by dates when photos were shot.
    It seems to me that somewhere there should be option (import to events by dates" But where?
    (I have checked "Imported items from finder" option in iPhoto Preferences, but it did not helped.
    Please, if somebody knows more, I don't want to do it manually...
    Thanx a lot.

    After third try, it has imported into Events by dates. Oh, hapyness...

  • What happened to the "smooth scrolling" option? It used to be in the preferences menu, but now iPhoto just jumps through events...

    There used to be an option to make scrolling smooth in iPhoto, but since some update, it no longer exists. I dislike non-smooth scrolling because the events just jump up the page and it is difficult to follow them with a sensitive trackpad (which I prefer in other applications).

    In what mode are you referring to?  Photos?  With or without Event Titles displayed?  In the Photos mode with titles displayed there is a bug regarding scrolling down the events with some of the events open and some closed or all closed. But with all events open or titles not showing it seems the same as it was in iPhoto 8 (09).
    Send a bug/feature report to Apple via http://www.apple.com/feedback/iphoto.html.
    OT

  • Is there any way to send value to my attribute through event handler method

    While I give value to the img array it does not print while I call object for this class. Is there any way that I could give value for img attribute
    // Attribute
    public var img:Array;
    // Constructor
    public function ReadXML(myfile:String) {
                img=new Array();
                xmlFile=myfile;
                var loader:URLLoader=new URLLoader;
                var url:URLRequest=new URLRequest(xmlFile);
                loader.addEventListener(Event.COMPLETE,onXMLLoad);
                loader.load(url);
    // Event handling Method
            function onXMLLoad(event:Event):Array {
                var xml:XML=new XML(event.target.data);
                //trace(xml);
                //trace("Number of Contacts : " + xml..person.length());
                //trace("First contact’s favorite food : " + xml.contacts.person[0].@favoriteFood);
                img["height"]=100;
                img["width"]=200;
                return img;

    what are you trying to do?
    if img has anything to do with an image, explain.
    if img is supposed to be an associate array, use:
    var img:Object;
    img=new Object();
    etc

  • IPhoto 11 (9.13) arrow keys broken when browsing through event

    Steps to recreate :
    Launch iPhoto
    Click open one of your Events
    First photo is shown. Keep pressing right arrow to move to next photo; suddenly press left arrow to go back to previous.
    Previous photo is shown. But now if you press right arrow, the focus ( yellow selection rectangle ) on the film strip on the bottom moves to previous photo and photo on screen does not change.
    Only option now is to use mouse/pad to move previous or next.
    Are you guys seeing the same experience? or is it only my mac?
    iPhoto 11 (9.13)
    OS X 10.6.8
    2.4 GHz intel core i5
    4GB

    Sorry but I can't confirm this behaviour.
    Try trash the com.apple.iPhoto.plist file from the HD/Users/ Your Name / library / preferences folder. (Remember you'll need to reset your User options afterwards. These include minor settings like the window colour and so on. Note: If you've moved your library you'll need to point iPhoto at it again.)
    What's the plist file?
    For new users: Every application on your Mac has an accompanying plist file. It records certain User choices. For instance, in your favourite Word Processor it remembers your choice of Default Font, on your Web Browser is remembers things like your choice of Home Page. It even recalls what windows you had open last if your app allows you to pick up from where you left off last. The iPhoto plist file remembers things like the location of the Library, your choice of background colour, whether you are running a Referenced or Managed Library, what preferences you have for autosplitting events and so on. Trashing the plist file forces the app to generate a new one on the next launch, and this restores things to the Factory Defaults. Hence, if you've changed any of these things you'll need to reset them. If you haven't, then no bother. Trashing the plist file is Mac troubleshooting 101.

  • Error in workitem creation through event

    Hi All,
    I have created one task which triggers on event releasestepcreated of BUS2015. When I go to SWUE, give the PR no. as key, and create the same event, I see that the reciever has started correctly in SWEL, but the workitem was not created for the same. The object key field on double clicking the entry in SWEL is also coming as blank.
    Can anyone here suggest on why this might be happening?
    Regards,
    RK

    Hi Marcos
    In binding I am passing object itself and the mandatory release code from the event container. The binding definition contains no error. SWE2 linkages are active with correct receiver FM. There is no start condition.
    Have checked SWU3 as well.
    Even the SWEL event trace entry shows the event data correctly, and the trace data shows action as "Reciever started correctly. The only anomaly is the "Reciever data" which shows the object key as blank, and subsequently there isn't any work item created for the same.
    Am clueless about this...
    Rajiv.

  • ICal problem scrolling through all-day events

    Not quite sure how to describe this but making easy to understand.
    I organise my daily events using iCal on my mac and sync them to my iphone running the latest iphone updated software. I place all my things to do as an all-day event and at present has 21 events in there.
    The phone scrolls through events no problem when I don't have a lot of events in the all-day event part but when I try to look at for example todays events with 21 items at the all-day part at the top it won't let me scroll and only shows 14 events instead of the 21?
    Any ideas?

    This appeared to be a timezone issue, when daylight savings time came around the iPod and iCal dates synchronized correctly.

Maybe you are looking for

  • How to use multiple data controls in a single JSF page

    Hi, I am using Essbase Data Control to in my project to get Essbase Cube data into ADF table/Pivot Table. Suppose if [Item] dimension has this hierarchy [category] -> [Segment] -> [Brand] -> - [Item] I need to display Category in one column and Segme

  • Are you posting a gallery on .Mac?

    I'm having a bit of a problem, if you are posting a Aperture Gallery on .Mac would you please share any hints or tips you may have. Would you please post your gallery here? Thank you. Tom

  • Backup size too large??

    I have been using an external drive for my TM backup for a long time. Recently I did a reinstall of Snow Leopard on my iMac, then the problem arises. TM gives the warning of too large backups and not enough disk space in my external drive. I have tri

  • Keyboard in Labview

    Hi, I want to my program to take some action when the space-key is pressed, but I can´t figure out a way to test if a key (and which one) is pressed. So I would like to know if there is any way to check for a pressed key in Labview (win 95). Thanks f

  • Where is SALES OFFICE and SALES GROUP for BP stored?

    Hello, Does anyone know where (in which table, or is there a Function Module to retrieve data) the SALES OFFICE and SALES group which is displayed in the Business Partner master data is stored? Thanks! Jeroen