I think what @KarolyHorvath wanted you to share was how to represent the board in Prolog, together with any ideas you have tried to solve this for yourself. In what follows I'm going use a list of list representation, the inner lists being rows and their items symbols or atoms (single lowercase letters, to keep it simple).
The problem is in a sense a generalization of latin squares, which require exactly one of each symbol in every row and in every column. Border a latin square with a new row and column containing only some new symbol, not otherwise shown in the latin square, and you'd have a solution meeting your problem's requirements.
That said, your problem deals with a partially completed rectangular board, not necessarily square, and with symbol frequencies that can vary from row-to-row and column-to-column.
For smallish boards like shown in your Example Board, a 3x3 array, the brute force approach is tempting. However there are some easy things to code to keep the search more efficient.
Some row and some column must be "constant", i.e. they must contain only one letter. I think I would make this the topmost choice in the search tree, i.e. choose a row and column that can be a single letter. Note that since every row intersects every column, we're going to use the same letter for both that row and column.
But before you begin searching for the solution, you need to enter the data that represents the board with its "given" entries. Use your own judgement about this, but for reasonable size boards you can probably get by with asking a user to enter the number of rows and the number of columns, and then prompting them row-by-row for the entries.
Keep in mind that the Prolog term reader wants input to be terminated by a period. So input might work something like this:
Enter a list of all letters: [a,b,c].
How many rows? 4.
How many cols? 4.
Enter a row as a list: [_,_,b,a].
Enter a row as a list: [b,_,_,c].
Enter a row as a list: [c,_,_,_].
Enter a row as a list: [_,a,_,_].
The underscore acts as an anonymous variable on input and leaves the corresponding list of list entries representing the board as free variables.
You can thus represent the list of all letters in your program with:
Symbols = [a,b,c]
and the board with a list of list that might look like:
Board = [[A1,A2,b,a],[b,B2,B3,c],[c,C2,C3,C4],[D1,a,D3,D4]]
In the particular example there is only one possible way to set all of a row and column to the same letter, and that's by taking the second column and last row both to have all a's:
Board = [[A1,a,b,a],[b,a,B3,c],[c,a,C3,C4],[a,a,a,a]]
But now we find the search for solutions runs into a blind end. The second row has all three letters, but in a row of length four it's impossible for the three letters each to appear the same number of times. There is no solution for this example.
However the "no solution" result was reached pretty efficiently.
Hopefully this gives you some ideas about how to code the general solving process in Prolog.