In the face of error: expected collection item not found in payload

Hello

I use persistence for my MAF Application Accelerator.

I have generated the DataControl by specifying the details of service rest via the Wizard "business of the CRG of Rest WebService object.

Using the DataControl I dropped the iterator on my page as an af:listview

When the page opens the service's get called but I am told error

"Collection item 'Job' not found in payload expected.

Please see the attached persistent mapping .xml.

(I've highlighted the specific classmapping descriptor for which I am faced with the question.)

I am also attaching the object of service payload remains below.

I also checked the payloadelementname specified in the classmapping descriptor matches the name of the element in the payload. However, I still get the error.

Please let me know if I'm missing out on anything.

Massari

===================================================================================================================

Persistent map file

<? XML version = "1.0" encoding = "UTF-8"? >

" < mobileObjectPersistence xmlns =" http://www.Oracle.com/Ateam/mobile/persistenceMapping "> "

< classMappingDescriptor className = "teamup.mobile.model.ProjectsResponse" persisted = "true" > ""

< className = "teamup.mobile.model.service.ProjectsResponseService" autoIncrementPrimaryKey = "true" crudServiceClass

localPersistenceManager = "oracle.ateam.sample.mobile.v2.persistence.manager.DBPersistenceManager"

remotePersistenceManager = "oracle.ateam.sample.mobile.v2.persistence.manager.RestJSONPersistenceManager"

remoteReadInBackground = "true" remoteWriteInBackground = "true".

showWebServiceInvocationErrors = 'false' autoQuery = "true" / >

< table name = "PROJECTS_RESPONSE" >

< name primaryKeyColumn = "Project" / >

< /table >

< attributeMappings >

< directMapping attributeName = "projectId" payloadAttributeName = "ProjectId" columnName = "project".

columnDataType = "NUMERIC" required = "true" persisted = "true" = "java.math.BigDecimal" javaType

keyAttribute = "true" / >

< directMapping attributeName = "projectName" payloadAttributeName = "ProjectName" columnName = 'PROJECT_NAME '.

columnDataType = "VARCHAR" required = "false" persisted = "true" = "java.lang.String" javaType

keyAttribute = "false" / >

< directMapping attributeName = "description" payloadAttributeName = "Description" columnName = "DESCRIPTION".

columnDataType = "VARCHAR" required = "false" persisted = "true" = "java.lang.String" javaType

keyAttribute = "false" / >

< directMapping attributeName = "activeFlag' payloadAttributeName = 'ActiveFlag" columnName = "ACTIVE_FLAG."

columnDataType = "VARCHAR" required = "false" persisted = "true" = "java.lang.String" javaType

keyAttribute = "false" / >

< attributeName = "lastUpdatedBy' payloadAttributeName ="LastUpdatedBy"directMapping

columnName = "LAST_UPDATED_BY" columnDataType = "VARCHAR" required = "false" persisted = 'true '.

javaType = "java.lang.String" keyAttribute = "false" / > "

< attributeName = "lastUpdateDate" payloadAttributeName = "LastUpdateDate" directMapping

columnName = "LAST_UPDATE_DATE" columnDataType = "VARCHAR" required = "false" persisted = 'true '.

javaType = "java.lang.String" keyAttribute = "false" / > "

< / attributeMappings >

<>methods

< findAllMethod uri connectionName = "/ projects/getprojects/projects / {username}" = "MyTask" requestType = 'GET '.

warranty = "false" sendDataObjectAsPayload = "false" deleteLocalRows = "true".

payloadElementName = "ProjectsResponse" >

< name headerParameter = "Content-Type" value = "application/json" / >

< name of the parameter = "userId" value = "#{pageFlowScope.userId}" valueProvider = 'ELExpression' "

dataObjectAttribute = 'projectId' pathParam = "true" / >

< / findAllMethod >

< / methods >

< / classMappingDescriptor >

< classMappingDescriptor className = "teamup.mobile.model.TeamMember" persisted = "true" > ""

< className = "teamup.mobile.model.service.TeamMemberService" autoIncrementPrimaryKey = "true" crudServiceClass

localPersistenceManager = "oracle.ateam.sample.mobile.v2.persistence.manager.DBPersistenceManager"

remotePersistenceManager = "oracle.ateam.sample.mobile.v2.persistence.manager.RestJSONPersistenceManager"

remoteReadInBackground = "true" remoteWriteInBackground = "true".

showWebServiceInvocationErrors = 'false' autoQuery = "true" / >

< table name = "TEAM_MEMBER" >

< name primaryKeyColumn = "USER_ID" / >

< /table >

< attributeMappings >

< directMapping attributeName = "userId" payloadAttributeName = "USER_ID" columnName = 'USER_ID '.

columnDataType = "NUMERIC" required = "true" persisted = "true" = "java.math.BigDecimal" javaType

keyAttribute = "true" / >

< directMapping attributeName = "userName" payloadAttributeName = "Username" columnName = 'user_name '.

columnDataType = "VARCHAR" required = "false" persisted = "true" = "java.lang.String" javaType

keyAttribute = "false" / >

< attributeName = "projectTeamMemberId" payloadAttributeName = "PROJECT_TEAM_MEMBER_ID" directMapping

columnName = "PROJECT_TEAM_MEMBER_ID" columnDataType = "NUMERIC" required = "false".

has persisted = "true" javaType = "java.math.BigDecimal" keyAttribute = "false" / > "

< directMapping attributeName = "lastName", payloadAttributeName = "Name" columnName = "name".

columnDataType = "VARCHAR" required = "false" persisted = "true" = "java.lang.String" javaType

keyAttribute = "false" / >

< directMapping attributeName = "firstName" payloadAttributeName = "First name" columnName = "first name".

columnDataType = "VARCHAR" required = "false" persisted = "true" = "java.lang.String" javaType

keyAttribute = "false" / >

< directMapping attributeName = "projectId" payloadAttributeName = "Project" columnName = "project".

columnDataType = "VARCHAR" required = "false" persisted = "true" = "java.lang.String" javaType

keyAttribute = "false" / >

< / attributeMappings >

<>methods

< findAllMethod uri connectionName = "/ user/getteammember/members / {projectId}" = "MyTask" requestType = 'GET '.

warranty = "false" sendDataObjectAsPayload = "false" deleteLocalRows = "true".

payloadElementName = "TeamMember" >

< name headerParameter = "Content-Type" value = "application/json" / >

< name of the parameter = value = "#{pageFlowScope.projectId"projectId"}" valueProvider = 'ELExpression' "

pathParam = "true" / >

< / findAllMethod >

< / methods >

< / classMappingDescriptor >

< className = classMappingDescriptor "teamup.mobile.model.Task ' persisted 'true' orderBy = 'START_DATE' = >" "

< className = "teamup.mobile.model.service.TaskService" autoIncrementPrimaryKey = "true" crudServiceClass

localPersistenceManager = "oracle.ateam.sample.mobile.v2.persistence.manager.DBPersistenceManager"

remotePersistenceManager = "oracle.ateam.sample.mobile.v2.persistence.manager.RestJSONPersistenceManager"

remoteReadInBackground = "true" remoteWriteInBackground = "true".

showWebServiceInvocationErrors = 'false' autoQuery = "true" / >

< table name = "TASK" >

< name primaryKeyColumn = "ACTIVITY_ID" / >

< /table >

< attributeMappings >

< directMapping attributeName = "activityId" payloadAttributeName = "ACTIVITY_ID" columnName = "ACTIVITY_ID.

columnDataType = "NUMERIC" required = "true" persisted = "true" = "java.math.BigDecimal" javaType

keyAttribute = "true" / >

< directMapping attributeName = "projectid" payloadAttributeName = "PROJECTID" columnName = "PROJECTID".

columnDataType = "NUMERIC" required = "false" persisted = "true" = "java.math.BigDecimal" javaType

keyAttribute = "false" / >

< directMapping attributeName = "activityName" payloadAttributeName = "ACTIVITY_NAME" columnName = "ACTIVITY_NAME."

columnDataType = "VARCHAR" required = "false" persisted = "true" = "java.lang.String" javaType

keyAttribute = "false" / >

< directMapping attributeName = "description" payloadAttributeName = "DESCRIPTION" columnName = "DESCRIPTION".

columnDataType = "VARCHAR" required = "false" persisted = "true" = "java.lang.String" javaType

keyAttribute = "false" / >

< attributeName = "parentActivityId" payloadAttributeName = "PARENT_ACTIVITY_ID" directMapping

columnName = "PARENT_ACTIVITY_ID" columnDataType = "VARCHAR" required = "false" persisted = 'true '.

javaType = "java.lang.String" keyAttribute = "false" / > "

< directMapping attributeName = 'status' payloadAttributeName = 'STATUS' columnName = 'STATUS '.

columnDataType = "VARCHAR" required = "false" persisted = "true" = "java.lang.String" javaType

keyAttribute = "false" / >

< directMapping attributeName = "priority" payloadAttributeName = "PRIORITY" columnName = "PRIORITΘ."

columnDataType = "VARCHAR" required = "false" persisted = "true" = "java.lang.String" javaType

keyAttribute = "false" / >

< attributeName = "percentageComplete" payloadAttributeName = "PERCENTAGE_COMPLETE" directMapping

columnName = "PERCENTAGE_COMPLETE" columnDataType = "NUMERIC" required = "false" persisted = 'true '.

javaType = "java.math.BigDecimal" keyAttribute = "false" / > "

< directMapping attributeName = "startDate" payloadAttributeName = "START_DATE" columnName = "START_DATE".

columnDataType = "VARCHAR" required = "false" persisted = "true" = "java.lang.String" javaType

keyAttribute = "false" / >

< directMapping attributeName = "endDate" payloadAttributeName = "End_date" columnName = "end_date".

columnDataType = "VARCHAR" required = "false" persisted = "true" = "java.lang.String" javaType

keyAttribute = "false" / >

< directMapping attributeName = 'eta' payloadAttributeName = 'ETA' columnName = 'ETA' columnDataType = "VARCHAR".

required = "false" persisted = "true" javaType = "java.lang.String" keyAttribute = "false" / > "

< attributeName = "estimatedHours" payloadAttributeName directMapping = "ESTIMATED_HOURS".

columnName = "ESTIMATED_HOURS" columnDataType = "NUMERIC" required = "false" persisted = 'true '.

javaType = "java.math.BigDecimal" keyAttribute = "false" / > "

< attributeName = "actualHours" payloadAttributeName = "ACTUAL_HOURS" columnName directMapping = "ACTUAL_HOURS".

columnDataType = "VARCHAR" required = "false" persisted = "true" = "java.lang.String" javaType

keyAttribute = "false" / >

< directMapping attributeName = "ownerUserId" payloadAttributeName = 'OWNER_USER_ID' columnName = 'OWNER_USER_ID '.

columnDataType = "NUMERIC" required = "false" persisted = "true" = "java.math.BigDecimal" javaType

keyAttribute = "false" / >

< directMapping attributeName = "createdBy" payloadAttributeName = 'CREATED_BY' columnName = 'CREATED_BY '.

columnDataType = "VARCHAR" required = "false" persisted = "true" = "java.lang.String" javaType

keyAttribute = "false" / >

< directMapping attributeName = "creationDate" payloadAttributeName = 'CREATION_DATE' columnName = 'CREATION_DATE '.

columnDataType = "VARCHAR" required = "false" persisted = "true" = "java.lang.String" javaType

keyAttribute = "false" / >

< attributeName = "lastUpdatedBy" payloadAttributeName = "LAST_UPDATED_BY" directMapping

columnName = "LAST_UPDATED_BY" columnDataType = "VARCHAR" required = "false" persisted = 'true '.

javaType = "java.lang.String" keyAttribute = "false" / > "

< attributeName = "lastUpdateDate" payloadAttributeName = "LAST_UPDATE_DATE" directMapping

columnName = "LAST_UPDATE_DATE" columnDataType = "VARCHAR" required = "false" persisted = 'true '.

javaType = "java.lang.String" keyAttribute = "false" / > "

< attributeName = 'comments' payloadAttributeName = 'COMMENTS' columnName directMapping = 'COMMENTS '.

columnDataType = "VARCHAR" required = "false" persisted = "true" = "java.lang.String" javaType

keyAttribute = "false" / >

< attributeName = "discussionCount" payloadAttributeName = "DISCUSSION_COUNT" directMapping

columnName = "DISCUSSION_COUNT" columnDataType = "NUMERIC" required = "false" persisted = 'true '.

javaType = "java.math.BigDecimal" keyAttribute = "false" / > "

< directMapping attributeName = "favoriteFlag" payloadAttributeName = "FAVORITE_FLAG" columnName = "FAVORITE_FLAG."

columnDataType = "VARCHAR" required = "false" persisted = "true" = "java.lang.String" javaType

keyAttribute = "false" / >

< attributeName = "taskAssignment" payloadAttributeName = "TaskAssignment" oneToManyMapping

referenceClassName = "teamup.mobile.model.TaskAssignment" sendAsArrayIfOnlyOneEntry = "true" > "

< foreignKeyColumnReference sourceTable = sourceColumn "TASK_ASSIGNMENT" = "TASK_ACTIVITY_ID."

targetTable = "TASK" targetColumn = "ACTIVITY_ID" / >

< / oneToManyMapping >

< attributeName = "discussion oneToManyMapping."

accessorMethod = "/ projects/getdiscussion/activity/discussion / {username} / {projectId} / {TaskId} / {parentDiscId} '"

referenceClassName = "teamup.mobile.model.Discussion" sendAsArrayIfOnlyOneEntry = "true" > "

< foreignKeyColumnReference sourceTable = "DISCUSSION" sourceColumn = "ACTIVITY_ID" targetTable = "TASK".

targetColumn = "ACTIVITY_ID" / >

< foreignKeyColumnReference sourceTable = "DISCUSSION" sourceColumn = "Project" targetTable = "TASK".

targetColumn = "PROJECTID" / >

< / oneToManyMapping >

< / attributeMappings >

<>methods

< findAllMethod uri = "newgettasks/projects / / projects/activities / {username}" connectionName = "MyTask" "

requestType = 'GET' guaranteed = "false" sendDataObjectAsPayload = "false" deleteLocalRows = "true".

payloadElementName = "Task" >

< name headerParameter = "Content-Type" value = "application/json" / >

< name of the parameter = "userId" value = "#{pageFlowScope.userId}" valueProvider = "ELExpression" pathParam = "true" / > "

< / findAllMethod >

< createMethod uri = "/ projects/postTask/activity" connectionName = "MyTask" requestType = 'POST' guaranteed = "false".

sendDataObjectAsPayload = "true" payloadElementName = "Task" >

< name headerParameter = "Content-Type" value = "application/json" / >

< / createMethod >

< updateMethod uri = "/ projects/putTask/activity" connectionName = "MyTask" requestType = 'PUT' secure = "false".

sendDataObjectAsPayload = "true" payloadElementName = "Task" >

< name headerParameter = "Content-Type" value = "application/json" / >

< / updateMethod >

< / methods >

< / classMappingDescriptor >

< classMappingDescriptor className = "teamup.mobile.model.TaskAssignment" persisted = "true" > ""

< className = crudServiceClass "teamup.mobile.model.service.TaskService" autoIncrementPrimaryKey = "true" / > "

< table name = "TASK_ASSIGNMENT" >

< name primaryKeyColumn = "ASSIGNMENT_ID" / >

< /table >

< attributeMappings >

< directMapping attributeName = "assignmentId" payloadAttributeName = "ASSIGNMENT_ID" columnName = "ASSIGNMENT_ID."

columnDataType = "INTEGER" required = "true" persisted = "true" = "java.lang.Integer" javaType

keyAttribute = "true" / >

< attributeName = "projectTeamMemberId" payloadAttributeName = "PROJECT_TEAM_MEMBER_ID" directMapping

columnName = "PROJECT_TEAM_MEMBER_ID" columnDataType = "NUMERIC" required = "false".

has persisted = "true" javaType = "java.math.BigDecimal" keyAttribute = "false" / > "

< directMapping attributeName = "startDate" payloadAttributeName = "START_DATE" columnName = "START_DATE".

columnDataType = "VARCHAR" required = "false" persisted = "true" = "java.lang.String" javaType

keyAttribute = "false" / >

< directMapping attributeName = "endDate" payloadAttributeName = "End_date" columnName = "end_date".

columnDataType = "VARCHAR" required = "false" persisted = "true" = "java.lang.String" javaType

keyAttribute = "false" / >

< directMapping attributeName = "createdBy" payloadAttributeName = 'CREATED_BY' columnName = 'CREATED_BY '.

columnDataType = "VARCHAR" required = "false" persisted = "true" = "java.lang.String" javaType

keyAttribute = "false" / >

< directMapping attributeName = "creationDate" payloadAttributeName = 'CREATION_DATE' columnName = 'CREATION_DATE '.

columnDataType = "VARCHAR" required = "false" persisted = "true" = "java.lang.String" javaType

keyAttribute = "false" / >

< attributeName = "lastUpdatedBy" payloadAttributeName = "LAST_UPDATED_BY" directMapping

columnName = "LAST_UPDATED_BY" columnDataType = "VARCHAR" required = "false" persisted = 'true '.

javaType = "java.lang.String" keyAttribute = "false" / > "

< attributeName = "lastUpdateDate" payloadAttributeName = "LAST_UPDATE_DATE" directMapping

columnName = "LAST_UPDATE_DATE" columnDataType = "VARCHAR" required = "false" persisted = 'true '.

javaType = "java.lang.String" keyAttribute = "false" / > "

< directMapping attributeName = "favoriteFlag" payloadAttributeName = "FAVORITE_FLAG" columnName = "FAVORITE_FLAG."

columnDataType = "VARCHAR" required = "false" persisted = "true" = "java.lang.String" javaType

keyAttribute = "false" / >

< directMapping attributeName = "taskActivityId" columnName = "TASK_ACTIVITY_ID" columnDataType = "DIGITAL."

required = "false" persisted = 'true' parentClass = "teamup.mobile.model.Task"

parentAttributeName = "Activity ID" javaType = "java.math.BigDecimal" keyAttribute = "false" / > "

< / attributeMappings >

< methods / >

< / classMappingDescriptor >

< classMappingDescriptor className = "teamup.mobile.model.Discussion" persisted = "true" > ""

< className = "teamup.mobile.model.service.DiscussionService" autoIncrementPrimaryKey = "true" crudServiceClass

localPersistenceManager = "oracle.ateam.sample.mobile.v2.persistence.manager.DBPersistenceManager"

remotePersistenceManager = "oracle.ateam.sample.mobile.v2.persistence.manager.RestJSONPersistenceManager"

remoteReadInBackground = "true" remoteWriteInBackground = "true".

showWebServiceInvocationErrors = 'false' autoQuery = "true" / >

< table name 'DISCUSSION' = >

< name primaryKeyColumn = "DISCUSSION_ID" / >

< /table >

< attributeMappings >

< directMapping attributeName = 'discussionId' payloadAttributeName = "DISCUSSION_ID" columnName = "DISCUSSION_ID."

columnDataType = "NUMERIC" required = "true" persisted = "true" = "java.math.BigDecimal" javaType

keyAttribute = "true" / >

< directMapping attributeName = "activityId" payloadAttributeName = "ACTIVITY_ID" columnName = "ACTIVITY_ID.

columnDataType = "NUMERIC" required = "false" persisted = "true" = "java.math.BigDecimal" javaType

keyAttribute = "false" / >

< attributeName = "discussionDate" payloadAttributeName = "DISCUSSION_DATE" directMapping

columnName = "DISCUSSION_DATE" columnDataType = "VARCHAR" required = "false" persisted = 'true '.

javaType = "java.lang.String" keyAttribute = "false" / > "

< directMapping attributeName = "userId" payloadAttributeName = "USER_ID" columnName = 'USER_ID '.

columnDataType = "NUMERIC" required = "false" persisted = "true" = "java.math.BigDecimal" javaType

keyAttribute = "true" / >

< attributeName = "discussionMessage" payloadAttributeName = "DISCUSSION_MESSAGE" directMapping

columnName = "DISCUSSION_MESSAGE" columnDataType = "VARCHAR" required = "false" persisted = 'true '.

javaType = "java.lang.String" keyAttribute = "false" / > "

< directMapping attributeName = "createdBy" payloadAttributeName = 'CREATED_BY' columnName = 'CREATED_BY '.

columnDataType = "VARCHAR" required = "false" persisted = "true" = "java.lang.String" javaType

keyAttribute = "false" / >

< directMapping attributeName = "creationDate" payloadAttributeName = 'CREATION_DATE' columnName = 'CREATION_DATE '.

columnDataType = "VARCHAR" required = "false" persisted = "true" = "java.lang.String" javaType

keyAttribute = "false" / >

< attributeName = "lastUpdatedBy" payloadAttributeName = "LAST_UPDATED_BY" directMapping

columnName = "LAST_UPDATED_BY" columnDataType = "VARCHAR" required = "false" persisted = 'true '.

javaType = "java.lang.String" keyAttribute = "false" / > "

< attributeName = "lastUpdateDate" payloadAttributeName = "LAST_UPDATE_DATE" directMapping

columnName = "LAST_UPDATE_DATE" columnDataType = "VARCHAR" required = "false" persisted = 'true '.

javaType = "java.lang.String" keyAttribute = "false" / > "

< directMapping attributeName = "projectId" payloadAttributeName = "Project" columnName = "project".

columnDataType = "VARCHAR" required = "false" persisted = "true" = "java.lang.String" javaType

keyAttribute = "false" / >

< attributeName = "parentDiscussionId" payloadAttributeName = "PARENT_DISCUSSION_ID" directMapping

columnName = "PARENT_DISCUSSION_ID" columnDataType = "NUMERIC" required = "false" persisted = 'true '.

javaType = "java.math.BigDecimal" keyAttribute = "false" / > "

< directMapping attributeName = "firstName" payloadAttributeName = "First name" columnName = "first name".

columnDataType = "VARCHAR" required = "false" persisted = "true" = "java.lang.String" javaType

keyAttribute = "false" / >

< directMapping attributeName = "lastName", payloadAttributeName = "Name" columnName = "name".

columnDataType = "VARCHAR" required = "false" persisted = "true" = "java.lang.String" javaType

keyAttribute = "false" / >

< attributeName = "discussionAssignment" payloadAttributeName = "DiscussionAssignment" oneToManyMapping

referenceClassName = "teamup.mobile.model.DiscussionAssignment"

sendAsArrayIfOnlyOneEntry = "true" >

< foreignKeyColumnReference sourceTable = sourceColumn "DISCUSSION_ASSIGNMENT" = "DISCUSSION_ID."

targetTable = "DISCUSSION" targetColumn = "DISCUSSION_ID" / >

< foreignKeyColumnReference sourceTable = sourceColumn 'DISCUSSION_ASSIGNMENT' = 'USER_ID '.

targetTable = "DISCUSSION" targetColumn = 'USER_ID' / >

< / oneToManyMapping >

< / attributeMappings >

<>methods

< findAllMethod uri = "/ projects/getdiscussion/activity/discussion / {username} / {projectId} / {TaskId} / {parentDiscId} '"

connectionName = "MyTask" requestType = 'GET' guaranteed = "false" sendDataObjectAsPayload = "false".

deleteLocalRows = "true" payloadElementName = "Discussion" >

< name of the parameter = "userId" value = "#{pageFlowScope.userId}" valueProvider = "ELExpression" pathParam = "true" / > "

< name of the parameter = value = "#{pageFlowScope.projectId"projectId"}" valueProvider = 'ELExpression' "

pathParam = "true" / >

< name of the parameter = "TaskId" value = "#{pageFlowScope.activityId}" valueProvider = 'ELExpression' "

pathParam = "true" / >

< name of the parameter = value = "#{pageFlowScope.parentDiscId"parentDiscId"}" valueProvider = 'ELExpression' "

pathParam = "true" / >

< / findAllMethod >

< name findAllInParentMethod = 'debate '.

URI = "projects, getdiscussion, activity, discussion / {username} / {projectId} / {TaskId} / {parentDiscId} '"

connectionName = "MyTask" requestType = 'GET' guaranteed = "false".

sendDataObjectAsPayload = "false" payloadElementName = "Discussion" >

< name of the parameter = "userId" value = "#{pageFlowScope.userId}" valueProvider = "ELExpression" pathParam = "true" / > "

< name of the parameter = value = "#{pageFlowScope.projectId"projectId"}" valueProvider = 'ELExpression' "

pathParam = "true" / >

< name of the parameter = "TaskId" value = "#{pageFlowScope.activityId}" valueProvider = 'ELExpression' "

pathParam = "true" / >

< name of the parameter = value = "#{pageFlowScope.parentDiscId"parentDiscId"}" valueProvider = 'ELExpression' "

pathParam = "true" / >

< / findAllInParentMethod >

< createMethod uri = "/ projects/newpostdiscussion/discussion" connectionName = "MyTask" requestType = "POST".

warranty = "false" sendDataObjectAsPayload = "true" payloadElementName = "Discussion" >

< name headerParameter = "Content-Type" value = "application/json" / >

< / createMethod >

< updateMethod uri = "/ projects/putdiscussion/discussion" connectionName = "MyTask" requestType = "PUT".

warranty = "false" sendDataObjectAsPayload = "true" payloadElementName = "Discussion" >

< name headerParameter = "Content-Type" value = "application/json" / >

< / updateMethod >

< / methods >

< / classMappingDescriptor >

< classMappingDescriptor className = "teamup.mobile.model.DiscussionAssignment" persisted = "true" > ""

< className = crudServiceClass "teamup.mobile.model.service.DiscussionService" autoIncrementPrimaryKey = "true" / > "

< table name = "DISCUSSION_ASSIGNMENT" >

< name primaryKeyColumn = "DISCUSSION_ID" / >

< name primaryKeyColumn = "USER_ID" / >

< /table >

< attributeMappings >

< directMapping attributeName = 'discussionId' payloadAttributeName = "DISCUSSION_ID" columnName = "DISCUSSION_ID."

columnDataType = "NUMERIC" required = "true" persisted = "true" = "java.math.BigDecimal" javaType

keyAttribute = "true" / >

< directMapping attributeName = "userId" payloadAttributeName = "USER_ID" columnName = 'USER_ID '.

columnDataType = "NUMERIC" required = "false" persisted = "true" = "java.math.BigDecimal" javaType

keyAttribute = "true" / >

< directMapping attributeName = "likedFlag" payloadAttributeName = "LIKED_FLAG" columnName = "LIKED_FLAG."

columnDataType = "VARCHAR" required = "false" persisted = "true" = "java.lang.String" javaType

keyAttribute = "false" / >

< / attributeMappings >

< methods / >

< / classMappingDescriptor >

< classMappingDescriptor className = "teamup.mobile.model.Search" persisted = "true" > ""

"< crudServiceClass className ="teamup.mobile.model.service.SearchService"autoIncrementPrimaryKey ="true"localPersistenceManager =" oracle.ateam.sample.mobile.v2.persistence.manager.DBPersistenceManager "remotePersistenceManager =" oracle.ateam.sample.mobile.v2.persistence.manager.RestXMLPersistenceManager"remoteReadInBackground ="true"remoteWriteInBackground ="true"showWebServiceInvocationErrors ="true"autoQuery ="true"/ >"

< table name = "SEARCH" >

< name primaryKeyColumn = "ACTIVITY_ID" / >

< /table >

< attributeMappings >

< directMapping attributeName = "activityId" payloadAttributeName = "ACTIVITY_ID" columnName = "ACTIVITY_ID" columnDataType = "NUMERIC" required = "true" = "true" javaType = persisted "java.math.BigDecimal" keyAttribute = "true" / > "

< directMapping attributeName = "projectid" payloadAttributeName = "PROJECTID" columnName = "PROJECTID" columnDataType = "NUMERIC" required = "false" persisted = "true" javaType = "java.math.BigDecimal" keyAttribute = "false" / > "

< directMapping attributeName = "activityName" payloadAttributeName = "ACTIVITY_NAME" columnName = "ACTIVITY_NAME" columnDataType = "VARCHAR" required = "false" persisted = "true" javaType = "java.lang.String" keyAttribute = "false" / > "

< directMapping attributeName = "description" payloadAttributeName = "DESCRIPTION" columnName = "DESCRIPTION" columnDataType = "VARCHAR" required = "false" persisted = "true" javaType = "java.lang.String" keyAttribute = "false" / > "

< directMapping attributeName = "parentActivityId" payloadAttributeName = "PARENT_ACTIVITY_ID" columnName = "PARENT_ACTIVITY_ID" columnDataType = "VARCHAR" required = "false" persisted = "true" javaType = "java.lang.String" keyAttribute = "false" / > "

< directMapping attributeName = 'status' payloadAttributeName = 'STATUS' columnName = 'STATUS' columnDataType = "VARCHAR" required = "false" persisted = "true" javaType = "java.lang.String" keyAttribute = "false" / > "

< directMapping attributeName = "priority" payloadAttributeName = "PRIORITY" columnName = "PRIORITY" columnDataType = "VARCHAR" required = "false" persisted = "true" javaType = "java.lang.String" keyAttribute = "false" / > "

< directMapping attributeName = "percentageComplete" payloadAttributeName = "PERCENTAGE_COMPLETE" columnName = "PERCENTAGE_COMPLETE" columnDataType = "NUMERIC" required = "false" persisted = "true" javaType = "java.math.BigDecimal" keyAttribute = "false" / > "

< directMapping attributeName = "startDate" payloadAttributeName = "START_DATE" columnName = "START_DATE" columnDataType = "VARCHAR" required = "false" persisted = "true" javaType = "java.lang.String" keyAttribute = "false" / > "

< directMapping attributeName = "endDate" payloadAttributeName = "End_date" columnName = "End_date" columnDataType = "VARCHAR" required = "false" persisted = "true" javaType = "java.lang.String" keyAttribute = "false" / > "

< directMapping attributeName = 'eta' payloadAttributeName = 'ETA' columnName = 'ETA' columnDataType = "VARCHAR" required = "false" persisted = "true" javaType = "java.lang.String" keyAttribute = "false" / > "

< directMapping attributeName = "estimatedHours" payloadAttributeName = "ESTIMATED_HOURS" columnName = "ESTIMATED_HOURS" columnDataType = "VARCHAR" required = "false" persisted = "true" javaType = "java.lang.String" keyAttribute = "false" / > "

< directMapping attributeName = "actualHours" payloadAttributeName = "ACTUAL_HOURS" columnName = "ACTUAL_HOURS" columnDataType = "VARCHAR" required = "false" persisted = "true" javaType = "java.lang.String" keyAttribute = "false" / > "

< directMapping attributeName = "ownerUserId" payloadAttributeName = 'OWNER_USER_ID' columnName = 'OWNER_USER_ID' columnDataType = "NUMERIC" required = "false" persisted = "true" javaType = "java.math.BigDecimal" keyAttribute = "false" / > "

< directMapping attributeName = "createdBy" payloadAttributeName = 'CREATED_BY' columnName = 'CREATED_BY' columnDataType = "VARCHAR" required = "false" persisted = "true" javaType = "java.lang.String" keyAttribute = "false" / > "

< directMapping attributeName = "creationDate" payloadAttributeName = 'CREATION_DATE' columnName = 'CREATION_DATE' columnDataType = "VARCHAR" required = "false" persisted = "true" javaType = "java.lang.String" keyAttribute = "false" / > "

< directMapping attributeName = "lastUpdatedBy" payloadAttributeName = "LAST_UPDATED_BY" columnName = "LAST_UPDATED_BY" columnDataType = "VARCHAR" required = "false" persisted = "true" javaType = "java.lang.String" keyAttribute = "false" / > "

< directMapping attributeName = "lastUpdateDate" payloadAttributeName = "LAST_UPDATE_DATE" columnName = "LAST_UPDATE_DATE" columnDataType = "VARCHAR" required = "false" persisted = "true" javaType = "java.lang.String" keyAttribute = "false" / > "

< directMapping attributeName = "discussionCount" payloadAttributeName = "DISCUSSION_COUNT" columnName = "DISCUSSION_COUNT" columnDataType = "NUMERIC" required = "false" persisted = "true" javaType = "java.math.BigDecimal" keyAttribute = "false" / > "

< directMapping attributeName = "comments" payloadAttributeName = "COMMENTS" columnName = "COMMENTS" columnDataType = "VARCHAR" required = "false" persisted = "true" javaType = "java.lang.String" keyAttribute = "false" / > "

< / attributeMappings >

<>methods

< findAllMethod uri = "/ projects/searchtasks/search/spot / {id} / {id1} / {id2} / {id3}" connectionName = "MyTask" requestType = 'GET' guaranteed = "false" sendDataObjectAsPayload = "false" deleteLocalRows = "true" payloadElementName = "Task" > "

< name headerParameter = "Content-Type" value = "application/json" / >

< name of the parameter = "id" value = "#{pageFlowScope.searchId1}" valueProvider = "ELExpression" pathParam = "true" / > "

< name of the parameter = "id1" value = "#{pageFlowScope.searchId2}" valueProvider = "ELExpression" pathParam = "true" / > "

< name of the parameter = "id2" value = "#{pageFlowScope.searchId3}" valueProvider = "ELExpression" pathParam = "true" / > "

< name of the parameter = "id3" value = "#{pageFlowScope.searchId4}" valueProvider = "ELExpression" pathParam = "true" / > "

< / findAllMethod >

< / methods >

< / classMappingDescriptor >

< className = "oracle.ateam.sample.mobile.v2.persistence.service.DataSynchAction" classMappingDescriptor

dateFormat "dd-MMM-yyyy" = >

< table name = "DATA_SYNCH_ACTIONS" >

< name primaryKeyColumn = "SERVICE_CLASS_NAME" / >

< name primaryKeyColumn = "ID" / >

< /table >

< attributeMappings >

< directMapping attributeName = "id" columnName = "ID" columnDataType = "NUMERIC" required = "true".

javaType = "java.lang.Integer" keyAttribute = "true" / > "

< directMapping attributeName = "serviceClass" columnName = "SERVICE_CLASS_NAME" columnDataType = "VARCHAR".

required = "true" javaType = "java.lang.String" keyAttribute = "true" / > "

< directMapping attributeName = "entityClassString" columnName = "ENTITY_CLASS_NAME" columnDataType = "VARCHAR".

javaType="java.lang.String"/ >

< directMapping attributeName = "entityAsJSONString" columnName = "JSON_PAYLOAD" columnDataType = "VARCHAR".

javaType="java.lang.String"/ >

< directMapping attributeName = "action" columnName = "ACTION" columnDataType = "VARCHAR".

javaType="java.lang.String"/ >

< directMapping attributeName = "dateCreated" columnName = 'DATE_CREATED' columnDataType = 'DATE '.

javaType="java.util.Date"/ >

< directMapping attributeName = "lastSynchAttempt" columnName = "DATE_LAST_SYNCH" columnDataType = "DATE".

javaType="java.util.Date"/ >

< directMapping attributeName = "lastSynchError" columnName = "LAST_SYNCH_ERROR" columnDataType = "VARCHAR".

javaType="java.lang.String"/ >

< directMapping attributeName = "customMethodName" columnName = "CUSTOM_METHOD_NAME" columnDataType = "VARCHAR".

javaType="java.lang.String"/ >

< / attributeMappings >

< / classMappingDescriptor >

< / mobileObjectPersistence >

===========================================================================================================================

Rest Service payload

{

"Task": [{}

"ACTIVITY_ID": 426.

"PROJECTID": 3.

"ACTIVITY_NAME': 'solve the performance issue."

"DESCRIPTION': 'solve the performance issue."

'PARENT_ACTIVITY_ID': null,

"STATUS': 'IN_PROGRESS."

'PRIORITY': null,

'PERCENTAGE_COMPLETE': 50,.

"START_DATE": null;

"END_DATE": "2015-04 - 05 T 23: 55:47.000 - 04:00", ".

'ETA': null,

'ESTIMATED_HOURS': null,

'ACTUAL_HOURS': null,

'OWNER_USER_ID': 8,.

'CREATED_BY': 'elilani ',.

'CREATION_DATE': ' 2015-04 - 10 T 19: 13:49.000 - 04:00 ",".

"LAST_UPDATED_BY": "elilani",

"LAST_UPDATE_DATE": "2015-04 - 10 T 19: 13:49.000 - 04:00", ".

'DISCUSSION_COUNT': 1,.

"OBSERVATIONS": "poor response time during the updating of the homepage and create the task.»

"TaskAssignment": [{}

'ASSIGNMENT_ID': 962,.

"PROJECT_TEAM_MEMBER_ID": 3.

"START_DATE": null;

"End_date": null;

'CREATED_BY': 'elilani ',.

'CREATION_DATE': ' 2015-04 - 10 T 19: 13:49.000 - 04:00 ",".

"LAST_UPDATED_BY": "elilani",

"LAST_UPDATE_DATE": "2015-04 - 10 T 19: 13:49.000 - 04:00", ".

'FAVORITE_FLAG': null

}, {

'ASSIGNMENT_ID': 960,.

"PROJECT_TEAM_MEMBER_ID": 3.

"START_DATE": null;

"End_date": null;

'CREATED_BY': 'elilani ',.

'CREATION_DATE': ' 2015-04 - 10 T 19: 13:49.000 - 04:00 ",".

"LAST_UPDATED_BY": "elilani",

"LAST_UPDATE_DATE": "2015-04 - 10 T 19: 13:49.000 - 04:00", ".

'FAVORITE_FLAG': null

}, {

'ASSIGNMENT_ID': 961.

'PROJECT_TEAM_MEMBER_ID': 2.

"START_DATE": null;

"End_date": null;

'CREATED_BY': 'elilani ',.

'CREATION_DATE': ' 2015-04 - 10 T 19: 13:49.000 - 04:00 ",".

"LAST_UPDATED_BY": "elilani",

"LAST_UPDATE_DATE": "2015-04 - 10 T 19: 13:49.000 - 04:00", ".

'FAVORITE_FLAG': null

} ]

} ]

}

----------------------------------------------------------------------------------------------------------------------------

Massari,

The data object to "Seek", you have misconfigured persistence distance Manager:

remotePersistenceManager = "oracle.ateam.sample.mobile.v2.persistence.manager. RestXMLPersistenceManager".

This should be

remotePersistenceManager = "oracle.ateam.sample.mobile.v2.persistence.manager. RestJSONPersistenceManager".

My guess is that when running the wizard, you have forgotten initially set the Content Type application/JSON and when the wizard runs the servce REST to inspect the payload, payload has been returned in XML format. Would this be possible?

Also note that a new version of AMPA is available, see this blog post.

Steven Davelaar,

Oracle Mobile & Cloud A-team.

Tags: Oracle Mobile

Similar Questions

  • Cannot access the network drive or impossible to mount the network drive. Error "network path was not found.

    Original title: network path was not found

    HI, after the upgradation from windows xp sp2 to sp3 (next to the customer) I can't access the network drive or impossible to mount the network drive. ' ' It showa error "network path was not found.

    Hi gauravadavadkar,

    Thanks for posting your query in Microsoft Communities. Provide the following information:

    ·         Did you do changes on the computer before the show?

    ·         What is the full error message?

    ·         Work on a domain?

    Follow these methods.

    Method 1: Temporarily disable the security software.

    Note: Antivirus software can help protect your computer against viruses and other security threats. In most cases, you should not disable your antivirus software. If you do not disable temporarily to install other software, you must reactivate as soon as you are finished. If you are connected to the Internet or a network during the time that your antivirus software is disabled, your computer is vulnerable to attacks.

    Method 2: Follow these steps:

    Step 1: Start the computer in safe mode with networkand check if the problem persists.

    S tep 2: if the problem does not persist in safe mode with networking, perform a clean bootto see if there is a software conflict as the clean boot helps eliminate software conflicts.

    Note: After completing the steps in the clean boot troubleshooting, follow the steps to configure Windows to use a Normal startup state section of the article to start the computer to a Normal startupmode.

    After the clean boot used to resolve the problem, you can follow these steps to configure Windows XP to start normally.

    (a) click Startand then click run.

    (b) type msconfigand click OK.
    The System Configuration utility dialog box appears.

    (c) click on the general tab, click Normal Startup - load all device drivers and services, and then click OK.

    (d) when you are prompted, click restart to restart the computer.

    Method 3: Follow the steps in the article.

    How to troubleshoot a network home in Windows XP

    In Windows network connection issues

    You can read this article for more information:

    Windows wireless and wired network connection problems

    I hope this helps. Let us know if you need more assistance.

    Thank you.

  • Error - backup file is not found or is not the file you requested.

    Original title: restoration of Windows XP utility gives "file not found error.

    Hello
    I have Windows XP SP3 on my system. I tried to restore my backup file I had created a few months back. and I get the following error:
    "Backup file is not found or is not the file you requested.
    even though I am pointing to the correct file.

    It is possible (although I'm not sure) can I have left my backup file a different location for a more current. However, in the Restore Wizard, I'm still that it points to the current file.

    I followed the instructions of Dena in the following post:
    http://answers.Microsoft.com/en-us/Windows/Forum/windows_xp-system/cannot-restore-files-from-computer-backup-on/4c3ac6eb-c8f5-4DB9-BA56-e158e057f828

    However, it does not help. When I try to catalog them by following the steps, an hourglass appears, but there is no algorithmic activity event. So if I move my mouse even slightly, the hourglass disappears and is replaced by the pointer. Then when I try to work with the backup file, I get the same error as above.

    Please help me with this restoration! There is a huge amount of data which suddenly went 'pfoosh' one morning. people say we should have backups for buffering against these events, but a pity that my backup doesn't even work! Help, please! I would really appreciate it.

    Thank you

    Hello

    ·         You receive a specific error with the error code: "the backup file is not found or is not the file you requested"?

    ·         Is the backup stored locally or on an external drive?

    You try to run chkdsk on the drive that contains the backup. Later, check to see if the problem persists.

    How to perform disk error checking in Windows XP

    Hope the helps of information. Please post back and we do know.

    Concerning
    Joel S
    Microsoft Answers Support Engineer

  • When I start or restart my computer, I get the following message on my desk: error: IM32FAX. DIL not found. What is this and how can I fix it?

    Error: IM32FAX. DIL not found

    Probably a problem with your lexmark all in one printer software/drivers.
    updated all the drivers recently?

  • How can I reinstall the CoreVideo.dll. iTunes gives me error that it is not found

    How can I reinstall the CoreVideo.dll. iTunes gives me error that it is not found

    For iTunes problem, contact Apple for support with their software:

    http://www.Apple.com/support/iTunes/

    See you soon.

    Mick Murphy - Microsoft partner

  • Tried to delete files on the desktop, but it showed "Item not found"!

    I wanted to delete files on my desk. But he showed "Item not found", ask me to locate the file. But I searched the entire computer, the file is no longer exist. But he was still showing on the desktop!

    What can I do to remove them? Because they are really boring!

    Are you sure that it is a folder on your desktop and not just a shortcut (a link to the actual file)?  The actual file can be located elsewhere.

    Check C:\Users\\Desktop, and see if the files are there.  If so, try removing them from there (instead of from the desktop).  It shouldn't make a difference, but it might work.

    Try to use one of the following free products to remove the file/folder (from two places).  Assassin http://www.malwarebytes.org/fileassassin.php of files (with or without forcing the deletion: http://www.mydigitallife.info/2008/12/27/force-delete-cannot-delete-locked-or-in-used-files-or-folders-with-fileassassin/) or Unlocker to: http://www.softpedia.com/get/System/System-Miscellaneous/Unlocker.shtml.  These programs often work when normal functions remove Vista not work correctly.

    Search for files in Vista is quite different that it was with XP.  To search for a file with a normal search in Vista, it should be in the index files or types of files - otherwise it will not come to the top.  You CAN get to get to a FULL player search.  To search for the folder C: whole disk in Vista go to start / search and type in ' or '. As you type, you'll see two hyperlinks appear just above where you type and we'll search everywhere.  A click on it.  Who will do a fast indexed search and bring up a dialog box.  Click on advanced search.  Click the drop-down location and find the C: drive and click on it. Check the box "include not indexed, hidden and system files (might be slow).»  Then click on search.  You will now search your entire hard drive to the specified file.  And Yes, this isn't a very effective way to search the entire disk for a file but it is how it is done in Vista.  Once you find the file, try to remove normally and if it does not then try to use both products above to see if you have a better chance.

    I hope this helps.

    Good luck!

    Lorien - MCSA/MCSE/network + / A +.

  • I receive the error RE5DX9.exe - Ordinal not found after installing Resident evil 5.

    Original title: error message

    Hai I use windows 8 pro recently I installed resident evil 5 on my pc, I get an error ' "RE5DX9.exe - Ordinal not found." " Here is the error in the event viewer. The 5297 ordinal not found in the dynamic link library xlive.dll. "How to solve?

    Hi Adhithyaraja,

    I suggest that take you a look at the existing thread resident evil 5 in xboxlive.dll the ordinal not found error that describes exactly the same problem and a possible solution (RyanT response - Support Engineer, October 5, 2009).

    Hope this helps and solves your problem. If Yes please mark your post as answered if this can help others in the community - thanks in advance.

    See you soon,.

    LZ.

  • Error (10,47): EntryFlowPageCO not found in the oracle.apps.ap.oie.entry class.

    Hi all

    I extended a CO named IndusFinalReviewPageCOXX and I got the following error.

    Error (10,47): EntryFlowPageCO not found in the class oracle.apps.ap.oie.entry.summary.webui.FinalReviewPageCO in the indus.oracle.apps.ap.oie.entry.summary.webui.IndusFinalReviewPageCOXX class.


    I already drag the EntryFlowPageCO class file in the path myclasses\oracle\apps\ap\oie\entry\summary\webui
    and import the file. but the error remains the same... After that, I compile the EntryFlowPageCO class file and found a CO EntryFlowPageCO imports more. I drag the class of this CO also file in the appropriate path... But still the same error.

    Please give me the solution as soon as POSSIBLE.

    Thank you
    Amit Jaitly

    Amit,

    In the standard central, you can check this controller as entryflowpageco is not under myclasses\oracle\apps\ap\oie\entry\summary\webui.

    Its under oracle/apps/ap/goose/entry/webui put the same under this directory structure.

    Kind regards
    GYAN

  • ACS 5.2 error 22056 object was not found in the identity applicable store (s)

    Hi, I have two ACS v 5.2 (primary and secondary) and some users are in stor in-house and others are in the ad.

    Local site topology is like this:

    PC - AP - WLC - ACS - AD

    Authentication method is PEAP(EAP-MSCHAPv2), and all users have the company certificate installed. In users of client OS is Windows 7.

    Users worked very well, but some reports disconnections of intranet users. I see in the ACS connect many "22056 object was not found in the identity of the point of sale." and "24415 Active Directory user authentication failed because the user account is locked out" alarms.

    I thought that it was because the user located in the AD of basic data, but sometimes the same user is authenticated successfully and other that I see the "22056..." or "... 24415" alarm signals.

    I changed the primary role for ACS to works as secondary and we see the same alarms.

    I Don t know is a matter of ACS, and how to resolve this...

    Please helpme

    Thank you...

    Hello

    How you are authenticating these users? They are present in the local database of GBA? If so, have you checked the State from inside account to see if the user account is still active and that it is not disabled?

    Thank you

    Tarik Admani
    * Please note the useful messages *.

  • ODI is not able to detect the primary/foreign keys to XML - the user has no privilege or object not found

    Hi guys,.

    Im trying to load an XML with the address of two entities and employee as below. The topology of reverse engineering, everything works well. Even able to display the xml data in ODI, but when I try to load the data of these two entities join by the schema of the primary keys and foreign keys which created odi engineering process reverses for xml, im im getting the error below.  IM able to load an entity data, error occurs only when I use the join odi creates internally to identify employees for xml and address components

    XML file:

    <? XML version = "1.0" encoding = "UTF-8"? >

    < EMP >

    < Empsch >

    < employee >

    < EmployeeID 12345 > < / EmployeeID >

    < original > t < / initials >

    John < name > < / LastName >

    DOE < FirstName > < / name >

    < / employee >

    < address >

    < > 12345 as WorkPhone < / as WorkPhone >

    < WorkAddress > test 234 < / WorkAddress >

    < / address >

    < / Empsch >

    < / EMP >

    Topology: jdbc:snps:xml?f=C:/Temp/RR/Empsch.xml & s = Empsch & re = EMP & dod = true & nobu = false

    Error message:

    -5501: 42501: java.sql.SQLException: user has no privilege or object not found: EMPSCH. EMPSCHPK

    java.sql.SQLException: user has no privilege or object not found: EMPSCH. EMPSCHPK

    at org.hsqldb.jdbc.Util.sqlException (unknown Source)

    for org.hsqldb.jdbc.JDBCPreparedStatement. < init >(Unknown Source)

    at org.hsqldb.jdbc.JDBCConnection.prepareStatement (unknown Source)

    at com.sunopsis.jdbc.driver.xml.SnpsXmlConnection.prepareStatement(SnpsXmlConnection.java:1232)

    at sun.reflect.GeneratedMethodAccessor65.invoke (unknown Source)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)

    at java.lang.reflect.Method.invoke(Method.java:597)

    to oracle.odi.core.datasource.dwgobject.support.OnConnectOnDisconnectDataSourceAdapter$ OnDisconnectCommandExecutionHandler.invoke (OnConnectOnDisconnectDataSourceAdapter.java:200)

    to $Proxy2.prepareStatement (Unknown Source)

    at oracle.odi.runtime.agent.execution.sql.SQLCommand.doInitializeStatement(SQLCommand.java:83)

    at oracle.odi.runtime.agent.execution.sql.SQLCommand.getStatement(SQLCommand.java:117)

    at oracle.odi.runtime.agent.execution.sql.SQLCommand.getStatement(SQLCommand.java:111)

    at oracle.odi.runtime.agent.execution.sql.SQLDataProvider.readData(SQLDataProvider.java:81)

    at oracle.odi.runtime.agent.execution.sql.SQLDataProvider.readData(SQLDataProvider.java:1)

    at oracle.odi.runtime.agent.execution.DataMovementTaskExecutionHandler.handleTask(DataMovementTaskExecutionHandler.java:70)

    at com.sunopsis.dwg.dbobj.SnpSessTaskSql.processTask(SnpSessTaskSql.java:2913)

    at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTask(SnpSessTaskSql.java:2625)

    at com.sunopsis.dwg.dbobj.SnpSessStep.treatAttachedTasks(SnpSessStep.java:577)

    at com.sunopsis.dwg.dbobj.SnpSessStep.treatSessStep(SnpSessStep.java:468)

    at com.sunopsis.dwg.dbobj.SnpSession.treatSession(SnpSession.java:2128)

    to oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor$ 2.doAction(StartSessRequestProcessor.java:366)

    at oracle.odi.core.persistence.dwgobject.DwgObjectTemplate.execute(DwgObjectTemplate.java:216)

    at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor.doProcessStartSessTask(StartSessRequestProcessor.java:300)

    to oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor.access$ 0 (StartSessRequestProcessor.java:292)

    to oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor$ StartSessTask.doExecute (StartSessRequestProcessor.java:855)

    at oracle.odi.runtime.agent.processor.task.AgentTask.execute(AgentTask.java:126)

    to oracle.odi.runtime.agent.support.DefaultAgentTaskExecutor$ 2.run(DefaultAgentTaskExecutor.java:82)

    at java.lang.Thread.run(Thread.java:662)

    Caused by: org.hsqldb.HsqlException: the user has no privilege or object not found: EMPSCH. EMPSCHPK

    at org.hsqldb.error.Error.error (unknown Source)

    at org.hsqldb.ExpressionColumn.checkColumnsResolved (unknown Source)

    at org.hsqldb.QueryExpression.resolve (unknown Source)

    at org.hsqldb.ParserDQL.compileCursorSpecification (unknown Source)

    at org.hsqldb.ParserCommand.compilePart (unknown Source)

    at org.hsqldb.ParserCommand.compileStatement (unknown Source)

    at org.hsqldb.Session.compileStatement (unknown Source)

    at org.hsqldb.StatementManager.compile (unknown Source)

    at org.hsqldb.Session.execute (unknown Source)

    ... more than 27

    Please advice

    Thank you

    Fabien

    It is clear from the content of the xml file, you have given here. In this xml file, you have four type of complex. Two of them are employed and address. However the employee doesnot has nothing to do with the address that you have not added the relationship. That is why its failure. This isn't the fault of the ODI.

    Also I suggest not to use self-generated by ODI dtd that you might face problem in the future. For example, the address of XML type has 8 attributes, and 4 of them are not mandatory. This means that each of your xml file may have attributes between 4 and 8.  That's where ODI auto generated DTD fails.

    ComplexType element XML schema

    Thank you

    Chantal

  • RMAN-06059: expected archived log not found

    DB version: 11.1.0.7
    Operating system: Solaris 10

    Our cron job RMAN has met the following error.
    -First save attempt (complete bkp more archive log) done by connecting to the catalog
    Starting backup at 14-MAR-12
    current log archived
    released channel: ch00
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of backup plus archivelog command at 03/14/2012 08:09:58
    RMAN-06059: expected archived log not found, lost of archived log compromises recoverability
    ORA-19625: error identifying file +PQWSP_ARCH01/pqwsp_arch/pqwsp_26530_1_764525298.arc
    ORA-17503: ksfdopn:2 Failed to open file +PQWSP_ARCH01/pqwsp_arch/pqwsp_26530_1_764525298.arc
    ORA-15173: entry 'pqwsp_26530_1_764525298.arc' does not exist in directory 'pqwsp_arch'
    Because I didn't share RMAN catalog schema password, I used the control as a catalog file and run the CROSSCHECK command.

    -Use the control as a catalog file
    $ rman target /
    
    Recovery Manager: Release 11.1.0.7.0 - Production on Wed Mar 14 09:45:59 2012
    
    Copyright (c) 1982, 2007, Oracle.  All rights reserved.
    
    connected to target database: PQWSP (DBID=1638594930)
    
    RMAN> crosscheck archivelog all;
    
    using target database control file instead of recovery catalog
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: SID=429 instance=pqwsp1 device type=DISK
    validation succeeded for archived log
    archived log file name=+PQWSP_ARCH01/pqwsp_arch/pqwsp_26563_1_764525298.arc RECID=19019 STAMP=777888587
    validation succeeded for archived log
    archived log file name=+PQWSP_ARCH01/pqwsp_arch/pqwsp_26564_1_764525298.arc RECID=19022 STAMP=777890270
    validation succeeded for archived log
    .
    .
    .
    .
    .
    
    Crosschecked 14 objects
    Cannot find objects expired in the output above. I had * "validation succeeded" * message to arch all newspapers.

    So I ran a
    BACKUP ARCHIVELOG ALL DELETE ALL INPUT;
    and this backup was successful.

    No idea why the first attempt failed when there were not all logs archived expired? If I run the command of OVERLAP by connecting to the catalog, I could find out of date newspapers?

    No idea why the first attempt failed when there were not all logs archived expired?
    this case is not releated archivelog expired, however it seems the requested archivelog 26530 isn't available on destinationas, that it can be removed manually or another taking backup operation the backup and deleted if the execution of the whole.

    crosscheck updated detail that its not available for backup... Check the output of you overlap cmd to 26530 archivelog.

    Thank you
    Tylay Singh

  • Error message 'setenv.ini' not found during installation

    I want to install the XP Pro version of the cd but I get the error message "setenv.ini" not found

    Hello

    This occurs if you install Windows from the Microsoft or Toshiba Recovery disk?
    In addition, it would be interesting to know what laptop you have.

    The disc is maybe scratchy check it!

  • Windows easy transfer will not work. I get the message: "migwiz.exe - point of entry not found. How can I fix it?

    Windows easy transfer will not work.  I get the message: "migwiz.exe - point of entry not found.  How can I fix it?

    Hi PTTimothy

    1. what operating system is installed on the computer?

    2. you are the administrator of the computer?

    I suggest you to check and to provide us with the information about the installed operating system.

    http://Windows.Microsoft.com/en-us/Windows7/help/which-version-of-the-Windows-operating-system-am-i-running

    Step 1:

    You can open the administrator and verify if you can open Windows Easy Transfer correctly.

    You can even check if you face the same question in the user account different or new user account.  You can create a new user account on your computer, and then check.

    Create a new user account-
    http://Windows.Microsoft.com/en-us/Windows7/create-a-user-account

    Step 2:

    An analysis of the SFC and audit-
    a. click Start, click programs, on Accessoriesprincipally made, right click guestand then click run as administrator. If you are prompted for an administrator password or a confirmation, type the password, or click Allow
    b. type the following command and press ENTER:
    sfc/scannow
    A message appears indicating that "the system scan will start. Be patient because the scan can take some time.
    c. If all files require a SFC replace will replace them. You may be asked to insert your Win7 DVD for this process to continue.
    d. If everything is correct you should, after the scan, see the following message "resource protection Windows not found any breach of integrity".
    e. once the scan is finished, close the command prompt window, restart the computer and check.

    Check the link below for further guidance on scan SFC - mentioned
    http://support.Microsoft.com/kb/929833

    I hope this helps.

  • Fatal error. Object was not found.

    Hello

    I built aninstaller package that includes:

    3 x .exe

    LabVIEW2009 Dev Environment

    VISA Runtime Environment

    NOR-DAQmx

    When I try to run the Setup program (from the local hard disk) I get the following error, any ideas anyone?

    At soon inadvance, Alec

    .\Distribution.cpp(320): IInstallerError 10002
    Fatal error. Object was not found.
    class CPart object lookup by ProductCode cannot find the object {9A832E3A-8676-41CC-A945-9C6827D00B4C}

    I was building the installer directly on a network drive. If you create the installer on site and then copy it to a network drive, it works fine.

  • How to fix error IM32FAX. DIL not found on Windows vista

    When I start the Pc this summons, error IM32FAX. DIL not found vista window how to fix this problem please

    Hi Monastir,

    You can check the following link and try the suggested steps and check if that helps.

    http://answers.Microsoft.com/en-us/Windows/Forum/windows_vista-hardware/fax-mode-and-error-message-im32faxdil/d25327ba-5dd3-4c9d-ADF5-ae8358d784c7

    The above link contains third party links provided by other users.

    Note: The use of third-party software, including hardware drivers can cause serious problems that may prevent your computer from starting properly. Microsoft cannot guarantee that problems resulting from the use of third-party software can be solved. Software using third party is at your own risk.

    Hope this information is useful.

Maybe you are looking for