Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Team,
I have created a job which use context variables that are assigned a value during run time from tjavarow component.
The context variables which I have used are TICKET_KEY (String)and TICKET_INCREMENT_KEY(int).
The expressions used in tjavarow for these context variables are:
context.TICKET_KEY=input_row.TICKET_KEY;
context.TICKET_INCREMENT_KEY=Integer.valueOf((context.TICKET_KEY).replaceAll("W",""))+1;
while running the job, I am getting a warning in the output console as
'Null value will be used for context parameter TICKET_INCREMENT_KEY: For input string:"context.TICKET_INCREMENT_KEY"'
even though I am getting the correct output from the job.
Now I want to hide this warning from the output console.
Can you please help to hide warnings? I tried using implicit context load and tcontextload component, but couldnt hide this context warning.