I have some employee data on my selection screen when i click on first name on employee data i need a popup display of emp details in abap - abap

I have a code written to display employee details in abap. at output when I click on first name at my selection screen I need all details of that employee as popup message. Can anyone help me to solve this

You can include a subscreen on selection screen and embed a oops alv with list of employees. You can then enabled Hotspot on entire record of alv and then display the pop-up in the corresponding hotspot event handler.

Related

How to dynamically open a form within a tab?

I have a parent form with a tab control. The tabs show subforms. Data shown in the parent form is general details about residential property, such as address, etc. In the tabs, the subforms show data that is county-specific and exhaustive, like garage square footage and on and on.
There are 6 tabs with a static subform i.e. that tab always shows the same subform. I'd like the 7th tab to dynamically open a subform depending on which county the property exists in. That is, based on the value of a control (Me.Form.County), populate this 7th tab with the corresponding subform for the highly specific details for that county.
(No, it's not desirable to make one subform that could render data for any county; it'd be huge, relatively. One form per county is the requirement.)
It'd be nice if there's a way to act on the event of clicking on the 7th tab to then open the county-specific subform, though I don't see OnClick for a tab. If there's a way that's close to that simple for the user that'd be fine too.
You can use the Subform.SourceObject property to change which form is displayed in a Subform control.
https://learn.microsoft.com/en-us/office/vba/api/access.subform.sourceobject
You can use the Change event of the Tab Control to respond to the user switching tabs and display the correct subform if they are looking at the desired tab.
Private Sub tabCounty_Change()
If tabCounty.Pages(tabCounty.Value).Caption = "County Info" Then
subCountyInfo.SourceObject = "frmCounty" & Me.Form.County
End If
subCountyInfo.Form.Requery
End Sub

Configure screen button events

How to configure a save button in order to press it and the info that is entered on the screen to be saved in a specific database table?
When you double clicked your button in the layout screen, you will see and fcode area that you should give a function name.
Then in the screen PAI events user comment section, you can define the what button will do. You should modify your db table, under that button fcode name case.
Here is a tutorial about module pool development.
You can check these links for table control tutorials: 1, 2.

Select Image File and Display it in Forms (Visual Basic)

I have a form, in which it has a few pictureBoxes that i intended to use as a normal button.
first button is the select file button where when the users click the button, a window will pop up allowing the users to select files to be analyzed.
the second button is a run button where when the users have selected the desired files, clicking this will run the application to analyze the image file.
third button is a stop button to stop the analyzing process.
last button is a help button that provide the help and support.
the question is that how do i display the selected files on the form in a tabular format with basic information like file name, file type, date created and date modified?
You can use a listview control with the .View property set to Details. Add an item and subitems for each file.

How to get the info from all the child windows onto a another window

I have problem in Visual Basic.net. I am new to this, so i got stuck at this one prob. The problem is:
1) I have a main window which calls few sub windows("employees') into the form. the main window looks like this
2)Now i can add some child windows to the main window by the FIle--> Add --> employee method. Now if i call the summary window which should take the salary information from all the employee child windows (i was'nt able to do this). this is the problem i have. Basically i want to add the salary values of all the employees and display it in the summary window. The main window +2 employee child window+ summary window looks like this below:
I attached the code in the drive and the link is : https://drive.google.com/file/d/0B_3pYsPcEtJWM1VIWEpPWnVyaU0/view?usp=sharing
So please can anyone help with this? Thank you

How to bind data in controls and edit accordinly on dropdwonlist selectedindexchagned event in mvc4 razor using jquery?

I have a view for create/ edit data, in my view contains a dropdownlist control and two textboxes and two buttons [Create, Done Modifications], and my requirement is like below.
User should be able to select his/her name from dropdownlist which contains list user names. By default create button is visible and ‘Done Modifications’ button should be invisible.
Based on the dropdownlist item selection, if the record is already exists then show up his/ her data in DOB, Location textboxes then invisible Create button and able to update to the database by Done Modifications button.
Data population, edit, create, delete logic should be implement in Controller classes.
Above things should be happen in asynchronously, I don’t want to allow post backs on any events.
Thanks for your time!
Sridhar Goshika
What is the hourly rate you are going to pay for this?
This is a list of specifications given to you, that you pass on to us; It does not show any research, any code showing what you have done and where you are at. Moreover, there is no question there.
submit() method will submit the form by dropdownlist item selection
#Html.DropDownList("ProdID", null, new {#onchange="submit()" })