Difference between Force_error & Force_abort?
Answers were Sorted based on User's Feedback
Answer / keerthika
force_error can be written by the developer to exit by throwing an user specified error.
Eg : if (age<18) force_error("Age not suitable for Voting")
in above case the graph fails with Exit 3 along with error message in error log file saying - Age not suitable for Voting
Whereas , force_abort just fails the graph without any message even this with return code exit 3 for failure
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / raju mortale
force_error() function it will not abort graph execution it will send error msg to error port if condition is true.
ex- if(in.gender=="Female") force_error("Gender is Female.!")
but in case of
force_abort() function it will abort graph execution with error msg, if condition is true.
ex- if(in.gender=="Female") force_abort("Gender is Female.!")
| Is This Answer Correct ? | 1 Yes | 1 No |
We know rollup component in abinitio is used to summarize group of data record then why do we use aggregation?
I have a DML in my local system the location is E:/u/home/khaleel/dml how to convert this path to $DML?
Define ramp limit in ab initio?
what is the difference between usersandbox,privatesandbox,publicsandbox,commonproject sandbox?
Explain what is the architecture of abinitio?
How to Create Surrogate Key using Ab Initio?
Suppose we assign you a new project. What would be your initial point and the key steps that you follow?
How will you check the latest versions in EME?
How would you find out whether a sql query is using the indices you expect?
How to create repository in abinitio for stand alone system(local nt)?
What kind of layouts does abinitio support?
How to convert a single column values 1 2 3 4 to single row of 4 columns ? And vice-versa