cancel
Showing results for 
Search instead for 
Did you mean: 

Create oSockTransfer Document

0 Kudos
242

hello everyone

I'm using the oStockTransfer object and in some cases I need to update the CodeBars field. When I try to find it, it does not appear in the sdk, so I can not update it.
I understand that this field is automatically filled with the bar code field that the product has in the oitm table but in some cases in the xml that I read to go up to sap it has diffe

Any idea how to update this fied?

Below part of the code.


for (int i = 0; i < oInventoryTransferRequest.Lines.Count; i++)
{
if (i != 0) StockTransfer.Lines.Add();
StockTransfer.Lines.SetCurrentLine(i);
oInventoryTransferRequest.Lines.SetCurrentLine(i);
StockTransfer.Lines.ItemCode = oInventoryTransferRequest.Lines.ItemCode;
string[] cantidad = oInventoryTransferRequest.Lines.Quantity.ToString().Split(delimiterChars);
StockTransfer.Lines.Quantity = Convert.ToDouble(cantidad[0]);
StockTransfer.Lines.WarehouseCode = oInventoryTransferRequest.Lines.WarehouseCode;
StockTransfer.Lines.ProjectCode = oInventoryTransferRequest.Lines.ProjectCode;
StockTransfer.Lines.UserFields.Fields.Item("U_Comentariosl").Value = oInventoryTransferRequest.Lines.UserFields.Fields.Item("U_Comentariosl").Value;
StockTransfer.Lines.DiscountPercent = 0;
StockTransfer.Lines.UnitPrice = oInventoryTransferRequest.Lines.Price;
StockTransfer.Lines.UserFields.Fields.Item("U_VuCadena").Value = oInventoryTransferRequest.Lines.UserFields.Fields.Item("U_VuCadena").Value;
StockTransfer.Lines.UserFields.Fields.Item("U_VIcoCadena").Value = oInventoryTransferRequest.Lines.UserFields.Fields.Item("U_VIcoCadena").Value;


sqlAdapter.cerrarConexion();

View Entire Topic
0 Kudos

Hello Johan.

We had originally thought about that, but the company informs me that this code is not exactly the same, because those inventory transfers requests are sent by customers through EDI (Electronic Data Interchange), we only read the information from the xml.

Any other idea Johan?.

Thank you.

Alvaro

Johan_Hakkesteegt
Active Contributor
0 Kudos

Hi Alvaro,

Could you please explain a little bit more why you need to change the barcode?

Regards,

Johan