<div>Hello Mark,</div>
<div>&nbsp;</div>
<div>&nbsp; Thanks once again for the quick reply. Is there any way to find out which function module, etc is released for the customer. Any option as such..</div>
<div>&nbsp;</div>
<div>Thanks</div>
<div>Albina</div>
<div><br><br>&nbsp;</div>
<div><span class="gmail_quote">On 7/21/06, <b class="gmail_sendername"><a href="mailto:sap-wug-request@mit.edu">sap-wug-request@mit.edu</a></b> &lt;<a href="mailto:sap-wug-request@mit.edu">sap-wug-request@mit.edu</a>&gt; wrote:
</span>
<blockquote class="gmail_quote" style="PADDING-LEFT: 1ex; MARGIN: 0px 0px 0px 0.8ex; BORDER-LEFT: #ccc 1px solid">Send SAP-WUG mailing list submissions to<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <a href="mailto:sap-wug@mit.edu">sap-wug@mit.edu</a><br>
<br>To subscribe or unsubscribe via the World Wide Web, visit<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <a href="http://mailman.mit.edu/mailman/listinfo/sap-wug">http://mailman.mit.edu/mailman/listinfo/sap-wug</a><br>or, via email, send a message with subject or body 'help' to
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <a href="mailto:sap-wug-request@mit.edu">sap-wug-request@mit.edu</a><br><br>You can reach the person managing the list at<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <a href="mailto:sap-wug-owner@mit.edu">sap-wug-owner@mit.edu</a><br><br>When replying, please edit your Subject line so it is more specific
<br>than &quot;Re: Contents of SAP-WUG digest...&quot;<br><br><br>Today's Topics:<br><br>&nbsp;&nbsp;1. RE: Re : Material Master Workflow (Kisloff, Philip B)<br>&nbsp;&nbsp;2. Re: SAP-WUG Digest, Vol 20, Issue 54 (Mark Pyc)<br><br><br>----------------------------------------------------------------------
<br><br>Message: 1<br>Date: Fri, 21 Jul 2006 11:44:25 +0100<br>From: &quot;Kisloff, Philip B&quot; &lt;<a href="mailto:Philip.Kisloff@astrazeneca.com">Philip.Kisloff@astrazeneca.com</a>&gt;<br>Subject: RE: Re : Material Master Workflow
<br>To: &quot;'SAP Workflow Users' Group'&quot; &lt;<a href="mailto:sap-wug@mit.edu">sap-wug@mit.edu</a>&gt;<br>Message-ID:<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;<a href="mailto:77B8D39FB855D511B6FE0002A55C0CE6051415F5@ukcfphmsx01.ukcf.astrazeneca.net">
77B8D39FB855D511B6FE0002A55C0CE6051415F5@ukcfphmsx01.ukcf.astrazeneca.net</a>&gt;<br><br>Content-Type: text/plain; charset=&quot;iso-8859-1&quot;<br><br>Hi Vijay,<br><br>The problem with creation of one material master view completing all other
<br>parallel workitems view can be solved by creating a &quot;view-specific&quot; check<br>function to the terminating event binding.&nbsp;&nbsp;Hope the example code helps (its<br>from four years ago, so I'm a bit rusty on the details)
<br><br>Phil<br><br>FUNCTION z_multi_view_maintenance.<br>*&quot;----------------------------------------------------------------------<br>*&quot;*&quot;Local interface:<br>*&quot;&nbsp;&nbsp;IMPORTING<br>*&quot;&nbsp;&nbsp;&nbsp;&nbsp; VALUE(EVENT) LIKE&nbsp;&nbsp;SWETYPECOU-EVENT
<br>*&quot;&nbsp;&nbsp;&nbsp;&nbsp; VALUE(RECTYPE) LIKE&nbsp;&nbsp;SWETYPECOU-RECTYPE<br>*&quot;&nbsp;&nbsp;&nbsp;&nbsp; VALUE(OBJTYPE) LIKE&nbsp;&nbsp;SWETYPECOU-OBJTYPE<br>*&quot;&nbsp;&nbsp;&nbsp;&nbsp; VALUE(OBJKEY) LIKE&nbsp;&nbsp;SWEINSTCOU-OBJKEY<br>*&quot;&nbsp;&nbsp;&nbsp;&nbsp; VALUE(EXCEPTIONS_ALLOWED) LIKE&nbsp;&nbsp;SWEFLAGS-EXC_OK DEFAULT 'X'
<br>*&quot;&nbsp;&nbsp;EXPORTING<br>*&quot;&nbsp;&nbsp;&nbsp;&nbsp; VALUE(REC_ID) LIKE&nbsp;&nbsp;SWELOG-RECID<br>*&quot;&nbsp;&nbsp;TABLES<br>*&quot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;EVENT_CONTAINER STRUCTURE&nbsp;&nbsp;SWCONT<br>*&quot;&nbsp;&nbsp;EXCEPTIONS<br>*&quot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;INVALID_MATCH<br>*&quot;----------------------------------------------------------------------
<br>INCLUDE &lt;cntain&gt;.<br>DATA: old_wi_id LIKE swwwihead-wi_id.<br>DATA: local_wi_header LIKE swwwihead.<br><br>* search work item from receiver<br>swc_get_element event_container evt_receiver_id old_wi_id.<br>local_wi_header-wi_id = old_wi_id.
<br><br>* read workitem container<br>CLEAR wi_container. REFRESH wi_container.<br>CALL FUNCTION 'SWW_WI_CONTAINER_READ'<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;EXPORTING<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; wi_id&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;= local_wi_header-wi_id<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;TABLES<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; wi_container&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; = wi_container<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;EXCEPTIONS<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; container_does_not_exist = 01.<br><br>READ TABLE wi_container WITH KEY element = 'VIEW'.<br><br>CASE wi_container-value.<br>&nbsp;&nbsp; WHEN 'V'. &quot; Sales
<br>&nbsp;&nbsp;&nbsp;&nbsp; READ TABLE wi_container WITH KEY element = 'PLANT'.<br>&nbsp;&nbsp;&nbsp;&nbsp; READ TABLE event_container WITH KEY element = 'PLANT'.<br>&nbsp;&nbsp;&nbsp;&nbsp; IF wi_container-value(4) &lt;&gt; event_container-value(4).<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; RAISE invalid_match.
<br>&nbsp;&nbsp;&nbsp;&nbsp; ENDIF.<br>&nbsp;&nbsp; when 'L'.<br>&nbsp;&nbsp;&nbsp;&nbsp; READ TABLE wi_container WITH KEY element = 'STORAGELOCATION'.<br>&nbsp;&nbsp;&nbsp;&nbsp; READ TABLE event_container WITH KEY element = 'STORAGELOCATION'.<br>************************<br>&nbsp;&nbsp;&nbsp;&nbsp;tables indx.
<br>&nbsp;&nbsp;&nbsp;&nbsp; export wi_container-value event_container-value<br>&nbsp;&nbsp;&nbsp;&nbsp; to database indx(wf) id 'test1'.<br>************************<br>&nbsp;&nbsp;&nbsp;&nbsp; IF wi_container-value+5(4) &lt;&gt; event_container-value(4).<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; RAISE invalid_match.
<br>&nbsp;&nbsp;&nbsp;&nbsp; ENDIF.<br>&nbsp;&nbsp;&nbsp;&nbsp; READ TABLE event_container WITH KEY element = 'PLANT'.<br>&nbsp;&nbsp;&nbsp;&nbsp; IF wi_container-value+1(4) &lt;&gt; event_container-value(4).<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; RAISE invalid_match.<br>&nbsp;&nbsp;&nbsp;&nbsp; ENDIF.<br>&nbsp;&nbsp; WHEN 'S'. &quot; Warehouse
<br>&nbsp;&nbsp;&nbsp;&nbsp; READ TABLE wi_container WITH KEY element = 'WAREHOUSE'.<br>&nbsp;&nbsp;&nbsp;&nbsp; READ TABLE event_container WITH KEY element = 'WHSENUMBER'.<br>&nbsp;&nbsp;&nbsp;&nbsp; IF wi_container-value+9(3) &lt;&gt; event_container-value(3).<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; RAISE invalid_match.
<br>&nbsp;&nbsp;&nbsp;&nbsp; ENDIF.<br>&nbsp;&nbsp; WHEN 'D'. &quot; MRP<br>&nbsp;&nbsp;&nbsp;&nbsp; READ TABLE wi_container WITH KEY element = 'PLANT'.<br>&nbsp;&nbsp;&nbsp;&nbsp; READ TABLE event_container WITH KEY element = 'PLANT'.<br>&nbsp;&nbsp;&nbsp;&nbsp; IF wi_container-value(4) &lt;&gt; event_container-value(4).
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; RAISE invalid_match.<br>&nbsp;&nbsp;&nbsp;&nbsp; ENDIF.<br>&nbsp;&nbsp; WHEN 'E'. &quot; Purchasing<br>&nbsp;&nbsp;&nbsp;&nbsp; READ TABLE wi_container WITH KEY element = 'PLANT'.<br>&nbsp;&nbsp;&nbsp;&nbsp; READ TABLE event_container WITH KEY element = 'PLANT'.<br>&nbsp;&nbsp;&nbsp;&nbsp; IF wi_container-value(4) &lt;&gt; event_container-value(4).
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; RAISE invalid_match.<br>&nbsp;&nbsp;&nbsp;&nbsp; ENDIF.<br>&nbsp;&nbsp; WHEN 'B'. &quot; Accounting<br>&nbsp;&nbsp;&nbsp;&nbsp; READ TABLE wi_container WITH KEY element = 'PLANT'.<br>&nbsp;&nbsp;&nbsp;&nbsp; READ TABLE event_container WITH KEY element = 'VALUATIONAREA'.<br>************************
<br>&nbsp;&nbsp;export wi_container-value event_container-value<br>&nbsp;&nbsp;to database indx(wf) id 'test3'.<br>************************<br>&nbsp;&nbsp;&nbsp;&nbsp; IF wi_container-value(4) &lt;&gt; event_container-value(4).<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; RAISE invalid_match.<br>
&nbsp;&nbsp;&nbsp;&nbsp; ENDIF.<br>&nbsp;&nbsp; WHEN OTHERS.<br>ENDCASE.<br><br>ENDFUNCTION.<br><br>-----Original Message-----<br>From: <a href="mailto:sap-wug-bounces@mit.edu">sap-wug-bounces@mit.edu</a> [mailto:<a href="mailto:sap-wug-bounces@mit.edu">
sap-wug-bounces@mit.edu</a>]On Behalf Of K<br>Vijayasekar<br>Sent: 21 July 2006 05:04<br>To: SAP WF User group<br>Subject: Re : Material Master Workflow<br><br><br>Hi Friends ,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Presently i'm given a task of creating workflow for
<br>material master creation.&nbsp;&nbsp;Following is the scenario...<br><br>1. One user ( Initiator ) will create a basic data 1 &amp; 2&nbsp;&nbsp;and&nbsp;&nbsp;the workflow<br>should be triggered .<br><br>2. Other views like Sales , MRP , Scheduling will be created by different
<br>people , hence each user should receive a workitem in their sap inbox&nbsp;&nbsp;for<br>creating the required view.<br><br>I have identified&nbsp;&nbsp;business object BUS1001006 for this workflow and i'm<br>planning to use the following methods and events.
<br><br>Events :<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Created --&gt; to trigger the workflow<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ViewCreated --&gt; terminating event for the Workitem ( for view<br>creation )<br><br>Methods :<br><br>&nbsp;&nbsp;GetMissedViews --&gt; to get all the required views to be created for this
<br>material.<br>&nbsp;&nbsp;CreateView&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; --&gt; to create required for the material.<br><br><br>I'm facing two problems......<br><br>1. Using &quot;GetMissedViews&quot; i'm getting all the missing view details in a<br>multiline container element . I have created parallel task ( by putting
<br>multiline container element in the &quot;Others&quot; tab . Terminating event for this<br>task is &quot;ViewCreated&quot;.<br>Depending on the no. of views in the multiline item , that many workitem<br>gets created.<br>
The issue is if once view gets created all the other workitems are removed<br>from my inbox ( status completed ).<br><br>2. At the time of creation of basic data1 &amp; 2 , the org. elements are not<br>required . I want to determine the agent for rest of the views by the
<br>org.elements . How can we acheive it ???<br><br>Help me to reslove above 2 issues ......If any done workflow material master<br>please do share you technical expetise...<br><br>Regards,<br>Vijay<br><br><br><br><br><br>
<br><br><br><br><br><br><br>_____<br><br>Yahoo! Messenger with Voice. Make<br>&lt;<a href="http://us.rd.yahoo.com/mail_us/taglines/postman1/*http://us.rd.yahoo.com/ev">http://us.rd.yahoo.com/mail_us/taglines/postman1/*http://us.rd.yahoo.com/ev
</a><br>t=39663/*<a href="http://voice.yahoo.com">http://voice.yahoo.com</a>&gt; PC-to-Phone Calls to the US (and 30+<br>countries) for 2?/min or less.<br><br>-------------- next part --------------<br>An HTML attachment was scrubbed...
<br>URL: <a href="http://mailman.mit.edu/pipermail/sap-wug/attachments/20060721/18133ff1/attachment-0001.htm">http://mailman.mit.edu/pipermail/sap-wug/attachments/20060721/18133ff1/attachment-0001.htm</a><br><br>------------------------------
<br><br>Message: 2<br>Date: Fri, 21 Jul 2006 11:55:12 +0100<br>From: &quot;Mark Pyc&quot; &lt;<a href="mailto:mark.pyc@gmail.com">mark.pyc@gmail.com</a>&gt;<br>Subject: Re: SAP-WUG Digest, Vol 20, Issue 54<br>To: &quot;SAP Workflow Users' Group&quot; &lt;
<a href="mailto:sap-wug@mit.edu">sap-wug@mit.edu</a>&gt;<br>Message-ID:<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;<a href="mailto:23f0a78a0607210355w277681f4jdd06890950cf0aa4@mail.gmail.com">23f0a78a0607210355w277681f4jdd06890950cf0aa4@mail.gmail.com
</a>&gt;<br>Content-Type: text/plain; charset=&quot;iso-8859-1&quot;<br><br>Functions that are released for the customer are ones where SAP guarantees<br>to keep the signature and functionality fixed in future releases and
<br>therefore you can use them safely. In the case of unreleased ones there is<br>no such guarantee. The signature could change, the functionality could<br>change or it could even be deleted. In any of these cases you'd have to deal
<br>with the consequences after upgrade.<br><br>Realistically though it's unlikely. If changes are made SAP also has to<br>change all of their own dependant code. As such it's quite normal to make<br>use of such functions if there is nothing else available, but there is a
<br>risk.<br><br>Have fun,<br>Mark<br><br><br>On 7/21/06, Albina Fernando &lt;<a href="mailto:albinafernando@gmail.com">albinafernando@gmail.com</a>&gt; wrote:<br>&gt;<br>&gt;<br>&gt; Thanks for the update. I forgot to mention that we are ofcourse using
<br>&gt; Excluded Agents. But since the user A himself is a substitute, and he will<br>&gt; not be able to view the approval task, Hence we are sending it to 2 managers<br>&gt; before the deadline date. i.e M1 and M2 and after the deadline date it
<br>&gt; still remains in M2's UWL list. Now the problem is when the deadline date is<br>&gt; passed, the maanger M2 will see 2 instances of the same approval task. So to<br>&gt; avoid that, we are using func. module SWW_WI_AGENTS_CHANGE, so that only one
<br>&gt; instance of the approval task remains in the UWL list of M2.<br>&gt;<br>&gt; That'w why we had queries regarding SWW_WI_AGENTS_CHANGE. Also What does<br>&gt; it mean when you say, &quot;Some function modules are not released
<br>&gt; for the customer&quot;.<br>&gt;<br>&gt;<br>&gt;<br>&gt; On 7/21/06, <a href="mailto:sap-wug-request@mit.edu">sap-wug-request@mit.edu</a> &lt;<a href="mailto:sap-wug-request@mit.edu">sap-wug-request@mit.edu</a>&gt; wrote:
<br>&gt; &gt;<br>&gt; &gt; Send SAP-WUG mailing list submissions to<br>&gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="mailto:sap-wug@mit.edu">sap-wug@mit.edu</a><br>&gt; &gt;<br>&gt; &gt; To subscribe or unsubscribe via the World Wide Web, visit
<br>&gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="http://mailman.mit.edu/mailman/listinfo/sap-wug">http://mailman.mit.edu/mailman/listinfo/sap-wug</a><br>&gt; &gt; or, via email, send a message with subject or body 'help' to<br>&gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<a href="mailto:sap-wug-request@mit.edu">sap-wug-request@mit.edu</a><br>&gt; &gt;<br>&gt; &gt; You can reach the person managing the list at<br>&gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="mailto:sap-wug-owner@mit.edu">sap-wug-owner@mit.edu
</a><br>&gt; &gt;<br>&gt; &gt; When replying, please edit your Subject line so it is more specific<br>&gt; &gt; than &quot;Re: Contents of SAP-WUG digest...&quot;<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt; Today's Topics:<br>
&gt; &gt;<br>&gt; &gt;&nbsp;&nbsp; 1. Re: Workflow using SWW_WI_AGENTS_CHANGE (Mark Pyc)<br>&gt; &gt;&nbsp;&nbsp; 2. RE: Accept change button (Yogesh Chopra)<br>&gt; &gt;&nbsp;&nbsp; 3. RE: Accept change button (Adao-Cruz, Miguel)<br>&gt; &gt;<br>&gt; &gt;
<br>&gt; &gt; ----------------------------------------------------------------------<br>&gt; &gt;<br>&gt; &gt; Message: 1<br>&gt; &gt; Date: Fri, 21 Jul 2006 08:26:14 +0100<br>&gt; &gt; From: &quot;Mark Pyc&quot; &lt;<a href="mailto:mark.pyc@gmail.com">
mark.pyc@gmail.com</a> &gt;<br>&gt; &gt; Subject: Re: Workflow using SWW_WI_AGENTS_CHANGE<br>&gt; &gt; To: &quot;SAP Workflow Users' Group&quot; &lt;<a href="mailto:sap-wug@mit.edu">sap-wug@mit.edu</a>&gt;<br>&gt; &gt; Message-ID:
<br>&gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt; <a href="mailto:23f0a78a0607210026t3fc058cfv3b6e0347d84fbd77@mail.gmail.com">23f0a78a0607210026t3fc058cfv3b6e0347d84fbd77@mail.gmail.com</a>&gt;<br>&gt; &gt; Content-Type: text/plain; charset=&quot;iso-8859-1&quot;
<br>&gt; &gt;<br>&gt; &gt; G'day Albina,<br>&gt; &gt;<br>&gt; &gt; That's sounds like a really complicated solution to a very standard<br>&gt; &gt; situation!<br>&gt; &gt;<br>&gt; &gt; If you're concern is about the A seeing their own approvals when
<br>&gt; &gt; operating<br>&gt; &gt; as substitute for the manager, use Excluded agents on the step. If you<br>&gt; &gt; are<br>&gt; &gt; an excluded agent the system will never let you process the step.<br>&gt; &gt;<br>&gt; &gt; Have fun,
<br>&gt; &gt; Mark<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt; On 7/21/06, Albina Fernando &lt;<a href="mailto:albinafernando@gmail.com">albinafernando@gmail.com</a>&gt; wrote:<br>&gt; &gt; &gt;<br>&gt; &gt; &gt;&nbsp;&nbsp;Hi,<br>&gt; &gt; &gt;
<br>&gt; &gt; &gt;&nbsp;&nbsp; What does it mean when you say, &quot;Some function modules are not<br>&gt; &gt; released<br>&gt; &gt; &gt; for the customer&quot;. In our case, we are using the function module<br>&gt; &gt; &gt; SWW_WI_AGENTS_CHANGE. Will it cause any problem.
<br>&gt; &gt; &gt;&nbsp;&nbsp; We have a scenario wherein, there is an employee A and 2 managers<br>&gt; &gt; M1, &amp;<br>&gt; &gt; &gt; M2. The approval task goes to 2 managers. Before the deadline date, it<br>&gt; &gt; is<br>&gt; &gt; &gt; with one manager 
i.e M1 and after the deadline date, it is with the<br>&gt; &gt; other<br>&gt; &gt; &gt; manager i.e M2. Whenever the 1st manager , M1 creates the user A as a<br>&gt; &gt; &gt; substitute, then A will also be able to view the approval task. So
<br>&gt; &gt; this<br>&gt; &gt; &gt; should not happem. So what we are doing is, before the deadline date,<br>&gt; &gt; we are<br>&gt; &gt; &gt; sending it to the 1st and 2nd manager. And after the deadline date, it<br>&gt; &gt;
<br>&gt; &gt; &gt; remains with the 2nd manager. In such a case, the 2 manager will see 2<br>&gt; &gt; &gt; instances of the same approval task. So to avoid that, we are using<br>&gt; &gt; function<br>&gt; &gt; &gt; module SWW_WI_AGENTS_CHANGE. This is used so that whenever a deadline
<br>&gt; &gt; is<br>&gt; &gt; &gt; reached, it will call this module and remove the agent from the<br>&gt; &gt; approval<br>&gt; &gt; &gt; task, which is before the deadline date. By doing this, there will be<br>&gt; &gt; only
<br>&gt; &gt; &gt; one instance of the approval task with the 2nd manager.<br>&gt; &gt; &gt;<br>&gt; &gt; &gt; Thanks<br>&gt; &gt; &gt;<br>&gt; &gt; &gt;<br>&gt; &gt; &gt; _______________________________________________<br>
&gt; &gt; &gt; SAP-WUG mailing list<br>&gt; &gt; &gt; <a href="mailto:SAP-WUG@mit.edu">SAP-WUG@mit.edu</a><br>&gt; &gt; &gt; <a href="http://mailman.mit.edu/mailman/listinfo/sap-wug">http://mailman.mit.edu/mailman/listinfo/sap-wug
</a><br>&gt; &gt; &gt;<br>&gt; &gt; &gt;<br>&gt; &gt; &gt;<br>&gt; &gt; -------------- next part --------------<br>&gt; &gt; An HTML attachment was scrubbed...<br>&gt; &gt; URL:<br>&gt; &gt; <a href="http://mailman.mit.edu/pipermail/sap-wug/attachments/20060721/980b517b/attachment-0001.htm">
http://mailman.mit.edu/pipermail/sap-wug/attachments/20060721/980b517b/attachment-0001.htm</a><br>&gt; &gt;<br>&gt; &gt; ------------------------------<br>&gt; &gt;<br>&gt; &gt; Message: 2<br>&gt; &gt; Date: Fri, 21 Jul 2006 17:08:02 +0800
<br>&gt; &gt; From: &quot;Yogesh Chopra&quot; &lt; <a href="mailto:Yogesh.Chopra@axonglobal.com">Yogesh.Chopra@axonglobal.com</a>&gt;<br>&gt; &gt; Subject: RE: Accept change button<br>&gt; &gt; To: &quot;SAP Workflow Users' Group&quot; &lt;
<a href="mailto:sap-wug@mit.edu">sap-wug@mit.edu</a> &gt;,&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&quot;SAP Workflow<br>&gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Users' Group&quot; &lt;<a href="mailto:sap-wug@mit.edu">sap-wug@mit.edu</a>&gt;<br>&gt; &gt; Message-ID:<br>&gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt; 
<a href="mailto:5D9A6409FE6AB043998D62E01544EFF6130638@myisms01.axongroup.co.uk">5D9A6409FE6AB043998D62E01544EFF6130638@myisms01.axongroup.co.uk</a><br>&gt; &gt; &gt;<br>&gt; &gt; Content-Type: text/plain; charset=&quot;iso-8859-1&quot;
<br>&gt; &gt;<br>&gt; &gt; Hello! Miguel<br>&gt; &gt;<br>&gt; &gt; Thanks for your reply. In my SC there is no start condition because it<br>&gt; &gt; is N-step header level SC. Approvers are all on-line approvers. I am BADI. I
<br>&gt; &gt; am selecting all approvers. Only few approvers are able to change the SC.<br>&gt; &gt; This is controlled by security level. At present the approvers who can<br>&gt; &gt; change the SC have LOW level security. When approver makes a change in Price
<br>&gt; &gt; or quantity or currency then e-mail is going back to requestor with a ACCEPT<br>&gt; &gt; CHANGE button but when there is a change in any other field then e-mail is<br>&gt; &gt; going back to requestor but without ACCEPT CHANGE button.
<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt; My issue is :- mails should go back with accept change button in any<br>&gt; &gt; case and when requestor accept changes then workflow should restart again.<br>&gt; &gt;
<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt; Thanks<br>&gt; &gt; Yog<br>&gt; &gt;<br>&gt; &gt; ________________________________<br>&gt; &gt;<br>&gt; &gt; From: <a href="mailto:sap-wug-bounces@mit.edu">sap-wug-bounces@mit.edu</a>
 on behalf of Adao-Cruz, Miguel<br>&gt; &gt; Sent: Fri 21/07/2006 00:19<br>&gt; &gt; To: SAP Workflow Users' Group<br>&gt; &gt; Subject: RE: Accept change button<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt; Hi,<br>&gt; &gt;<br>
&gt; &gt; For certain POs approval workflows, SRM does distinction between the<br>&gt; &gt; type of changes done via the start conditions ( see attributes in BUS2201<br>&gt; &gt; PurchaseOrderEC.SimpleListOfChanges<br>&gt; &gt; 
PurchaseOrderEC.TechnicalListOfChanges ) but I have never seen something<br>&gt; &gt; like that for shopping carts.<br>&gt; &gt; You are talking about e-mails, I guess you mean the off-line approval.<br>&gt; &gt; Did you check if online (EBP inbox) the workitems are the same?
<br>&gt; &gt; On which support pack are you? In the last SP (8-9 and 10) there are<br>&gt; &gt; some OSS notes for off-line approval.<br>&gt; &gt; In your two cases, is it the same approver changing the shopping cart?<br>
&gt; &gt; If not, do they have the same security level in their role or SU01.<br>&gt; &gt;<br>&gt; &gt; Cheers<br>&gt; &gt;<br>&gt; &gt; ___________________________________________________________________________<br>&gt; &gt;
<br>&gt; &gt; Miguel Adao-Cruz | Capgemini | London<br>&gt; &gt; Technology Services<br>&gt; &gt; SAP Application Architect<br>&gt; &gt;<br>&gt; &gt; T.+44-870-238-2927 | Int.700 2927 | <a href="http://www.capgemini.com">
www.capgemini.com</a> &lt;<a href="file:///C:/Documents%20and%20Settings/madaocru/Application%20Data/Microsoft/Signatures/www.capgemini.com">file:///C:/Documents%20and%20Settings/madaocru/Application%20Data/Microsoft/Signatures/www.capgemini.com
</a><br>&gt; &gt; &gt;<br>&gt; &gt;<br>&gt; &gt; Join the Collaborative Business Experience<br>&gt; &gt; ___________________________________________________________________________<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt; ________________________________
<br>&gt; &gt;<br>&gt; &gt; From: <a href="mailto:sap-wug-bounces@mit.edu">sap-wug-bounces@mit.edu</a> on behalf of Yogesh Chopra<br>&gt; &gt; Sent: Thu 20/07/2006 16:49<br>&gt; &gt; To: SAP Workflow Users' Group; SAP Workflow Users' Group
<br>&gt; &gt; Subject: RE: Accept change button<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt; Thanks for the reply Mark.<br>&gt; &gt;<br>&gt; &gt; Requestor is getting a mail but as i mentioned in my mail ,&nbsp;&nbsp;Accept<br>&gt; &gt; change button disappear in the e-mail notification when approver make
<br>&gt; &gt; changes in Item category . If approver make changes on price then that<br>&gt; &gt; button appears.<br>&gt; &gt;<br>&gt; &gt; I don't know why it is working for some fields only.<br>&gt; &gt;<br>&gt; &gt; Thanks
<br>&gt; &gt; Yogesh<br>&gt; &gt;<br>&gt; &gt; ________________________________<br>&gt; &gt;<br>&gt; &gt; From: <a href="mailto:sap-wug-bounces@mit.edu">sap-wug-bounces@mit.edu</a> on behalf of Mark Pyc<br>&gt; &gt; Sent: Thu 20/07/2006 23:16
<br>&gt; &gt; To: SAP Workflow Users' Group<br>&gt; &gt; Subject: Re: Accept change button<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt; G'day Yogesh,<br>&gt; &gt;<br>&gt; &gt; I don't claim to know much about SRM (hence all my questions) but are
<br>&gt; &gt; you saying the requestor is still getting a Workitem for review of changes<br>&gt; &gt; but that the button is missing? Or is it that they don't receive the<br>&gt; &gt; workitem at all??<br>&gt; &gt;<br>&gt; &gt; If its that they don't receive the workitem at all, then have a look at
<br>&gt; &gt; discussion over the last few days between myself and Miguel. There is a badi<br>&gt; &gt; that may be useful to you.<br>&gt; &gt;<br>&gt; &gt; Have fun,<br>&gt; &gt; Mark<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt; On 7/20/06, Yogesh Chopra &lt; 
<a href="mailto:Yogesh.Chopra@axonglobal.com">Yogesh.Chopra@axonglobal.com</a>&gt; wrote:<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Hi! Workflow Experts<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;I am using header level N-step workflow and there is not start
<br>&gt; &gt; condition. When requestor creates a shopping cart and if approver makes a<br>&gt; &gt; change in price field then requester receives a message to accept changes or<br>&gt; &gt; reject changes but when approver makes a change product category then accept
<br>&gt; &gt; change button disappear. Can any one please give me clue why it is working<br>&gt; &gt; for some fields and why not for other fields?<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Thanks<br>&gt; &gt;
<br>&gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Yogesh<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt; The content of this email is confidential and for the<br>&gt; &gt; addressee only. If you are not the addressee of this
<br>&gt; &gt; email (or responsible for the delivery of this message<br>&gt; &gt; to such person) you may not copy, forward, disclose<br>&gt; &gt; or otherwise use it or any part of it in any form<br>&gt; &gt; whatsoever. If you have received this email in error
<br>&gt; &gt; please email the sender by replying to this message<br>&gt; &gt; and delete this message thereafter.<br>&gt; &gt;<br>&gt; &gt; Opinions, conclusions and other information in this<br>&gt; &gt; message that do not relate to the official business
<br>&gt; &gt; of our Company shall be understood as neither<br>&gt; &gt; given nor endorsed by it.<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;_______________________________________________<br>&gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;SAP-WUG mailing list
<br>&gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="mailto:SAP-WUG@mit.edu">SAP-WUG@mit.edu</a><br>&gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="http://mailman.mit.edu/mailman/listinfo/sap-wug">http://mailman.mit.edu/mailman/listinfo/sap-wug</a><br>&gt; &gt;<br>&gt; &gt;
<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt; The content of this email is confidential and for the<br>&gt; &gt; addressee only. If you are not the addressee of this
<br>&gt; &gt; email (or responsible for the delivery of this message<br>&gt; &gt; to such person) you may not copy, forward, disclose<br>&gt; &gt; or otherwise use it or any part of it in any form<br>&gt; &gt; whatsoever. If you have received this email in error
<br>&gt; &gt; please email the sender by replying to this message<br>&gt; &gt; and delete this message thereafter.<br>&gt; &gt;<br>&gt; &gt; Opinions, conclusions and other information in this<br>&gt; &gt; message that do not relate to the official business
<br>&gt; &gt; of our Company shall be understood as neither<br>&gt; &gt; given nor endorsed by it.<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt; The content of this email is confidential and for the
<br>&gt; &gt; addressee only. If you are not the addressee of this<br>&gt; &gt; email (or responsible for the delivery of this message<br>&gt; &gt; to such person) you may not copy, forward, disclose<br>&gt; &gt; or otherwise use it or any part of it in any form
<br>&gt; &gt; whatsoever. If you have received this email in error<br>&gt; &gt; please email the sender by replying to this message<br>&gt; &gt; and delete this message thereafter.<br>&gt; &gt;<br>&gt; &gt; Opinions, conclusions and other information in this
<br>&gt; &gt; message that do not relate to the official business<br>&gt; &gt; of our Company shall be understood as neither<br>&gt; &gt; given nor endorsed by it.<br>&gt; &gt;<br>&gt; &gt; -------------- next part --------------
<br>&gt; &gt; An HTML attachment was scrubbed...<br>&gt; &gt; URL:<br>&gt; &gt; <a href="http://mailman.mit.edu/pipermail/sap-wug/attachments/20060721/92925240/attachment-0001.htm">http://mailman.mit.edu/pipermail/sap-wug/attachments/20060721/92925240/attachment-0001.htm
</a><br>&gt; &gt;<br>&gt; &gt; ------------------------------<br>&gt; &gt;<br>&gt; &gt; Message: 3<br>&gt; &gt; Date: Fri, 21 Jul 2006 10:19:28 +0100<br>&gt; &gt; From: &quot;Adao-Cruz, Miguel&quot; &lt;<a href="mailto:miguel.adao-cruz@capgemini.com">
miguel.adao-cruz@capgemini.com</a>&gt;<br>&gt; &gt; Subject: RE: Accept change button<br>&gt; &gt; To: &quot;SAP Workflow Users' Group&quot; &lt;<a href="mailto:sap-wug@mit.edu">sap-wug@mit.edu</a>&gt;<br>&gt; &gt; Message-ID:
<br>&gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;<a href="mailto:77898EE30049594BBC2E2AB2A9A54B2F016B83D2@MISSBHXVS01.uki.capgemini.com">77898EE30049594BBC2E2AB2A9A54B2F016B83D2@MISSBHXVS01.uki.capgemini.com</a><br>&gt; &gt; &gt;<br>&gt; &gt;<br>
&gt; &gt; Content-Type: text/plain; charset=&quot;iso-8859-1&quot;<br>&gt; &gt;<br>&gt; &gt; Hi,<br>&gt; &gt;<br>&gt; &gt; I understood your problem. But if you wantus to help you, you have to do<br>&gt; &gt; a<br>&gt; &gt; couple of checks.
<br>&gt; &gt;<br>&gt; &gt; &quot;<br>&gt; &gt; You are talking about e-mails, I guess you mean the off-line approval.<br>&gt; &gt; Did<br>&gt; &gt; you check if online (EBP inbox) the workitems are the same?<br>&gt; &gt; On which support pack are you? In the last SP (8-9 and 10) there are
<br>&gt; &gt; some<br>&gt; &gt; OSS notes for off-line approval.<br>&gt; &gt; In your two cases, is it the same approver changing the shopping cart?<br>&gt; &gt; If<br>&gt; &gt; not, do they have the same security level in their role or SU01.
<br>&gt; &gt; &quot;<br>&gt; &gt; When you change the price, and then when you change the category, are<br>&gt; &gt; you<br>&gt; &gt; doing it with the same requestor and approver.<br>&gt; &gt;<br>&gt; &gt; Cheers<br>&gt; &gt;
<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt; ___________________________________________________________________________<br>&gt; &gt; Miguel Adao-Cruz | Capgemini | London<br>&gt; &gt; Technology Services<br>&gt; &gt; SAP Application Architect
<br>&gt; &gt;<br>&gt; &gt; T.+44-870-238-2927 | Int.700 2927 | <a href="http://www.capgemini.com">www.capgemini.com</a><br>&gt; &gt; &lt;<a href="file:///C:\Documents%20and%20Settings\madaocru\Application%20Data\Microsoft">
file:///C:\Documents%20and%20Settings\madaocru\Application%20Data\Microsoft</a><br>&gt; &gt;<br>&gt; &gt; \Signatures\www.capgemini.com&gt;<br>&gt; &gt;<br>&gt; &gt; Join the Collaborative Business Experience<br>&gt; &gt;
<br>&gt; &gt; ___________________________________________________________________________<br>&gt; &gt;<br>&gt; &gt; ________________________________<br>&gt; &gt;<br>&gt; &gt; From: <a href="mailto:sap-wug-bounces@mit.edu">
sap-wug-bounces@mit.edu</a> on behalf of Yogesh Chopra<br>&gt; &gt; Sent: Fri 21/07/2006 10:08<br>&gt; &gt; To: SAP Workflow Users' Group; SAP Workflow Users' Group<br>&gt; &gt; Subject: RE: Accept change button<br>&gt; &gt;
<br>&gt; &gt;<br>&gt; &gt; Hello! Miguel<br>&gt; &gt;<br>&gt; &gt; Thanks for your reply. In my SC there is no start condition because it<br>&gt; &gt; is<br>&gt; &gt; N-step header level SC. Approvers are all on-line approvers. I am BADI.
<br>&gt; &gt; I am<br>&gt; &gt; selecting all approvers. Only few approvers are able to change the SC.<br>&gt; &gt; This<br>&gt; &gt; is controlled by security level. At present the approvers who can change<br>&gt; &gt; the
<br>&gt; &gt; SC have LOW level security. When approver makes a change in Price or<br>&gt; &gt; quantity or currency then e-mail is going back to requestor with a<br>&gt; &gt; ACCEPT<br>&gt; &gt; CHANGE button but when there is a change in any other field then e-mail
<br>&gt; &gt; is<br>&gt; &gt; going back to requestor but without ACCEPT CHANGE button.<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt; My issue is :- mails should go back with accept change button in any<br>&gt; &gt; case
<br>&gt; &gt; and when requestor accept changes then workflow should restart again.<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt; Thanks<br>&gt; &gt; Yog<br>&gt; &gt;<br>&gt; &gt; ________________________________<br>
&gt; &gt;<br>&gt; &gt; From: <a href="mailto:sap-wug-bounces@mit.edu">sap-wug-bounces@mit.edu</a> on behalf of Adao-Cruz, Miguel<br>&gt; &gt; Sent: Fri 21/07/2006 00:19<br>&gt; &gt; To: SAP Workflow Users' Group<br>&gt; &gt; Subject: RE: Accept change button
<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt; Hi,<br>&gt; &gt;<br>&gt; &gt; For certain POs approval workflows, SRM does distinction between the<br>&gt; &gt; type of<br>&gt; &gt; changes done via the start conditions ( see attributes in BUS2201
<br>&gt; &gt; PurchaseOrderEC.SimpleListOfChanges<br>&gt; &gt; PurchaseOrderEC.TechnicalListOfChanges)<br>&gt; &gt; but I have never seen something like that for shopping carts.<br>&gt; &gt; You are talking about e-mails, I guess you mean the off-line approval.
<br>&gt; &gt; Did<br>&gt; &gt; you check if online (EBP inbox) the workitems are the same?<br>&gt; &gt; On which support pack are you? In the last SP (8-9 and 10) there are<br>&gt; &gt; some<br>&gt; &gt; OSS notes for off-line approval.
<br>&gt; &gt; In your two cases, is it the same approver changing the shopping cart?<br>&gt; &gt; If<br>&gt; &gt; not, do they have the same security level in their role or SU01.<br>&gt; &gt;<br>&gt; &gt; Cheers<br>&gt; &gt;
<br>&gt; &gt;<br>&gt; &gt; ___________________________________________________________________________<br>&gt; &gt; Miguel Adao-Cruz | Capgemini | London<br>&gt; &gt; Technology Services<br>&gt; &gt; SAP Application Architect
<br>&gt; &gt;<br>&gt; &gt; T.+44-870-238-2927 | Int.700 2927 | <a href="http://www.capgemini.com">www.capgemini.com</a><br>&gt; &gt; &lt;<a href="file:///C:/Documents%20and%20Settings/madaocru/Application%20Data/Microsoft">
file:///C:/Documents%20and%20Settings/madaocru/Application%20Data/Microsoft</a><br>&gt; &gt; /Signatures/,DanaInfo=owa+www.capgemini.com&gt;<br>&gt; &gt;<br>&gt; &gt; Join the Collaborative Business Experience<br>&gt; &gt; ___________________________________________________________________________
<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt; ________________________________<br>&gt; &gt;<br>&gt; &gt; From: <a href="mailto:sap-wug-bounces@mit.edu">sap-wug-bounces@mit.edu</a> on behalf of Yogesh Chopra<br>&gt; &gt; Sent: Thu 20/07/2006 16:49
<br>&gt; &gt; To: SAP Workflow Users' Group; SAP Workflow Users' Group<br>&gt; &gt; Subject: RE: Accept change button<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt; Thanks for the reply Mark.<br>&gt; &gt;<br>&gt; &gt; Requestor is getting a mail but as i mentioned in my mail ,&nbsp;&nbsp;Accept
<br>&gt; &gt; change<br>&gt; &gt; button disappear in the e-mail notification when approver make changes<br>&gt; &gt; in<br>&gt; &gt; Item category . If approver make changes on price then that button<br>&gt; &gt; appears.
<br>&gt; &gt;<br>&gt; &gt; I don't know why it is working for some fields only.<br>&gt; &gt;<br>&gt; &gt; Thanks<br>&gt; &gt; Yogesh<br>&gt; &gt;<br>&gt; &gt; ________________________________<br>&gt; &gt;<br>&gt; &gt; From: 
<a href="mailto:sap-wug-bounces@mit.edu">sap-wug-bounces@mit.edu</a> on behalf of Mark Pyc<br>&gt; &gt; Sent: Thu 20/07/2006 23:16<br>&gt; &gt; To: SAP Workflow Users' Group<br>&gt; &gt; Subject: Re: Accept change button<br>
&gt; &gt;<br>&gt; &gt;<br>&gt; &gt; G'day Yogesh,<br>&gt; &gt;<br>&gt; &gt; I don't claim to know much about SRM (hence all my questions) but are<br>&gt; &gt; you<br>&gt; &gt; saying the requestor is still getting a Workitem for review of changes
<br>&gt; &gt; but<br>&gt; &gt; that the button is missing? Or is it that they don't receive the<br>&gt; &gt; workitem at<br>&gt; &gt; all??<br>&gt; &gt;<br>&gt; &gt; If its that they don't receive the workitem at all, then have a look at
<br>&gt; &gt; discussion over the last few days between myself and Miguel. There is a<br>&gt; &gt; badi<br>&gt; &gt; that may be useful to you.<br>&gt; &gt;<br>&gt; &gt; Have fun,<br>&gt; &gt; Mark<br>&gt; &gt;<br>&gt; &gt;
<br>&gt; &gt; On 7/20/06, Yogesh Chopra &lt; <a href="mailto:Yogesh.Chopra@axonglobal.com">Yogesh.Chopra@axonglobal.com</a>&gt; wrote:<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Hi! Workflow Experts<br>&gt; &gt;<br>&gt; &gt;
<br>&gt; &gt;<br>&gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;I am using header level N-step workflow and there is not start<br>&gt; &gt; condition. When requestor creates a shopping cart and if approver makes<br>&gt; &gt; a<br>&gt; &gt; change in price field then requester receives a message to accept
<br>&gt; &gt; changes or<br>&gt; &gt; reject changes but when approver makes a change product category then<br>&gt; &gt; accept<br>&gt; &gt; change button disappear. Can any one please give me clue why it is<br>&gt; &gt; working
<br>&gt; &gt; for some fields and why not for other fields?<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Thanks<br>&gt; &gt;<br>&gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Yogesh<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt;<br>
&gt; &gt;<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt; The content of this email is confidential and for the<br>&gt; &gt; addressee only. If you are not the addressee of this<br>&gt; &gt; email (or responsible for the delivery of this message
<br>&gt; &gt; to such person) you may not copy, forward, disclose<br>&gt; &gt; or otherwise use it or any part of it in any form<br>&gt; &gt; whatsoever. If you have received this email in error<br>&gt; &gt; please email the sender by replying to this message
<br>&gt; &gt; and delete this message thereafter.<br>&gt; &gt;<br>&gt; &gt; Opinions, conclusions and other information in this<br>&gt; &gt; message that do not relate to the official business<br>&gt; &gt; of our Company shall be understood as neither
<br>&gt; &gt; given nor endorsed by it.<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;_______________________________________________<br>&gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;SAP-WUG mailing list<br>&gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="mailto:SAP-WUG@mit.edu">
SAP-WUG@mit.edu</a><br>&gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="http://mailman.mit.edu/mailman/listinfo/sap-wug">http://mailman.mit.edu/mailman/listinfo/sap-wug</a><br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt;
<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt; The content of this email is confidential and for the<br>&gt; &gt; addressee only. If you are not the addressee of this<br>&gt; &gt; email (or responsible for the delivery of this message
<br>&gt; &gt; to such person) you may not copy, forward, disclose<br>&gt; &gt; or otherwise use it or any part of it in any form<br>&gt; &gt; whatsoever. If you have received this email in error<br>&gt; &gt; please email the sender by replying to this message
<br>&gt; &gt; and delete this message thereafter.<br>&gt; &gt;<br>&gt; &gt; Opinions, conclusions and other information in this<br>&gt; &gt; message that do not relate to the official business<br>&gt; &gt; of our Company shall be understood as neither
<br>&gt; &gt; given nor endorsed by it.<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt; The content of this email is confidential and for the<br>&gt; &gt; addressee only. If you are not the addressee of this
<br>&gt; &gt; email (or responsible for the delivery of this message<br>&gt; &gt; to such person) you may not copy, forward, disclose<br>&gt; &gt; or otherwise use it or any part of it in any form<br>&gt; &gt; whatsoever. If you have received this email in error
<br>&gt; &gt; please email the sender by replying to this message<br>&gt; &gt; and delete this message thereafter.<br>&gt; &gt;<br>&gt; &gt; Opinions, conclusions and other information in this<br>&gt; &gt; message that do not relate to the official business
<br>&gt; &gt; of our Company shall be understood as neither<br>&gt; &gt; given nor endorsed by it.<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt; -------------- next part --------------<br>&gt; &gt; A non-text attachment was scrubbed...
<br>&gt; &gt; Name: not available<br>&gt; &gt; Type: application/ms-tnef<br>&gt; &gt; Size: 16009 bytes<br>&gt; &gt; Desc: not available<br>&gt; &gt; Url : <a href="http://mailman.mit.edu/pipermail/sap-wug/attachments/20060721/d27d6948/attachment.bin">
http://mailman.mit.edu/pipermail/sap-wug/attachments/20060721/d27d6948/attachment.bin</a><br>&gt; &gt;<br>&gt; &gt; -------------- next part --------------<br>&gt; &gt; This message contains information that may be privileged or confidential
<br>&gt; &gt; and is the property of the Capgemini Group. It is intended only for the<br>&gt; &gt; person to whom it is addressed. If you are not the intended recipient,&nbsp;&nbsp;you<br>&gt; &gt; are not authorized to read, print, retain, copy, disseminate,&nbsp;&nbsp;distribute,
<br>&gt; &gt; or use this message or any part thereof. If you receive this&nbsp;&nbsp;message in<br>&gt; &gt; error, please notify the sender immediately and delete all&nbsp;&nbsp;copies of this<br>&gt; &gt; message.<br>&gt; &gt;<br>&gt; &gt; ------------------------------
<br>&gt; &gt;<br>&gt; &gt; _______________________________________________<br>&gt; &gt; SAP-WUG mailing list<br>&gt; &gt; <a href="mailto:SAP-WUG@mit.edu">SAP-WUG@mit.edu</a><br>&gt; &gt; <a href="http://mailman.mit.edu/mailman/listinfo/sap-wug">
http://mailman.mit.edu/mailman/listinfo/sap-wug</a><br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt; End of SAP-WUG Digest, Vol 20, Issue 54<br>&gt; &gt; ***************************************<br>&gt; &gt;<br>&gt;<br>&gt;<br>&gt;<br>
&gt; _______________________________________________<br>&gt; SAP-WUG mailing list<br>&gt; <a href="mailto:SAP-WUG@mit.edu">SAP-WUG@mit.edu</a><br>&gt; <a href="http://mailman.mit.edu/mailman/listinfo/sap-wug">http://mailman.mit.edu/mailman/listinfo/sap-wug
</a><br>&gt;<br>&gt;<br>&gt;<br>-------------- next part --------------<br>An HTML attachment was scrubbed...<br>URL: <a href="http://mailman.mit.edu/pipermail/sap-wug/attachments/20060721/922d4904/attachment.htm">http://mailman.mit.edu/pipermail/sap-wug/attachments/20060721/922d4904/attachment.htm
</a><br><br>------------------------------<br><br>_______________________________________________<br>SAP-WUG mailing list<br><a href="mailto:SAP-WUG@mit.edu">SAP-WUG@mit.edu</a><br><a href="http://mailman.mit.edu/mailman/listinfo/sap-wug">
http://mailman.mit.edu/mailman/listinfo/sap-wug</a><br><br><br>End of SAP-WUG Digest, Vol 20, Issue 56<br>***************************************<br></blockquote></div><br>