ToJDEDecimal Parameters

This forum allows users to post and respond to "How Do I Do ....." questions. The information contained in this forum has not been validated by K-Rise Systems and, as such, K-Rise Systems cannot guarantee the accuracy of the information.
Post Reply
tzdanows

ToJDEDecimal Parameters

Unread post by tzdanows »

Inquiry about the Data Conversion Service ToJDEDecimal. I've pretty much switched to using the expression during the query to the database rather than this service but I was curious what the Dictionary parameter here is supposed to be. Its required and during our meeting today, we were all curious about it.

I'm attempting to change RPAG (Amount-Gross, Numeric) to contain decimal points rather than display as an integer.

Image
word count: 71
SteveCap
Posts: 327
Joined: August 26th, 2021, 9:18 am
Contact:

Re: ToJDEDecimal Parameters

Unread post by SteveCap »

Dictionary gets mapped to the FRDTAI column from the F9210 table for the majority of precisions. For currency it is mapped to CVCRCD in the F0013 table
word count: 27
shalomsims
Posts: 38
Joined: March 16th, 2022, 1:04 pm
Contact:

Re: ToJDEDecimal Parameters

Unread post by shalomsims »

Image

Is this what you mean? Or would we need to create another Inquire service for CurrencyCode and Dictionary?
Screenshot 2022-03-29 144257.png
Attachments
Screenshot 2022-03-29 124234.png
word count: 18
SteveCap
Posts: 327
Joined: August 26th, 2021, 9:18 am
Contact:

Re: ToJDEDecimal Parameters

Unread post by SteveCap »

The service is going to run a query like:
SELECT FRCLAS, FRCDEC FROM F9210 WHERE FRDTA = {Dictionary}
If it finds a record and the FRCLAS column = 'currency' it will then run a query like:
SELECT CVCDEC FROM F0013 WHERE CVCRCD = {CurrecnyCode}
word count: 41
mollydunn
Posts: 26
Joined: April 7th, 2022, 4:17 pm
Contact:

Re: ToJDEDecimal Parameters

Unread post by mollydunn »

I'm still a little confused on how to fill out the service itself specifically the Dictionary and Currency code values. Is it necessary to create another inquire service?
word count: 29
JustinVanRegenmorter
Posts: 535
Joined: August 26th, 2021, 9:56 am
Contact:

Re: ToJDEDecimal Parameters

Unread post by JustinVanRegenmorter »

Here is some documentation on how to setup and use this service.
word count: 12
Post Reply