on ‎2024 Sep 03 8:02 AM
Hi Experts,
I have created a UDO and linked UDT's to it. The example below shows and extract of the lines table:
I have created the following script in PostTransactionNotice to update an external table with changes to the status. Running the query on it's own works perfectly, but it does not trigger in PostTransactionNotice.
Do I need to change something for the PostTransactionNotice to read the Objecttype?
IF @object_TYPE = 'MRMSCC' and @transaction_type = 'U'
BEGIN
Update [MRM_CC].[dbo].[ServiceCallInformation]
set ItemStatus = UF.U_ScStatus
From
(select Code,LineID,U_ScStatus from [SAP_CCR].[dbo].[@_MRMCSCLN]
where U_ScStatus = 'Closed') UF
where Id = UF.LineId
and UF.Code = @List_of_cols_val_tab_del
END
Request clarification before answering.
| User | Count |
|---|---|
| 7 | |
| 6 | |
| 6 | |
| 5 | |
| 4 | |
| 3 | |
| 3 | |
| 3 | |
| 2 | |
| 2 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.