I have created a IVR application in which customers can call in and access their account information.
I am using the ECC ver 4.35. Right now it is working perfectly. The customer calls in, enteres their account number and zip. I store those values in a cp field, make sure they match a record line in the Oracle table and if they do, I give them their account balance, next payment due and payment due date. These SQLExecute actions are all SELECT statements.
I would like to populate another table so we have record of what the automated system told the customer and also use this table to analize who is using our automated system. I have created an Insert statement that I cannot seem to make work. I am sure it is a syntax issue.. Anyone have any suggestions? This is what I have in there now..
insert into PWD_IVR_CALLED
select * from PWD_IVR
WHERE PWD_IVR.acctno = '%acctnum%';
I am trying to say, populate table PWD_IVR_CALLED from PWD_IVR with the complete row of information for account number that is stored in the CP Filed %acctnum%
Thanks...
I am using the ECC ver 4.35. Right now it is working perfectly. The customer calls in, enteres their account number and zip. I store those values in a cp field, make sure they match a record line in the Oracle table and if they do, I give them their account balance, next payment due and payment due date. These SQLExecute actions are all SELECT statements.
I would like to populate another table so we have record of what the automated system told the customer and also use this table to analize who is using our automated system. I have created an Insert statement that I cannot seem to make work. I am sure it is a syntax issue.. Anyone have any suggestions? This is what I have in there now..
insert into PWD_IVR_CALLED
select * from PWD_IVR
WHERE PWD_IVR.acctno = '%acctnum%';
I am trying to say, populate table PWD_IVR_CALLED from PWD_IVR with the complete row of information for account number that is stored in the CP Filed %acctnum%
Thanks...

Comment