Operation not applicable Delphi Clientdataset [closed]

2

Why am I getting the error Operation not applicable when I open a TClientDataset with master-detail data, but it is only a dataset and a detail .

System Mode: DataSnap > on the qryPai / dspPai / dsPai Server.

datasetPai SQL "select * from orcamento_atendimento where orcamento_atendimento_id = :orcamento_atendimento_id"

qryFilho/dspFilho (ligação como pai pelo "mastersource = dsPai / masterfilds =
orcamento_atendimento_id")

DiceSet

 
SQL "select o.orcamento_id,
       o.sequencial,
       o.orcamento_status_id,
       s.descricao,
       s.faturar,
       o.orcamento_atendimento_id,
       o.vendedor_id,
       v.nome as vendedor,
       o.data_orcamento,
       o.data_validade,
       o.observacoes

from orcamento o
    left join orcamento_status s
      on s.orcamento_status_id = o.orcamento_status_id
    left join pessoa v
      on v.pessoa_id = o.vendedor_id
where o.orcamento_atendimento_id = :orcamento_atendimento_id"

On the client:

ClienteDataSet_Pai / remoteserver = dspOrcamento / providername = dspPai

clienteDataset_Filho / datasetfield = datasource_paidatasetFilho

When I make the connections all correct, but when I try to open or add the fields the error occurs.

    
asked by anonymous 02.06.2014 / 22:35

0 answers