cancel
Showing results for 
Search instead for 
Did you mean: 

Internal tables in BRF plus

Former Member
0 Kudos

Hi Carsten,

If we get a internal table from the program to BRF plus,whether we can process the internal table sequentially and find the oldest billing document and derive the condition based on the billing document date.

In the program we can decide the oldest billing document and then pass date to BRF+ to determine the end result.But whether the same can be possible in BRF+(Without writing the code)?

Thanks in Advance,

R.Annamalai.

Accepted Solutions (0)

Answers (1)

Answers (1)

carsten_ziegler
Active Contributor
0 Kudos

Hi,

What you want is possible with BRFplus (standard) in version NW 7.0 EHP2. It is not possible in NW 7.0 EHP1.

BR,

Carsten

Former Member
0 Kudos

Hi Carsten,

Thanks for your reply.

Currently we are in NW EHP1.Could you let us know when EHP2 will be released or ls there any planned release of the support packages for the current EHP1?

Thanks in Advance,

R.Annamalai.

carsten_ziegler
Active Contributor
0 Kudos

A trial version of NW 7.0 EHP2 should be out mid of March.

There is a ramp-up in June 2010 (with Suite, CRM, ...).

Features will not be made available in a SP but only in an Enhancement Package.

Former Member
0 Kudos

Hi Carsten,

We are in EHP2. Can you tell us how to access internal tables in BRFplus. THe documentation is bit confusing.

carsten_ziegler
Active Contributor
0 Kudos

You can create data objects (DOBJ) of type table and use those in the function signature as input. Also you can create such DOBJs as ruleset variables.

Then in the rules you can insert by calling an expression with a corresponding result (e.g. database lookups, table operations, decision tables, ...). Also rules allow to insert lines (structured DOBJ) into tables.

Finally there are expression types that allow you to use tables, such as the table operations allow you to return a line, count entries, sum entries, delete, ... Also you can loop table DOBJs in a loop expression and perform a set of rules inside of the loop (for each entry in the table).