‎2009 Feb 21 11:32 AM
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
‎2009 Apr 16 6:46 AM
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
‎2009 Feb 21 4:17 PM
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
‎2009 Feb 23 4:09 AM
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?
‎2009 Feb 23 4:08 AM
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?
‎2009 Apr 16 6:46 AM
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