Tracking details not updating via eBay's API
By : farwardin
Date : March 29 2020, 07:55 AM
I wish this help you The issue was the provider of the API was having intermittant issuses.
|
PayPal Error #10007 permission denied in DoExpressCheckoutPayment
By : Joseph R.
Date : March 29 2020, 07:55 AM
hop of those help? This is most likely a Business Product Category; meaning it does not MATCH what is being sold. Go to paypal.com and login Click on profile/settings Selling Tools Business Information / update Edit Category & Subcategory - have to match or come close to what is being sold Give a description of site Save Then email aup@paypal.com and let them know you have update your business category and are requesting approval for the dating site. That's it.
|
Acumatica - Adding Multiple Tracking Numbers in Field
By : Samartean Marian
Date : March 29 2020, 07:55 AM
Does that help You need to loop on your records (PXSelect) in a foreach. You then need to add each string value to your tracknumber field. Something like this should work... code :
SOFreightDetailExt invoiceExt = row.GetExtension<SOFreightDetailExt>();
if(invoiceExt == null)
return;
foreach(SOPackageDetail track in PXSelect<SOPackageDetail, Where<SOPackageDetail.shipmentNbr, Equal<Required<SOFreightDetail.shipmentNbr>>>>.Select(Base, row.ShipmentNbr))
{
invoiceExt.TrackNumber = $"{invoiceExt.TrackNumber}, {track.TrackNumber}";
}
|
SemanticException [Error 10007]: Ambiguous column reference _c1
By : Antônio Marcos Bonif
Date : March 29 2020, 07:55 AM
Hope that helps Non-aliased function calls within a SELECT are mapped to column names _c1, _c2, etc. In this case you have a single non-aliased function call per SELECT, so they all create a column _c1. The issue is that because you are doing a SELECT * from the next sub-query down and then appending another function call that maps to _c1 then you have the same column named twice, and hence an error around an ambiguous column reference.
|
Tracking parameters into eBay
By : umut kına
Date : March 29 2020, 07:55 AM
|