<?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 ABAP Function Module to perform validation in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-function-module-to-perform-validation/m-p/4765793#M1117175</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Developers,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm am trying to create a function module to be later used by a Web Dynpro application. The function module should be structured as followed:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Importing&lt;/P&gt;&lt;P&gt;USER_ID : User ID to be searched that is entered by user.&lt;/P&gt;&lt;P&gt;TENANT: Tenant ID that is to be searched, also entered by user.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Changing&lt;/P&gt;&lt;P&gt;EXIST: A flag that will return the values Y or N based on a return from the function module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The function module must be able to access a specified Oracle database table and perform a check on the table with the provided import values. If the combination exists, it should return a Y. If the combination does not exist it should return an N. Assumption is that tenant and userid fields exist in this table in addition to two other. User ID is the primary key.&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;JD&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 07 Nov 2008 02:27:19 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-11-07T02:27:19Z</dc:date>
    <item>
      <title>ABAP Function Module to perform validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-function-module-to-perform-validation/m-p/4765793#M1117175</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Developers,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm am trying to create a function module to be later used by a Web Dynpro application. The function module should be structured as followed:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Importing&lt;/P&gt;&lt;P&gt;USER_ID : User ID to be searched that is entered by user.&lt;/P&gt;&lt;P&gt;TENANT: Tenant ID that is to be searched, also entered by user.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Changing&lt;/P&gt;&lt;P&gt;EXIST: A flag that will return the values Y or N based on a return from the function module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The function module must be able to access a specified Oracle database table and perform a check on the table with the provided import values. If the combination exists, it should return a Y. If the combination does not exist it should return an N. Assumption is that tenant and userid fields exist in this table in addition to two other. User ID is the primary key.&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;JD&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Nov 2008 02:27:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-function-module-to-perform-validation/m-p/4765793#M1117175</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-07T02:27:19Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP Function Module to perform validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-function-module-to-perform-validation/m-p/4765794#M1117176</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi ,&lt;/P&gt;&lt;P&gt;u can put a select query on  the input parameters ..&lt;/P&gt;&lt;P&gt;select * from z_abc where userid = param1  and tenant = param2.&lt;/P&gt;&lt;P&gt;if sy-subrc = 0 &lt;/P&gt;&lt;P&gt;then return 'Y'&lt;/P&gt;&lt;P&gt;else return 'N'&lt;/P&gt;&lt;P&gt;u can make this FM as an RFC which can be later acess from WD application.&lt;/P&gt;&lt;P&gt;Simple ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Renu Gusain on Nov 7, 2008 5:33 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Nov 2008 04:33:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-function-module-to-perform-validation/m-p/4765794#M1117176</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-07T04:33:02Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP Function Module to perform validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-function-module-to-perform-validation/m-p/4765795#M1117177</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;For getting data from oracle the following threads may help you;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN __jive_macro_name="thread" id="33542"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN __jive_macro_name="thread" id="107384"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can get more threads by [Searching|https://www.sdn.sap.com/irj/sdn/advancedsearch?cat=sdn_library&amp;amp;adv=true] the Forum.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Karthik D&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Nov 2008 05:36:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-function-module-to-perform-validation/m-p/4765795#M1117177</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-07T05:36:24Z</dc:date>
    </item>
  </channel>
</rss>

