Solved

Settling Detail Function in External Template

  • 31 January 2024
  • 3 replies
  • 49 views

Userlevel 3
Badge +8

Hi,

 

I am trying to set a RIGHT TRIM function in an external file template (bank statement), but it doesn’t seem to work when it is set according to the template shown in the LOV. My objective is to pick the first 100 characters of the uploaded field.

I get an unpack error as below

“ExtFileFunctionHandler.VALUEERROR2: Value error on column no TRANSACTION_INFO1 function no 10”

 

 

Any idea how to set this function detail? 

This is on Apps10 Upd13


Thank you

 

Pamith

icon

Best answer by dsj 31 January 2024, 12:09

View original

3 replies

Userlevel 7
Badge +20

Hi @PamithK 

 

RIGHT_TRIM function removes the right-most characters defined in the set

 

If you need to pick the first 100 characters, use SUB_STRING function.

Function arguments:

COLUMN_REF(TRANSACTION_INFO1),1,100

 

Hope it helps!

Damith

 

Badge +1

Hi Pamith

 

Just try as below. I also haven’t tried earlier.

 

Userlevel 3
Badge +8

Hi @PamithK 

 

RIGHT_TRIM function removes the right-most characters defined in the set

 

If you need to pick the first 100 characters, use SUB_STRING function.

Function arguments:

COLUMN_REF(TRANSACTION_INFO1),1,100

 

Hope it helps!

Damith

 

Thank you! this worked!

Reply