cursor location in Data Entry

Discussions about CSEntry
Post Reply
chandi
Posts: 9
Joined: August 12th, 2023, 3:31 am

cursor location in Data Entry

Post by chandi »

1. Is it possible to specify cursor field in data entry application within "pff" file when I directly need to jump as program start via pff modification within menu program,
2. Also How I ended data entry once user come to last field I need not to make visible csentry application anymore as I allow single entry per menu click. I need this for Modify mode also.
3.Does all these solution proposing is valid for CAPI too?

Thanks for your time.
Gregory Martin
Posts: 1796
Joined: December 5th, 2011, 11:27 pm
Location: Washington, DC

Re: cursor location in Data Entry

Post by Gregory Martin »

Take a look at the settings for data entry PFFs: https://www.csprousers.org/help/CSPro/r ... entry.html

1) What you could do is define a custom parameter and then, if it is defined, use it to skip to a specific field. For example:
PROC YOUR_LEVEL

preproc

    if sysparm
("StartingField") <> "" then
        advance to sysparm
("StartingField");
    endif;
2) This is what the Key attribute of the PFF does. It allows you to add/modify a specific case, and then closes CSEntry once that case is entered.

3) Both apply to CAPI.
Post Reply