Hi,
To pass the session’s username and date when submitting a POST or PUT request, you would need to develop a custom stored procedure. Virtual DataPort has a Java API, the [Denodo4E](https://community.denodo.com/docs/html/browse/7.0/denodo4e/install_denodo4e/install_denodo4e#installing-denodo4e) plug-in for Eclipse, that can be used to develop these custom components.
I would suggest first creating a view in Virtual DataPort with the following query:
`CREATE VIEW test AS SELECT GETSESSION('user'), CURRENT_DATE();`
This view will return the current session’s username and date by utilizing the [GET_SESSIONS](https://community.denodo.com/docs/html/browse/7.0/vdp/vql/stored_procedures/predefined_stored_procedures/get_sessions#get-sessions) stored procedure and [CURRENT_DATE](https://community.denodo.com/docs/html/browse/7.0/vdp/vql/appendix/syntax_of_condition_functions/date_processing_functions#current-date) function. Your custom stored procedure should get this view’s output and pass those values into the POST or PUT request to be inserted or updated in the table.
You can read [Developing Stored Procedures](https://community.denodo.com/docs/html/browse/7.0/vdp/developer/developing_extensions/developing_stored_procedures/developing_stored_procedures) in the Virtual DataPort Developer Guide for more information on this topic.
Hope this helps!