When the file upload functionality is not working in your system then deploy them as a project. To upload multiple files from one account to another account, create a VS code project and add the files that need to be deployed. (The path must be in the correct format) Then connect the target account to… Continue reading Upload files from the VS code to a new account
Month: August 2023
Effective Date pricing SuiteApp -Update Types for Creating Price Update Records
To start using the Effective Date Pricing SuiteApp, you must create a record for each of the update types to which the price change applies. You define the update types by creating price update records. You can create a price update record for the following update types: Item Update Type Item Category Update Type Customer… Continue reading Effective Date pricing SuiteApp -Update Types for Creating Price Update Records
Install and use PrimeFlex CSS utility library in Vue project.
Run the following command in your command line. Add provided code in main.js To use PrimeFlex classes, consider the font size need to be changed. ‘text-xs’ is a PrimeFlex property with font-size: .75rem;
Retrieving the Host Key of an External SFTP Server
An example usage checking the RSA host key of URL: example.com at port: 1234 from a *nix shell follows: You should always pass the key type and port number. This practice helps to avoids ambiguity in the response from the external SFTP server.
Effective Date Pricing SuiteApp
The Effective Date Pricing SuiteApp enables you to set a schedule for specific price changes in advance. You can select the start date and end date when you expect the price changes to take effect. A scheduled script runs in the background to automatically update the item prices on the scheduled period. On the specified… Continue reading Effective Date Pricing SuiteApp
SalesForce NetSuite Integration through Restlet GGBN
Proposal Summary This proposal outlines the extent of the integration process, which involves generating Sales Orders and Credit Memo records. This integration will synchronize the tax code and tax amount at the line item level in NetSuite using the REST API. Requirement Growire requires an integration connecting Salesforce with NetSuite, enabling the generation of Sales… Continue reading SalesForce NetSuite Integration through Restlet GGBN
Prevent secure and not secure item warnings from popping up in my website
To prevent secure and not secure item warnings from popping up in my website we need to use relative URL’s for image in Secure page.For eg: use <IMG SRC=”/images/small_logo.gif”> instead of <IMG SRC=”http://shopping.netsuite.com/images/small_logo.gif”>.
Proposal For APPIN TFS website’s server high performance issue verification and Freight issue fix
Proposal SummaryTo verify the TFS website’s server high performance issue and its fix. Also theverification of freight issue on cart and checkout page and its fix.Requirement• The TFS website’s server high performance issue verifications and its fix.• The verification and fix of freight issue on the cart and checkout page.Deliverables• We are planning to conduct… Continue reading Proposal For APPIN TFS website’s server high performance issue verification and Freight issue fix
NetSuite Cardpointe ACH payment integration
Proposal Summary The proposed solution aims to integrate CardPointe ACH payment gateway with NetSuite using API integration. This integration will allow users to process payments directly within NetSuite, streamlining the payment process. Requirement Wireless Masters would like to do the Payment integration for Cardpointe and NetSuite. They need to accept payment for ACH through NetSuite. … Continue reading NetSuite Cardpointe ACH payment integration
DB schema method in Magento2
DB schema method is used to create tables or columns inside a table. create dbschema.xml inside app/code/vendor/module/etc/ It will create a table named declarative_table. Thank you.