Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

problem with BSP tutorial from SAP website

Former Member
0 Likes
781

Hello friends

I am trying to learn BSP using the tutorials from SAP website.

http://help.sap.com/saphelp_nw04/helpdata/en/1a/c5133a62983c0ae10000000a114084/frameset.htm

I have checked and re-checked the steps and I have done everything correctly.

During tutorial 2, it fails to activate giving errors like

Type AUTHOR_TAB doesn't exist.

http://help.sap.com/saphelp_nw04/helpdata/en/47/113ef6c77911d4ad320000e83539c3/content.htm

Similarly BOOK_TAB doesnt exist either.

The Type 'BSBOOKLINE' is unknown. This is due to the code on page

http://help.sap.com/saphelp_nw04/helpdata/en/47/113ef9c77911d4ad320000e83539c3/content.htm

Similarly 'BSAUTHLINE' is unknown.

Please let me know what i am supposed to be doing. I am pretty new at ABAP and BSP.

Thanks

Nisha

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
726

Hi... Infact I was going thru the same tutorial for basic learning.. In that tutorial while defining the authors and books in page attributes.. u need to take declare ur own associated type and then define that type in TYPE DEFINITION tab separately using types statement .

can consider this example

IN page attributes tab


Attribute         Typing      Associated type
 
AUTHORS     TYPE          TAUTHORS 

Now u need to define this TAUTHORS in TYPE DEFINITION tab like

 types TAUTHORS like table of BSAUTHORS.

Hope this works for you . It worked for me.

Thank you,

Kusuma

4 REPLIES 4
Read only

Former Member
0 Likes
726

Hi Nisha,

You Need to declare them in every Page Lay out.Just recheck it..Have u declared them in every page

BOOK_TAB

'BSBOOKLINE'

'BSAUTHLINE'

Hope this will be helpful

Thanks

Kalyan

Read only

0 Likes
726

no actually i havent.. in fact the tutorial hadnt mentioned anything regarding this and since i am relatively new to SAP, i ddint think abt doing it... can u tel me how to proceed doing so?

Read only

Former Member
0 Likes
726

no actually i havent.. in fact the tutorial hadnt mentioned anything regarding this and since i am relatively new to SAP, i ddint think abt doing it... can u tel me how to proceed doing so?

Read only

Former Member
0 Likes
727

Hi... Infact I was going thru the same tutorial for basic learning.. In that tutorial while defining the authors and books in page attributes.. u need to take declare ur own associated type and then define that type in TYPE DEFINITION tab separately using types statement .

can consider this example

IN page attributes tab


Attribute         Typing      Associated type
 
AUTHORS     TYPE          TAUTHORS 

Now u need to define this TAUTHORS in TYPE DEFINITION tab like

 types TAUTHORS like table of BSAUTHORS.

Hope this works for you . It worked for me.

Thank you,

Kusuma