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

LONGTEXTS parameters in BAPI_ALM_NOTIF_CREATE

Former Member
0 Likes
1,138

Hi,

When I call BAPI_ALM_NOTIF_CREATE to create a PM notification and pass the LONGTEXTS parameter, the PM notification was created fine. However, when I look up the PM notification using the returning notification number with the SAP GUI, the content of my LONGTEXTS was automatically pre-pented with the client information similar to the following.

18.10.2009 05:05:00 Company ABC. ISP#123456 (ABC)

...my long text content...

Does any one knows how to turn off the first line (client info)?

Is this a SAP server side setting? or it's configurable somewhere in the BAPI?

Any help would be appreciated.

Jingmin Wei

1 ACCEPTED SOLUTION
Read only

mvoros
Active Contributor
0 Likes
978

Hi,

it's a config for your notification type. There is a field TQ80-QMLTXT01. If this field is set to 'X' then SAP generates Log line for long text change. It's a standard SAP feature. You can see this functionality in routine TEXT_ANLEGEN_F50 of include LIQS0F50.

Cheers

Hi,

When I call BAPI_ALM_NOTIF_CREATE to create a PM notification and pass the LONGTEXTS parameter, the PM notification was created fine. However, when I look up the PM notification using the returning notification number with the SAP GUI, the content of my LONGTEXTS was automatically pre-pented with the client information similar to the following.

18.10.2009 05:05:00 Company ABC. ISP#123456 (ABC)

...my long text content...

Does any one knows how to turn off the first line (client info)?

Is this a SAP server side setting? or it's configurable somewhere in the BAPI?

Any help would be appreciated.

Jingmin Wei

4 REPLIES 4
Read only

mvoros
Active Contributor
0 Likes
979

Hi,

it's a config for your notification type. There is a field TQ80-QMLTXT01. If this field is set to 'X' then SAP generates Log line for long text change. It's a standard SAP feature. You can see this functionality in routine TEXT_ANLEGEN_F50 of include LIQS0F50.

Cheers

Read only

Former Member
0 Likes
978

HI, Martin

Thanks a lot for the information.

I couldn't find routine TEXT_ANLEGEN_F50.

Where can I locate this routine? Can you please post a code sample of field TQ80-QMLTXT01.

Thanks,

Jingmin Wei

Read only

mvoros
Active Contributor
0 Likes
978

Hi,

as I wrote it it's in include LIQS0F50. Check that include in SE38. Look for that field.

Cheers

Read only

Former Member
0 Likes
978

Thanks a lot for you help.