Understanding Invoice Forms

This chapter provides an overview of invoice programming, billing sample invoices, extract tables and discusses how to delete old invoice data from the extract table.

Click to jump to parent topicUnderstanding Invoice Programming

PeopleSoft provides three methods for programming invoice forms, SQR, Crystal, and XML Publisher Reports. The SQR invoices combine data selection, processing and printing into a single, modular program. You can create and modify SQR invoices with any appropriate program editor or development environment. The Crystal Reports invoices separate data selection and processing from formatting and printing. Data selection and processing are handled by queries; formatting and printing are handled by a report form. Queries can be created and modified inside the PeopleSoft application using the Query Manager. Crystal Report forms can be created and modified using the Crystal Reports application. XML Publisher is a java-based reporting technology. Similar to Crystal, the XML Publisher invoices separate data selection and processing from formatting and printing. Data selection and processing are handled by Application Engine programs; formatting and printing are handled by report definitions or templates. Report templates can be modified using common desktop applications, such as Microsoft Word and Adobe Acrobat.

Invoice programs operate on the data in the Billing extract tables. The Billing Invoice Extract Process (BI_IVCEXT) extracts the invoice data and stores it in the Billing extract tables. In addition, control information is provided by the run control record. An invoice program must select only the data it can process. The following criteria is typically used to select the rows from the extract tables that an invoice program or report is capable of processing:

PROCESS_INSTANCE

A process instance number is assigned to each extract row by BI_IVCEXT when a print job is run. The process instance number that an invoice program should select is available in the run control record.

CONSOL_HDR (consolidated header)

Y (yes) for consolidated invoices.

INVOICE_FORM_ID

The id of the invoice form as defined on the Invoice Formatting Options page.

PAGE_ORIENTATION

P (portrait) or L (landscape) for SQR invoices; E (extract Crystal) for Crystal invoices; X for XML Publisher.

SUM_IVC_PRINT_OPT (summarized invoice print option)

Whether an invoice should be printed in the detail or summarized formats, or both formats.

  • DETL (detail).

  • SUM (summarized).

    Only summarized invoice programs should select invoices with a SUM setting.

  • BOTH.

ACCEPTGIRO_IND

Only acceptgiro invoice programs should select invoices with a Y (yes) setting.

See Also

Understanding Crystal Invoices

Understanding SQR Invoices

Understanding XML Publisher Invoices

Click to jump to top of pageClick to jump to parent topicCommon Modules

PeopleSoft writes its processes in a modular fashion to facilitate modification. Routines that are common to all invoice printing processes are isolated into modules that are shared by multiple processes. Routines that you are most likely to modify are organized into groups of similar modules. Use an existing program as the template and substitute modules as appropriate.

There are, however, several areas of significance where the programs differ from each other:

Click to jump to top of pageClick to jump to parent topicModifying the Billing Invoice Extract Application Engine Program for New Layouts

If an invoice form requires information not provided in the extract tables, you can modify the extract Application Engine program, BI_IVCEXT, to extract, calculate or derive that information and place it in the extract tables. The recommended method for this type of modification is to add a section to perform the additional processing. The new procedure should only be called for invoices that require the different information. The Invoice Layout ID field can be used to select those invoices in the Billing data that require special handling. Once the system is programmed to extract the needed data into the Billing extract tables, SQR, Crystal, or XML Publisher form modifications might also be needed.

The following example shows a procedure, BIEVALX.SQC, that calls PROCESS-XXX-LAYOUT when an invoice with a layout id of PS_XX is processed. Include this SQC in the print process BIXXXXXX.SQR. Define the procedure PROCESS-XXX-LAYOUT in the modified SQC that is called by BIXXXXXX.SQR.

!-------------------------------------------------------------------! ! Procedure: PROCESS-LAYOUT-SPECIFIC-INFO ! ! Desc: Select the extra processing routine according to the ! ! invoice layout. ! !-------------------------------------------------------------------! begin-procedure PROCESS-LAYOUT-SPECIFIC-INFO add 1 to #level move 'PROCESS-LAYOUT-SPECIFIC-INFO' to $Current-Procedure evaluate $InvoiceLayout when = 'PS_XX' ! Example Invoice Layout do PROCESS-XXX-LAYOUT break when-other break end-evaluate

Click to jump to parent topicUnderstanding the Billing Sample Invoices

PeopleSoft provides the following sample invoice forms (depending on which PeopleSoft applications you have installed, you may not see all the forms in this list):

CRYSTAL

A basic, sample Crystal Reports invoice.

GM_103X

Grant forms 1034 and 1035 invoices.

GM_270

Grants OMB 270 invoice.

GM_GEN

General grants invoice form.

GM_LOC

Grants Letter of Credit invoice.

LANDSCAPE

A landscape-orientation, sample SQR invoice.

PORTSTUB

A portrait-orientation, sample SQR invoice with a tear-off payment stub on the right side of the page.

PS/PSA51, PS/PSA01

This format groups lines by project description, employee name and resource type if they exist. Prints subtotals on change of project or employee. Prints contract prepaid information for utilization lines based on the existence of a contract number and a contract prepaid sequence number.

PS/CA51, PS/CA

This format groups lines by contract detail, and it applies to PeopleSoft Contracts without PeopleSoft Project Costing.

PS/PSA52, PS/PSA02

This format groups lines by project description, activity description, employee name and resource type if they exist. Prints subtotals on change of project, activity, or employee. Prints contract prepaid information for utilization lines based on the existence of contract number and a contract prepaid sequence number.

PS/PSA53, PS/PSA03

This format groups lines by project description and line type.

PS/OM, PS/OM50

Sample Order Management invoice.

SF1080

Standard form 1080.

SF1081

Standard form 1081.

STANDARD

A portrait-orientation, sample SQR invoice.

XMLPUB

This option represents a basic, sample XML Publisher invoice form.

XP_SF103X

This invoice form provides an XML Publisher rendering of the standard form 1034/1035 for federal invoices.

Summarized invoice forms

The summarized invoice forms are not defined under the invoice setup options and cannot be explicitly assigned to an invoice. The summarized invoice forms are used when an invoice contains at least one line with a summarization template attached and the run control print options are set to generate a summarized invoice.

Note. When invoices are generated in a situation where the print options are unavailable, such as when generating an invoice or pro forma directly from the online bill entry pages or when using a direct invoicing process through the Billing interface, then a summarized invoice will be printed whenever a bill line has an attached summarization template (and a detail invoice will not be printed).

(NLD) Acceptgiro invoice forms

PeopleSoft provides example forms for Dutch acceptgiro invoices. Acceptgiro invoice forms are not defined under the invoice setup options and cannot be explicitly assigned to an invoice. For an acceptgiro invoice to be generated, both the Receivables business unit of the Billing business unit and the invoiced customer must be set up properly.

See (NLD) Printing Acceptgiro Invoices.

Important! Your organization may need to make modifications to the Crystal Report and SQR formats to ensure that the fields line up correctly on the acceptgiro attachment. PeopleSoft does not certify that the acceptgiro feature adheres to documented standards for the Netherlands. Your organization is responsible for all acceptgiro testing, certification, and any other forms of compliance with legal and contractual obligations relating to acceptgiro printing and usage.

An invoice form may be produced by different SQR invoice programs, Crystal Reports, or XML Publisher reports depending on the context in which the invoice is printed. For example, an invoice with an Invoice Form value of CRYSTAL would be produced by the BIPRNT00 Crystal Report when generated as a stand-alone invoice, but would be produced by BIPRNC00 when attached to a consolidated invoice. The following table lists which SQR invoice programs, Crystal Reports, or XML Publisher reports generate which invoice forms, and provides the name of the run control record:

Program/Report

Run Control Record

Invoice Form IDs

BIPRNT00.RPT

RUN_BI_PRNCRX1

CRYSTAL

BIPRNTA0.RPT

RUN_BI_PRNCRX1A

CRYSTAL with acceptgiro

BICLSUM.RPT

RUN_BI_PRNCRX1S

Crystal summarization invoice form

BIPRNT01.RPT

RUN_BI_PRNCRX2

Crystal PS/PC

BIPRNT02.RPT

RUN_BI_PRNCRX3

Crystal PS/OM

BIPRNA2.RPT

RUN_BI_PRNCRX3A

Crystal PS/OM with acceptgiro

BIPRNC00.RPT

RUN_BI_PRNCRX4

Consolidated CRYSTAL

BIPRNCA0.RPT

RUN_BI_PRNCRX4A

Consolidated CRYSTAL with acceptgiro

BICLSUMC.RPT

RUN_BI_PRNCRX4S

Consolidated summarization Crystal invoice

BIPRNC02.RPT

RUN_BI_PRNCRX5

Consolidated Crystal PS/OM

BIPRNCA2.RPT

RUN_BI_PRNCRX5A

Consolidated Crystal PS/OM with acceptgiro

BIPSA01.RPT

RUN_BI_PRNCRX6

Crystal PS/PSA01

BIPSAA1.RPT

RUN_BI_PRNCRX6A

Crystal PS/PSA01 with acceptgiro

BIPSA02.RPT

RUN_BI_PRNCRX7

Crystal PS/PSA02

BIPSAA2.RPT

RUN_BI_PRNCRX7A

Crystal PS/PSA02 with acceptgiro

BIPSA03.RPT

RUN_BI_PRNCRX8

Crystal PS/PSA03

BIPSAA3.RPT

RUN_BI_PRNCRX8A

Crystal PS/PSA03 with acceptgiro

BICA.RPT

RUN_BI_PRNCRX9

Crystal PS/CA

BICAA.RPT

RUN_BI_PRNCRX9A

Crystal PS/CA with acceptgiro

BIIVCPN.SQR

RUN_BI_PRNSQR1

SQR Portrait including:

  • PORTSTUB

  • PS/CA51

  • PS/OM50

  • PS/PSA51

  • PS/PSA52

  • PS/PSA53

  • STANDARD

BIIVCPNA.SQR

RUN_BI_PRNSQR1A

SQR Portrait invoices with acceptgiro, including:

  • PORTSTUB

  • PS/CA51

  • PS/OM50

  • PS/PSA51

  • PS/PSA52

  • PS/PSA53

  • STANDARD

BIIVCLN.SQR

RUN_BI_PRNSQR2

SQR LANDSCAPE

BISLSUM.SQR

RUN_BI_PRNSQR2S

Summarized SQR LANDSCAPE

BIIVCPC.SQR

RUN_BI_PRNSQR3

Consolidated SQR Portrait invoice forms, including:

  • PORTSTUB

  • PS/CA51

  • PS/OM50

  • PS/PSA51

  • PS/PSA52

  • PS/PSA53

  • STANDARD

BIIVCPCA.SQR

RUN_BI_PRNSQR3A

Consolidated SQR Portrait invoice forms with acceptgiro, including:

  • PORTSTUB

  • PS/CA51

  • PS/OM50

  • PS/PSA51

  • PS/PSA52

  • PS/PSA53

  • STANDARD

BIIVCLC.SQR

RUN_BI_PRNSQR4

Consolidated SQR LANDSCAPE

BISLSUMC.SQR

RUN_BI_PRNSQR4S

Summarized consolidated SQR LANDSCAPE

BIGIVCPN.SQR

RUN_BI_PRNSQR5

Grants invoice forms, including:

  • GM_103X

  • GM_270

  • GM_GEN

  • GM_LOC

BISF108X.SQR

RUN_BI_PRNSQR6

SQR standard forms:

  • SF1080

  • SF1081

BI_PRNXPN01(Application Engine)

RUN_BI_PRNXP1

XMLPUB — Generic XML Publisher invoice

BI_PRNXPC01 (Application Engine)

RUN_BI_PRNXP2

XMLPUB — XML Publisher consolidated invoice

BI_XPSF103X

RUN_BI_PRNXP1

XP_SF103X

BIXCA

RUN_BI_PRNXP3

XP_PS/CA

BIXCLSUM

RUN_BI_PRNXP4

NA

BIXCLSUMC

RUN_BI_PRNXP5

NA

BIXPRNT00

RUN_BI_PRNXP6

XP_PS/GEN

BIXPRNC00

RUN_BI_PRNXP7

XP_PS/GEN

BIXPRNT01

RUN_BI_PRNXP8

XP_PS/PC

BIXPRNT02

RUN_BI_PRNXP9

XP_PS/OM

BIXPRNC02

RUN_BI_PRNXP10

XP_PS/OM

BIXPSA01

RUN_BI_PRNXP11

XP_PS/PSA1

BIXPSA02

RUN_BI_PRNXP12

XP_PS/PSA2

BIXPSA03

RUN_BI_PRNXP13

XP_PS/PSA3

Note. The PeopleSoft Crystal Invoice Printing processes that are delivered are designed for a specific invoice form ID. For example, BIPRNT00 is designed for invoice form ID CRYSTAL. The Crystal reports that are delivered cannot use a new invoice form ID. However, to use a new invoice form ID with the EXTRACT layout requires either changes to an existing PeopleSoft Query or Crystal report, or creating a new PeopleSoft Query or Crystal Form and changes to the Billing Invoice Extract process (BI_IVCEXT).

See Creating New Crystal Invoices.

Click to jump to parent topicUnderstanding the Extract Tables

All invoice programs select data from the extract tables rather than directly from the Billing tables. The first step to printing invoices (after finalization) is to run the BI_IVCEXT extract process. The extract process populates the following extract tables:

BI_EXTRCT

The main printing extract table. Inserts one row per invoice. Most calculated data applies to the entire invoice, not the invoice lines.

BI_EXTRCT_LINE

Comprised of calculated data for invoice lines. The data in this table supports printing Product Kit Descriptions with the invoice lines.

BI_EXT_HDR_NOTE

Stores the header, customer, and VAT notes that are to be printed on an invoice. If a note is a standard note, then the text that is to be printed comes from the Standard Notes table and is language specific. This table is populated with the nonstandard note text from the bill header and customer. The notes are updated as primary notes if you define the note type as a primary note type on the invoice form.

BI_EXT_LIN_NOTE

Stores line notes to be printed on an invoice.

BI_EXTRCT_TAX

Stores sales and use tax data for invoice lines.

BI_EXTRCT_VAT

Contains VAT information for invoice lines.

BI_EXT_INST_SEC

Contains installment billing information that is used only for installment invoices.

BI_EXT_INST_SUM

Contains installment billing summary information that is used only for installment invoices.

BI_EXTRCT_PROJ

Stores PeopleSoft Project lines that are extracted for Invoice sample formats PS/PSA01, PS/PSA02, and PS/PSA03.

BI_EXTR_CONTR

Stores PeopleSoft Contract lines that are extracted for Invoice sample format PS/CA only.

BI_EXTRCT_UTL

Contains PeopleSoft Contract prepaid utilization rows. Used in Invoice sample formats PS/PSA01and PS/PSA02.

BI_EXT_SHIP_TO

Contains ship-to name and address of extract based on the ship-to customer ID and ship-to address sequence number that is defined on the bill header. It is currently used in Invoice sample formats PS/PSA01, PS/PSA02, PS/PSA03 and PS/CA.

PS_BI_EXTRCT_TXDTL

Contains sales tax detail.

PS_BI_EXT_EXSDTL

Contains sales/excise tax detail for India transactions.

PS_BI_EXTRCT_PAY

Contains invoice payment information.

PS_BI_EXT_SUM_GPHR

Contains summarized invoice group header information.

PS_BI_EXT_SUM_IVC

Contains summarized bill line information.

PS_BI_EXT_SUM_NT

Contains summarized bill header note information.

PS_BI_EXT_SUM_LNNT

Contains summarized bill line note information.

BI_EXT_1034

Contains 1034 Bill Header information.

BI_EXT_BAE_1035

Contains BAE 1035 information.

BI_EXT_RAE_1035

Contains RAE 1035 information.

BI_EXT_FEE_1035

Contains FEE 1035 information.

BI_EXT_GPLN_1035

Contains grouped line 1035 information.

BI_EXT_LN_1035

Contains ungrouped line 1035 information.

BI_EXT_NOTE_1035

Contains 1035 line note information.

BI_EXT_NT_BAE

Contains 1035 BAE line note information.

BI_EXT_NT_RAE

Contains 1035 RAE line note information.

BI_EXT_NT_FEE

Contains 1035 FEE line note information.

BI_EXT_NT_GRP

Contains 1035 grouped line note information.

BI_EXT_NT_LN

Contains 1035 line note information.

Click to jump to top of pageClick to jump to parent topicImportant BI_EXTRCT Table Fields

The primary extract table, BI_EXTRCT, contains the following important fields used by invoices:

PRINT_SEQ_NBR

Printing sequence number that is calculated by the Billing extract process based on Print Invoice Sort By information specified by the run control. The query should order by this field to take advantage of this run control feature.

LANGUAGE_CD

The language code is usually specified by the run control. When it is not specified in the run control, the system looks it up either from user preferences or the PeopleSoft general options table.

SQR, Crystal, and XML Publixher invoices can be printed in any supported languages. If the PeopleSoft environment is configured to support multiple languages, the definitional data in the transaction, such as the description of a project, will be extracted from the related language tables in the desired language for all forms. However, there is a difference in handling predefined labels on SQR, Crystal, and XML Publisher forms. SQR uses the related language Strings table.

The Crystal report definition does not include any language-specific text. Every text portion on the invoice is printed using Crystal report formulas, enabling one report to contain multiple invoices, printed in multiple languages. Each portion of text uses a formula called @langlookup, resembling the following:

StringVar RptLang := {BIPRNT00.LANGUAGE_CD}; if stringVar RptLang = "USA" then 1 Else if RptLang = "ENG" then 1 Else if RptLang = "FRA" then 2 Else if RptLang = "ESP" then 3 Else if RptLang = "CFR" then 4 else if RptLang = "GER" then 5 else if RptLang = "JPN" then 6 else if RptLang = "INE" then 7 else if RptLang = "DUT" then 8 else if RptLang = "POR" then 9 else if RptLang = "ITA" then 10 else if RptLang = "ZHS" then 11 else 1

Each text field prints a different text string of an array, indexing it with the @langlookup formula.

The XML Publisher report definitions contain language-specific text for the labels in the main template file. Each template file has associated XLIFF (XML Localization Interchange File Format) files which will contain the translated report labels. A separate XLIFF file can be created for each language. These XLIFF files are used when the report is run to produce the output of report labels in the appropriate language.

Note. If XML Publisher is used as the invoice form and a batch of invoices contains multiple language codes, then one output report is generated for each language code.

XEU_PARTICIPATING

Indicates whether the billing currency is a euro-participating currency. If the currency is euro-participating, the invoice prints the euro invoice amount. Otherwise, it does not. Crystal reports use a format formula on the field, and the text suppression:

{BIPRNT00.XEU_PARTICIPATING} = 'N'.

See Crystal Reports documentation for more detail about how to use formulas.

DECIMAL_POSITIONS

Indicates how many decimal places to print for the billing currency. Crystal reports are set up to print any number of decimal places. The field format must be set up accordingly. The edit formula on the decimals uses DECIMAL_POSITIONS to define how many places to print.

INVOICE_DT

The invoice date that is printed on the invoice uses this field from the extract table. There is also an INVOICE_DT on the table BI_HDR, but depending on where the bill is in the invoice process, that field may not contain a value. BI_IVCEXT calculates the invoice date, if needed, and populates INVOICE_DT on the extract table.

PYMNT_TERMS_ CD_DSC (Payment Terms Code Description)

Use this field to print the description, and not the code that is stored on BI_HDR.

DISC_AMT , DISC_DT

The discount amount and discount date.

DUE_DT

Due date.

ADDR_LN1 thru 8

These lines contain the customer name, customer contact (attention to), and address lines formatted appropriately for the country. The country-dependent formatting is done in BI_IVCEXT. If all address lines are used in an address, there are eight printed lines. If all address lines are not used, there are fewer than eight lines, and the ADDR_LN fields are filled out from top to bottom with blank lines at the bottom.

REMIT_ADDR_LN1 thru 8

These lines contain the remit to description and address. They are handled the same as Customer address lines.

INV_LABEL

Invoice label is the text that is printed at the top of the invoice. It is a language-specific version of invoice, pro forma, temporary, credit invoice, and so on.

CUSTOM_LABEL

Contains printed text. For example, it may contain the label that is specified on the run control, or a language-specific version of original, duplicate, courtesy copy, original sent using electronic data interchange.

CONFIG_DTL_FLAG

Equals Y if the invoice form specifies the printing of order management configuration detail. This field is used in the example query BIPRNCONFGDTL, which is used in a subreport in the order management invoice examples, BIPRNT02 and BIPRNC02.

CONFIG_CD_FLAG

Equals Y if the invoice form specifies the printing of order management configuration code. This field is used in the example query BIPRNCONFGCD, which is used in a sub report of the order management invoice examples, BIPRNT02 and BIPRNC02.

CR_CARD_FLG

Determines whether a bill has credit card information.

AMOUNT

Stores a credit card amount.

AMOUNT_XEU

Stores a credit card amount in euros.

NET_AMOUNT

Contains a net amount.

NET_AMOUNT_XEU

Stores a net amount in euros.

TEMPLATE_INVOICE

Used with installment bills, and contains the installment template invoice number.

BILLING_FREQUENCY

Used to identify billing frequency for processing.

PRINT_INST_DETAIL

Controls printing of installment bill details.

PRINT_INST_SUMMARY

Controls printing of the installment bill summary.

PRINT_VAT_ANAL_FLG

Controls printing of VAT analysis

PRINT_TAX_FLG

Controls printing of sales tax

PRINT_UTL_PPD_FLG

Controls printing of contract utilization prepaid information, and is used in the example query BIPSA01, BIPSA02.

PROJECT_ID

Stores the project ID from the bill header, and is used in the example query BIPSA01, BIPSA02, BIPSA03.

PROJ_DESCR

Stores project description that is derived from the Project table corresponding to the project ID on the bill header.

CONTRACT_NUM

Stores the contract number from the bill header, and is used in the example query BIPSA01, BIPSA02, BIPSA03, BICA.

PO_REF

Stores the purchase order reference number from the bill header, and is used in the example query BIPSA01, BIPSA02, BIPSA03, BICA.

Click to jump to parent topicDeleting Old Invoice Data from the Extract Tables

Billing information moved into the extract tables when invoices are generated accumulates if you do not periodically delete it. To assist you in maintaining the Billing extract tables, PeopleSoft provides an online utility and a batch utility.

Note. After deleting old invoice data from the Billing extract tables, the database or system administrator should update the extract table statistics. This will insure a better performance for the invoice extract process.

Here are all the extract tables: PS_BI_EXTRCT, PS_BI_EXTRCT_LINE, PS_BI_EXT_HDR_NOTE, PS_BI_EXT_LIN_NOTE, PS_BI_EXTRCT_TAX, PS_BI_EXTRCT_VAT, PS_BI_EXT_INST_SEC, PS_BI_EXT_INST_SUM, PS_BI_EXTRCT_PROJ, PS_BI_EXTR_CONTR, PS_BI_EXTRCT_UTL, PS_BI_EXT_SHIP_TO, PS_BI_EXTRCT_TXDTL, PS_BI_EXT_EXSDTL, PS_BI_EXTRCT_PAY, PS_BI_EXT_SUM_GPHR, PS_BI_EXT_SUM_IVC, PS_BI_EXT_SUM_NT, PS_BI_EXT_SUM_LNNT, BI_EXT_1034, BI_EXT_BAE_1035, BI_EXT_RAE_1035, BI_EXT_FEE_1035, BI_EXT_GPLN_1035, BI_EXT_LN_1035, BI_EXT_NOTE_1035, BI_EXT_NT_BAE, BI_EXT_NT_RAE, BI_EXT_NT_FEE, BI_EXT_NT_GRP, BI_EXT_NT_LN

The invoice extract process generates run control records for the invoice print SQR and Crystal processes. Once the old invoice data is deleted from the extract tables, the run control records that are associated with the deleted extract data becomes obsolete. Therefore, it also makes sense to update the run control table statistics.

Here are all the invoice run print process run control tables for all invoice print SQR and Crystal processes: PS_RUN_BI_PRNCRX1, PS_RUN_BI_PRNCRX5, PS_RUN_BI_PRNCRX5A, PS_RUN_BI_PRNCRX6, PS_RUN_BI_PRNCRX6A, PS_RUN_BI_PRNCRX7, PS_RUN_BI_PRNCRX7A, PS_RUN_BI_PRNCRX8, PS_RUN_BI_PRNCRX8A, PS_RUN_BI_PRNCRX9, PS_RUN_BI_PRNCRX9A, PS_RUN_BI_PRNCRX1A, PS_RUN_BI_PRNSQR1, PS_RUN_BI_PRNSQR1A, PS_RUN_BI_PRNSQR2, PS_RUN_BI_PRNSQR2S, PS_RUN_BI_PRNSQR3, PS_RUN_BI_PRNSQR3A, PS_RUN_BI_PRNSQR4, PS_RUN_BI_PRNSQR4S, PS_RUN_BI_PRNSQR5, PS_RUN_BI_PRNSQR6, PS_RUN_BI_PRNCRX1S, PS_RUN_BI_PRNCRX2, PS_RUN_BI_PRNCRX3, PS_RUN_BI_PRNCRX3A, PS_RUN_BI_PRNCRX4, PS_RUN_BI_PRNCRX4A, PS_RUN_BI_PRNCRX4S, PS_BI_PRNXP1, PS_BI_PRNXP2, PS_BI_PRNXP3, PS_BI_PRNXP4, PS_BI_PRNXP5, PS_BI_PRNXP6, PS_BI_PRNXP7, PS_BI_PRNXP8, PS_BI_PRNXP9, PS_BI_PRNXP10, PS_BI_PRNXP11, PS_BI_PRNXP12, PS_BI_PRNXP13.

See Also

Deleting Temporary Data

Click to jump to top of pageClick to jump to parent topicUsing the Online Utility

On the Delete Extract Bills page, define the range selection and select the bills for deletion. Click the Delete button to delete the data from all extract-related tables.

Click to jump to top of pageClick to jump to parent topicUsing the Batch Utility

The Workflow/Batch Parameters page enables you to designate the number of days that extracted PeopleSoft Billing information can collect in the Billing Extract table before deletion. Schedule and run this process to look for and delete extracted information on a regular basis.

To define the number of days that extracted information can remain before deletion:

  1. Access the Define Workflow page.

  2. Indicate the number of days after which you want to delete PeopleSoft Billing information from the extract tables in the Delete Extract Bills, Number of Days Old field.

On the Delete Bills run control page, select Delete Extract Bills. Run the BIDELDATA process to delete from all extract-related tables and its associated run control tables. This process will delete any row older than the number of days specified Workflow/Batch Parameters page, from those tables.