I'm using Android Pay with Stripe as the payment processor. Everything works ok when delivery address is not required (am able to make end to end payment)....however when I set setShippingAddressRequired() (when creating MaskedWalletRequest), Android Pay is not allowing selection of non-US delivery address. If I click "Add Delivery Address" it shows list of my (non-US) addresses but they're greyed out with "Not supported here" text shown underneath.
ok, turned out I needed to call addAllowedCountrySpecificationsForShipping() when creating MaskedWalletRequest....passing following for example
ArrayList<CountrySpecification> allowedCountriesForShipping = new ArrayList<>();
allowedCountriesForShipping.add(new CountrySpecification("US"));
allowedCountriesForShipping.add(new CountrySpecification("IE"));
allowedCountriesForShipping.add(new CountrySpecification("DE"));
Related
Recently, I registered with Testrigor and am using its Free version. We need to test dynamic web applications in testrigor, then we write scripts for the same. I am getting the following error in one field (location/address). Please check attached screenshot. Please help me resolve the problem.
Can't find button element by descriptor 'dojoValidateValid_focus TextBox_TwoCells_width TextBox_focus" style='
enter image description here
Name,Class Referanced are used for error field
After verifying the test steps, we checked that the input "1st Line" is being clicked, so instead of enter "Parekh Integrated services Pvt Ltd," into "1st line"
After that the click, you can use:
enter "Parekh Integrated services Pvt Ltd,"
or
type "Parekh Integrated services Pvt Ltd,"
I am developing a capsule and want to test if it works as desired with Named Dispatch.
However, I am unable to trigger the default action in Simulator or as a private capsule on my device.
Instead of the default-action, another action (that does have Training entries) is invoked.
The problem seems to be, that before testing, the capsule has to be set. Therefore, named dispatch is circumvented.
How can Named Dispatch (as described here https://bixbydevelopers.com/dev/docs/reference/type/capsule-info.dispatch-name#how-named-dispatch-works) be tested without publishing to the marketplace?
Current configuration
default-action (MyDefaultAction) is set appropriately in capsule.bxb.
There are no Training entries for the default-action.
I am using the commands from this list: https://bixbydevelopers.com/dev/docs/reference/ref-topics/meta-commands.de-de
You can use one of the seven reserve utterance to test in IDE simulator:
"speak to %dispatch-name%"
"talk to %dispatch-name%”
"start %dispatch-name%"
"load %dispatch-name%"
"ask %dispatch-name%"
"talk with %dispatch-name%”
"use %dispatch-name%"
Remember that it is only valid for en-US target.
You can check out Github example and more details in this KB article.
Business requirement is to add a simple action that when an order goes into a Backorder status, a user can click actions > send backorder notification.
I tried to accomplish this via Automation Steps.
Modify existing screen/step
Sales Order enter screen
SO Backorder step
Added action
Name Send Backorder Report
Flow on success do notification
The result was that no option appeared in the menu. I also tried various other steps. At one point the menu option appeared and worked, but then 5 minutes later disappeared
I also tried to do a report instead of an action and set field #reportID and so on as the technical tuesday article describes.
In all cases I am unable to make a simple menu option appear in any status on the sales order screen.
Images
https://www.screencast.com/t/6dTYz4VhB0J1
https://www.screencast.com/t/NeDP2SOEN1e
https://www.screencast.com/t/IQvFMF4KQhl
When creating Shipments for SOs with Acumatica, it is coming up with an error related to the 'SO Package Detail':
'Box ID' cannot be found in the system
Does anyone have any insight as to why this would occur? I had previously thought it may be due to the Box IDs not being listed under the Carrier used, but this did not resolve the error when I added these under the Carriers. These Box IDs are present within Acumatica. It is possibly related to the UOM, or another variable tied to the Box IDs?
You need to add the Box Id's to the packages tab for the Ship Via Codes in Acumatica.
Log into Acumatica, Navigate to Distribution, then click on Shipments.
Click the Configuration tab and select Ship Via Codes.
Select the Ship Via you are using, and click on the packages tab for the Ship Via.
Add the Box ID's you wish to use with this Ship Via
Save the Ship Via Code record
Sounds like one or more of your Stock Items has an invalid Box ID. Review all the Stock Items on the Sales Order(s) you are attempting to ship and verify they all have valid Box ID's.
I need to add a checkbox to the refund dialog. In particular, the CS agent needs to be able to determine whether funds are returned to the user via our payment gateway or whether they're stored against the customer account as a credit.
U can extend ReturnReauestCareteWidgetRenderer in your own cockpit extension and you can add the below code for adding an extra check box.
Checkbox backOrderedInput = createSearchCheckboxField(widget, row7, "ourpaymentgtway", checked, null);