<?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: Transaction Code Issue in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-code-issue/m-p/3289651#M787089</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Arpit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The smartform print is working fine, if i input the values in the selection screen through SE38 screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The selection screen can be viewd from Z-Tcode. But when i execute it through this path, the system is displaying SAP home screen instead of smartform print window.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Pavan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 04 Jan 2008 04:16:34 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-01-04T04:16:34Z</dc:date>
    <item>
      <title>Transaction Code Issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-code-issue/m-p/3289649#M787087</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have developed a Print Program and smartform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now i need to create a transaction code for this application.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have created Transaction code and the program name has been attached.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If i input the transaction code in sap home screen, i am able to view the Selection screen of the Program. Once i input the value in selsction screen, the system is displayin gSAP home screen instead of proceeding further as per program logic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If i get into se38 and execute the program, it works fine......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What might be the problem....????&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Pavan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Jan 2008 04:06:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-code-issue/m-p/3289649#M787087</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-04T04:06:44Z</dc:date>
    </item>
    <item>
      <title>Re: Transaction Code Issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-code-issue/m-p/3289650#M787088</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;pls check,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how u hv pass the smart forms name? &amp;amp; pass the parameters?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check this...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data: begin of istr1,&lt;/P&gt;&lt;P&gt;        vbeln like lips-VBELN,&lt;/P&gt;&lt;P&gt;      end of istr1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data: v_delno like lips-vbeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE text-d01.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS DEL_NO LIKE LIPS-VBELN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK B1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*TITLE1 = 'Selection Data'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data: t1 type string.&lt;/P&gt;&lt;P&gt;Data: t2 like t1,t12 like t1.&lt;/P&gt;&lt;P&gt;DATA: t3 like t1,t4 like t1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; v_delno = DEL_NO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;t1 = 'Delivery No :  '.&lt;/P&gt;&lt;P&gt;*t2 = v_delno.&lt;/P&gt;&lt;P&gt;t3 = ' is not exists'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONCATENATE t1 v_delno t3 into t4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select vbeln into (istr1-VBELN) from lips&lt;/P&gt;&lt;P&gt;  where vbeln eq DEL_NO.&lt;/P&gt;&lt;P&gt; ENDSELECT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; if sy-subrc ne 0.&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'POPUP_TO_DISPLAY_TEXT'&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        textline1 = 'You must choose a valid line'.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        titel = 'GHCL - GatePass'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;       txt2  = sy-subrc&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        textline1 = t4."'No data exists for the specified data'.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        text1 = 'Delivery No : '.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        text2 = v_delno.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        text3 = ' is not exists' .&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; STOP.&lt;/P&gt;&lt;P&gt; EXIT.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    FORMNAME                 = 'YSDGATEPASS'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  VARIANT                  = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  DIRECT_CALL              = ' '&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt; IMPORTING&lt;/P&gt;&lt;P&gt;   FM_NAME                  =  V_FORM_NAME&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  NO_FORM                  = 1&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  NO_FUNCTION_MODULE       = 2&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  OTHERS                   = 3&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;          .&lt;/P&gt;&lt;P&gt;IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION v_form_name&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;DELIVERY_NO = DEL_NO&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;FORMATTING_ERROR = 1&lt;/P&gt;&lt;P&gt;INTERNAL_ERROR = 2&lt;/P&gt;&lt;P&gt;SEND_ERROR = 3&lt;/P&gt;&lt;P&gt;USER_CANCELED = 4&lt;/P&gt;&lt;P&gt;OTHERS = 5.&lt;/P&gt;&lt;P&gt;IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;P&gt;WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if it is helpful to u.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Arpit&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Arpit Shah on Jan 4, 2008 9:39 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Jan 2008 04:09:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-code-issue/m-p/3289650#M787088</guid>
      <dc:creator>arpit_shah</dc:creator>
      <dc:date>2008-01-04T04:09:14Z</dc:date>
    </item>
    <item>
      <title>Re: Transaction Code Issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-code-issue/m-p/3289651#M787089</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Arpit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The smartform print is working fine, if i input the values in the selection screen through SE38 screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The selection screen can be viewd from Z-Tcode. But when i execute it through this path, the system is displaying SAP home screen instead of smartform print window.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Pavan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Jan 2008 04:16:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-code-issue/m-p/3289651#M787089</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-04T04:16:34Z</dc:date>
    </item>
    <item>
      <title>Re: Transaction Code Issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-code-issue/m-p/3289652#M787090</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;good&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pls check the parameter that you have passed in se93 ,check which check box you r checking for the smartform execution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;mrutyun^&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Jan 2008 04:31:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-code-issue/m-p/3289652#M787090</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-04T04:31:47Z</dc:date>
    </item>
    <item>
      <title>Re: Transaction Code Issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-code-issue/m-p/3289653#M787091</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;Check whether u assigned tcode correctly:-&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Tcode : &amp;#145;u r tcode&amp;#146;.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Radio button selected can be : program and selection screen&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Program name: ur program name&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;And at program:-&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Data : Formname  like RL38_FNAME&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;To get name of form dynamically:-&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;EXPORTING&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FORMNAME = '&amp;lt;Name copied from utilities-&amp;gt; environment&amp;gt;'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;IMPORTING&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FM_NAME = formname&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;To call u r form:-&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;CALL FUNCTION v_form_name&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;EXPORTING&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;  &lt;STRONG&gt;U r parameters&amp;#133;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Jan 2008 04:51:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-code-issue/m-p/3289653#M787091</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-04T04:51:23Z</dc:date>
    </item>
    <item>
      <title>Re: Transaction Code Issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-code-issue/m-p/3289654#M787092</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Pavan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;while creating the Z-tcode,&lt;/P&gt;&lt;P&gt;select the radio button Program and Selection Screen (report transaction)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;open se93 in change mode. &lt;/P&gt;&lt;P&gt;goto edit-&amp;gt;change transaction type  and select Program and Selection Screen (report transaction)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Jan 2008 05:01:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-code-issue/m-p/3289654#M787092</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-04T05:01:26Z</dc:date>
    </item>
  </channel>
</rss>

