Application Development 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: 

BAPI to create notification BAPI_ALM_NOTIF_CREATE

Former Member
0 Kudos

Hello Gurus,

The Standard bapi BAPI_ALM_NOTIF_CREATE Uses Longtexts as one of its parameter of type

BAPI2080_NOTFULLTXTI

Size of TDLINE is BAPI2080_NOTFULLTXTI is 132 characters.

My query is i want to allow user to enter more than 132 characters through portal while creating a notification.

How can i achieve this, is there any way this BAPI can allow longtexts for more than 132 characters?

Thanks.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Function module BAPI_ALM_NOTIF_CREATE has tables parameter LONGTEXTS, indicating that it can have more than 1 line. You could consider breaking the text into mutliple lines (if size > 132 chars).

Regards,

Shyam Khemani

2 REPLIES 2

Former Member
0 Kudos

Function module BAPI_ALM_NOTIF_CREATE has tables parameter LONGTEXTS, indicating that it can have more than 1 line. You could consider breaking the text into mutliple lines (if size > 132 chars).

Regards,

Shyam Khemani

Former Member
0 Kudos

Hi Shyam,

Thanks for your response!

I am using this BAPI in an RFC FM , and this FM is linked to a portal, which restricts users to enter only 132 characters while creating notification through portal.

Please Help !

Thanks.