Adding Custom Fields to Sales Order headerHow to customize the sales order process to trigger an automatic “adding contract” process when sales order is successfully completedGet order information such as inventory id, customer id and location id in a sales order during Business Logic CustomizationPopulate custom field while creating sale order from opportunityCreating new Customised field so it appear in Sales Order import scenario in Order Nbr.> sectionDisplay Customer Activity Notes on Sales Order After CustomerID enteredAcumatica Validation for sales orderCopy Customer Attributes to Sales Order AttributesOpen Sales Order from Custom screenHow can you pass a custom field value from sales order screen to sales invoice screen in acumatica codeAcumatica -Sales Order - Prevent Automatic Updating of Fields When Changing Customer
Compelling story with the world as a villain
Can pay be witheld for hours cleaning up after closing time?
Notepad++ - How to find multiple values on the same line in any permutation
How to draw a cube that can be inscribed within a right circular cone?
Why is Boris Johnson visiting only Paris & Berlin if every member of the EU needs to agree on a withdrawal deal?
Shouldn't the "credit score" prevent Americans from going deeper and deeper into personal debt?
How much code would a codegolf golf if a codegolf could golf code?
C++20 constexpr std::copy optimizations for run-time
Would this system work to purify water?
What to say to a student who has failed?
Justifying the use of directed energy weapons
When did G-d say to Yaakov that he will have 12 sons?
Singleton Design Pattern implementation in a not traditional way
Sun setting in East!
Are illustrations in novels frowned upon?
Mathematical uses of string theory
How to use "Du hast/ Du hattest'?
If all stars rotate, why was there a theory developed, that requires non-rotating stars?
Avoiding racist tropes in fantasy
Is there a known non-euclidean geometry where two concentric circles of different radii can intersect? (as in the novel "The Universe Between")
Fried gnocchi with spinach, bacon, cream sauce in a single pan
What are some interesting features that are common cross-linguistically but don't exist in English?
Does travel insurance for short flight delays exist?
What is the history of the university asylum law?
Adding Custom Fields to Sales Order header
How to customize the sales order process to trigger an automatic “adding contract” process when sales order is successfully completedGet order information such as inventory id, customer id and location id in a sales order during Business Logic CustomizationPopulate custom field while creating sale order from opportunityCreating new Customised field so it appear in Sales Order import scenario in Order Nbr.> sectionDisplay Customer Activity Notes on Sales Order After CustomerID enteredAcumatica Validation for sales orderCopy Customer Attributes to Sales Order AttributesOpen Sales Order from Custom screenHow can you pass a custom field value from sales order screen to sales invoice screen in acumatica codeAcumatica -Sales Order - Prevent Automatic Updating of Fields When Changing Customer
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I have added some custom fields to the Customer Location window for License Info i.e. License Number and Expiration Date.
I now want these fields to appear on the Sales Order Header and change if the Customer Location changes.
I thought this would be easy, but the custom fields do not appear to auto link on this screen.
acumatica custom-fields
add a comment |
I have added some custom fields to the Customer Location window for License Info i.e. License Number and Expiration Date.
I now want these fields to appear on the Sales Order Header and change if the Customer Location changes.
I thought this would be easy, but the custom fields do not appear to auto link on this screen.
acumatica custom-fields
add a comment |
I have added some custom fields to the Customer Location window for License Info i.e. License Number and Expiration Date.
I now want these fields to appear on the Sales Order Header and change if the Customer Location changes.
I thought this would be easy, but the custom fields do not appear to auto link on this screen.
acumatica custom-fields
I have added some custom fields to the Customer Location window for License Info i.e. License Number and Expiration Date.
I now want these fields to appear on the Sales Order Header and change if the Customer Location changes.
I thought this would be easy, but the custom fields do not appear to auto link on this screen.
acumatica custom-fields
acumatica custom-fields
edited Mar 27 at 16:47
double-beep
3,1746 gold badges19 silver badges33 bronze badges
3,1746 gold badges19 silver badges33 bronze badges
asked Mar 27 at 13:54
WWEATHERSBYWWEATHERSBY
11 bronze badge
11 bronze badge
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
To add this to the sales order header, I would first need to declare a current customer location view in your Graph Extension:
public PXSelectReadonly<Location, Where<Location.locationID, Equal<Current<SOOrder.customerLocationID>>>> CurrentCustomerLocation;
And then you can add a new FormView, set the DataMember to CurrentCustomerLocation, and then reference the fields. This would be similar to what is found on the Customers screen (AR303000) on the General Info tab => DefContact.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55378959%2fadding-custom-fields-to-sales-order-header%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
To add this to the sales order header, I would first need to declare a current customer location view in your Graph Extension:
public PXSelectReadonly<Location, Where<Location.locationID, Equal<Current<SOOrder.customerLocationID>>>> CurrentCustomerLocation;
And then you can add a new FormView, set the DataMember to CurrentCustomerLocation, and then reference the fields. This would be similar to what is found on the Customers screen (AR303000) on the General Info tab => DefContact.
add a comment |
To add this to the sales order header, I would first need to declare a current customer location view in your Graph Extension:
public PXSelectReadonly<Location, Where<Location.locationID, Equal<Current<SOOrder.customerLocationID>>>> CurrentCustomerLocation;
And then you can add a new FormView, set the DataMember to CurrentCustomerLocation, and then reference the fields. This would be similar to what is found on the Customers screen (AR303000) on the General Info tab => DefContact.
add a comment |
To add this to the sales order header, I would first need to declare a current customer location view in your Graph Extension:
public PXSelectReadonly<Location, Where<Location.locationID, Equal<Current<SOOrder.customerLocationID>>>> CurrentCustomerLocation;
And then you can add a new FormView, set the DataMember to CurrentCustomerLocation, and then reference the fields. This would be similar to what is found on the Customers screen (AR303000) on the General Info tab => DefContact.
To add this to the sales order header, I would first need to declare a current customer location view in your Graph Extension:
public PXSelectReadonly<Location, Where<Location.locationID, Equal<Current<SOOrder.customerLocationID>>>> CurrentCustomerLocation;
And then you can add a new FormView, set the DataMember to CurrentCustomerLocation, and then reference the fields. This would be similar to what is found on the Customers screen (AR303000) on the General Info tab => DefContact.
answered Mar 27 at 20:04
KRichardsonKRichardson
6775 silver badges11 bronze badges
6775 silver badges11 bronze badges
add a comment |
add a comment |
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55378959%2fadding-custom-fields-to-sales-order-header%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown