-1

My variable is of type N ie.,

COMP_ID(8) TYPE n

I have created a Transparent Table. In my table, COMPLAINT_ID field is of type 'NUMC'.

while I'm saving COMP_ID into my table's COMPLAINT_ID, it is not fetching the value.

Sandra Rossi
  • 11,934
  • 5
  • 22
  • 48
BalajiB
  • 326
  • 6
  • 29
  • 2
    Please provide more details and some running example of your code. What kind of table is it? Is it a transparent (databes) one or is it an internal one? Please improve your question, so that people can help you. – Jagger Aug 07 '17 at 07:57
  • it's a transparent table – BalajiB Aug 07 '17 at 08:29
  • 5
    Working example still pending... Please paste your code where you do your `INSERT` or `UPDATE` or whatever it is. – Jagger Aug 07 '17 at 08:39

1 Answers1

0

If you use numc as domain of a data element, it will take 5 characters. You should give predefined type and define the length of the data element that you use in the table.I believe this is the problem. enter image description here

Oguz
  • 1,867
  • 1
  • 17
  • 24