RE: Issues with Management Reporter - Creating New Row Definitions and Using Links to Accounts. Account's descriptions aren't showing up.
Well, you may have several options but I would personally consider one of the below:
1- Macro,
# DEXVERSION=14.00.0072.000 2 2
CheckActiveWin dictionary 'default' form 'GL_Segment_Maintenance' window 'GL_Segment_Maintenance'
TypeTo field 'Segment Name' , 'Account'
MoveTo field 'Segment ID'
TypeTo field 'Segment ID' , '1100'
MoveTo field Description
TypeTo field Description , 'Main Cash'
MoveTo field 'Save Button'
ClickHit field 'Save Button'
# Do you want to roll down account segment description changes to accounts that contain this segment?
NewActiveWin dictionary 'default' form DiaLog window DiaLog
MoveTo field CANCEL
ClickHit field CANCEL
NewActiveWin dictionary 'default' form 'GL_Segment_Maintenance' window 'GL_Segment_Maintenance'
For the macro method, you should be aware of one little thing which is rolling down the changes to your account description. If your account is already configured with the proper description, just don't roll the segment description.
2- Update statement directly on the SQL table, GL40200
UPDATE dbo.GL40200
SET DSCRIPTN = ''
WHERE SGMNTID = '' AND SGMTNUMB = ''
For the update statement, you should be quite cautious that there are two different parameters (Segment Number and Segment ID), the segment number is the position of the segment in the account format, whether it is the first or second segment. On the other hand, the segment id is the actual segment itself.
Let me know if you need any further assistance,