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;








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.










share|improve this question
































    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.










    share|improve this question




























      0












      0








      0


      1






      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.










      share|improve this question
















      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






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      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

























          1 Answer
          1






          active

          oldest

          votes


















          0















          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.






          share|improve this answer
























            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
            );



            );













            draft saved

            draft discarded


















            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









            0















            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.






            share|improve this answer





























              0















              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.






              share|improve this answer



























                0














                0










                0









                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.






                share|improve this answer













                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.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Mar 27 at 20:04









                KRichardsonKRichardson

                6775 silver badges11 bronze badges




                6775 silver badges11 bronze badges





















                    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.



















                    draft saved

                    draft discarded
















































                    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.




                    draft saved


                    draft discarded














                    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





















































                    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







                    Popular posts from this blog

                    Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

                    Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

                    Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript