cancel
Showing results for 
Search instead for 
Did you mean: 

Project Master Entry form

Former Member
0 Kudos

Hi all,

Is it feasible to make seperate form to enter data into project master?

In our case we have added many fields on project master, but now due to some sort of security issue we dont want to open total project master to all. For now we have to open total project master and then add new project into it. But simultaneosly if any one updates wrong information of others project then it will create chaos.

So can we develope a project master entry form?

Regards.

Ashish

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Yes i guess u can develop a new form and add the data instead of SAP. In the menu click of the project master u can call ur own form and add the details.

Vasu Natari.

Former Member
0 Kudos

Thanks a lot sir,

I just want to confirm that while inserting data into OPRJ with insert query, whether any other table is also getting updated internally in SAP?

If that is not then my problem will get solved,

Regards,

Ashish

Former Member
0 Kudos

I checked just now that we do not have a DI object for projects, try adding with insert statement. Hopefully no issue should arise.

Vasu Natari.

Former Member
0 Kudos

Thanks a lot sir.

Regards,

Ashish

Former Member
0 Kudos

Vasu,

IF Ashish is talking about Project master of SetUp- Financial then we do have project object in DI API.

something like this :



Dim CompanyService As SAPbobsCOM.ICompanyService = oCompany.GetCompanyService
                Dim ProjectsService As SAPbobsCOM.IProjectsService = CompanyService.GetBusinessService(SAPbobsCOM.ServiceTypes.ProjectsService)
                Dim Project As SAPbobsCOM.Project = ProjectsService.GetDataInterface(SAPbobsCOM.ProjectsServiceDataInterfaces.psProject)
                Dim ProjectParams As SAPbobsCOM.ProjectParams = Nothing
                ProjectParams = ProjectsService.GetDataInterface(SAPbobsCOM.ProjectsServiceDataInterfaces.psProjectParams)
                Project.Code = "try"
                Project.Name = "try"

                ProjectsService.AddProject(Project)

Ashish, give it a try.

and apologies if you mean something else.

regards,

Binita

Edited by: Binita Joshi on Sep 26, 2008 9:29 AM

Former Member
0 Kudos

Thanks madam,

I will just try this in test database, but i did not understand this object clearly.

Ashish

Answers (0)