cancel
Showing results for 
Search instead for 
Did you mean: 

how to display user define value in list screen from detail screen

Former Member
0 Kudos

Hello Experts

I am working on task in which i have to display the user define value on list screen. like i have one list list screen which have one button for add..once i click on add which navigate to detail screen and detail screen has two fields one for ID AND other for name and detail screen has one button for save once i put value for id and name and click on save button which will navigate to previous list screen and those values which should be display on list screen.

Regards:

Sumit

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Are you calling a Transaction in your Navigation or are you just going to a detail Screen?

When you "save" the values, you have an "Apply" Step in the Action?

Stephen Streeter

Former Member
0 Kudos

Hi Steve

You are right i already used that step but just want to display that value in previous screen when i click on save button.Both are detail screen..

Regards:

Sumit

bill_froelich
Product and Topic Expert
Product and Topic Expert
0 Kudos

Sumit,

As Steve was asking, you will need to use a transaction in your Add button action to save the values you want to display on the next screen into a property within an object.  Probably using temporary properties on Main object to store the values and then referencing them on the new screen via update rules.

--Bill

Former Member
0 Kudos

Hi Bill

I am trying and will get back to you.

Thanks.

Answers (1)

Answers (1)

naveenraj_a
Active Participant
0 Kudos

Hi Sumit,

To navigate to the Master page on button click , you need some thing like,

oSplitApp.toMaster("masterpage_id");

to understand the navigation for Master/Detail page , have a look at,

http://help.sap.com/saphelp_uiaddon10/helpdata/en/df/adb6b7247e4826b0fcde472b029840/content.htm

Also to pass value from Detail page to Master page, you can use a Global variable to store your values on click of the Save button. For eg. You may have a global JS file which both Master and Detail page can access like App.Js, Application.JS etc.

After navigating to the Master page, you can read the Global variables and show it on your Master page.

Former Member
0 Kudos

Naveenraj,

Looking at the tags, I believe this issue for Agentry and not oData application.

Stephen