<?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: FM in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm/m-p/1360139#M178930</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;.get value of input characteristic AST_PC_RAM&lt;/P&gt;&lt;P&gt;  call function 'CUOV_GET_FUNCTION_ARGUMENT'&lt;/P&gt;&lt;P&gt;       exporting&lt;/P&gt;&lt;P&gt;            argument      = 'BN_CHARAC2'&lt;/P&gt;&lt;P&gt;       importing&lt;/P&gt;&lt;P&gt;            sym_val       = charc2_char&lt;/P&gt;&lt;P&gt;       tables&lt;/P&gt;&lt;P&gt;            query         = query&lt;/P&gt;&lt;P&gt;       exceptions&lt;/P&gt;&lt;P&gt;            arg_not_found = 01.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  if sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;    raise internal_error.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;..add result to the table of output characteristics&lt;/P&gt;&lt;P&gt;  call function 'CUOV_SET_FUNCTION_ARGUMENT'&lt;/P&gt;&lt;P&gt;       exporting&lt;/P&gt;&lt;P&gt;            argument                = 'BN_ID'&lt;/P&gt;&lt;P&gt;            vtype                   = 'CHAR'&lt;/P&gt;&lt;P&gt;            sym_val                 = id_char&lt;/P&gt;&lt;P&gt;       tables&lt;/P&gt;&lt;P&gt;            match                   = match&lt;/P&gt;&lt;P&gt;       exceptions&lt;/P&gt;&lt;P&gt;            existing_value_replaced = 0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this&amp;#146;ll give you idea!!&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;P.S award the points.!!! DOn`t forget :)!!!!&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;Good luck &lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Saquib Khan&lt;/P&gt;&lt;P&gt;"Knowledge comes but wisdom lingers!!"&lt;/P&gt;&lt;P&gt;"Some are wise and some are otherwise"&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 05 May 2006 16:09:05 GMT</pubDate>
    <dc:creator>former_member181966</dc:creator>
    <dc:date>2006-05-05T16:09:05Z</dc:date>
    <item>
      <title>FM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm/m-p/1360135#M178926</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can any body tell me what is the purpose of this FM in ABAP:  CUOV_GET_FUNCTION_ARGUMENT&lt;/P&gt;&lt;P&gt;  and  CUOV_SET_FUNCTION_ARGUMENT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 May 2006 15:48:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm/m-p/1360135#M178926</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-05T15:48:36Z</dc:date>
    </item>
    <item>
      <title>Re: FM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm/m-p/1360136#M178927</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;CUOV_GET_FUNCTION_ARGUMENT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Short text harvests entrance valued out of generic function interface&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Functionality this function building block serves the access on function arguments, that are delivered at a&lt;/P&gt;&lt;P&gt;user-defined function building block in form of the generic interface (table).  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example at a function building block will deliver the generic interfaces-table QUERY with petition value for the arguments LENGTH and WIDTH.  The value of WIDTH can be read out of the table then as follows for&lt;/P&gt;&lt;P&gt;the further processing:  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'CUOV_GET_FUNCTION_ARGUMENT' IMPORTING ARGUMENT = 'WIDTH' EXPORTING ATFLV = WIDTH&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF SY-SUBRC = 0.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;..  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In more by more analogy manner take action on the value by LENGTH.  In this example, the Aufrufer must know, that the value of the argument&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WIDTH of the numeric type is.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Parameter ARGUMENT VTYPE SYM_VAL NUM_VAL IO_QUERY FLEW&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Exceptions BADLY_NEED_FOUND&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Function group CUOV&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;CUOV_SET_FUNCTION_ARGUMENT&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;Short text setting exit valued in generic interface&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Functionality this function sets the value of an edition parameter in the generic interface of an external function building block.  &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;&lt;/P&gt;&lt;P&gt;Parameter ARGUMENT VTYPE SYM_VAL NUM_VAL MATCH&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Exceptions EXISTING_VALUE_REPLACED&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Function group CUOV&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this&amp;#146;ll give you idea!!&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;P.S award the points.!!! DOn`t forget :)!!!!&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;Good luck &lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Saquib Khan&lt;/P&gt;&lt;P&gt;"Knowledge comes but wisdom lingers!!"&lt;/P&gt;&lt;P&gt;"Some are wise and some are otherwise"&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 May 2006 15:54:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm/m-p/1360136#M178927</guid>
      <dc:creator>former_member181966</dc:creator>
      <dc:date>2006-05-05T15:54:49Z</dc:date>
    </item>
    <item>
      <title>Re: FM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm/m-p/1360137#M178928</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Jak,&lt;/P&gt;&lt;P&gt; Check this out search for those FM u find the need and usage of those&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/bestpractices/BBLibrary/Documentation/M04_BB_ConfigGuide_EN_KO.doc" target="test_blank"&gt;http://help.sap.com/bestpractices/BBLibrary/Documentation/M04_BB_ConfigGuide_EN_KO.doc&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Santosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 May 2006 15:57:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm/m-p/1360137#M178928</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-05T15:57:55Z</dc:date>
    </item>
    <item>
      <title>Re: FM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm/m-p/1360138#M178929</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Saquib Khan ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for Quick response.Points are given.&lt;/P&gt;&lt;P&gt;But i did't get it.Can you elobarate it?&lt;/P&gt;&lt;P&gt;If i want to run it separately from SE37 t-code what relavant I/P values i can have?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 May 2006 16:02:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm/m-p/1360138#M178929</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-05T16:02:48Z</dc:date>
    </item>
    <item>
      <title>Re: FM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm/m-p/1360139#M178930</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;.get value of input characteristic AST_PC_RAM&lt;/P&gt;&lt;P&gt;  call function 'CUOV_GET_FUNCTION_ARGUMENT'&lt;/P&gt;&lt;P&gt;       exporting&lt;/P&gt;&lt;P&gt;            argument      = 'BN_CHARAC2'&lt;/P&gt;&lt;P&gt;       importing&lt;/P&gt;&lt;P&gt;            sym_val       = charc2_char&lt;/P&gt;&lt;P&gt;       tables&lt;/P&gt;&lt;P&gt;            query         = query&lt;/P&gt;&lt;P&gt;       exceptions&lt;/P&gt;&lt;P&gt;            arg_not_found = 01.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  if sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;    raise internal_error.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;..add result to the table of output characteristics&lt;/P&gt;&lt;P&gt;  call function 'CUOV_SET_FUNCTION_ARGUMENT'&lt;/P&gt;&lt;P&gt;       exporting&lt;/P&gt;&lt;P&gt;            argument                = 'BN_ID'&lt;/P&gt;&lt;P&gt;            vtype                   = 'CHAR'&lt;/P&gt;&lt;P&gt;            sym_val                 = id_char&lt;/P&gt;&lt;P&gt;       tables&lt;/P&gt;&lt;P&gt;            match                   = match&lt;/P&gt;&lt;P&gt;       exceptions&lt;/P&gt;&lt;P&gt;            existing_value_replaced = 0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this&amp;#146;ll give you idea!!&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;P.S award the points.!!! DOn`t forget :)!!!!&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;Good luck &lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Saquib Khan&lt;/P&gt;&lt;P&gt;"Knowledge comes but wisdom lingers!!"&lt;/P&gt;&lt;P&gt;"Some are wise and some are otherwise"&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 May 2006 16:09:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm/m-p/1360139#M178930</guid>
      <dc:creator>former_member181966</dc:creator>
      <dc:date>2006-05-05T16:09:05Z</dc:date>
    </item>
    <item>
      <title>Re: FM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm/m-p/1360140#M178931</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 May 2006 16:13:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm/m-p/1360140#M178931</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-05T16:13:40Z</dc:date>
    </item>
    <item>
      <title>Re: FM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm/m-p/1360141#M178932</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Pl..award the points and close the thread!! if problem Solved !!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;SK&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 May 2006 16:22:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm/m-p/1360141#M178932</guid>
      <dc:creator>former_member181966</dc:creator>
      <dc:date>2006-05-05T16:22:47Z</dc:date>
    </item>
    <item>
      <title>Re: FM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm/m-p/1360142#M178933</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;Can u pls tell me what is this 'BN_CHARAC2'&lt;/P&gt;&lt;P&gt;if i give the same as argument while running FM in se37 it is giving error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 May 2006 16:56:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm/m-p/1360142#M178933</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-05T16:56:43Z</dc:date>
    </item>
  </channel>
</rss>

