The Forums on slxdeveloper.com are now retired. The forum archive will remain available for the time being. Thank you for your participation on slxdeveloper.com!
|
|
is there any procedure to openning the New Contact
Posted: 05 Dec 06 9:08 AM
|
fiogf49gjkf0d I am able to open perticular contact Form from saleslogix by using fallowing code SalesLogix.SlxApplicationClass app = new SalesLogix.SlxApplicationClass(); app.BasicFunctions.ShowDetails("CONTACT","CGHEA0002696"); My question is is there any method to openning to new contact(which has no data) Form |
|
|
|
Re: is there any procedure to openning the New Contact
Posted: 06 Dec 06 5:01 AM
|
fiogf49gjkf0d There are several reasons why doing that directly wouldn't be such a great idea, but this is what I would do:
- Create a Contact Record with minimal information behind it, and open it up. Minimal Info would be: - AccountID (Have a way for user to select an account before hand) - Create a Contact with info for Required Fields - Create the necessary Address record for the Contact
The bad thing about it is that if the user doesn't complete the Contact you will be left with partial records all over the place (in other words, no way to cancel or undo) |
|
|
| |
| |
| |
|
Re: is there any procedure to openning the New Contact
Posted: 07 Dec 06 2:31 AM
|
fiogf49gjkf0d ryan, tank you very much for your help i have done my task successfully ....
slx.BasicFunctions.DoInvoke("Function", "Insert:ContactAccount"); what is the main purpose of theDoinvoke method and is any other function names like Inser:ContactAccount if there please send me that list
once again many thanx |
|
|
|
Re: is there any procedure to openning the New Contact
Posted: 07 Dec 06 9:59 AM
|
fiogf49gjkf0d Here's an easy way to see those.
1) Open a legacy form in architect 2) Open the legacy toolbox (click the toolbox icon on the toolbar while the legacy form is in focus). 3) Select the "Actions" tab 4) Change the drop down to "Function" 5) Voilá. Now you can see them all!
BTW, you can also query the SecFunctions table as well to see them.
-Ryan |
|
|
|