When using the Oracle database frontend application, under the Shipping Transactions Screen, there is an attribute called "Next Step". This attribute sits next to the "Line Status" attribute. My question is, where does this attribute, "Next Step" stay within the standard Oracle backend tables/views, such that I can query for this value?
The contents of this attribute are commonly things like:
- Ship Confirm/Close Trip Stop
- Transact Move Order
- Pick Release
If the answerer could provide a table name or view name, i.e. WSH_DELIVERY_DETAILS, that would be great.
Thanks!
The "Next Step" item is generated by function function get_next_step() in one of the shipping transaction form's program units, see code further below. To use it in SQL, this function logic can be transformed into a case statement, for which you find a code example in the ONT Order Headers and Lines Blitz Report, which shows the 'Next Step' in column CB of the generated Excel file.