on 2018 Nov 04 3:33 PM
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();
Help others by sharing your knowledge.
AnswerRequest clarification before answering.
We create a user field Johan. That was the workaround.
Thank you very much
Alvaro Argenzio
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.
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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Alvaro,
You could call an Items object, and set its CodeBars property before you add the item to the document.
Regards,
Johan
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
60 | |
9 | |
8 | |
7 | |
6 | |
4 | |
3 | |
3 | |
2 | |
2 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.