Skip to main content
Solved

Not a Part of Print Job

  • July 19, 2021
  • 2 replies
  • 98 views

Forum|alt.badge.img+6

Hi,

We have IFS8 in which facing issue related to Print Job. Sending Mail an order report via script, it raise error “PrintJobContents:Field [Report_Id] with value XXX_REP is not a part of Print Job.

Please guide how to solve it.

 

 

Thanks

Shekhar

Best answer by Shardha Weeratunga

Hi @IFS_Shekhar 

Just some technical inputs on the error message.

The package, PRINT_JOB_CONTENTS_API (Logical Unit, PrintJobContents) only has the following fields,

PRINT_JOB_ID,
INSTANCE_SEQ,
RESULT_KEY,
INSTANCE_ATTR.

There is no field called REPORT_ID, in it.

It could be that the a name-value pair, ‘REPORT_ID-PAY_SLIP_QUERY_TCIL_REP, is getting added into a attribute string, in your script.

Please check it.

/Shardha

This topic has been closed for replies.

2 replies

Shardha Weeratunga
Hero (Employee)
Forum|alt.badge.img+7

Hi @IFS_Shekhar 

Just some technical inputs on the error message.

The package, PRINT_JOB_CONTENTS_API (Logical Unit, PrintJobContents) only has the following fields,

PRINT_JOB_ID,
INSTANCE_SEQ,
RESULT_KEY,
INSTANCE_ATTR.

There is no field called REPORT_ID, in it.

It could be that the a name-value pair, ‘REPORT_ID-PAY_SLIP_QUERY_TCIL_REP, is getting added into a attribute string, in your script.

Please check it.

/Shardha


Forum|alt.badge.img+6
  • Author
  • Sidekick (Customer)
  • July 19, 2021

Thanks !