cancel
Showing results for 
Search instead for 
Did you mean: 

Transaction Iview

Former Member
0 Kudos

Hi,

I had created one transaction Iview and it was working fine.

Now when I added the code for creation of another transaction iview then it is opening the previous transaction iview twice instead of two different iviews.

Following is the code:

String bizPartner = requestresult;

String p_abb =

wdContext

.currentReviewerDataElement()

.getABBCRR();

String p_serv =

wdContext

.currentReviewerDataElement()

.getSERV();

String p_dunfs =

wdContext

.currentReviewerDataElement()

.getFiscalStrength();

String p_dunr =

wdContext

.currentReviewerDataElement()

.getRisk();

String p_ex =

wdContext

.currentReviewerDataElement()

.getPrevExp();

String p_qq =

wdContext

.currentReviewerDataElement()

.getPubSecComp();

String p_seg =

wdContext

.currentReviewerDataElement()

.getCreditSegment();

String ukm_credit_limit =

wdContext

.currentAddressElement()

.getCredit();

WDPortalNavigation.navigateAbsolute(

"Path to iview1",

WDPortalNavigationMode

.SHOW_HEADERLESS_PORTAL,

"Resizable=yes",

(String) null,

WDPortalNavigationHistoryMode

.NO_DUPLICATIONS,

(String) null,

(String) null,

"P_KUNNR="

+ bizPartner

+ "&P_ABB="

+ p_abb

+ "&P_SERV="

+ p_serv

+ "&P_DUNFS="

+ p_dunfs

+ "&P_DUNR="

+ p_dunr

+ "&P_EX="

+ p_ex

+ "&P_QQ="

+ p_qq

+ "&P_SEG="

+ p_seg

+ "&P_CREDIT="

+ ukm_credit_limit);

WDPortalNavigation.navigateAbsolute(

"path to iview2",

WDPortalNavigationMode

.SHOW_HEADERLESS_PORTAL,

"Resizable=yes",

(String) null,

WDPortalNavigationHistoryMode

.NO_DUPLICATIONS,

(String) null,

(String) null,

"RF02D-BUKRS=1000&RF02D-KUNNR="

+ requestresult

+ "&ADDR1_DATA-LANGU=EN");

what could be reason for this.

Any kind of help will be appreciated.

Thanks,

Dushyant

Accepted Solutions (0)

Answers (1)

Answers (1)

former_member189631
Active Contributor
0 Kudos

Hi,

You can use the tempalte to create transaction iViews

Create -> new iVew from template -> select the SAP Transaction Iview

Give the system details

save -> preview

Ramganesan Karuppaiyah

Former Member
0 Kudos

Hi ,

i have already done the same.