cancel
Showing results for 
Search instead for 
Did you mean: 

Providing link of Z transcation on EBP welcome screen

former_member184111
Active Contributor
0 Kudos

Hi All,

How to provide link for a Z transcation on EBP Welcome screen.

On the left hand section I have provided a link from PFCG but how to show this link on main screen.

If it were a BSP application I can modify BBPSTART Template BBPGLOBAL_650_EMP as follows;

A_GEN_URL<i>      = "http://sapupd.companyname.com:8002/sap/bc/bsp/sap/zbspsrm_confirm/confirm.htm?sap-client=200&sap-language=en";

How to provide link for a Z transction in template?

Regards,

Anubhav J

Accepted Solutions (0)

Answers (1)

Answers (1)

former_member184111
Active Contributor
0 Kudos

Added the transcation in Zrole in PFCG

Modified template BBPGLOBAL_650_EMP of Internet Service BBPSTART AS Follows:


<!-- Search for confirmation transaction in launchpad -->
 repeat with idx from 1 to MENU_NODE_TAB-TEXT.dim; 
<!-- The original transcation Standard 'Confirmation' is modified and report transcarion -->
<!-- ZBUSRP is called . Transctions BBPCF01/02/03 are removed from role in PFCG and transcation ZBUSRP-->
<!-- is added in PFCG -->

  if( (MENU_NODE_TAB-S_IDENT[idx] == "BBPCF01" && A_GEN_URL<i> == "") ||
      (MENU_NODE_TAB-S_IDENT[idx] == "BBPCF03" && A_GEN_URL<i> == "") ||  
      (MENU_NODE_TAB-S_IDENT[idx] == "BBPCF02")                       ||                
      (MENU_NODE_TAB-S_IDENT[idx] == "ZBUSRP" && A_GEN_URL<i> == "") || <--Added line1
      (MENU_NODE_TAB-S_IDENT[idx] == "ZBUSRP" && A_GEN_URL<i> != "") <--Added line2 ) ;  
    A_S_IDENT<i>      = MENU_NODE_TAB-S_IDENT[idx]; 
    A_GEN_URL<i>      = MENU_NODE_TAB-GEN_URL[idx]; 
    A_OBJECT_ID<i>    = "parent.launchpad.menu.M" & MENU_NODE_TAB-OBJECT_ID[idx] & ".root.name + parent.launchpad.menu.M" & MENU_NODE_TAB-OBJECT_ID[idx] & ".path";
    A_TEXT<i>         = "Business Card Vendor Report"; <--Modified line1
    A_INTRODUCTION<i> = "Report For Adminstrator"; <--Modified line2
    found = 1;
  end;

end;

if(found==1);i=i+1;found=0;end;

Regards,

Anubhav