cancel
Showing results for 
Search instead for 
Did you mean: 

SAP B1 Service Layer with Angular to post

former_member275826
Participant
0 Kudos

Hi All,

I am trying to create employee master data using service layer:

   SignUp =(formdata): Observable<any> =>
    { 
        let body = JSON.stringify(formdata);
        var url=this.actionUrl+'/EmployeesInfo';
        let options = {
            withCredentials: true
         }
         return this._http.post(url,body,options); 
    }

Error: 400 Bad Request: Invalid login credential.

Before calling SignUp function, i am calling Login service also.

But i don't understand , why it is giving Invalid login credential error.

Please help me out

Accepted Solutions (0)

Answers (0)