Hi there fellow Baanies
can i ask you a question about Extensions and Customer defined fields?
My Problem is as follows:
- created a table extension on table tisfc001
- created a customer defined field tisfc001.cdf_sord
that field has to be filled with the order number from tdsls402
My problem is, i just cannot set the value in the CDF. I can update other standard fields with my extension but i cannot fill the Customer defined Field
What i already did:
- defined the CDF in Declarations
extern domain ticdf___str030 tisfc001.cdf_sord
- set the fill of the CDF in Before.Save
| SLS Number
select * from tdsls402
where tdsls402.apdo = :tisfc001.pdno
as set with 1 rows
selectdo
tisfc001.cdf_sord = tdsls402.orno
endselect
- set the fill of the CDF in the CDF Field Logic Section in Update
| SLS Number
select * from tdsls402
where tdsls402.apdo = :tisfc001.pdno
as set with 1 rows
selectdo
tisfc001.cdf_sord = tdsls402.orno
endselect
I also tried to set the code in every other section possible, it just wont do the trick.
Can you please help a bro out here?
