merge 2 records to use in Transfer or Set Respondida

Alain Seys

in my sap i want $[OQUT.CntctCode] & $[OQUT.NumAtCard] to be merged as one field.

if i test this with some dummy data this merges well if i replace hello world with $[OQUT.CntctCode] & $[OQUT.NumAtCard]  this gives me an error.

bellow the code used , any idees to solve?

 

Activate(5904); Set($[$67.0.0]|T);

Set($[$68.0.NUMBER]|-1);
SET($[$35.0.NUMBER]|1);
Click($[$123.0.0]);
Click($[$85.0.0]);
//GOOD UNTIL HERE 

//ISSUE HERE 

SET($[$53.0.0]| SQL: SELECT CONCAT('hello','world'));

 

Comentarios

3 comentarios

  • Comment author
    Thomas
    • Editado
    • Comentario oficial

    Hi,

    Please contact your SAP partner to solve the issue, this forum is not intended for technical troubleshooting.

    Best regards,

    Thomas

  • Comment author
    Kenneth Sanderson

    Have you tried the CAST and +  instruction instead?

    This is part of something I used recently to generate a Serial number based on SO and Production order number

    Cast(T0.[DocNum] as nvarchar(10)) + '_' + CAST(T0.[OriginNum] as nvarchar(10)) as 'Serial'

    0
  • Comment author
    Alain Seys

    Hy Kenneth , 

     

    thanks for the help that worked for me :) 

    0

Iniciar sesión para dejar un comentario.