KVSKBACLLFMEAMgt
Procedures
NewFMEA(Record KVSKBACLLFMEAHeader, Code[20]) :
Summary: Initializes a new FMEA record with the specified call number.
procedure NewFMEA(var fmeaHeader: Record "KVSKBACLLFMEAHeader"; callNo: Code[20]):
Parameters:
fmeaHeader: The FMEA header record to be initialized.callNo: The call number to be associated with the new FMEA record.
Remarks: This procedure checks if the user has the necessary authorization to insert a new FMEA record. If the user is authorized, it initializes the FMEA header record with the provided call number and inserts it into the database.
CloseFMEA(Code[20], Boolean) :
Summary: Closes the specified FMEA record.
procedure CloseFMEA(FmeaNo: Code[20]; DoForce: Boolean):
Parameters:
FmeaNo: The FMEA number of the record to be closed.DoForce: Indicates whether to force the closure without confirmation.
Remarks: This procedure checks if the user has the necessary authorization to close the FMEA. If the user is authorized, it prompts for confirmation to archive the FMEA unless the DoForce parameter is set to true. If confirmed, it archives the FMEA and deletes the FMEA header record.
ShowFMEACard(Code[20]) :
Summary: Shows the FMEA card page for the specified FMEA number.
procedure ShowFMEACard(FmeaNo: Code[20]):
Parameters:
FmeaNo: The FMEA number of the record to be displayed on the card page.
Remarks: This procedure retrieves the FMEA header record based on the provided FMEA number and then opens the FMEA card page to display the details of the FMEA record.
ShowFMEACardArchive(Code[20]) :
Summary: Shows the FMEA card page for the specified archived FMEA number.
procedure ShowFMEACardArchive(FmeaNo: Code[20]):
Parameters:
FmeaNo: The FMEA number of the archived record to be displayed on the card page.
Remarks: This procedure retrieves the archived FMEA header record based on the provided FMEA number and then opens the FMEA card page to display the details of the archived FMEA record.