I am using batch file to delete partial save cases from .csdb file but not worked
The code in batch file is
if demode()=2
then
skip case
endif;
and i have tried this one also.
if ID= ispartial()
then
skip case;
endif;
I don't want to delete it one by one, it takes lot of time to complete deletion
So, please help me how can I delete my partial save cases from my data file.
how to delete partial save cases from data file
-
Bhupender11
- Posts: 63
- Joined: May 15th, 2018, 1:18 am
-
josh
- Posts: 2403
- Joined: May 5th, 2014, 12:49 pm
- Location: Washington DC
Re: how to delete partial save cases from data file
Your second try is close. ispartial() returns 1 if the case is partial and zero otherwise so try the following:
if ispartial() then
skip case;
endif;
skip case;
endif;
-
Bhupender11
- Posts: 63
- Joined: May 15th, 2018, 1:18 am
Re: how to delete partial save cases from data file
Thankyou josh it works fine.