1# Sheet Error Codes 2 3> **NOTE** 4> 5> This topic describes only module-specific error codes. For details about universal error codes, see [Universal Error Codes](../errorcode-universal.md). 6 7## 120001 Incorrect bindSheetContent 8 9**Error Message** 10 11The bindSheetContent is incorrect. 12 13**Description** 14 15This error code is reported when the provided **bindSheetContent** is incorrect. 16 17**Possible Causes** 18 19The configuration for **bindSheetContent** is incorrect. 20 21**Solution** 22 23Verify the **bindSheetContent** configuration. 24 25## 120002 Modal for bindSheetContent Already Exists 26 27**Error Message** 28 29The bindSheetContent already exists. 30 31**Description** 32 33This error code is reported when an attempt is made to open a modal that is already displayed. 34 35**Possible Causes** 36 37The modal corresponding to the provided **bindSheetContent** is already displayed. 38 39**Solution** 40 41Verify the **bindSheetContent** configuration. 42 43## 120003 No Matching Modal Found 44 45**Error Message** 46 47The bindSheetContent cannot be found. 48 49**Description** 50 51This error code is reported when an API is called to close or update the modal that is not currently open. 52 53**Possible Causes** 54 55The modal corresponding to the provided **bindSheetContent** is not currently displayed. 56 57**Solution** 58 59Verify the **bindSheetContent** configuration. 60 61## 120004 Specified targetId Does Not Exist 62 63**Error Message** 64 65The targetId does not exist. 66 67**Description** 68 69This error code is reported when no node could be found based on **targetId**. 70 71**Possible Causes** 72 73The **targetId** is invalid, or the corresponding node has been destroyed. 74 75**Solution** 76 771. Make sure the value of **targetId** is not a negative number. 782. Verify that the node corresponding to the **targetId** is valid. 79 80## 120005 Node Specified by targetId Is Not in the Component Tree 81 82**Error Message** 83 84The node of targetId is not in the component tree. 85 86**Description** 87 88This error code is reported when the node corresponding to the specified **targetId** is not in the component tree during an attempt to use the modal in EMBEDDED mode. 89 90**Possible Causes** 91 92The node corresponding to the specified **targetId** is not yet part of the component tree. 93 94**Solution** 95 96Wait for the node corresponding to the **targetId** to be attached to the component tree before calling the API again; or consider setting the modal to OVERLAY mode. 97 98## 120006 Node Specified by targetId Is Not a Child of a Page Node or NavDestination Node 99 100**Error Message** 101 102The node of targetId is not a child of the page node or NavDestination node. 103 104**Description** 105 106This error code is reported when the node corresponding to the specified **targetId** is not a child of a page node or **NavDestination** node during an attempt to use the modal in EMBEDDED mode. 107 108**Possible Causes** 109 110The **targetId** does not correspond to a node that is a child of a page or **NavDestination** node. 111 112**Solution** 113 114Select a different **targetId** that is a child of a page or **NavDestination** node; or use the OVERLAY mode for the modal. 115