How to get the table id?

I want to catch the id to select some information (table is Mi_Issue_Todolist). But I can't get the real id Here is my script, please help me to resolve the problem, thank you~ Innovator inn = this.getInnovator(); string ContextId = this.getID(); Item itemQ = inn.newItem("MI_ISSUE_TODOLIST","get"); itemQ.setAttribute("select","classification"); itemQ.setProperty("id", ContextId) or Innovator inn = this.getInnovator(); Item itemQ = inn.newItem("MI_ISSUE_TODOLIST","get"); itemQ.setAttribute("select","classification"); itemQ.setProperty("id", itemQ.getAttribute("id"));   If I put the id to the scipt, and then it's ok to run: Innovator inn = this.getInnovator(); Item itemQ = inn.newItem("MI_ISSUE_TODOLIST","get"); itemQ.setAttribute("select","classification"); itemQ.setProperty("id", "34A134682BB249BC8AA64BED628AAAAA");
Parents Reply Children
No Data