Viewing 13 posts - 1 through 13 (of 13 total)
ive been thinking a lot.
Can someone help me out ?
May 19, 2015 at 2:33 pm
There are 5 conditional variables.
Not all apply to all alerts.
conditional variables are:
- @subledger_name
- @cost_centre
- @rate
- @amount
- @JobOrder
Only rate and amount go together all other are independent.
Alert is generated for 1...
May 18, 2015 at 9:18 am
Yes, currently i have nested replaces for all possible variables.
And currently alert messages are defined in procedure.
That's why i want to make alerts dynamic because new alerts are defined on...
May 18, 2015 at 6:23 am
I have attached variables list. User can select any variable from this list
May 18, 2015 at 5:07 am
This is a good example but unfortunately there are many many alerts with different messages. Therefore i have to stick to input string in generic string in alert_types table.
May 18, 2015 at 4:59 am
Thanks for your detailed response.
But let me add some info.
I have a table for alert registration (Alert_types). Then alerts are generated from document table and stored in alert_que table.
The process...
May 18, 2015 at 4:05 am
its a simple insert into statement
insert into Alert_Types
values (1,'document_detail_view','Document ID: @document_id
Customer Name: @customer_name
Item name: @item_name
Quantity: @qty')
before forwarding to webservice i recall the body in a variable
May 18, 2015 at 3:21 am
is there a way so that i can use it against views ?
April 10, 2015 at 6:36 am
Exactly what i was looking for!
Thank you.:-)
April 10, 2015 at 6:05 am
Set @job_order = Rtrim(Ltrim((SELECT job_order FROM #trig)))
i used this statement just for example
consider it can handle multiple values.
i dont want to handle code for inserted and deleted separately.
and i dont...
March 19, 2015 at 8:25 am
job_order is primary key so always single value:
Set @job_order = Rtrim(Ltrim((SELECT job_order FROM #trig)))
March 19, 2015 at 8:01 am
Viewing 13 posts - 1 through 13 (of 13 total)