J 
		
				
			
		João Paulo de Oliveira
Guest
I'm creating a variable in 4gl and it's showing the following error.
	
	
	
		
ERROR 4369: -4369 The symbol variable-name does not represent a defined variable.
something is missing to assign a value to the variable?
Continue reading...
				
			
		Code:
	
	 FUNCTION esp0849_inclui_ped_compl_pedido()
#------------------------------------------#
  DEFINE lr_ped_compl_pedido     RECORD LIKE ped_compl_pedido.*
  LET lr_ped_compl_pedido.empresa_venda    = ""
  LET lr_ped_compl_pedido.des_forma_pagto  = NULL # LINE THAT CONTAINS THE ERROR
	ERROR 4369: -4369 The symbol variable-name does not represent a defined variable.
something is missing to assign a value to the variable?
Continue reading...