I don't know which DBMS you're approaching this from, looks like it could be Oracle (?) but I'm not sure, but here's some basic thoughts...
A foreign key is essentially a primary key in another table. For example, if you had a parking registration database, one table could be for Vehicles where the primary key was Vehicle Type (CR for Car, BK for Bike, etc). If you had another table, for example Customers, that stored people who could park in the garage, if you used Vehicle Type to indicate what kind of vehicle the customer had, Vehicle Type would be a foreign key.
Usually you "connect" foreign keys to primary keys to enforce referential integrity- in other words, you are trying to restrict what people can enter in that field. For Vehicle Type, for instance, you may not want people typing in MO for Motorcycle if it doesn't exist in the Vehicle table, or even doing something as simple as making a typo (CT instead of CR for Car), so that is why you connect the foreign key of one table to its primary key counterpart in the other table.
For your database problem, one of the fields in your Customer table references a primary key in another table, so you need to write a constraint statement to connect it to that primary key. In Oracle, the syntax would be something like...
CONSTRAINT constraint_name FOREIGN KEY (field in Customer table) REFERENCES table_with_primary_key (field in primary key table)
using CusBal as an example if you had a second table called Accounts
CONSTRAINT cusbal_fk FOREIGN KEY (CusBal) REFERENCES Accounts (CusBal)
Hope this helps. If you are using Oracle, syntax example in my sources below.