MPCATULD

This table holds the catalog and inventory upload requests from marketplace sellers.

Column Descriptions:

Name Type Description
MPCATULD_ID BIGINT NOT NULL Generated primary key for upload request
DESCRIPTION VARCHAR(128) Short description of the upload request
UPLOADTYPE VARCHAR(32) NOT NULL The type of the upload request, value could be ProductImport or InventoryImport
CMFWKSPC_ID BIGINT The referenced workspace id
CMFTASKGRP_ID BIGINT The referenced workspace task group id
CMFTASK_ID BIGINT The referenced workspace task id
ORGENTITY_ID BITINT NOT NULL Marketplace seller organization id
USERS_ID BIGINT NOT NULL The identifier of the user who initiated the upload request
STOREENT_ID INTEGER NOT NULL The identifier of the store associated with the upload request
STATUS INTEGER NOT NULL Indicates the status of the Task Group. The possible values are:
  • 0=inactive
  • 1=working
  • 2=ready for approval
  • 3=approved
  • 4=ready to commit
  • 5=complete
  • 6=canceled
  • 7=commit failed
  • 8=commit in progress
  • 9=committed
  • 10=ready to publish
  • 11=publish in progress
  • 12=published
  • 13=publish failed
  • 14=canceled by seller
  • 15=rejected
CREATIONTIME TIMESTAMP NOT NULL The initial creation date and time of the upload request
OPTCOUNTER SMALLINT NOT NULL The optimistic concurrency control counter for the table. Every time there is an update to the table, the counter is incremented.

Indexes:

Name Column Names Type
P_MPCATULD MPCATULD_ID Primary Key
I_MPCATULD_1 UPLOADTYPE Non-Unique Index

Constrained By Parent Tables:

Constraint Columns Parent Table Parent Columns Type
F_MPCATULD_CMFTASKGRP_ID CMFTASKGRP_ID CMFTASKGRP CMFTASKGRP_ID Cascade
F_MPCATULD_CMFTASK_ID CMFTASK_ID CMFTASK CMFTASK_ID Cascade
F_MPCATULD_CMFWKSPC_ID CMFWKSPC_ID CMFWKSPC CMFWKSPC_ID Cascade
F_MPCATULD_ORGENTITY_ID ORGENTITY_ID ORGENTITY ORGENTITY_ID Cascade
F_MPCATULD_STOREENT_ID STOREENT_ID STOREENT STOREENT_ID Cascade
F_MPCATULD_USERS_ID USERS_ID USERS USERS_ID Cascade