cancel
Showing results for 
Search instead for 
Did you mean: 

Dynamically Populating the Default values for Input Form in VC

Former Member
0 Kudos

Hi,

We had a requirement like the User id must be the Input for my Function module and that User id must be populated automatically based on the person who is executing this. Well, I made it SY-UNAME as the default value for my Input variable at this Function module level.

I created an application in VC with that Function module. And in the input screen, I can only give HARD CODED DEFAULT VALUES. But I want the Current User id to be displayed automatically when we execute this IView in EP.

Is there any system variable to do the same in VC?

Is it possible in VC?

Regards,

Raja Sekhar

Accepted Solutions (0)

Answers (2)

Answers (2)

former_member182416
Active Contributor
0 Kudos

Hi

Use the User Object of VC.

Connect it to your Form and that will give you all available user details

including User Name , First Name , last Name etc .

regards

rajendrakumar gaikwad.

Former Member
0 Kudos

Hi there,

VC does not use any system variable as such, try to explore how to use dynamic expression to set the value of a particular input dynamically, i.e. during initialization or computation.

Thank you very much.