Cull/Beef Animals
2 min
you can create a list of animals for potential culling and then send that list to your mobile device, rather than printing a paper copy of it to do so, follow the steps below step 1 define your culling parameters there are numerous factors you can choose from when selecting animals to cull, such as high days in milk (dim, low milk production, animals that aren't pregnant, and so on) start by creating a list in dairycomp containing the parameters you consider important for culling for example \<font color="#6b7280">show id pen lact dim rpro milk pmilk scc tbrd for lact\>0 dim\>200 dcc\<50\</font> the above command has several parameters commonly used for identifying animals for potential culling, such as days in milk (dim), times bred (tbrd), and somatic cell count (scc) the for statement qualifies which animals to include on the list depending on the size of your herd, your first attempt at producing a list of animals to cull might yield too many animals if that's the case, adjust the parameters of your command to pare the list down to a management number of animals the ultimate goal of this list is to go and inspect the animals in the field, so pare the number down enough to make that task reasonable once you have your list of animals you can simply print it out; to make it more useful you'll probably want to send it to a mobile device if so, proceed to the next step step 2 set a custom item value for each animal on the list in order to send your list of animals to your mobile device (for example,pocket cowcardfor android or dc on mobile), you'll need to "set" a specific, custom item for each animal on the list this item might already be set for your dairycomp system, but if not you can set a new item using the alter\2 command for our example, we'll use an item named pccb (for pocket cowcard and beef) (pccb is a type 1 item, created using alter\2 ) and we will set a value for this item for every animal we want on our cull list to do that, we'll use the criteria we used to create our list in step 1, above for lact>0 dim>200 dcc<50 so to set our pccb item for all of the animals that meet our criteria, we'll execute the following command \<font color="#6b7280">pcc=1 for lact\>0 dim\>200 dcc\<50\</font> this means that we'll set the pccb to a value of 1 for every animal with a lactation (lact) greater than 0 (zero), days in milk (dim) greater than 200, and days carried calf (dcc) less than 50 now, if we were to enter the following command, we would see our list of animals \<font color="#6b7280">show id for pccb=1\</font> how can i clear an item from an animal? you can clear an item at any time using the = for xx command for example, to clear our pccb item, we would enter the following pccb= for <> in this case, the <> clears the pccb for every animal that had that item previously set if you were to enter just pcc= (i e , without the greater than/less than signs), the system would prompt you for the id number(s) of the animal(s) you want to clear step 3 send the list to your mobile device use the server command to send your list of cull animals to a mobile device (such as pcc or the dc on mobile app) for example \<font color="#6b7280">server id for pccb=1\k\</font> remember, we've already set the pccb item to 1 for the animals we want included in our cull list, so executing the above command sends that list to our mobile device the \k switch informs the system to prompt for individual animal id numbers to create a custom command in dairycomp to run a server string , start the command with a z, as in \<font color="#6b7280">zbeefl = server id for pccb=1\k\</font>