<?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: Select-option in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-option/m-p/4194611#M1002589</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If I am correct u want to validate business area getting from i_trip against the select-option say s_gsber. If my assumption is correct then try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'ZHR_GET_FUND_TRIPS'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;p_fictr = p_fictr&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;p_fictr = wa_fc-fictr&lt;/P&gt;&lt;P&gt;p_sub = p_sub&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;s_bukrs = s_bukrs&lt;/P&gt;&lt;P&gt;s_pernr = s_pernr&lt;/P&gt;&lt;P&gt;s_reinr = s_reinr&lt;/P&gt;&lt;P&gt;s_pdatv = s_pdatv&lt;/P&gt;&lt;P&gt;s_berei = s_berei&lt;/P&gt;&lt;P&gt;i_trip = i_trip&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;OTHERS = 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at i_trip.&lt;/P&gt;&lt;P&gt; &lt;STRONG&gt;if i_trip-gsber in s_gsber[ ].&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;  write / i_trip-gsber.&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;Regards,&lt;/P&gt;&lt;P&gt;Joy.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 17 Jul 2008 11:10:27 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-07-17T11:10:27Z</dc:date>
    <item>
      <title>Select-option</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-option/m-p/4194609#M1002587</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Guy's,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help me, in my program using one function module.  i_trip is contain gsber(business area) field. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;added business area at selection-option. i want validate this field and also displays the output based on this business area. how to work this senario.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'ZHR_GET_FUND_TRIPS'&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     p_fictr = p_fictr&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        p_fictr = wa_fc-fictr&lt;/P&gt;&lt;P&gt;        p_sub   = p_sub&lt;/P&gt;&lt;P&gt;      TABLES&lt;/P&gt;&lt;P&gt;        s_bukrs = s_bukrs&lt;/P&gt;&lt;P&gt;        s_pernr = s_pernr&lt;/P&gt;&lt;P&gt;        s_reinr = s_reinr&lt;/P&gt;&lt;P&gt;        s_pdatv = s_pdatv&lt;/P&gt;&lt;P&gt;        s_berei = s_berei&lt;/P&gt;&lt;P&gt;        i_trip  = i_trip&lt;/P&gt;&lt;P&gt;      EXCEPTIONS&lt;/P&gt;&lt;P&gt;        OTHERS  = 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at i_trip.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how to validate that field....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sai.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jul 2008 11:03:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-option/m-p/4194609#M1002587</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-17T11:03:12Z</dc:date>
    </item>
    <item>
      <title>Re: Select-option</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-option/m-p/4194610#M1002588</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sai,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;search in SDN with &lt;STRONG&gt;loop at screen&lt;/STRONG&gt; you will get you answer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Amit.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jul 2008 11:05:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-option/m-p/4194610#M1002588</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-17T11:05:04Z</dc:date>
    </item>
    <item>
      <title>Re: Select-option</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-option/m-p/4194611#M1002589</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If I am correct u want to validate business area getting from i_trip against the select-option say s_gsber. If my assumption is correct then try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'ZHR_GET_FUND_TRIPS'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;p_fictr = p_fictr&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;p_fictr = wa_fc-fictr&lt;/P&gt;&lt;P&gt;p_sub = p_sub&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;s_bukrs = s_bukrs&lt;/P&gt;&lt;P&gt;s_pernr = s_pernr&lt;/P&gt;&lt;P&gt;s_reinr = s_reinr&lt;/P&gt;&lt;P&gt;s_pdatv = s_pdatv&lt;/P&gt;&lt;P&gt;s_berei = s_berei&lt;/P&gt;&lt;P&gt;i_trip = i_trip&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;OTHERS = 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at i_trip.&lt;/P&gt;&lt;P&gt; &lt;STRONG&gt;if i_trip-gsber in s_gsber[ ].&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;  write / i_trip-gsber.&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;Regards,&lt;/P&gt;&lt;P&gt;Joy.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jul 2008 11:10:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-option/m-p/4194611#M1002589</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-17T11:10:27Z</dc:date>
    </item>
  </channel>
</rss>

