Hello guys, Record browser says that Picked packed...
# general
t
Hello guys, Record browser says that Picked packed and shipped date fields are available on item fulfillment, but I can't see them. I have checked for visibilty , on standard forms in multiple accounts, even loaded some record objects using suitescript but didn't get them. What I am missing ?
d
They're pickeddate and packeddate on the item fulfilment record. Item fulfilments use transaction searches which don't expose the fields. You'd need to source them from the record.
Console code example:`var record = nlapiLoadRecord('itemfulfillment',<FULFILLMENTID>);`
var packeddate = record.getFieldValue('packeddate');
console.log(packeddate);
t
There isn't a single Item Fulfillment record, which have these values. I have checked two accounts.
although these fields are available in Record browser, I am not able to see them, using record object or xml=t, I have checked the for visibility also. Nothing works
I tried exporting a saved search they are tranpackeddate transpickeddate there.
But still don't work.
message has been deleted
This could not get the field. I am getting null when I am trying on console.
d
The above example works fine in our account. Have you got Pick,Pack and Ship in Setup > Company > Enable features :: Transaction tab, and is it enabled?
t
Yes that is enabled.
d
lookupfield won't work, as it uses the search mechanism which, as mentioned above, doesn't expose the field.
var record = nlapiLoadRecord('itemfulfillment',511914); var packeddate = record.getFieldText('packeddate'); console.log(packeddate);
Assuming 511914 is the internal ID of a fulfilment
t
message has been deleted
d
Sorry, my error.
t
message has been deleted
got you
but still
Aren't these field also exposed client side ?
Like if I try this also don't work. While this works with other fields like memo
d
How are your fulfilments created? Does shippeddate return a value with the above method?
t
They are created via UI. and that still returns same
d
Assuming 511914 is definitely a valid internal ID for a shipped fulfilment, I'd probably have to resort to asking NS Support for guidance in that case. Ours all show the dates on records and in the UI, even using the Standard Item Fulfillment form
t
yes the internal id is valid. I have tried this now on three accounts . After nothing works, contacting NS support is the only option left.
Anyway, thanks for your time and efforts .