cancel
Showing results for 
Search instead for 
Did you mean: 

Data transfer prob

Former Member
0 Kudos

Hi @all,

if I transfer data of a filled table to a following BSP site I´ve got a little prob.

Case one: Data will not transfer to following BSP site with

navigation->set_parameter( 'zomtab' ).

NAVIGATION->NEXT_PAGE( 'TOSEARCHRESULT' ).

Case two: Detailed calling with

navigation->set_parameter( name = 'ZOMTAB'

value = zomopporttab ) .

NAVIGATION->NEXT_PAGE( 'TOSEARCHRESULT' ).

The following BSP site will not appear. The current BSP site reload themselves again.

We´ve tried the example of the SAP tutorial no.4 but without having success.

Does anybody know about this little prob. Thanks for any advice or path for more information.

Kind Regards

oliver

Accepted Solutions (1)

Accepted Solutions (1)

gregorw
Active Contributor
0 Kudos

Hello Oliver,

I think you should use a server side cookie to store the internal table.

Regards

Gregor

Answers (1)

Answers (1)

former_member181879
Active Contributor
0 Kudos

Hallo Oliver,

In english the correct word is prob<b>lem</b>.

The answer from Gregor is the way to go for your problem.

When you are using the navigation object, it is actually doing a redirect via the browser back to the server. There is a limit on the number of bytes that will fit into the url, about 2-4KB. Internal tables always springs this limit.

Store table somewhere in the server. If you are stateful, any place on a controller, model or application class will do. If stateless (or in anycase), dump the table into a server side cookie. This is well documented, has been discussed a number of times in this forum, and even one of my weblogs have an example.

++bcm

Former Member
0 Kudos

Hello Brian,

thank you for your advice. So I have the right keyword to go for a successful research.

Kind Regards

Oliver

former_member181879
Active Contributor
0 Kudos

Yes, that has always been the idea. Once you know where to dig for gold, life becomes easier. Given the keyword, you should consider to review this first among those found.

Former Member
0 Kudos

Thanks,

it works.

Regards

oliver

Former Member
0 Kudos

Be sure to mark your message as solved for others to find the solutions quicker in the future.

Former Member
0 Kudos

Done.

Regards

oliver