How to Show Invoices, Items and Quantity in Saved Search for Credit Memos

1. Navigate to Reports > Saved Searches > All Saved Searches > New 2. Select Transactions 3. On the Criteria tab > Standard Sub tab: Add the fields —Type = is Credit Memo—Created From: Type = is Invoice—COGS Line = false—Tax Line = false—Shipping Line = false—Main Line = false 4. On the Results tab > Columns sub tab :  Click on Remove All button and then Add the… Continue reading How to Show Invoices, Items and Quantity in Saved Search for Credit Memos

Access to Custom Records from the Vendor Center

Note : Vendor Center roles by default cannot be customized to be given access to Custom Record Types. Create a custom tab:1. Navigate to Lists > Website > Tabs > New.2. Click New Presentation Tab.2. Enter Name.3. Unmark the Display In Website checkbox.4. Audience tab > Roles > Select Vendor Center.5. Click Save. Create a custom record:1. Navigate to Customization > Lists, Records, & Fields > Record Types > New.2. Enter Name.3. In the Access Type field select Use Permissions List.4. In the Permissions tab > Add Vendor Center with Edit Level.5. Click Save.6.… Continue reading Access to Custom Records from the Vendor Center

css tips

To change this, style the placeholder with the non-standard ::placeholder selector.  Example .product-views-option-text-input::placeholder { font-family: ‘Poppins’; color: #000000; } To avoid the issue when clicking a blue hover in mobile an ipad devices.add these style for that coresponding class. -webkit-tap-highlight-color: transparent;outline: none;-ms-touch-action: manipulation;touch-action: manipulation;For example.footer-head {color: #000;font-size: 20px;font-weight: 600;font-family: ‘Poppins’;text-transform: capitalize;-webkit-tap-highlight-color: transparent;outline: none;-ms-touch-action: manipulation;touch-action: manipulation; }

FIXED ASSET MANAGEMENT – DEPRECIATION METHODS

❖ A depreciation method must be assigned to each asset so that NetSuite can accurately calculate the depreciation.❖ Common depreciation methods are automatically configured. But we can also create custom methods.❖ When we create assets manually, we can select the specific depreciation method. However, if assets are generated, then the depreciation is automatically pulled from… Continue reading FIXED ASSET MANAGEMENT – DEPRECIATION METHODS

CSS Error Hides First div Element on Product Details Page

Step 1. Override the Item.Details.View.js File To override the Item.Details.View.js file, located in the ItemDetails module, create a directory in which to store your custom modules. For example, Modules/extensions. Open this directory and create a subdirectory to maintain your customizations. Give this directory a name similar to the module being customized. For example, create Modules/extensions/ItemDetailsExtension@1.0.0 In your new ItemDetailsExtension@1.0.0 directory,… Continue reading CSS Error Hides First div Element on Product Details Page