<div dir="ltr">Hi friends,<br>  Thanks for your reply. I debugged the report RSWUWFML2 and found that  the parameter <b>  i_windowsize </b>passed to the function module swn_create_shortcut is hard coded  &quot;Normal Window&quot;. Probably I have to created a custom version of this report to change this parameter to &quot;Maximized&quot;. Let me know if there is any note related to this. We are in SAP 4.7.<br>
<br> CALL FUNCTION &#39;SWN_CREATE_SHORTCUT&#39;                 <br>  EXPORTING                                          <br>    i_transaction                 = &#39;SO01&#39;           <br>    I_REPORT                      =                  <br>
    I_SYSTEM_COMMAND              =                  <br>    i_parameter                   =                  <br>    i_saplogon_id                 = l_logon_id       <br>    i_sysid                       = sy-sysid         <br>
    I_GUIPARM                     =                  <br>    i_user                        = p_user           <br>    i_language                    = p_langu          <br>  <b>  i_windowsize                  = &#39;Normal window&#39;  </b><br>
    I_TITLE                       =                  <br>    i_custom                      = l_scrap          <br>  IMPORTING                                          <br>    shortcut_table                = pt_attach        <br>
    SHORTCUT_STRING               =                  <br>  EXCEPTIONS                                         <br>    INCONSISTENT_PARAMETERS       = 1                <br>    OTHERS                        = 1.               <br>
<br>Regards,<br>Ikhan<br><br><div class="gmail_quote">On Fri, Oct 16, 2009 at 3:27 AM, Florin Wach (gmx) <span dir="ltr">&lt;<a href="mailto:florin.wach@gmx.net">florin.wach@gmx.net</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">






<div bgcolor="#ffffff">
<div><font face="Arial" size="2">Hi Ikhan,</font></div>
<div><font face="Arial" size="2"></font> </div>
<div><font face="Arial" size="2">the window size (maximized, minimized) can be 
given in the SAP ShortCut ... I think it was [windowsize]=maximized. However, 
the report RSWUWFML2 (as well as the Extended Notifications) don&#39;t set this 
parameter.</font></div>
<div><font face="Arial" size="2">If needed you may extended the report after it 
calls the function module :...CREATE_SHORTCUT...</font></div>
<div><font face="Arial" size="2"></font> </div>
<div><font face="Arial" size="2">Best wishes,</font></div>
<div><font face="Arial" size="2">   Florin</font></div>
<div><font face="Arial" size="2"></font> </div>
<blockquote style="border-left: 2px solid rgb(0, 0, 0); padding-left: 5px; padding-right: 0px; margin-left: 5px; margin-right: 0px;"><div class="im">
  <div style="font-family: arial; font-style: normal; font-variant: normal; font-weight: normal; font-size: 10pt; line-height: normal; font-size-adjust: none; font-stretch: normal;">----- Original Message ----- </div>
  <div style="background: rgb(228, 228, 228) none repeat scroll 0% 0%; font-family: arial; font-style: normal; font-variant: normal; font-weight: normal; font-size: 10pt; line-height: normal; font-size-adjust: none; font-stretch: normal; -moz-background-clip: border; -moz-background-origin: padding; -moz-background-inline-policy: continuous;">
<b>From:</b> 
  <a title="jocelyn.dart@sap.com" href="mailto:jocelyn.dart@sap.com" target="_blank">Dart, 
  Jocelyn</a> </div>
  <div style="font-family: arial; font-style: normal; font-variant: normal; font-weight: normal; font-size: 10pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"><b>To:</b> <a title="sap-wug@mit.edu" href="mailto:sap-wug@mit.edu" target="_blank">SAP Workflow Users&#39; Group</a> </div>

  </div><div><div></div><div class="h5"><div style="font-family: arial; font-style: normal; font-variant: normal; font-weight: normal; font-size: 10pt; line-height: normal; font-size-adjust: none; font-stretch: normal;">
<b>Sent:</b> Friday, October 16, 2009 12:02 
  AM</div>
  <div style="font-family: arial; font-style: normal; font-variant: normal; font-weight: normal; font-size: 10pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"><b>Subject:</b> RE: [LIKELY JUNK]RSWUWFML2 - 
  Work item attachment issue</div>
  <div><br></div>
  <div dir="ltr" align="left"><span><font color="#0000ff" face="Arial" size="2">Hi Ikhan, </font></span></div>
  <div dir="ltr" align="left"><span><font color="#0000ff" face="Arial" size="2">So far as I am aware that depends on the user&#39;s PC settings 
  and is not influenced by the notification at all. Have you tried on multiple 
  machines?</font></span></div>
  <div dir="ltr" align="left"><span><font color="#0000ff" face="Arial" size="2">Regards,</font></span></div>
  <div dir="ltr" align="left"><span><font color="#0000ff" face="Arial" size="2">Jocelyn </font></span></div><br>
  <div dir="ltr" align="left" lang="en-us">
  <hr>
  <font face="Tahoma" size="2"><b>From:</b> <a href="mailto:sap-wug-bounces@mit.edu" target="_blank">sap-wug-bounces@mit.edu</a> 
  [mailto:<a href="mailto:sap-wug-bounces@mit.edu" target="_blank">sap-wug-bounces@mit.edu</a>] <b>On Behalf Of </b>IKhan<br><b>Sent:</b> 
  Friday, 16 October 2009 4:22 AM<br><b>To:</b> SAP Workflow Users&#39; 
  Group<br><b>Subject:</b> [LIKELY JUNK]RSWUWFML2 - Work item attachment 
  issue<br></font><br></div>
  <div></div>
  <div dir="ltr">Dear WF Experts,<br>  We are in SAP 4.7 and We have used 
  RSWUWFML2 to send notifications to outlook when a new workitem comes to user&#39;s 
  SAP Inbox. The notification is working fine but when the user clicks the 
  attachment in outlook to open the workitem the SAP GUI is opening in a small 
  window(minimized state). I want that to open in a maximized state. Please let 
  me know if need to do any settings. I tried to open the same attachment from 
  SOST but there also it is opening in minimized state.</div>
  </div></div><p>
  </p><hr>

  <p></p>_______________________________________________<br>SAP-WUG mailing 
  list<br><a href="mailto:SAP-WUG@mit.edu" target="_blank">SAP-WUG@mit.edu</a><br><a href="http://mailman.mit.edu/mailman/listinfo/sap-wug" target="_blank">http://mailman.mit.edu/mailman/listinfo/sap-wug</a><br></blockquote>
</div>
<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" target="_blank">http://mailman.mit.edu/mailman/listinfo/sap-wug</a><br>
<br></blockquote></div><br></div>