Skip to Content
Author's profile photo Former Member

Share data between different GUIBB.

Data sharing between different feeder class UIBB.

there are many ways to data transfer in UIBB.

1. using wiring concept.

2. using shared class.

data sharing in feeder class uibb  means from  FORM_GUIBB  to LIST_GUIBB  or vice-versa  etc.

Create a class create  static attribute  for  holding data that you want to share between  differernt  UIBB’s . We use static attribute because  static object  exits once for class irrespective of number of object of class.

UIBB4.JPG

in above screen shoot we created a class for sharing data between uibb’s with static attribute mv_carrid.

now in attribute of GUIBB class like form_guibb class create a referance variable of  shared class created above.

uibb1.JPG

In one GUIBB class put data in static attribute mv_carrid  after calling  class instance.

uibb2.JPG

other GUIBB class call class static object  and use data that is stored in it.

uibb3.JPG

Assigned Tags

      1 Comment
      You must be Logged on to comment or reply to a post.
      Author's profile photo Former Member
      Former Member

      Hi Jitendra,

      The above information is very informative, and it mostly serves the requirement I have, but there is a slight change in my requirement, I have Search UIBB, List UIBB and FORM UIBB, I am using a single feeder class for all these, how to passdata from ListUIBB to FORM UIBB, using this feeder class, I have a Display button in the List UIBB component, on click of this button the form uibb should display the selected document from the list uibb.

      Regards,
      Tek