BSSV Inventory Transfer Multiple line Problem

Kishore03

Active Member
HI,

I have create a BSSV for Inventory transfer.When execute the BSSV for multiple lines its only create last line as detail entry.I check the array objects and all inputs values are received in array, but in final result it show only last line for Document IT.Suppose if i eneter 101 and 102 as a detailine in java test class it shows only 102 in detail section of p4113 and 101 is missing .Is there any parameter missing in calling F4113 FS EditLine in my code.can anyone let me know what is the necessary parameters i have to pass in F4113 FS EditLine MBF.

Regards
Kishore
 
Did you call edit line multiple times? In your case is it called twice?
 
Hi Lucky,

Yes, i called Edilt line multiple times.please find below code for your reference.

GetDetailInternalTransferProcessVO itemDetail = null;
if (!messages.hasErrors()) {
for (int editLine = 0; editLine < internalVO.getDetailInventoryTransfers().size(); editLine++) {
itemDetail = internalVO.getDetailInventoryTransfer(editLine);
tempMessages = callEditLineInvTransfersWrapper(context, connection, internalVO,itemDetail);
messages.addMessages(tempMessages);
}
}

Regards
Kishore
 
Did you test it thru E1 app?. Once it is running fine on E1 , you can test it thru BSSV which can resolve most of the issues.

Chan
 
Back
Top