cancel
Showing results for 
Search instead for 
Did you mean: 

PAPI SlotGroupConfigurationService

olivier_thiry
Participant
0 Kudos

Hello experts,

I'm currently developing a webservice through SDK to create slot configuration... Based on the same behaviour of the standard transaction.

Everything is fine except how to simulate the button "Create Slot Config number". I tried with PAPI NumberingServiceInterface.generateNextNumber, but it always returns null value...

Any idea what I did wrong ?

Here is part of my code :

numberReq.setNextNumberType(NextNumberTypeEnum.SLOTCONFIG);
numberReq.setNumberOfValues(new BigDecimal(1));
try {
	numberResp =  numberService.generateNextNumber(numberReq);
} catch (BusinessException e) {
...

Accepted Solutions (0)

Answers (1)

Answers (1)

olivier_thiry
Participant
0 Kudos

it seems I'm the only one in the universe trying to do that 🐵