cancel
Showing results for 
Search instead for 
Did you mean: 

Multiple primary key - OCRB

Former Member
0 Kudos

Hello,

need your help please,

trying to add code to

SBO_SP_PostTransactionNotice

for table OCRB:

IF @object_type ='187' and @transaction_type IN('A','U')

the problem is that

@list_of_cols_val_tab_del is equal to 4 primary keys, how do i know how to

concatenation the 4 keys togather with spaces between?

select *

from ocrb

where

CardCode +

BankCode+

Country +

Account

=

@list_of_cols_val_tab_del

thank you

Accepted Solutions (0)

Answers (2)

Answers (2)

edy_simon
Active Contributor
0 Kudos

Hi Assaf,

As the name of the parameter implies, the values are all tab delimited.
You can check by concatenating the values with (tab) character.

And also, the fields are in the order of Country, BankCode, Account, CardCode

Regards
Edy

agustin_marcoscividanes
Active Contributor
0 Kudos

Hi

try to use the field Absentry in OCRB table,

Kind regards

Agustín Marcos Cividanes