What is the Delete key for CIM function?

ivyhui0527

New Member
Environment: Windows XP
MFG/Pro : eb2
Progress : 9.1d

I need to CIM data into 27.1 (DR/CR Memo Maintenance) in order to delete the created Credit Note Reference Number.

May i know what is the delete key for a CIM or how to represent F5 for a CIM?


Thanks and appreciate.
 

mosfin

Member
normally, if a program supports batch/CIM delete function, there's another field(Yes/No)
usually in the first frame after the main key(index) field, which means: Yes=delete record No=don't delete
this field is enabled only if it is ran in batch mode (batchrun=yes)
try this:
1. open Progress Editor(in CHUI)
2. write this code :
{mfdeclre.i}
batchrun=yes
{gprun.i ""ardrmt.p""}

you should see another Yes/No field somewhere in the 1st frame
in CIM file, simply add "Y" to that field, and it will function as F5
 

W.Wulmsen

Member
In addition to CIM delete.

Mostly only base tables can be deleted van CIM. AR transaction CANNOT be deleted via CIM in eb2.
When applicable press <CTRL>-F in a MFG screen. A message is displayed in the bottom of the screen indicating if batchdelete is possible.

If batchdelete is possible an additional field is displayed for one character in Batchmode. Fill this field with "X" for delete. In relation to the functionality an the programmer this field is either display at the level of key field or later. Some transactions request a confirmation and some don't.

example program 2.1.1 Customer Maintenance & 1.4.1 Item Maintenance

W
 
Top