cancel
Showing results for 
Search instead for 
Did you mean: 

Link in table using BSP

divya_nayudu
Participant
0 Kudos

Hi experts. I am new to BSP. I am working on E-recruitment System. There has been no customization and Standard BSPs have been used. Now our requiremnt is that in one page, it gives List of something called "Reference Code" on 'Buddy Referral' link. I need to add hyperlink on reach reference code on each row. And when i click on it, it should open a pop up (could be another window, or pdf file) and it should show the details of that reference code in that popup. How do i achieve this. The Standard BSP used in this is: HRRCF_REQ_LST . Thanks in advance.

Accepted Solutions (0)

Answers (1)

Answers (1)

divya_nayudu
Participant
0 Kudos

Sorry for that. The Standard BSP used for Buddy Referral link is: hrrcf_searchhlp and the view name is: reference_code_v.bsp

0 Kudos

Hi,

For tableview, following one e.g:

<htmlb:tableViewColumn columnName = "DELE"

type = "ImageLink"

linkClickTarget = "coding"

title = "Del"

onCellClick = "deleteItem" />

Alex

divya_nayudu
Participant
0 Kudos

Could you elaborate? Am not getting it.

0 Kudos

Sap_abap,

You got the following tableview:

****----


<htmlb:tableView id = "refcodetab"

sort = "SERVER"

filter = "SERVER"

headerText = "<%= controller->hitlist_title %>"

headerVisible = "true"

columnHeaderVisible = "true"

table = "<%= controller->pt_ref_code_list %>"

design = "alternating"

width = "100%"

footerVisible = "true"

emptyTableText = "<%= otr(paoc_rcf_ui/searchhlp_nothing_found) %>"

visibleRowCount = "<%= controller->hits_per_page %>"

visibleFirstRow = "<%= controller->visible_first_row %>"

onHeaderClick = "dummy"

iterator = "<%= controller %>"

selectionMode = "SINGLESELECT" />

                  • In order to create a link ******* you can do in this way, follow just an e.g. the tableViewColumn is a part of tableview.

****----


<htmlb:tableView id = "idt_trucks"

visibleRowCount = "<%= l_lines_control %>"

rowCount = "<%= l_lines_control %>"

selectionMode = "SINGLESELECT"

onRowSelection = "onRowSelection"

hasLeadSelection = "true"

headerVisible = "FALSE"

table = "<%= t_trucks %>" >

<htmlb:tableViewColumn columnName = "TEXT"

title = "Trucks" />

<htmlb:tableViewColumn columnName = "NUMBV"

horizontalAlignment = "CENTER"

title = "Total" />

<htmlb:tableViewColumn columnName = "DELE"

type = "ImageLink"

linkClickTarget = "coding"

title = "Del"

onCellClick = "deleteItem" />

</htmlb:tableView>

****----


You potentialy have to redone the standard tableview code.

Alexandre