cancel
Showing results for 
Search instead for 
Did you mean: 

Can't Find Variable: Account Balance

0 Kudos

Hello,

I can't find the variable named Account Balance in BO Receivables.

I need to know the name of this variable in the SKD to create a condition.

Please see the attached printscreen, the variable is in the black box.

I'd appreciate if you can help me.

Best Regards,

Pedro

Accepted Solutions (1)

Accepted Solutions (1)

harsh_p9
Active Participant

Dear Pedro,

If you want only Account Balance, (Receivables WoC -> Customer Accounts OWL balance), then there is a Library in PDI that can give you this balance.

FIN_ACCOUNT_BALANCE_CUST – For Customer Accounts Balances

FIN_ACCOUNT_BALANCE_SUP - For Supplier Accounts Balances

We had created this Transformation Definition which can be called from an ABSL script to fetch Account balances.

Let us know in case of any clarification.

Thanks & Regards,

Harsh Patel

Answers (2)

Answers (2)

Former Member

Hi Pedro,

You can Import 'A1S.ReuseFunctions;' and use following Lib functions in your ABSL code

Library::TradeReceivablesPayablesAccount.GetSupplierAccountBalance(respective Parameter need to pass here)

or

Library::TradeReceivablesPayablesAccount.GetCustomerAccountBalance(respective Parameter need to pass here)

I hope this will resolve your problem

'

0 Kudos

Dear Harsh Patel,

Thank you for your answer.

I was looking for the Library that you mentioned but I couldn't find it.

Can you please tell me how can I find it?

Thank you.

Best Regards,

Pedro

HarshalVakil
Active Contributor

Hello Pedro,

You can access transformation definitions in SDK if they are included in the namespace. So please check it further at your side. You can contact your partner coach for any specific details you need further at your side.

Regards,

Harshal

Former Member
0 Kudos

Hi Pedro,

You can Import file 'A1S.ReuseFunctions;' and use following Lib functions in your ABSL code

Library::TradeReceivablesPayablesAccount.GetSupplierAccountBalance(respective Parameter need to pass here)

or

Library::TradeReceivablesPayablesAccount.GetCustomerAccountBalance(respective Parameter need to pass here)

I hope this will resolve your problem

e.g. ABSL Script

----------------------------------------------------------------------------------------------------------------------------------------------

import ABSL;

import A1S.ReuseFunctions;

var SupAccountBalance = Library::TradeReceivablesPayablesAccount.GetSupplierAccountBalance(pass require parameters);

var CustAccountBalance = Library::TradeReceivablesPayablesAccount.GetCustomerAccountBalance(pass require parameters);

--------------------------------------------------------------------------------------------------------------------------------------------------