<?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: Passing by parameter for Update set (param) in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-by-parameter-for-update-set-param/m-p/5927642#M1332520</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Seema,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in my method i create the importing parameter:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IMPORTING:&lt;/P&gt;&lt;P&gt;im_tabname type tabname&lt;/P&gt;&lt;P&gt;im_expre type string  &amp;lt;-- wrong type!?&lt;/P&gt;&lt;P&gt;im_where type string &amp;lt;-- wrong type!?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have no local parameter!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The question is, which type should i use for im_expre and im_where. Until now it's not working with the type string.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;sid&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Sid on Jul 11, 2009 5:32 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 11 Jul 2009 14:51:29 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-07-11T14:51:29Z</dc:date>
    <item>
      <title>Passing by parameter for Update set (param)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-by-parameter-for-update-set-param/m-p/5927640#M1332518</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everybody,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how can i pass by the needed parameter for a Update statement?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The method contains the following importing parameter:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IMPORTING:&lt;/P&gt;&lt;P&gt;im_tabname type tabname&lt;/P&gt;&lt;P&gt;im_expre  type string&lt;/P&gt;&lt;P&gt;im_where type string&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this method i use the statement:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
update (im_tabname)
set (im_expre)
where (im_where).
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I get the exception: CX_CY_DYNAMIC_OSQL_SEMANTICS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Which kind of types should i use instead of string for:  im_expr and im_where?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Sid&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Jul 2009 14:24:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-by-parameter-for-update-set-param/m-p/5927640#M1332518</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-11T14:24:56Z</dc:date>
    </item>
    <item>
      <title>Re: Passing by parameter for Update set (param)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-by-parameter-for-update-set-param/m-p/5927641#M1332519</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sid,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the parameter type used in the method,, define your parameters of the same type.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Jul 2009 14:34:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-by-parameter-for-update-set-param/m-p/5927641#M1332519</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-11T14:34:42Z</dc:date>
    </item>
    <item>
      <title>Re: Passing by parameter for Update set (param)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-by-parameter-for-update-set-param/m-p/5927642#M1332520</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Seema,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in my method i create the importing parameter:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IMPORTING:&lt;/P&gt;&lt;P&gt;im_tabname type tabname&lt;/P&gt;&lt;P&gt;im_expre type string  &amp;lt;-- wrong type!?&lt;/P&gt;&lt;P&gt;im_where type string &amp;lt;-- wrong type!?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have no local parameter!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The question is, which type should i use for im_expre and im_where. Until now it's not working with the type string.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;sid&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Sid on Jul 11, 2009 5:32 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Jul 2009 14:51:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-by-parameter-for-update-set-param/m-p/5927642#M1332520</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-11T14:51:29Z</dc:date>
    </item>
    <item>
      <title>Re: Passing by parameter for Update set (param)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-by-parameter-for-update-set-param/m-p/5927643#M1332521</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I forgot the '`' within my CONCATENATE.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Jul 2009 15:39:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-by-parameter-for-update-set-param/m-p/5927643#M1332521</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-11T15:39:53Z</dc:date>
    </item>
  </channel>
</rss>

