Home > database >  PB data window nested objects Report, how to retrieve Report data?
PB data window nested objects Report, how to retrieve Report data?

Time:10-12

Report nested in the PB data window object, such as to build a data window d_print_quote dw_print its object, style is free, and then Report object in the data window d_print_quote nested d_print_quote_2,,
Parameters for id_case d_print_quote retrieval, digital type, id_quote character,
D_print_quote_2, retrieve parameters for id_case, digital type,
Code:
Dw_print. SetTransObject (SQLCA)
Dw_print. Retrieve (idb_case_id, string (idb_case_id))

Could you tell me how to retrieve the Report object d_print_quote_2t data?

Use the following code could not retrieve d_print_quote_2t data
Dw_print. Getchild (" dw_1, "ldwc_tmp)
Ldwc_tmp. SetTransObject (SQLCA)
Ldwc_tmp. Retrieve (idb_case_id)

Use the following code will go wrong,
Dw_print. Object. Dw_1. SetTransObject (SQLCA)
Dw_print. Object. Dw_1. Retrieve (idb_case_id)

Please, give directions, thank you!

CodePudding user response:

Complex nested statements look good, feel is better than using a free format to write their own,

CodePudding user response:

The parameters of father directly the data window
  • Related