If you create column names in lower case (which can only be done using double-quotes), you have to reference them that way as well.
Due to the way Oracle upper-cases unquoted identifiers, you have to surround your column names with double-quotes everywhere you use them. Quick example using your provided DDL:
SQL Fiddle
Oracle 11g R2 Schema Setup:
CREATE TABLE "TEST_PROBA" (
"credit_num" VARCHAR2(11 BYTE) NOT NULL ENABLE
, "term_acc_open_date" DATE NOT NULL ENABLE
, "date_final_pmt_exp" DATE
, "dpd_1" VARCHAR2(5 BYTE) NOT NULL ENABLE
)
/
INSERT INTO test_proba (
"credit_num"
, "term_acc_open_date"
, "date_final_pmt_exp"
, "dpd_1"
)
VALUES (
'12341234123'
, SYSDATE
, SYSDATE+1
, 'foo'
)
/
COMMIT
/
Query 1:
SELECT "credit_num"
FROM test_proba
Results:
| CREDIT_NUM |
---------------
| 12341234123 |
Note that SELECT "credit_num" works while SELECT credit_num does not, and yields the ORA-00904 error as you mention above.