IBM WCS Interview Questions and Answers

IBM WCS Interview Questions and Answers

Last updated on 16th Oct 2020, Blog, Interview Question

About author

Ramanan (Sr Manager - Director Level )

He is Possessing 11+ Years Of Experience in IBM. His Passion lies in Developing Entrepreneurs & Activities. Also, Rendered his intelligence to the Enthusiastic JOB Seekers.

(5.0) | 15462 Ratings 3164

These IBM WCS  Interview questions have been designed specially to get you acquainted with the nature of questions you may encounter during your interview for the subject of IBM WCS  . As per my experience good interviewers hardly plan to ask any particular question during your interview, normally questions start with some basic concept of the subject and later they continue based on further discussion and what you answer.we are going to cover top 100 IBM WCS   Interview questions along with their detailed answers. We will be covering IBM WCS   scenario based interview questions, IBM WCS   interview questions for freshers as well asIBM WCS  interview questions and answers for experienced.

1. What is the difference between the controller command and task command?

Ans:

Generally controller command is the main command which we used to call from the JSP to process the request, But task command is used to perform some specific task like for inventory check, price check, these are handled through task commands, so task commands are commands which perform specific tasks for controller command. DIFFERENCE – By the above statement we can visualize that the Controller command is required to be configured in the struts file, but the task command is not required to be configured in struts, rest everything is the same in both.

2. What is ObjectNotFoundException and FinderException ?

Ans:

ObjectNotFoundException is the subclass of FinderException, So when the AccessBean finder method  return empty row, we get ObjectNotFoundException, but as generally we throw FinderException in EJB, so ObjectNotFoundException is catched in FinderException and thrown.

3.What is the reload interval? where do we configure the reload interval?

Ans:

WC_eardir\Stores.war\WEB-INF\ibm-web-ext.xml — change reload-interval

reload interval is generally used at the time when we are doing caching. if we make the reload-interval to 10 then  the jsp  compilation interval will be 10 sec.

4.Explain the access control policy?What is the purpose of access control policy?

Ans:

There are two types of access control, both of which are policy-based: 

  • Command-level access control determines whether the user is allowed to execute the particular command within the store you have specified. 
  • Resource-level access control policy could be applied to determine if the user can access the resource in question. 
  • Access control in a WebSphere Commerce application is composed of the following elements: users, actions, resources, and relationships.
  • Users are the people that use the system. For access control purposes, users must be grouped into relevant access groups. 
  • Actions are the activities that users can perform on the resource. For access control purposes, actions must also be grouped into relevant action groups. For example, a common action used in a store is a view. A view is invoked to display a store page to customers. The views used in your store must be declared as actions and assigned to an action group before they can be accessed. 
  • Resources are the entities that are protected. For example, if the action is a view, the resource to be protected is the command that invoked the view, for example com.ibm.commerce.command.ViewCommand. 
  • Relationships are the relationship between the user and the resource. Access control policies may require that a relationship between the user and the resource be satisfied. For example, users may only be allowed to display the orders that they have created.

5.Explain the Dynacache?

Ans:

The bright solution for this is DynaCache system which is provided by IBM Websphere Application server.DynaCache is to be configured to catch some objects and later based on some matching rules Dyna cache retrieve those objects from the cache.Caching rules are specified in Cachespec.xml file.

6.What the EJB transaction parameters?

Ans:

Possible values for TRANS ATTRIBUTE are:

  • NotSupported: Beam cannot be involved in a transaction. If the client has started a transaction, the existing transaction is suspended until the bean’s method has completed.
  • Required: Bean must always run within a transaction
  • Supports: If the client has started a transaction, the bean joins the transaction.
  • RequiresNew: Bean always starts a new transaction.
  • Mandatory: The client must start a transaction when the bean is invoked.
  • Never: If the client has started a transaction, the bean throws an exception. 

7.which are different types of entity beans in which one is used in commerce?

Ans:

There are 2 types of entity beans available namely

  • BMP-Bean Managed Persistence
  • CMP -Container Managed Persistence
  • CMP is used in commerce to interact with the database in commerce.

8.Which are the different types of databeAns: What is commonly used in commerce.When do we use it?

Ans:

A data bean is a Java bean that is used within a JSP page to provide dynamic content. A data bean normally provides a simple representation of a WebSphere Commerce entity bean.

There are two types of data beans: smart data beans and command data beAns:

  • A smart data bean uses a lazy fetch method to retrieve its own data. This type of data bean can provide better performance in situations where not all data from the access bean is required, since it retrieves data only as required. Smart data beans that require access to the database should extend from the access bean for the corresponding entity bean and implement thecom.ibm.commerce.SmartDataBean interface. When database access is not required, the smart data bean should extend the SmartDataBeanImpl class.
  • A command data bean relies on a command to retrieve its data and is a more lightweight data bean. The command retrieves all attributes for the data bean at once, regardless of whether the JSP page requires them. As a result, for JSP pages that use only a selection of attributes from the data bean, a command data bean may be costly in terms of performance time. Command data beans can also extend from their corresponding access beans and implement thecom.ibm.commerce.CommandDataBean interface.
  • SmartDataBean is commonly used in wcs.We use command data bean only when using Command data bean is impractical.

9.which are the different flavours of EJB in wcs ?

Ans:

Different flavours of EJB available in WCS are Session Bean and Entity Bean.

10.What are acessbeans? 

Ans:

WebSphere Commerce commands interact with access beans rather than directly with entity beAns: Access beans provide a simpler interface to clients, caching of the home object, and reduced call traffic to the enterprise bean.Access beans behave like Java beans, and hide all enterprise bean-specific programming interfaces from the client, like the JNDI, home and remote interfaces.

11. What is the advantage of access beans?

Ans:

Advantage of access bean:

  • At run time the access bean caches the enterprise bean home object because lookups to the home object are expensive, in terms of time and resource usage.
  • The access bean implements a copyHelper object that reduces the number of calls to the enterprise bean when commands get and set enterprise bean attributes. 
  • Only a single call to the enterprise bean is required when reading or writing multiple enterprise bean attributes. 

12.State one diff between 6.0 and 7.0 commerce version?

Ans:

Social Commerce Support,Coshoping provision, rich look and feel,starter stores optimized for mobile devices.

13.what is optimistic locking?

Ans:

  • WebSphere Commerce uses an optimistic locking scheme that allows the database transaction isolation level to be lowered from repeatable read to read committed. Using that scheme, database rows not normally accessed concurrently are not locked with an intent to update when they are read. Instead, when the update is eventually made, the row is checked to make sure it has not been updated concurrently since it was read.
  • If it has been updated concurrently, then the transaction is rolled back and the command may be restarted from the beginning in a new transaction, if appropriate. In this scheme, performance is improved when concurrent updates do not normally occur, because the relatively expensive process of obtaining the database locks with intent to update is avoided. On the other hand, for those operations where concurrent updates are more likely to occur, pessimistic locking, whereby intent to update locks are obtained when the row is read, continues to be used, thus avoiding the more expensive process of rolling back and re-starting from the beginning in a new transaction.
Subscribe For Free Demo

Error: Contact form not found.

14.Which are the different subsystems in commerce?

Ans:

There are mainly 6 subsystems available in WCS namely:

  • Catalog 
  • Member 
  • Order 
  • Marketing 
  • Merchandising 
  • Trading.

15.What is the use of commitCopyHelper() and refreshCopyHelper()?

Ans:

  • commitCopyHelper(): Instead of using the remote interface, CopyHelper Access Beans exist that contain getters and setters for CMP fields that do not exist on the remote interface. The methods within the CopyHelper Access Beans write data to a hash table that in turn updates the database when commitCopyHelper() is called. The hash table can record multiple database changes then update the database in one transaction, unlike the remote methods which require one tran saction per change.
  • RefreshCopyHelper(): which does the reverse function of commitCopyHelper(). The method refreshCopyHelper() writes to the hash table from the database.

16.What does map.mapxmi file contain?

Ans:

Mappings from EJB bean attribute definitions to database table schema column definitions .

17.List the different business models of wcs ?

Ans:

The different business models of wcs are:

  • B2C 
  • B2B 
  • Demand chain 
  • Supply chain 
  • Value chain 
  • Extended sites.

18.Which are different types of Exceptions used in commerce?

Ans:

  • ECApplicationException
  • ECSystemException

19. What is ECApplicationException?

Ans:

This exception is thrown if the error is related to user input and will always fail. For example, when a user enters an invalid parameter, an ECApplicationException is thrown. When this exception is thrown, the solution controller does not retry the command, even if it is specified as a retriable command.

20.  What is ECSystemException?

Ans:

This exception is thrown if a runtime exception or a WebSphere Commerce configuration error is detected. Examples of this type of exception include create exceptions, remote exceptions, and other EJB exceptions. When this type of exception is thrown, the solution controller retries the command if the command is retriable and the exception was caused by either a database deadlock or database rollback.   

21.Which exception is retriable?

Ans:

ECSystemException

22.How can we make a command retriable?

Ans:

A retriable command is a controller command that can re-execute itself after encountering a system-level exception during the command execution.

  • To make an existing controller command retriable, must perform one of the following steps:
  • Set the retriable properties in the PROPERTIES column of the CMDREG database table, where PROPERTIES is the default properties associated with this command.
  • The properties are in the property1=value1 property 2=value2 form, where property is the name of the property and value is the value corresponding to the property.
  • Set an instance property <CommandRegistryRetriableProperty defaultValue=”1″ /> in the wc-server.xml file.

23.Difference between master catalog and sales catalog?

Ans:

  • There are two types of catalogs in a WebSphere Commerce system: master and sales. While a master catalog is the central location to manage all your store’s merchandise and services, a sales catalog is a subset of the merchandise and services found in the master catalog.
  •  Every store in the WebSphere Commerce system must have a master catalog. Only one master catalog can exist at a time, and multiple stores can share a master catalog. However, you can create one or more sales catalogs for customer display purposes. A sales catalog has a flexible display structure that allows you to associate products to more than one category, to suit the requirements of your store. 

24.Explain the SKU,part number?

Ans:

Every product has a unique identification number when it is manufactured i.e.,PartNumber.SKU is a store keeping unit which is a number when a product  is orderable.

25.Which tool is used for catalog management ?

Ans:

Product Management Tool.

26.what is the difference between product and item?

Ans:

  • Products: A product acts as template for a group of items(or SKUs) that exhibits the same attributes.
  • Items: An item is a tangible unit of merchandise that has a specific name, part number and price.

27.What is an attribute dictionary?

Ans:

An attribute dictionary is a set of common attributes and attribute values that can be reused by multiple products. The attribute management tool in Management Center provides business users the ability to create,update, assign, and manage product attributes.

28.Difference between Static Kit and Packages?

Ans:

  • Packages: A package is an atomic collection of catalog entries. It is that all the items in a package can be sold together but individual selling of items in a package is not allowed.
  • Static Kits: A static kit is a group of products that are ordered as a unit.A static kit will back order if any of its components are unavailable.A static kit is first created as a package then configured by an administrator.

29.What is calculation usage?

Ans:

Calculation usage consists of types of taxes that can be attached to an order item.By default we have 7 types of taxes like shipping, discount, shipping tax, etc.All those can be found in the CALUSAGE database table.

30.Different types of Charges?

Ans:

There are 7 types of charges, those are:

  • discount
  • shipping
  • sales tax
  • shipping tax
  • coupon
  • surcharge
  • shipping adjustment

31. What is the purchase condition and reward in promotions ?

Ans:

Purchase condition is the condition that must be fulfilled before a promotion is applied and Reward is the benefit that is passed to the customer.

For Example – If promotion is “Buy 2 quantity of  X,  Get Y Free ” , Purchase condition is inclusion of 2 ty of X in Cart. Reward in this case would be 1 ty of Y.

32.What is calcode?

Ans:

While attachment is defined outside of a calculation code, the following properties are defined as part of a calculation code:

  • A calculation usage. This specifies the calculation type for which a calculation code can be used. Calculation usages are covered in Calculation usages.
  • Calculation methods that are used to qualify, calculate, and apply the calculation code.
  • A flag indicating if a calculation code must be qualified or not
  • A flag indicating if the calculation code is active, inactive, or marked for deletion.
  • The method of grouping order items for calculations.
  • A sequence number that is used to determine the order of calculations when multiple calculation codes of the same calculation usage apply to an order item.
  • A time range during which the calculation code is in effect.
  • These properties are defined in the CALCODE database table. 

33.What are calmethods?

Ans:

Calculation methods use the information that is part of calculation usages, calculation codes, and calculation scales to determine monetary amounts for order items. Calculation methods are categorized by the task that they perform within the calculation framework and the part of the calculation framework to which the calculation method belongs.

Course Curriculum

Best IBM WebSphere Commerce Server Training from Real-Time Experts

  • Instructor-led Sessions
  • Real-life Case Studies
  • Assignments
Explore Curriculum

34.When taxes are calculated?

Ans:

Taxes are calculated when we proceed to checkout.

35.How many ways can calcodes be attached?

Ans:

Three ways calcode can be attached.

  • Direct attachment: Here, we can attach a calcode to order or orderitem directly
  • Indirect attachment: Here, we attach a calcode to catalog or catalog group. Hence, every item in a particular catalog or catalog group is indirectly attached to a calcode that is attached to that catalog or catalog group.
  • Default attachment: Here, we implicitly attach a calcode specifying a calcode to an orderitem in STENCILING table.

36.How many types of inventory exist?

Ans:

There are 4 types of inventory exists in wcs namely:

  • ATP Non ATP External Inventory No Inventory.

37.What are the different types of order capture?

Ans:

WebSphere Commerce supports several mechanisms for submitting orders. A customer or Customer Service Representative can submit an order using any of the following methods:

  • Requisition lists 
  • Wish lists 
  • Shopping carts 
  • Scheduled orders are recurring orders 
  • quick orders 
  • Copied orders 
  • Sales quotes.

38.How to know whether an inventory is allocated for the order or not?

Ans:

By checking into OrderItems table InventoryStatus column.If that column has a value as allc then an inventory is allocated for the order.

39. What are the subsystems you deal in your project?

Ans:

  • Marketing Subsystem: The Marketing subsystem provides numerous marketing concepts to your site, designed to increase brand awareness, and to attract and retain customers. Components of the marketing subsystem provide functionality to create marketing campaigns, including customer segments and advertising; and e-mail activities.
  • Catalog Subsystem: The catalog subsystem provides online catalog navigation, partitioning, categorization, and associations. In addition, the catalog subsystem includes support for personalized interest lists and custom catalog display pages. The catalog subsystem contains all logic and data relevant to an online catalog, including catalog groups (or categories), catalog entries, and any associations or relationships among them.
  • Member Subsystem: A member can be a user, a group of users (also known as a member group), or an organizational entity (which can be an organization, such as “IBM” or an organizational unit within an organization, such as “Electronic Commerce Division”). Business logic in the Member subsystem provides member registration and profile management services. Other services which are closely related to the Member subsystem include access control, authentication, and session management.
  • Registration information: Registration data for users and organizational entities can be configured to be stored in the WebSphere Commerce database or the directory server. Member group’s data can be stored only in the WebSphere Commerce database. For authentication purposes, a registered user has a unique identifier and a password. If the WebSphere Commerce database is used as registry, the unique identifier is the logon ID. If the directory server is used, the unique identifier can be a distinguished name or a relative distinguished name.
  • Profile management: A Site Administrator manages user and organizational entity profiles and data, including the organizations or organizational units, roles, users, and member groups within a site. In addition, a Buyer Administrator and Seller Administrator can manage users and organizational entities.
  • Access control and authorization: Access control determines what tasks users can perform on specific resources. An access group is a group of members defined specifically for access control purposes. A Site Administrator creates, maintains, and deletes access groups for a site. A Buyer Administrator or a Seller Administrator can also manage access groups for access control policies. Access groups usually group users based on their roles, organizations, and registration status.
  • Security, authentication, and session management: A user can be authenticated against a WebSphere Commerce database or a directory server. WebSphere Commerce supports two challenge types: logon ID and password, and X.509 client certificate. When a logon ID and password is used, a user is authenticated against the WebSphere Commerce database or a directory server. When the X.509 client certificate is used, the Web server performs the authentication. WebSphere Commerce supports two types of session management: cookie-based and URL rewriting.
  • Trading Subsystem: The trading subsystem in WebSphere Commerce provides the logic, function and data relevant for negotiating the price and quantity of a product or set of products between the buyer and seller organization. The trading subsystem includes auctions, contracts, and Request for quote (RF) components that are used to carry out specific transactions between organizations.
  • Order Management Subsystem: The Order Management subsystem provides shopping carts, order capture, order fulfillment, inventory, and payment function support.

Order management is broadly divided into:

  • Order capture: Order capture provides functionality such as sales quotes and shopping carts and order submission. There are a number of ways to create shop carts and submit orders, as described in the order mechanisms section.
  • Order processing: Order processing is responsible for the overall coordination of inventory allocation, payment processing, releasing the order to fulfillment and tracking order status.
  • Inventory processing: WebSphere Commerce supports two inventory systems: Available to promise (ATP) and non-ATP. The interface to inventory is encapsulated by a single inventory task command, which in turn invokes either ATP or non-ATP task commands.
  • Payment processing: WebSphere Commerce Payments supports the use of payment plug-ins for offline or online payment processing.

40. Explain Order Management subsystem flow?                                                                             

Ans:

The Order Management subsystem includes all logic and data relevant to placing, processing, and managing orders. The Order Management subsystem also deals with returns.                                                               

  • OrderCreate: The order will be created even though there are no orderitems in the cart.
  • OrderItemAdd: When the customer selects the item and clicks on the add to cart, then the OrderItemAddCmd will be called. The order state will be pending (P).
  • OrderItemUpdate: This command will be called when the quantity of the item is updated in the shopping cart page. The order state will be pending (P).
  • OrderCalculate: This command will be called when the customer adds the orderitems in the cart. The order state will be pending (P).
  • OrderItemMove: This command merges the current pending order to the previous order when the customer places the order by signing on to the store.
  • OrderPrepare: It basically calculates, determines the discount, prices, shipping charges and taxes for the order.
  • OrderProfileUpdate: This command will be called to update the billing and shipping address and ship mode of the customer.
  • OrderProcess: Submits the order.

Here, the order can be blocked for several reasons.

  • This may be due to manual verification of the customer.
  • The order payment has not been captured completely. If the full payment has been captured then the state of the order is complete (C) i.e. payment authorization is complete. When the partial payment has been captured the order state will be (M) i.e. part of the amount has been approved.
  • OrderScheduled: The order is released, if the order is unblocked and fulfills all the requirements. This cmd is invoked by the scheduler. The order state will be released (R). When the order is released, a message will be sent to the LSP for shipment. Once the order gets shipped, the state of the order will be shipped (s) and after that shipment confirmation mail will be sent to the ecommerce. After this the state of the order will be deposited (D).
  • OrderCancel: The order can be cancelled through Customer Sales Representatives, before the order is released to Fulfillment. OrderCancel can cancel orders with an order status of P, X, W, E, A, B, C, M and OrderItem not in R, S, F, and G. Here the order state will be cancelled (X).
  •  OrderEdit: This will be called, when the CSR is working with the order. The editor id will be assigned to the order. The order state will be CSR Edit (E). The order can be edited before releasing the order.

41. Can you explain about Access Control Policies?

Ans:

Access control policies is the utility provided by WebSphere Commerce, to allow access to the authorized group of users to perform a set of actions on the resources present in the application. There are four main concepts in the ACP.

  • Access: Allowing access to group of authorized users to which policy applies
  • Actions: Actions performed by users on the resources.
  • Resources:  Resources may include business objects (i.e. set of commands, etc)
  • Relationship: Each user can have a relationship associated with it. (For e.g. a policy can apply the creator of an order can modify it and it is between the order and the user.)

The basic XML elements of the access control policy files are

  • <Action>: The new action will be loaded on ACACTION table.
  • <ActionGroup>: It is a group of related actions and the action groups are stored in the ACTGRP table. Actions are associated with action groups in the ACTGRP table.
  • <Attribute>: Attribute is defined in ACATTR table.
  • <ResourceCategory>:  Resource Category is defined in ACRES GRY table.
  • <ResourceGroup>: It is a set of resources and defined in the ACRES GRP table.
  • <Relation>: Each resource can have a set of relationships associated with it and it is stored in A RELATION table.
  • <RelationGroup>: Relation groups are defined in ACRES GRP.
  • <Policy>: Policies are defined in ACPOLICY.
  • <PolicyGroup>: Policy groups are defined in APOLLOGRP.

42. What is the Syntax of access control policy?

Ans:

acpload database_name db_username db_pwd WC_Installdir/xml/policies/acp_file_name.xml

43. What is acugload?

Ans:

The acugload is the utility to load the user access group in the appropriate database. This utility will load the <UserGroup> element in the MBR GROUPS table.

44. What is acpnlsload?

Ans:

The acpnlsload utility loads the XML files containing the display names and descriptions, into the appropriate databases. To insert or update display names and descriptions for the various policy related elements run the acpnlsload script.

 This script loads the following elements:

  • <Action_nls>, <Attribute_nls>, <ActionGroup_nls>, <ResourceCategory_nls>, <ResourceGroup_nls>, <Relation_nls>, <Policy_nls>, <PolicyGroup_nls>

45. What is acp extract?

Ans:

The acp extract utility extracts the access control policy and access group information in the database and generates files that capture the information in XML format. It uses an input filter XML file to specify the data to extract from the database.

46. Suppose one user login into our site. He selected some items and he has given the order. After two months, how can you check the status of the Order?

Ans:

  •  The status of the order can be checked from the ORDERS table.
  •  Select STATUS from ORDERS where ORDERS_ID=XXXXXXX;

47. I want to collect user email id’s whose email id ends with @and particular company name.com. Then how can you give a SL query to the Database in WCS?

Ans:

The email id of the user can be found from the ADDRESS table.  The ADDRESS_ID is the foreign key in the ORDERS table.

  • So for the particular user, first take the order no and fetch the ADDRESS_ID from the ORDERS table.
  • Use that ADDRESS_ID to get the email id for the user. Here there can be multiple addresses like permanent address (P) and the temporary address (T) for the same user. So, fetch the address with the STATUS as P.
  • Select EMAIL1 from ADDRESS where STATUS=’P’ and ADDRESS_ID in (select ADDRESS_ID from ORDERS where ORDERS_ID = XXXXXXX);
  • If you want to search for an email ID directly, run the below query.
  • Select * from ADDRESS where EMAIL1 like ‘%@abc.com’ OR ‘EMAIL2 like ‘%@abc.com
  • Where EMAIL1 stands for primary email address.
  • EMAIL2 stands for secondary email address.

48. I want to know the particular member _id. Then tell me the relation between MEMBER tables with ORDER tables?

Ans:

The MEMBER_ID is the primary in the MEMBER table and the foreign key in the ORDERS table.

49. What kind of tables did you use?

Ans:

In the Order management Flow following tables are used.

  • ORDERS, XORDERS, ORDERITEMS, ORDERITEMS, OICOMPLIST, XOICOMPLIST, RMA, XRMA, RMAITEM, XRMAITEM, RMAITEMCMP, XRMAITEMCMP, ORDADJUST, ORDIADJUST, CATENTRY, CATENTREL

In the Member Subsystem, following tables are used.

  • USERS, MEMBER, USERREG, USERSDEMO, USERPROF, ADDRESS, ADDRESSBOOK

50. What are JSP programming best practices?

Ans:

Below are the JSP programming best practices:-

  • Use JSTL in place of Java Code.
  • Use commerce specific bean (<wcbase:useBean>) in place of standard bean (<jsp:useBean>) activation.
  • Use commerce specific maps to access request parameters i.e. WCParam & WCParamValues.
  • Use StoreErrorDataBean data bean for error handling. This can be used to display specific error messages in the jsp.
  • Use .jsp extension for the JSP segments. The parent jsp should be with .jsp extension and the included jsp should be with .jsp extension.
  • Use escapeXml attribute to preserve the HTML formatting. By default the value of the escapeXml will be true. When this value is true then the html special characters will be converted to standard entity codes.
  • Use the POST method instead of GET.

51. How Promotions are created and stored in WCS ?

Ans:

Promotions are created either using Management Center or Accelerator. PX_PROMOTION table is used to store Promotions. Complete Promotion is stored as an XML string within the XML PARAM column. Other tables which are used to store promotion related information are –

  • CATENTCALCD
  • CALCODE
  • CLCD PROMO

52. What is the difference between Controller and Task Command?

Ans:

  • Controller Command is the command that gets called upon a request, just like We have actions in struts and controller in Spring. Task is a step in this bigger process. Task commands are the commands that perform specific tasks for a controller command, like service classes in other frameworks. In order to complete the request, a controller command may invoke multiple task commands.
  • Other differences are : 1. There is a url mapping for controller command whereas Task command don’t have URL mapped to them.Controller command gets invoked before the task command.

53. Can We See Objects Cached In Dynacache?

Ans:

We can see , monitor and can even change dynacache manually but for that we need to install a seperate application provided by WCS.

Course Curriculum

Get In-Depth IBM WebSphere Commerce Server Certification Course

Weekday / Weekend BatchesSee Batch Details

54. Explain SHIPMODE, SHIP INFO, SHIPMODE DSC, SHOP MODCLOTH, SHPARRANGE, and SHPJCRRULe?

Ans:

 SHIPMODE – Each row of this table represents the shipmode for the store entity.

  • SHIPMODE_ID, STOREENT_ID, CODE, CARRIER and MARKFORDELETE (0 by default)
  • SHP ARRANGE- Each row of this table represents a ShippingArrangement, indicating that a FulfillmentCenter can ship products on behalf of a Store using a ShippingMode.
  • SHPARRANGE_ID, STORE_ID, FFMCENTER_ID, SHIPMODE_ID.
  • SHIPMODE DSC-Each row contains the language dependent description of the ship mode.

55. What do we understand by Optimistic Locking?

Ans:

Optimistic Locking is an approach where rows in the database are not normally accessed simultaneously and not locked with an intention to update. When the update is ultimately made, the row is checked to ensure that it has not been updated simultaneously. If it has been updated.

56.What does Order Prepare Command do?         

Ans:

  • update order item validation
  • update order item prices
  • update order item total
  • update auto added order items
  • check order inventory
  • determine prices
  • discounts
  • shipping charges
  • shipping adjustment taxes
  • Lock the order
  • ensure all orderitems are buyable.

57. What Is The Role Of Helper Classes In Wcs?

Ans:

Helper class is a utility class that can be used without prior coding and it reduces code redundancy.

58.Explain Order Management flow in WCS?

Ans:

 Following is the flow in WCS

  • OrderCreate: Creation of the order, even if there are no items available in the cart.
  • OrderItemAdd: Adding an item into the cart after the customer selects it.
  • OrderItemUpdate: Updated in the shopping cart page, after the customer replaces the item. Order state will exhibit pending
  • OrderCalculate: Calculate the total items added in the cart.
  • OrderItemMove: Merges the current pending order to the previous order.
  • OrderPrepare: Calculates discounts, shipping charges and taxes for execution of the order.
  • OrderProfileUpdate: Update in the billing & shipping address and mode of delivery to the customer.
  • OrderProcess: Final execution of the order.                                          

59.Differentiate between Product & Item?

Ans:

Merchandise that can be sold is known as item whereas such saleable items grouped is known as Product, which shares certain characteristics. For example – Cell phones are a product whereas iPhone 7 is an item. Merchandises are always attached to a Stock keeping unit or items. The product has no relevance regarding quantity or stock.

60.What Is A Fulfillment Center ?

Ans:

Fulfillment center or Delivery Center is the store or warehouse from where the actual delivery of merchandise takes place.

61. Explain the table ATTRIBUTE ?

Ans:

attribute table includes all the attribute information of the catentry_id. The primary key is attribute_id. Catentry_id may have many atrribute_id. E.g of attribute is color, fm radio, internet browser, bluetooth, video recorder, etc. Attribute specifies all features that are available for catentry_id. The attrtype table consists of attribute type information. Attrtype_id can be string, float, integer, datetime, freefrom, bigint, & attachment. The attrvalue table consists of the stringvalue and the floatvalue. Description of attribute_id is specific to the store language_id.

62. Explain EMSPOT precisely?

Ans:

Marketing spots that are generated in the application stores them in table emspot. This table contains emspot_id, name, store_id, usage type & description.

63. What Steps Are Needed To Create A New Promotion Type?

Ans:

Create necessary lzx files( template , object definition and properties ), make config entries and then Build open Laszlo project ( for LOBTools ) so that new promotion type should be displayed in the management center.                                                       

64. Define Business policy categories provided by WCS?

Ans:

  • Catalog business policies: Catalog business policies define the scope and characteristics of the catalog of products for sale in a store including prices and the categorization of products in a store’s catalog.
  • Payment business policies: Invoicing, payment, and refund business policies define how a store accepts payments, pays refunds, and the format of a store’s invoices.
  • Returns business policies: Returns business policies define if refunds are accepted, the time period they are accepted for, and any restocking fees applied to returns.
  • Shipping business policies: Shipping business policies define the shipping providers a store can use and the charges associated with each type.

65.What are different types of promotions?

Ans:

There are three types of promotions.

  • Order Promotions
  • Product Promotions
  • Shipping Promotions

66. What are different types of calculation usages used in WCS?

Ans:

WebSphere Commerce performs all calculations for one calculation usage at a time. The order of calculation usages is stored in the SEQUENCE column of the STENCILING database table. The entries in this table are initially populated with information from the language-independent bootstrap file: wcs-bootstrap.xml.

67. On what table promotion codes are stored?

Ans:

The promotions that are created through the accelerator are stored in the PX_PROMOTION table.

68. How do you call a task command from a controller command? 

Ans:

Task commands are invoked from controller commands to perform the set of business operations.

69. What is the SYNTAX to call a task command from a controller command?

Ans:

  • OrderCalculateCmd cmd(OrderCalculateCmd)CommandFactory.createCommand(OrderCalculateCmd. class.getName(), getStoreId()))
  • cmd.setCommandContext (getCommandContext ());
  • cmd.setRequestProperty (requestProperties);
  • cmd.execute ();

70. What are controller commands used in Member Subsystems?

Ans:

UserRegistrationAddCmd for adding the user. This will insert the data of the user in USERS, USERREG, USERPROF, USERDEMO and ADDRESS table.

71. For creating a Controller Command, do we register Controller Command into the CMDREG table? 

Ans:

It is not necessary to enter data in the CMDREG table, but an entry should be made in the struts-config.xml.The controller command can be registered in the CMDREG table by xml and SL uery.

72. Can you list out some of the Controller Commands for giving the promotions to products, which you have used? 

Ans:

Our custom command GOSPPromotionCodeAddRemoveCmdImpl inherits the out of box command PromotionCodeAddRemoveControllerCmdImpl to apply promotion in the shopping cart page.

73. Can you list out the tag libraries in WCS?

Ans:

Core tags, sl tags, xml tags and fmt tags.

Data Warehouse Sample Resumes! Download & Edit, Get Noticed by Top Employers! Download

74. What is Dyna caching?

Ans:

Caching improves response time and reduces system load to improve the performance of world-wide web applications.

75. What is the difference between WCParam and param implicit objects?

Ans:

WCParam is a Websphere Commerce specific implicit object. This allows to access and decrypt the HTTP request.Param is a standard JSP implicit object, but it does not guarantee to decrypt the HTTP request.

76. What are the different ways of Cache Invalidation?

Ans:

  • Invalidating the cache using timeout: This can be done by adding <timeout>10</timeout> inside of the <cache-id> element. The timeout value will be in seconds. If the default value is 0, then the cache will not expire.
  • Using Command invalidation: Command based invalidation means invalidation rules are executed upon the execution of the command that extends CacheableCommandImpl WebSphere Command framework.
  • The invalidation id’s are constructed based on the fields and methods provided by command.
  • Invalidating cache using dyna cache API and CACHEIVL table: WebSphere provides DynaCacheInvalidation command which is called by scheduler to process the record in CACHEIVL table.
  • Invalidating cache using dependency trees: Using dependency id’s the cache can be invalidated.

77. What is CommandContext ?

Ans:

CommandContext is the interface in WebSphere Commerce, which contains session and user information and set in the Controller command before the execute method is called.

78. What is the use of the fmt tag?

Ans:

fmt tag is used to display the message in locale language.

79. Why is JSTLEnvironmentSetup.jspf included in jsp ?

Ans:

This file retrieves and prepares the JSP page path, file path and resource bundle path which are used by other JSP’s. The EnvironmentSetup.jsp includes most commonly used attributes such as storeDir, jspDir, includeDir, bundleDir, etc.

80. Do you know about .sar files? What’s the use of it?

Ans:

Yes Store archive file (.sar) is the zip file that contains all necessary assets to create a store or site.

81. What are the business models in WCS?

Ans:

Business model provides a sample commerce solution which includes organization structure, default roles and access control policies, one or more starter stores, administrator tools and business processes that demonstrate best practices.

82. What is the difference between DataBean and AccessBean?

Ans:

  • DataBean class implements SmartDataBean uses a lazy fetch method. Uses appropriate AccessBean for database access. It is used in JSP.
  • AccessBean is a light-weight simple Java Bean and it is called in the Command, to fetch all the data at once. AccessBean extends AbstractEntityAccessBean.
  • InputDataBean retrieves data from the URL or view command attributes.

83. What are the types of Data Bean?

Ans:

Data Bean is Java Bean that is used in JSP to populate dynamic data.

There are three types of Data Bean,

  • Smart Data Bean
  •  Command Data Bean
  • Input Data Bean 

84. What is Command Data Bean?

Ans:

 Command data bean relies on the command and it is more lightweight. The command data bean fetches all the data at once, regardless of whether the JSP requires them or not. 

85. What is a master catalog?

Ans:

Master Catalog is a centralized location to manage stores. Everything that is required for the store is present in the master catalog. It is a single catalog that contains products, items, relationships and prices that is required for sale in the store.

86. What is a fulfillment center? Can a store have multiple fulfillment centers?

Ans:

Fulfillment centers are used by stores as warehouses for shipping and receiving centers. One store can have multiple fulfillment centers associated with it. Inventory count is maintained separately for each fulfillment center. Fulfillment includes picking, packing and shipping. Picking is the selection of products from one or more releases from a fulfillment center, packing is the putting the products in the shipping container and shipping is sending them to customers.

87. Which method is invoked in the data bean for calling an access bean?

Ans:

In the populate () method we can write the code to call the access bean.

88. Explain something about the scheduler?

Ans:

A WebSphere Commerce scheduler is a background server that schedules and launches the jobs both at the site level and the store level.The scheduler polls the SCHACTIVE table to find the jobs scheduled to run.

89. Difference between Optimistic locking and pessimistic locking?

Ans:

  • Optimistic locking improves the performance of application by reducing the isolation level of the database transactions. If two or more transactions are performing the update operation of the same row, the lock on the row will be acquired by one transaction and the remaining transaction will be rolled back.
  • Pessimistic locking protects the integrity of the database by locking the database assets over the entire duration of the transaction. But this will affect performance of the application that is running multiple transactions at a time and becomes deadlock.

90. What is a Prebuilt Kit?

Ans:

 A prebuilt kit is a collection of catalog entries that cannot be sold separately. A prebuilt kit has its own price and cannot be changed once it is added to the shopping cart. Inventory of prebuilt kits is independent of its component parts.

91. What is the purpose of Bootstrap files?

Ans:

Bootstrap files are XML files which WebSphere Commerce uses during instance creation to populate database tables with information after the schema has been created. Once the data has been loaded, you can see the preloaded information in the table. These files are used to retrieve information about the specific data, such as calculation codes and pricing policies.

92. Explain about EMSPOT?

Ans:

All the Marketing spots that are created in the application will have records in the EMSPOT table.EMSPOT table consists of EMSPOT_ID, STORE_ID, NAME, DESCRIPTION and USAGE TYPE.

93. Explain about ADDRESS and ADDRBOOK?

Ans:

ADDRBOOK table contains the address owned by the member. ADDRESS_ID is the primary key.ADDRESS table consists of Member own address, friend address etc.  ADDRESS_ID is the primary key; ADDRESSTYPE can be Shipping S, Billing B or Shipping and Billing SB.

94.What is SKU?

Ans:

  SKU is Stock keeping unit. Items are referred to as SKU as they are the narrowest identifier for which business needs to track quantity.         

95. What Is Attr Type Table Used For ?

Ans:

It is used for storing data type of attribute values. Valid values: INTEGER, STRING, FLOAT, DATETIME, FREEFORM or BIGINT.

96. What is the purchase condition and reward in promotions ?

Ans:

Purchase condition is the condition that must be fulfilled before a promotion is applied and Reward is the benefit that is passed to the customer.For Example – If promotion is “Buy 2 uantity of  X,  Get Y Free” , Purchase condition is inclusion of 2 ty of X in Cart. Reward in this case would be 1 ty of Y.

97. What is the difference between Product and Item ?

Ans:

Item is a sale-able merchandise whereas Product is a group of sale-able merchandise which share certain attributes. For example – Cell phones are a product whereas Samsung Galaxy S2 – White is an item.

quantity is always attached to SKU ( Stock keeping unit ) or items. Product quantity has no relevance in terms of identifying the current stock or reorder condition. 

Are you looking training with Right Jobs?

Contact Us

Popular Courses