Skip to main content
February 23, 2015
Answered

call cfc from the another cfc

  • February 23, 2015
  • 1 reply
  • 479 views

Hi,

  I want to be able to get the value of the CodeItem  from the getItem function to use for my second function getOpt.  But not sure how to do it, would you lend me a hand?- Thanks


<cffunction name="getItem" access="remote" returntype="struct">

    <cfargument name="wo" type="string" required="yes">

      <cfsetvarqResult="" />

       <cfsetvarresult = {} />

        <cfqueryname="qResult">

          SELECT * fromsaleorders

         whereprodOrder= <cfqueryparamvalue="#arguments.wo#" cfsqltype="cf_sql_varchar"/>

        </cfquery>

      

         <cfsetresult = {CodeItem="#qResult.Code#",Description=#qResult.Description#} />

    <cfreturnresult>

  </cffunction>

  <cffunctionname ="getOpt">

    <cfsetitemDesc=  getItem() />

  </cffunction>

This topic has been closed for replies.
Correct answer BKBK

  <cffunction name = "getOpt">

    <cfset itemDesc =  getItem() />

    <cfset item = itemDesc['codeItem']>

  </cffunction>

1 reply

BKBK
Community Expert
BKBKCommunity ExpertCorrect answer
Community Expert
March 18, 2015

  <cffunction name = "getOpt">

    <cfset itemDesc =  getItem() />

    <cfset item = itemDesc['codeItem']>

  </cffunction>