Find who is demanding..........
Find who is demanding..........
(OP)
There is attribute which needs to know who is asking it to evaluate. I'll try to explain with example.
:attri-A (if (test-1) ;; if test-1 is calling give "COMP"
"COMP"
(if (test-2);; if test-1 is calling give "ASSY"
"ASSY"
nil))
:test-1 (the :attri-A)
:test-2 (the :attri-A)
While evaluating :attri-A, finding who is calling it is important and I don't know how to code it.
Thanks,
Jerom
:attri-A (if (test-1) ;; if test-1 is calling give "COMP"
"COMP"
(if (test-2);; if test-1 is calling give "ASSY"
"ASSY"
nil))
:test-1 (the :attri-A)
:test-2 (the :attri-A)
While evaluating :attri-A, finding who is calling it is important and I don't know how to code it.
Thanks,
Jerom