Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
 
					
				
		
 sibrulotte
		
			sibrulotte
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Hi,
I thought this would be straight foreward:
IF $(POS_vs_TRANS) = 'POS' THEN
Addon:
replace LOAD * INLINE [
Addon
1
2
3
];
ELSE
TRACE $(POS_vs_TRANS);
end if
;
I'm tracing in the else just to check if my variable has the correct value, and it does... but I never load that table...
 maxgro
		
			maxgro
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		 maxgro
		
			maxgro
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		try
IF '$(POS_vs_TRANS)' = 'POS' THEN
....
ELSE
....
ENDIF;
 sunny_talwar
		
			sunny_talwar
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		I am guessing (because you have Replace next to LOAD) that you are doing a partial reload to load this table because Replace LOAD won't be reloaded during a regular reload.
 
					
				
		
 svenkita
		
			svenkita
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		IF  '$(POS_vs_TRANS)' = 'POS' THEN 
 Addon:
 replace LOAD * INLINE [
 Addon
 1
 2
 3
 ];
 ELSE
 TRACE $(POS_vs_TRANS);
 end if;
 
