cancel
Showing results for 
Search instead for 
Did you mean: 

BSP Internal table

Former Member
0 Kudos

Will i be able to declare a internal table in a BSP page?Can we declare a internal table in ON INTIALIZATION or in any other Event handler?Or can we declare a internal table in LAYOUT itself?

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Question was answered.

athavanraja
Active Contributor
0 Kudos

if youwant the internal table to be availalbe globally to all event handlers and layout declare it in page attribute. if you declare in oninitialization, it will be available only for that event

Regards

Raja

Former Member
0 Kudos

If i want a internal table consists of five fields ( two fields from VBAP,two fields from LIKP,one field from MARA),how do i declare it in page attribute section?

athavanraja
Active Contributor
0 Kudos

in the type definition tab.

types: begin of mixed,

field1 type vbap-...,

field2 type vbak-,,,

end of mixed.

types: mixed_tabtype type standard table of mixed.

now in page attribute

itab type mixed_tabtype .

Raja

Former Member
0 Kudos

okay.thank you for solving my problem.

athavanraja
Active Contributor
0 Kudos

can you mark the thread as answered

raja

Former Member
0 Kudos

can u help me to implement F4 help inBSP?I was able to call a new screen when a help button was clicked?but i dont know how to generate a list in that new window?and how to submit the values from help list to the BSP screen?

Former Member
0 Kudos

Hi,

Kindly post it as a new thread to get better replies.

You can refer to ThomasJung's weblogs for F4 help in BSP:

/people/thomas.jung3/blog/2004/09/17/bsp-150-a-developer146s-journal-part-xii-150-value-input-help-popups

If you are looking for a simple solution refer to this blog:

/people/ravikiran.chittum/blog/2006/08/10/working-with-modal-dialog-in-a-bsp-application

Best Regards,

Ravikiran.

Former Member
0 Kudos

I saw your weblog...you are using ROWSELECTED and SALESORG_HELP ...what are those attributes..how do i have to declare it.