<?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: Problem with tabstrip 'Save' button in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-tabstrip-save-button/m-p/3289372#M786991</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;Try this code in the tabstrip screens:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if sy-dynnr = 'your screen no'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if screen-name = &amp;lt;your io field name&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;screen-input = 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;modify screen.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;modify screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps. Also check whether you have the active tab as youre required one itself.&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;Renjith Michael.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 10 Jan 2008 06:35:49 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-01-10T06:35:49Z</dc:date>
    <item>
      <title>Problem with tabstrip 'Save' button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-tabstrip-save-button/m-p/3289369#M786988</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When I click on the 'Save' button for my tabstrip which has 3 tabs, the error is shown for what i want for the first tab as shown at this link:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://img185.imageshack.us/img185/7290/screen1eg6.png" target="test_blank"&gt;http://img185.imageshack.us/img185/7290/screen1eg6.png&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But when I look at my second and third tabs, the screen's input field is disabled when it is suppose to be enabled for the user to key in. The screen as show here:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://img185.imageshack.us/img185/6615/screen2ns8.png" target="test_blank"&gt;http://img185.imageshack.us/img185/6615/screen2ns8.png&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Line: -&lt;/P&gt;&lt;HR originaltext="----" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My codes as below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE USER_COMMAND_9000 INPUT. &lt;STRONG&gt;Screen 9000 is the that contain the tabstrip&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; IF SY-UCOMM = 'BACK'.&lt;/P&gt;&lt;P&gt;       LEAVE PROGRAM.&lt;/P&gt;&lt;P&gt;    ELSEIF SY-UCOMM = 'EXIT'.&lt;/P&gt;&lt;P&gt;      LEAVE PROGRAM.&lt;/P&gt;&lt;P&gt;       ELSEIF SY-UCOMM = 'SAVE'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          IF IO_NAME IS INITIAL.&lt;/P&gt;&lt;P&gt;            MESSAGE E004(ZMSG02).&lt;/P&gt;&lt;P&gt;            CLEAR SY-UCOMM.&lt;/P&gt;&lt;P&gt;            ELSEIF IO_AGE IS INITIAL.&lt;/P&gt;&lt;P&gt;                MESSAGE E005(ZMSG02).&lt;/P&gt;&lt;P&gt;            CLEAR SY-UCOMM.&lt;/P&gt;&lt;P&gt;            ELSEIF IO_GENDER IS INITIAL.&lt;/P&gt;&lt;P&gt;                MESSAGE E006(ZMSG02).&lt;/P&gt;&lt;P&gt;            CLEAR SY-UCOMM.&lt;/P&gt;&lt;P&gt;            ELSE.&lt;/P&gt;&lt;P&gt;     PERFORM INSERT_TABLE.&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;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDMODULE.                    "USER_COMMAND_9000 INPUT&lt;/P&gt;&lt;P&gt;MODULE USER_COMMAND_9001 INPUT. &lt;STRONG&gt;Screen 9001 contains the subscreen for first tab&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;  CASE SY-UCOMM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   WHEN 'SAVE'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       IF IO_NAME IS INITIAL.&lt;/P&gt;&lt;P&gt;             MESSAGE E004(ZMSG02).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     PERFORM INSERT_TABLE.&lt;/P&gt;&lt;P&gt;             ENDIF.&lt;/P&gt;&lt;P&gt;             ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDMODULE.                    "USER_COMMAND_9000 INPUT&lt;/P&gt;&lt;P&gt;MODULE USER_COMMAND_9002 INPUT. &lt;STRONG&gt;Screen 9002 contains the subscreen for second tab&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;  CASE SY-UCOMM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   WHEN 'SAVE'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       IF IO_AGE IS INITIAL.&lt;/P&gt;&lt;P&gt;             MESSAGE E004(ZMSG02).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;             ELSE.&lt;/P&gt;&lt;P&gt;     PERFORM INSERT_TABLE.&lt;/P&gt;&lt;P&gt;             ENDIF.&lt;/P&gt;&lt;P&gt;             ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;P&gt;MODULE USER_COMMAND_9003 INPUT. &lt;STRONG&gt;Screen 9003 contains the subscreen for third tab&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;  CASE SY-UCOMM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   WHEN 'SAVE'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       IF IO_GENDER IS INITIAL.&lt;/P&gt;&lt;P&gt;             MESSAGE E004(ZMSG02).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;             ELSE.&lt;/P&gt;&lt;P&gt;     PERFORM INSERT_TABLE.&lt;/P&gt;&lt;P&gt;             ENDIF.&lt;/P&gt;&lt;P&gt;             ENDCASE.&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;Line: -&lt;/P&gt;&lt;HR originaltext="----" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please tell me what is wrong with my codes? Please type out the codes to let me understand. I will reward all useful answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Jan 2008 05:48:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-tabstrip-save-button/m-p/3289369#M786988</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-10T05:48:26Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with tabstrip 'Save' button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-tabstrip-save-button/m-p/3289370#M786989</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai Juzme,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For your First Screen :  Your did your code like  if IO_NAME is initial  then you are showing error message. so the output is showing like that only.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For second Screen : I think problem in screen painter attributes, Once you check the input field and output field Check boxes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nagaraju.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Jan 2008 06:07:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-tabstrip-save-button/m-p/3289370#M786989</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-10T06:07:05Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with tabstrip 'Save' button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-tabstrip-save-button/m-p/3289371#M786990</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tried to change the Input attributes and still the same outcome. Any other solutions?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Jan 2008 06:29:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-tabstrip-save-button/m-p/3289371#M786990</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-10T06:29:10Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with tabstrip 'Save' button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-tabstrip-save-button/m-p/3289372#M786991</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;Try this code in the tabstrip screens:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if sy-dynnr = 'your screen no'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if screen-name = &amp;lt;your io field name&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;screen-input = 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;modify screen.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;modify screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps. Also check whether you have the active tab as youre required one itself.&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;Renjith Michael.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Jan 2008 06:35:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-tabstrip-save-button/m-p/3289372#M786991</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-10T06:35:49Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with tabstrip 'Save' button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-tabstrip-save-button/m-p/3289373#M786992</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Where am I suppose to put the code you mentioned? Is it at my screen 9000 codes?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please tell me exactly where to put exactly. Here is my screen 9000 codes&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="----" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS BEFORE OUTPUT.&lt;/P&gt;&lt;P&gt;*&amp;amp;SPWIZARD: PBO FLOW LOGIC FOR TABSTRIP 'TABNAME2'&lt;/P&gt;&lt;P&gt;  MODULE TABNAME2_ACTIVE_TAB_SET.&lt;/P&gt;&lt;P&gt;  CALL SUBSCREEN:&lt;/P&gt;&lt;P&gt;       9001_SCA INCLUDING G_TABNAME2-PROG '9001',&lt;/P&gt;&lt;P&gt;       9002_SCA INCLUDING G_TABNAME2-PROG '9002',&lt;/P&gt;&lt;P&gt;       9003_SCA INCLUDING G_TABNAME2-PROG '9003'.&lt;/P&gt;&lt;P&gt;MODULE STATUS_9000.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;PROCESS AFTER INPUT.&lt;/P&gt;&lt;P&gt;*&amp;amp;SPWIZARD: PAI FLOW LOGIC FOR TABSTRIP 'TABNAME2'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL SUBSCREEN:&lt;/P&gt;&lt;P&gt;       9001_SCA,&lt;/P&gt;&lt;P&gt;       9002_SCA,&lt;/P&gt;&lt;P&gt;       9003_SCA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  MODULE TABNAME2_ACTIVE_TAB_GET.&lt;/P&gt;&lt;P&gt;MODULE USER_COMMAND_9000.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="----" /&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Jan 2008 06:43:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-tabstrip-save-button/m-p/3289373#M786992</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-10T06:43:48Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with tabstrip 'Save' button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-tabstrip-save-button/m-p/3289374#M786993</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;Try putting the code in your subscreen's PBOs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ie., for tab1 put the code in pbo of 9001 etc...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Renjith Michael.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Jan 2008 06:48:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-tabstrip-save-button/m-p/3289374#M786993</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-10T06:48:10Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with tabstrip 'Save' button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-tabstrip-save-button/m-p/3289375#M786994</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I got this problem when I try to put the code to my screen 9001.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://img267.imageshack.us/img267/7522/erroryo4.png" target="test_blank"&gt;http://img267.imageshack.us/img267/7522/erroryo4.png&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How am I suppose to put the code?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Jan 2008 07:02:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-tabstrip-save-button/m-p/3289375#M786994</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-10T07:02:41Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with tabstrip 'Save' button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-tabstrip-save-button/m-p/3289376#M786995</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;You cannot write this logic in the Flow logic part of your screen program&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please write something like this,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="9" type="ul"&gt;&lt;P&gt;Flow Logic Part **************&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;Process Before Output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Module Modify_screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;******************************************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="7" type="ul"&gt;&lt;P&gt;In you Include *****************&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;Module Modify_Screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;if sy-dynnr = '9001'.&lt;/P&gt;&lt;P&gt;if screen-name = 'IO_NAME'.&lt;/P&gt;&lt;P&gt;screen-inpur = 1.&lt;/P&gt;&lt;P&gt;modify screen.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endloop.&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;&lt;/P&gt;&lt;P&gt;Hope this help !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;~ Ranganath&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Jan 2008 07:07:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-tabstrip-save-button/m-p/3289376#M786995</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-10T07:07:57Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with tabstrip 'Save' button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-tabstrip-save-button/m-p/3289377#M786996</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;It is due to the reason that you cannot directly code thatin the PBOitself.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Instead, in the place you have added the code create a module, say,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS BEFORE OUTPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;module input_data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;double click on the modulename and create it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Inside the module wirte the same code you wrote earlier  and activate.&lt;/P&gt;&lt;P&gt;&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;Renjith Michael.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Jan 2008 07:13:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-tabstrip-save-button/m-p/3289377#M786996</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-10T07:13:02Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with tabstrip 'Save' button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-tabstrip-save-button/m-p/3289378#M786997</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The problem still remains even after i did that.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Jan 2008 07:27:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-tabstrip-save-button/m-p/3289378#M786997</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-10T07:27:21Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with tabstrip 'Save' button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-tabstrip-save-button/m-p/3289379#M786998</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;Just try changing the Erroe Messages to Status Messages like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF IO_NAME IS INITIAL.&lt;/P&gt;&lt;P&gt;MESSAGE E004(ZMSG02).&lt;/P&gt;&lt;P&gt;CLEAR SY-UCOMM.&lt;/P&gt;&lt;P&gt;ELSEIF IO_AGE IS INITIAL.&lt;/P&gt;&lt;P&gt;MESSAGE E005(ZMSG02).&lt;/P&gt;&lt;P&gt;CLEAR SY-UCOMM.&lt;/P&gt;&lt;P&gt;ELSEIF IO_GENDER IS INITIAL.&lt;/P&gt;&lt;P&gt;MESSAGE E006(ZMSG02).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF IO_NAME IS INITIAL.&lt;/P&gt;&lt;P&gt;MESSAGE S004(ZMSG02).&lt;/P&gt;&lt;P&gt;CLEAR SY-UCOMM.&lt;/P&gt;&lt;P&gt;ELSEIF IO_AGE IS INITIAL.&lt;/P&gt;&lt;P&gt;MESSAGE S005(ZMSG02).&lt;/P&gt;&lt;P&gt;CLEAR SY-UCOMM.&lt;/P&gt;&lt;P&gt;ELSEIF IO_GENDER IS INITIAL.&lt;/P&gt;&lt;P&gt;MESSAGE S006(ZMSG02).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Change any other error messages also to Status messages.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;just to see if this causes the error. If so we will find an alternate solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Renjith Michael.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Renjith Michael on Jan 10, 2008 1:20 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Jan 2008 07:49:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-tabstrip-save-button/m-p/3289379#M786998</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-10T07:49:43Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with tabstrip 'Save' button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-tabstrip-save-button/m-p/3289380#M786999</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I will still need to use the E error messages. Any other solutions?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Jan 2008 08:49:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-tabstrip-save-button/m-p/3289380#M786999</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-10T08:49:07Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with tabstrip 'Save' button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-tabstrip-save-button/m-p/3289381#M787000</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;You can use the Error messages. but in some cases the error messages can cause this kind of problems. So you can check if this is the cause and later you can revert to the original. or judt try by setting defult values to the input fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Renjith Michael.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Renjith Michael on Jan 10, 2008 2:34 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Jan 2008 09:03:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-tabstrip-save-button/m-p/3289381#M787000</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-10T09:03:09Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with tabstrip 'Save' button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-tabstrip-save-button/m-p/3289382#M787001</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;then how do i check this problem?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Jan 2008 09:06:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-tabstrip-save-button/m-p/3289382#M787001</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-10T09:06:11Z</dc:date>
    </item>
  </channel>
</rss>

