Hey,
how can i return the RECID from a selectede record.
I try it with this code but it does not work.
int64 stiRecId;
str stiRecIdStr;
;
//TODO Anfrage um bestellt durch erweitern mund ggf. Status != Übernommen
select salesTableImport
where salesTableImport.CustAccount == account
&& salesTableImport.OrderedBy == orderedBy;
stiRecId = salesTableImport.RecId;
stiRecIdStr = int642str(stiRecId);
if(salesTableImport.RecId != 0)
{
// return salesTableImport;
//Info('Kopf ist bereits vorhanden');
}
Thanks for help.
*This post is locked for comments
I have the same question (0)