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: 

Change of fontcolor in pdf (using CONVERT_ABAPSPOOLJOB_2_PDF)

rob_postema
Participant
0 Kudos

Hi,

I'm creating a PDF format from a report(list). This is the procedure I followed:

1. Get print parameters

2. Submit program using the statement

SUBMIT sy_repid

TO SAP-SPOOL WITHOUT SPOOL DYNPRO

SPOOL PARAMETERS out_parameters

AND RETURN.

3. Get the spool number

4. and use the Function module CONVERT_ABAPSPOOLJOB_2_PDF to generate PDF.

Everything works, except for the fact that the font-color in the pdf is in blue.

The customer wants to see in in black.

Is it possible and if so, how?

Tried the search, but no solution found yet.

4 REPLIES 4

brad_bohn
Active Contributor
0 Kudos

Turn off the INTENSIFIED setting, i.e., FORMAT INTENSIFIED OFF.

0 Kudos

Where exactly should i give this command?

brad_bohn
Active Contributor
0 Kudos

What program are you submitting? A custom one? The command is an ABAP list command. INTENSIFIED ON is the default so you need to switch it off in the program with the WRITE statements if you don't want the blue text.

0 Kudos

OK, thanx,

no, i'm submitting a standard SAP-program, so I cant use the command there.

Thanks anyway.