Apptim is one of the top iOS testing tools that allow you to verify the functionality and performance on real devices. Using Apptim, you can get the accurate behavior of the iOS app in the real world. Further, you can use Apptim efficiently because there is no need to make any significant changes to the… Continue reading Apptim
Month: December 2023
Cost of Sales GL adjustments by system
Scenario – The item costing method is FIFO and the system is causing GL changes and the direct cause cannot be pinpointed. In the Item Fulfillment transactions, the system changes the GL impact due to a change in the costs. There are various reasons for the cause of the change. With our current costing engine,… Continue reading Cost of Sales GL adjustments by system
PRODUCT MASTER PLAN
The Product Master Plan is a living, evolving collection of information. It can include plans, documents, and other artifacts relevant to the product’s business. Purpose: The document repository and its archives serve as a plan of record for current and future activities. This collection of plans and information for an institution is called the Master… Continue reading PRODUCT MASTER PLAN
Creating and Customizing Dashboards in Jira
Creating a Dashboard: Log in to Jira: Start by logging in to your Jira account with the necessary administrative permissions. Navigate to the Dashboards: In the top navigation bar, locate and click on the “Dashboards” option. Select “Manage Dashboards” to access the dashboard management page. Create a New Dashboard: On the dashboard management page, click… Continue reading Creating and Customizing Dashboards in Jira
How to move an epic to subtask in jira
In Jira, moving an issue from one issue type to another, such as from an Epic to a Sub-task, typically involves several steps. However, it’s important to note that not all Jira configurations allow direct conversion between all issue types. Below are general steps to move an Epic to a Sub-task: Navigate to the Epic:… Continue reading How to move an epic to subtask in jira
Addresses getting deleted on SO creation
There are situations where NS is deleting an address record from the customer you are checking out with when the customer places an order in SuiteCommerce. It’s a niche issue, but does occasionally come up. It’s the culmination of 3 factors: Custom Address form where phone numbers are not required Addresses without phone numbers Remove… Continue reading Addresses getting deleted on SO creation
Lighting studio setup in Blender
Creating a lighting studio setup in Blender involves setting up lights and adjusting their properties to achieve the desired look for your scene. Here’s a basic guide for creating a simple three-point lighting setup in Blender: Three-Point Lighting Setup: Open Blender: Open Blender and load your scene or create a new one. Switch to Cycles… Continue reading Lighting studio setup in Blender
Blender VS Adobe After Effects
Blender: 3D Modeling and Animation: Blender is a full-fledged 3D modeling and animation software. It allows users to create 3D models, characters, environments, and animations. It has a comprehensive set of tools for modeling, sculpting, rigging, texturing, and animating 3D assets. Rendering and Simulation: Blender includes a built-in rendering engine, Cycles, which produces high-quality renders… Continue reading Blender VS Adobe After Effects
Jira Issue Linking: Connecting Your Tasks
Understanding Issue Linking in Jira: Issue Linking in Jira allows you to create associations between different issues, illustrating dependencies, relationships, or simply providing additional context. By establishing these connections, enhance the traceability of the work and enable the team to navigate the project landscape with greater clarity. How to Link Issues: Navigate to the Issue:… Continue reading Jira Issue Linking: Connecting Your Tasks
How to make An input box as both Search-box and select-box on next.js
Below is the code for making an input box to both the search and select box const CreateArticle = () => { const [tags, setTags] = useState([]); const [searchTerm, setSearchTerm] = useState(”); const [selectedTags, setSelectedTags] = useState([]); const [activeTab, setActiveTab] = useState(“create”); // “create” or “preview” const [newTag, setNewTag] = useState(”); /* Tag section*/ //… Continue reading How to make An input box as both Search-box and select-box on next.js