cancel
Showing results for 
Search instead for 
Did you mean: 

Creation of OTR texts in default.htm

former_member210563
Participant
0 Kudos

Hi,

I am studying BSP prog. and I have run into a problem when creating a OTR text. I have typed a line in the layout for default.htm like this:

<H2> <%= OTR(Z_FLIGHT_US/HELLO) <%= name %>, </H2>

If I doubleclick the Z_FLIGHT_US/HELLO. it should tell me that the text does not exist and ask me if I want to create it.

Instead I get this error:

The package in the alias name does not correspond

to current package Z_BSP_BOOK.

What am I doing wrong ?

Accepted Solutions (1)

Accepted Solutions (1)

former_member188685
Active Contributor
0 Kudos

You get the error because the package of your BSP application is Z_BSP_BOOK, so you need to change the code according your BSP application package.

<%= OTR(Z_BSP_BOOK/HELLO) <%= name %>

Now double click on the OTR alias and see..

Answers (0)