<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Work Order Screen Exit Error in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/work-order-screen-exit-error/m-p/2289051#M499164</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;data : v_flag.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE user_command_0900 INPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLEAR wa_drad.&lt;/P&gt;&lt;P&gt;clear : v_objkey.&lt;/P&gt;&lt;P&gt;SELECT SINGLE * FROM drad INTO wa_drad WHERE dokob = 'AUFK' AND objky = v_objkey.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if v_flag = ''.&lt;/P&gt;&lt;P&gt;IF sy-ucomm = 'CV03'.&lt;/P&gt;&lt;P&gt;IF wa_drad-doknr IS INITIAL.&lt;/P&gt;&lt;P&gt;MESSAGE i111(26).&lt;/P&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;P&gt;v_flag = 'X'&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'CV141_SHOW_LINK_DOCUMENT'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;ps_drad_objky = v_objkey&lt;/P&gt;&lt;P&gt;ps_drad_dokob = 'AUFK'.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDMODULE. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See the above code and let me know.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Seshu Maramreddy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 21 May 2007 18:52:14 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-21T18:52:14Z</dc:date>
    <item>
      <title>Work Order Screen Exit Error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/work-order-screen-exit-error/m-p/2289048#M499161</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello All,&lt;/P&gt;&lt;P&gt;I added a additional tab subscreen to work order using screen exit 'IWO10018' . I added a pushbutton on screen with function code 'CV03N' and in work order display mode I call transaction CV03N. This is working fine but when I get back to Work Order screen, I am getting error message &amp;lt;b&amp;gt;'Requested function CV03N is not available here&amp;lt;/b&amp;gt;'. I have no idea why I am getting this error. What do I need to do here?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I guess it's something with the Fcode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anybody can help me out?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Chandra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 May 2007 17:20:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/work-order-screen-exit-error/m-p/2289048#M499161</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-21T17:20:45Z</dc:date>
    </item>
    <item>
      <title>Re: Work Order Screen Exit Error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/work-order-screen-exit-error/m-p/2289049#M499162</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try to change Function code like CV03 and keep the break point at ur sy-ucomm.&lt;/P&gt;&lt;P&gt;recomended function code is 4 char.. but i am not sure ..why you are getting this error. can you please send ur code.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 May 2007 17:26:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/work-order-screen-exit-error/m-p/2289049#M499162</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-21T17:26:15Z</dc:date>
    </item>
    <item>
      <title>Re: Work Order Screen Exit Error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/work-order-screen-exit-error/m-p/2289050#M499163</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I changed to 'CV03', but still getitng the same error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;code looks like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE user_command_0900 INPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; CLEAR wa_drad.&lt;/P&gt;&lt;P&gt;  SELECT SINGLE * FROM drad INTO wa_drad WHERE dokob = 'AUFK' AND objky = v_objkey.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF sy-ucomm = 'CV03'.&lt;/P&gt;&lt;P&gt;    IF wa_drad-doknr IS INITIAL.&lt;/P&gt;&lt;P&gt;      MESSAGE i111(26).&lt;/P&gt;&lt;P&gt;    ELSE.&lt;/P&gt;&lt;P&gt;      CALL FUNCTION 'CV141_SHOW_LINK_DOCUMENT'&lt;/P&gt;&lt;P&gt;        EXPORTING&lt;/P&gt;&lt;P&gt;          ps_drad_objky = v_objkey&lt;/P&gt;&lt;P&gt;          ps_drad_dokob = 'AUFK'.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 May 2007 17:53:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/work-order-screen-exit-error/m-p/2289050#M499163</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-21T17:53:27Z</dc:date>
    </item>
    <item>
      <title>Re: Work Order Screen Exit Error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/work-order-screen-exit-error/m-p/2289051#M499164</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;data : v_flag.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE user_command_0900 INPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLEAR wa_drad.&lt;/P&gt;&lt;P&gt;clear : v_objkey.&lt;/P&gt;&lt;P&gt;SELECT SINGLE * FROM drad INTO wa_drad WHERE dokob = 'AUFK' AND objky = v_objkey.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if v_flag = ''.&lt;/P&gt;&lt;P&gt;IF sy-ucomm = 'CV03'.&lt;/P&gt;&lt;P&gt;IF wa_drad-doknr IS INITIAL.&lt;/P&gt;&lt;P&gt;MESSAGE i111(26).&lt;/P&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;P&gt;v_flag = 'X'&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'CV141_SHOW_LINK_DOCUMENT'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;ps_drad_objky = v_objkey&lt;/P&gt;&lt;P&gt;ps_drad_dokob = 'AUFK'.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDMODULE. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See the above code and let me know.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Seshu Maramreddy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 May 2007 18:52:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/work-order-screen-exit-error/m-p/2289051#M499164</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-21T18:52:14Z</dc:date>
    </item>
    <item>
      <title>Re: Work Order Screen Exit Error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/work-order-screen-exit-error/m-p/2289052#M499165</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;changed the code, but geting the same error. Remeber the code i have is in screen exit PAI module.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 May 2007 18:59:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/work-order-screen-exit-error/m-p/2289052#M499165</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-21T18:59:59Z</dc:date>
    </item>
  </channel>
</rss>

