× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



From pgm

Evaluate Expression

Previous debug expressions

EVAL TaxResponse
TAXRESPONSE.TAX.AMOUNT_TO_COLLECT = 00055.00
TAXRESPONSE.TAX.BREAKDOWN.CITY_TAXABLE_AMOUNT = 00000.00
TAXRESPONSE.TAX.BREAKDOWN.CITY_TAX_RATE = 00000.00
TAXRESPONSE.TAX.BREAKDOWN.CITY_TAX_COLLECTABLE = 00000.00
TAXRESPONSE.TAX.BREAKDOWN.COMBINED_TAX_RATE = 000.0550
TAXRESPONSE.TAX.BREAKDOWN.COUNTY_TAX_COLLECTABLE = 00005.00
TAXRESPONSE.TAX.BREAKDOWN.COUNTY_TAX_RATE = 000.0050
TAXRESPONSE.TAX.BREAKDOWN.COUNTY_TAXABLE_AMOUNT = 00000.00
TAXRESPONSE.TAX.BREAKDOWN.CNT_LINE_ITEMS = 0
TAXRESPONSE.TAX.BREAKDOWN.LINE_ITEMS.CITY_AMOUNT(1) = 00000.00
TAXRESPONSE.TAX.BREAKDOWN.LINE_ITEMS.CITY_TAX_RATE(1) = 000.0000
TAXRESPONSE.TAX.BREAKDOWN.LINE_ITEMS.CITY_TAXABLE_AMOUNT(1) = 00000.00
TAXRESPONSE.TAX.BREAKDOWN.LINE_ITEMS.COMBINED_TAX_RATE(1) = 000.0000
More...

-----Original Message-----
From: RPG400-L <rpg400-l-bounces@xxxxxxxxxxxxxxxxxx> On Behalf Of (WalzCraft) Jerry Forss
Sent: Thursday, September 14, 2023 11:51 AM
To: RPG programming on IBM i <rpg400-l@xxxxxxxxxxxxxxxxxx>
Subject: RE: External DATA-INTO not matching variable

Missing error message


Additional Message Information

Message ID . . . . . . : RNX0356
Date sent . . . . . . : 09/14/23 Time sent . . . . . . : 11:31:22

Message . . . . : The document for the DATA-INTO operation does not match
the RPG variable; reason code 8.

Cause . . . . . : While parsing a document for the DATA-INTO operation, the
parser found that the document does not correspond to RPG variable
"taxresponse" and the options do not allow for this. The reason code is 8.
The exact subfield for which the error was detected is
"taxresponse.tax.breakdown.county_taxable_amount". The options are "doc=file
case=any countprefix=cnt_ allowmissing=yes allowextra=yes". The document
name is /IAccess/TaxJar/559920_9_TaxJar_Resp.json; *N indicates that the
document is not an external file. The parser is 'YAJLINTO'. *N indicates
that the parser is a procedure pointer.
Recovery . . . : Contact the person responsible for program maintenance to
More...
Press Enter to continue.

-----Original Message-----
From: RPG400-L <rpg400-l-bounces@xxxxxxxxxxxxxxxxxx> On Behalf Of (WalzCraft) Jerry Forss
Sent: Thursday, September 14, 2023 11:48 AM
To: RPG programming on IBM i <rpg400-l@xxxxxxxxxxxxxxxxxx>
Subject: External DATA-INTO not matching variable

CAUTION: This email originated from outside of the organization. Do not click links or open attachments unless you recognize the sender and know the content is safe.

Hi All

I am starting to build call to TaxJar for verifying taxes but getting a mapping error on the county_taxable_amount and not seeing the issue.
It loads everything up to that field.

What am I doing wrong?

Json return doc

{
"tax": {
"amount_to_collect": 55.0,
"breakdown": {
"city_tax_collectable": 0.0,
"city_tax_rate": 0.0,
"city_taxable_amount": 0.0,
"combined_tax_rate": 0.055,
"county_tax_collectable": 5.0,
"county_tax_rate": 0.005,
"county_taxable_amount": 1000.0,
"line_items": [
{
"city_amount": 0.0,
"city_tax_rate": 0.0,
"city_taxable_amount": 0.0,
"combined_tax_rate": 0.055,
"county_amount": 5.0,
"county_tax_rate": 0.005,
"county_taxable_amount": 1000.0,
"id": "1",
"special_district_amount": 0.0,
"special_district_taxable_amount": 0.0,
"special_tax_rate": 0.0,
"state_amount": 50.0,
"state_sales_tax_rate": 0.05,
"state_taxable_amount": 1000.0,
"tax_collectable": 55.0,
"taxable_amount": 1000.0
}
],

Data Structure

// Tax Response From API Call
Dcl-ds TaxResponse Qualified;

Dcl-ds tax;

amount_to_collect Packed(7 : 2);

Dcl-ds breakdown;

city_taxable_amount Packed(7 : 2);
city_tax_rate Packed(7 : 2);
city_tax_collectable Packed(7 : 2);
combined_tax_rate Packed(7 : 4);
county_tax_collectable Packed(7 : 2);
county_tax_rate Packed(7 : 4);
county_taxable_amount Packed(7 : 2);

cnt_line_items Int(5);
Dcl-ds line_items Dim(25);
city_amount Packed(7 : 2);
city_tax_rate Packed(7 : 4);
city_taxable_amount Packed(7 : 2);
combined_tax_rate Packed(7 : 4);
county_amount Packed(7 : 2);
county_tax_rate Packed(7 : 4);
county_taxable_amount Packed(7 : 2);
id Char(1);
special_district_amount Packed(7 : 2);
special_tax_rate Packed(7 : 4);
special_district_taxable_amount Packed(7 : 2);
state_amount Packed(7 : 2);
state_sales_tax_rate Packed(7 : 4);
state_taxable_amount Packed(7 : 2);
tax_collectable Packed(7 : 2);
taxable_amount Packed(7 : 2);
End-Ds;

Error

[cid:image001.png@01D9E701.4ADAD820]





Subject to Change Notice:

WalzCraft reserves the right to improve designs, and to change specifications without notice.

Confidentiality Notice:

This message and any attachments may contain confidential and privileged information that is protected by law. The information contained herein is transmitted for the sole use of the intended recipient(s) and should "only" pertain to "WalzCraft" company matters. If you are not the intended recipient or designated agent of the recipient of such information, you are hereby notified that any use, dissemination, copying or retention of this email or the information contained herein is strictly prohibited and may subject you to penalties under federal and/or state law. If you received this email in error, please notify the sender immediately and permanently delete this email. Thank You

WalzCraft PO Box 1748 La Crosse, WI, 54602-1748 www.walzcraft.com<http://www.walzcraft.com> Phone: 1-800-237-1326
--
This is the RPG programming on IBM i (RPG400-L) mailing list To post a message email: RPG400-L@xxxxxxxxxxxxxxxxxx To subscribe, unsubscribe, or change list options,
visit: https://lists.midrange.com/mailman/listinfo/rpg400-l
or email: RPG400-L-request@xxxxxxxxxxxxxxxxxx
Before posting, please take a moment to review the archives at https://archive.midrange.com/rpg400-l.

Please contact support@xxxxxxxxxxxxxxxxxxxx for any subscription related questions.




Subject to Change Notice:

WalzCraft reserves the right to improve designs, and to change specifications without notice.

Confidentiality Notice:

This message and any attachments may contain confidential and privileged information that is protected by law. The information contained herein is transmitted for the sole use of the intended recipient(s) and should "only" pertain to "WalzCraft" company matters. If you are not the intended recipient or designated agent of the recipient of such information, you are hereby notified that any use, dissemination, copying or retention of this email or the information contained herein is strictly prohibited and may subject you to penalties under federal and/or state law. If you received this email in error, please notify the sender immediately and permanently delete this email. Thank You

WalzCraft PO Box 1748 La Crosse, WI, 54602-1748 www.walzcraft.com<http://www.walzcraft.com> Phone: 1-800-237-1326
--
This is the RPG programming on IBM i (RPG400-L) mailing list To post a message email: RPG400-L@xxxxxxxxxxxxxxxxxx To subscribe, unsubscribe, or change list options,
visit: https://lists.midrange.com/mailman/listinfo/rpg400-l
or email: RPG400-L-request@xxxxxxxxxxxxxxxxxx
Before posting, please take a moment to review the archives at https://archive.midrange.com/rpg400-l.

Please contact support@xxxxxxxxxxxxxxxxxxxx for any subscription related questions.




Subject to Change Notice:

WalzCraft reserves the right to improve designs, and to change specifications without notice.

Confidentiality Notice:

This message and any attachments may contain confidential and privileged information that is protected by law. The information contained herein is transmitted for the sole use of the intended recipient(s) and should "only" pertain to "WalzCraft" company matters. If you are not the intended recipient or designated agent of the recipient of such information, you are hereby notified that any use, dissemination, copying or retention of this email or the information contained herein is strictly prohibited and may subject you to penalties under federal and/or state law. If you received this email in error, please notify the sender immediately and permanently delete this email. Thank You

WalzCraft PO Box 1748 La Crosse, WI, 54602-1748
www.walzcraft.com<http://www.walzcraft.com> Phone: 1-800-237-1326

As an Amazon Associate we earn from qualifying purchases.

This thread ...

Replies:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.