cancel
Showing results for 
Search instead for 
Did you mean: 

Create oSockTransfer Document

0 Kudos
238

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

Of course Johan.

Because they are not well updated, and another thing is that our bar code can have more than one bar code that is why I need them to be updated.

Regards,

Alvaro

Johan_Hakkesteegt
Active Contributor

Hi Alvaro,

Ok, what about consuming a barcode? What I mean is, at what moment(s) / for what purpose(s) do you use the barcode, and where do you get it from, and how do you get it?

I ask this, because possible alternative solutions may or may not apply to your scenario.

Regards,

Johan

P.S. please use the comment function to respond, otherwise I do not get notified.