DataWindow name containing special characters

The C# naming convention does not allow using special characters (such as dash (-), dollar sign ($), number sign (#), and percent sign (%)) in the DataWindow name. Such special characters in the DataWindow name will be replaced with underscores when converted to the C# model; thus the DataWindow will not be found after conversion as the name has changed. For example, the DataWindow name "d_sp_who_with-dash" will be converted to "D_Sp_Who_With_Dash.cs"; and the following error may occur when retrieving data: "Select Error: DataWindow 'd_sp_who_with-dash' was not found".

Please double check that the DataWindow name contains no dash (-), dollar sign ($), number sign (#), or percent sign (%).