Need to identify a field in menu 1.2.17 (Sales Account Maintenance) in eB2

I am not sure if anyone can see the attachment... so re-posting the question ...

Hello All,

We need to find a field in menu 1.2.17. View attachment 939View attachment 939View attachment 939View attachment 940
In menu there is a field Expense Due Account : which is showing as its getting stored to a local variable 'l_fsexd_acct '
as all other fields are stored in plsd_det table.

As we don’t have the source code of 1.2.17 menu (its in encrypted format..) I don’t have any idea that to where this value is stored. I tried the fields pl_fsexd_acct, pl_fsexd_cc & pl_fsexd_sub. But its not correct. We need to identify this field for report making purpose. Can any one pls help in identifying in which table this value is getting updated. ???1_2_17_ctrl_f.JPG
 

Attachments

  • 1_2_17.JPG
    1_2_17.JPG
    56.7 KB · Views: 19
Code:
for each plsd_det no-lock
,each qtbl_ext no-lock
   where qtbl_owner="T2:T3"
   and qtbl_reference = "ExpenseDueAcc:Sub:Cc"
   and qtbl_key1 = plsd_prodline
   and qtbl_key2 = plsd_site
   and qtbl_key3 = plsd_cmtype
   and qtbl_key4 = plsd_channel :

   display qtbl_qad01   /* Expense Due Account */
             qtbl_qad02   /* Sub-Acct */
             qtb_qad03.  /*  Cc */
end.
 
Back
Top