Hi,

Just created a new table from scratch, with a new DD.

I notice that the studio created the DD with a mix indentation of 2 (which is what I use) and 4 (which is the studio's default)

The studio has been set to use a tab size of 2 and to convert tabs to spaces while typing.

Here's what the studio generated:

Code:
Use efx_DataDict.pkg

Open USRCODE
Open USRTYPE

Class USRCODE_DataDictionary is a efx_DataDictionary
    
    Procedure Construct_Object
        Forward Send Construct_Object
        Set Main_File to USRCODE.File_Number

      Set Add_Server_File to USRTYPE.File_Number

        Set Foreign_Field_Option DD_KEYFIELD DD_NOPUT to True
        Set Foreign_Field_Option DD_KEYFIELD DD_FINDREQ to True
        Set Foreign_Field_Option DD_INDEXFIELD DD_NOPUT to True
        Set Foreign_Field_Option DD_DEFAULT DD_DISPLAYONLY to True

      Set Field_Label_Long Field USRCODE.DELETED to "Deleted"
      Set Field_Option Field USRCODE.DELETED DD_CAPSLOCK to True
      Set Field_Checkbox_Values Field USRCODE.DELETED to "Y" ""
      Set Field_Option Field USRCODE.DELETED DD_NOENTER to True

    End_Procedure

End_Class
Is there a template (DFO) I can modify/change?

Thanks.