Langsung ke konten utama

Convert party types [AX 2012]

Convert party types [AX 2012]

Applies To: Microsoft Dynamics AX 2012 R3, Microsoft Dynamics AX 2012 R2, Microsoft Dynamics AX 2012 Feature Pack, Microsoft Dynamics AX 2012
There may be times when you have to update a record to change the party type from person to organization or from organization to person. For example, you may meet someone out in the field and create a party record that has a record type of organization. Later, you realize that the record type should be person. To make sure that the party record information is accurate, you can convert the party record type to person.

To convert a party record from one party type to another, you must first create a new party record of the correct type in the global address book. Then, you associate the record that you want to convert to the new party record. After you have made the new party association, delete the party record that has the incorrect record type.
For example, Nancy is part of the sales team for Fabrikam U.K. At a trade show in London, she meets six new prospects. Nancy creates a prospect party record for each prospect. When Nancy saves the records, each record is also created in the global address book. Fabrikam has set the default party record type in Microsoft Dynamics AX to be organization. However, two of the new prospects should have a record type of person. When Nancy returns from the sales conference, she must convert the party types of the two prospect records by using the following procedure.
This procedure can also be used for customer and vendor records.
Convert a party type


  1. Click Home > Common > Global address book
  2. On the Action Pane, on the Global address book tab, in the New group, click Party to create a new party record.
  3. In the Party form, on the General FastTab, select Person in the Record type field and enter the person’s name. This should be the name of the record that you will associate with the new party record.
  4. Close the party record.
  5. Click Sales and marketing > Common > Prospects > All prospects. On the All prospects list page, select the prospect record for which you want to change the association.
  6. On the Action Pane, on the Prospect tab, in the Maintain group, click Edit.
  7. In the Prospects form, on the General FastTab, click Change party association.
  8. In the Change party association form, in the New party record field, select the new party record that you created in steps 2 and 3, and then click OK.
  9. Click Home > Common > Global address book. On the Global address book list page, select and delete the organization type party record from which you just dissociated the prospect record

Komentar

Postingan populer dari blog ini

Use X++ wildcard (LIKE and NOT LIKE) in X++ select statement

For x++ select statements:  select firstOnly batchHistory      where batchHistory.Caption  LIKE  "*Test*"  For x++ queries:  queryBuildRange.value(*Test*); Note the LIKE instead of a '==' and the wildcards inside of the quotations. All other combinations of wildcard usage will work here. This is the same functionality as what the users would put in the grid filtering(eg. '*TEST*' in the caption field filter on the batch tasks form).  However, if you want to find all Captions that do not have the word Test in them (NOT LIKE, !LIKE), you will have to modify the above example slightly.  For x++ select statements:  select firstOnly batchHistory      where  !( batchHistory.Caption LIKE "*TEST*" ) ;  For x++ queries:  queryBuildRange.value(!*Test*);

Format Label Tom Jerry (MS Word)

Setelah beberapa lama aku tidak membuat label undangan, tiba-tiba kemarin aku diminta untuk membuat label undangan Wisuda dengan menggunakan label merek Tom & Jerry (TJ). Harusnya sih menjadi tugas sekretaris panitia tapi karena yang bersangkutan ada tugas di luar kantor maka aku yang membereskannya. Mula-mula aku membuat format labelnya dengan cara manual, tapi untung ada pak Mulyadi (staf tata usaha) yang menyarankan aku untuk mengunduh format label yang telah ada di Internet. Mulailah aku browsing di google dan menemukan format label berbagai ukuran dari website Tom & Jerry di alamat berikut  http://tjlabels.com/en/download.html  (yang link ini agak rempong krn pake masukin nomor captcha-captcha-an). Sedangkan kalau yang link ini langsung pilih file ga pake nomor captcha-captcha-an ( http://tjlabels.com/assets/download/ ). Ternyata juga ada banyak berbagai blog yang menyediakan  link download seperti ini, tapi aku mem- posting  artikel ini ...

Solved : Update on a valid time state table is not allowed without specifying a ValidTimeStateUpdateMode

How To Solve Error :  Cannot edit a record in Position hierarchies (xyz). Update on a valid time state table is not allowed without specifying a ValidTimeStateUpdateMode. select forUpdate * from xyz where xyz.recid== _RecId ; try { ttsBegin; _Value= “Abcd”; xyz.Name = _Value; xyz.validTimeStateUpdateMode(ValidTimeStateUpdate::Correction); xyz.ValidFrom =today(); xyz.ValidTo=dateMax(); xyz.update(); ttsCommit; } catch { ttsAbort; }