cancel
Showing results for 
Search instead for 
Did you mean: 

"how do i synchronize between two outputs"

Former Member
0 Kudos

Hi

I'm using a bapi data service "po_bapi_getlist" which have two outputs :header and raws.

When I'm connecting each output to table view, the output information is not synchronized,

when i put the cursor on the line's header - "po nam" the cursor is not standing on the relevant "po nam" raw in raw view .

The BAPI structure has one input and tow output ports and they are both RecordSets (table output).

They have the same key fields PO_ number.

  • i've added the info' about our system for your review \ help:

GML version: 799.14.0027

Client version: 700.14.0.1

VCServer version:700.14.0.1

Flex version:700.14.0.1

Portal content version (HTMLBKit): 700.14.0.1

Portal Connector version: 700.14.0.1

Thanks ahead,

Regards

Eli.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

You can put the data together with a union then feed it to the table. Make sure you have the same fields in both outputs or else the union will not see the data.

Former Member
0 Kudos

Hi,

AS you say the union operator combine only the same fields in both outputs, and the output gives out only those fields.

but i actually do need to use more fields then those tow...

ill be thankful your help.

Regards,

Eli. .

Former Member
0 Kudos

Hi Eli,

Create dummy fields in the outputs that match the missing fields. The dummy fields have to be the same type as the real fields they represent. Then in the union all fields will show up. You can then use a goup by object to put the values together. I have done this a few times and it works. Hope this helps.

Example:

Output 1

firstname

lastname

address (dummy field)

city (dummy field)

Output 2

address

city

firstname (dummy field)

lastname (dummy field)

Answers (0)