cancel
Showing results for 
Search instead for 
Did you mean: 

HANA Service Layer SBOBobService.GetItemPrice

former_member260921
Participant
0 Kudos

Hi,

In the DI API the SBOBob service has a GetItemPrice method. This seems to be missing from the HANA service layer. I am converting an app to HANA that needs this method.

Does anyone know when (or if) this will be supported For B1 HANA? If not is there a workaround.

Thanks,

Mel

Accepted Solutions (1)

Accepted Solutions (1)

ANKIT_CHAUHAN
Product and Topic Expert
Product and Topic Expert
0 Kudos

Hi Mel Dodd,

I hope you are looking for this: ( I am checking it in SAP Business One 9.3 PL08, Version for SAP HANA)

Kind regards,

ANKIT CHAUHAN

SAP Business One Support

Answers (2)

Answers (2)

max-huster
Explorer

If you take a closer look in the WSDL there are even more Fields:

	export class ItemPriceParams  {
		Date: Date;
		UoMEntry: number;
		BlanketAgreementNumber: number;
		BlanketAgreementLine: number;
		UoMQuantity: number;
		InventoryQuantity: number;
		Currency: string;
		ItemCode: string;
		CardCode: string;
		PriceList: number;
	}
former_member260921
Participant
0 Kudos

Thanks, Ankit

I will use try. I missed it because I was looking under SBOBob where it was in DIAPI.

It's disappointing the documentation does not specify the parameters for date and quantity.

I will try "Date" and "Quantity" and see if it works.

POST https://localhost:50000/b1s/v1/CompanyService_GetItemPrice
{
"ItemPriceParams": {
"CardCode": "Customer",
"ItemCode": "Item",

"Quantity": "100",

"Date":"20190121"
}
}

Regards,

Mel