-2
I am trying to do the drilldown for a maintenance in the spring, for example the customer’s file or article but I do not understand how to do.
In version 9 I believe that the method will be something like:
Motor.Comercial.Artigos.DrillDownArtigo...
However in V10 I could not find this function.
I’ve searched the following:
Motor.Base.Artigo
and Motor.Inventário
What will be the new method for drilldown for the Article Sheet and also for the Customer Sheet?
I have this code that works to drilldown for Sale and Purchase Documents.
StdBESqlCampoDrillDown stdBESqlCampoDrillDown = new StdBESqlCampoDrillDown();
stdBESqlCampoDrillDown.ModuloNotificado = "GCP";
stdBESqlCampoDrillDown.Tipo = StdBESqlTipos.EnumTipoDrillDownListas.tddlEventoAplicacao;
stdBESqlCampoDrillDown.Evento = "GCP_EditarDocumento";
StdBEValoresStr stdBEValoresStr = new StdBEValoresStr();
stdBEValoresStr.InsereNovo("Modulo", modulo);
stdBEValoresStr.InsereNovo("Filial", codigoCliente);
stdBEValoresStr.InsereNovo("Tipodoc", tipodoc);
stdBEValoresStr.InsereNovo("Serie", serie);
stdBEValoresStr.InsereNovo("NumDocInt", numdoc);
PSO.DrillDownLista(stdBESqlCampoDrillDown, stdBEValoresStr);
It will now be related to the Customer and Article Sheets?
Thank you.
Hello, in this project you have several examples of how this can be done: Spring
– Daniel Vieira