I need help.
when passing objectid blank i am getting "Make an entry in all required fields" Return message.
i checked through se16 --> PA0006 Table for all employeenumber objectid is blank.
below is my code
-
proxyaddchange.Connection.Open();
// To refer to the subset that has Permanent Address details
string subType = "1";
// Get records till this date(yyyymmdd - format)
string timeIntervalHigh = "99991231";
//timeIntervalHigh = "31.12.9999";
// Get records from this date(yyyymmdd - format)
string timeIntervalLow = "18000101";
timeIntervalLow = "19850101";
proxyaddchange.Bapi_Employee_Enqueue(txtSapId.Text,out Return11);
proxyaddchange.Bapi_Addressemp_Change(txtSapId.Text,"","","",subType,"123456789",timeIntervalLow,timeIntervalHigh,out Return12);
proxyaddchange.Bapi_Employee_Dequeue(txtSapId.Text,out Return13);