Advertisement
Guest User

Untitled

a guest
Jun 27th, 2016
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. <cfloop index="FieldName" list="#fieldNames#">
  2. <cfset field_name = #FieldName#>
  3. <cfset firstThreeChars = #Mid(field_name,1,3)#>
  4.  
  5. <cfif firstThreeChars eq "CQI">
  6. <cfset checkQuestionId = #RemoveChars(field_name,1,3)#>
  7.  
  8. <cfset checkRatingId = #Evaluate("#field_name#")#>
  9.  
  10. <cfquery name="InsQuestions" datasource="#variables.dbdsn#" username="#variables.dbuser#" password="#variables.dbpw#">
  11. insert into quality.employee_quality_call_detail
  12. (quality_call_detail_id, check_question_id, check_rating_id, quality_call_id,
  13. last_user, last_update)
  14. values
  15. (quality.seq_emp_quality_call_detail.nextval, '#checkQuestionId#','#checkRatingId#',
  16. '#qualityCallId#', '#currentHRID#',sysdate)
  17. </cfquery>
  18.  
  19. </cfif>
  20. </cfloop>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement