Storing multiple data entities in single transaction

I have one form in that  i have to store data into 4 CDTS .Project ,projectteaam,milestone,milestonetask,

={{entity:pv!DSR_Project, data:{pv!DSR_Project.projectname,pv!DSR_Project.roleid,pv!DSR_Project.clientid,pv!DSR_Project.estimatedbudget,pv!DSR_Project.projectstartdate,pv!DSR_Project.projectenddate,pv!DSR_Project.description}},{entity:pv!DSR_ProjectTeam, data:{pv!DSR_ProjectTeam.projectid,pv!DSR_ProjectTeam.employeeid,pv!DSR_ProjectTeam.startdate,pv!DSR_ProjectTeam.enddate,pv!DSR_ProjectTeam.description}},{entity:pv!DSR_MileStone, data:{pv!DSR_MileStone.projectid,pv!DSR_MileStone.milestonename,pv!DSR_MileStone.startdate,pv!DSR_MileStone.baseline,pv!DSR_MileStone.forcast,pv!DSR_MileStone.actual,pv!DSR_MileStone.estamount,pv!DSR_MileStone.actualamount,pv!DSR_MileStone.comments,pv!DSR_MileStone.paymentrecieveddate}},{entity:pv!DSR_MileStoneTask, data:{pv!DSR_MileStoneTask.milestoneid,pv!DSR_MileStoneTask.taskname,pv!DSR_MileStoneTask.taskhour}}}

can any one help me out of this .I need to store data in multiple data store entities.since im unable to store 

  Discussion posts and replies are publicly visible

Parents
  • You might want to create a constant for each entity and use in place of process variable. Also you do not need to mention each field in data just a process variable with right data type (CDT) will write the data to entity.

    {
    {
    entity: cons!DSR_PROJECT_ENTITY,
    data: pv!DSR_Project
    },
    {
    entity: cons!DSR_PROJECTTEAM_ENTITY,
    data: pv!DSR_ProjectTeam
    },
    {
    entity: cons!DSR_MILESTONE_ENTITY,
    data: pv!DSR_MileStone
    },
    {
    entity: cons!DSR_MILESTONETASK_ENTITY,
    data: pv!DSR_MileStoneTask
    }
    }

Reply
  • You might want to create a constant for each entity and use in place of process variable. Also you do not need to mention each field in data just a process variable with right data type (CDT) will write the data to entity.

    {
    {
    entity: cons!DSR_PROJECT_ENTITY,
    data: pv!DSR_Project
    },
    {
    entity: cons!DSR_PROJECTTEAM_ENTITY,
    data: pv!DSR_ProjectTeam
    },
    {
    entity: cons!DSR_MILESTONE_ENTITY,
    data: pv!DSR_MileStone
    },
    {
    entity: cons!DSR_MILESTONETASK_ENTITY,
    data: pv!DSR_MileStoneTask
    }
    }

Children
No Data