Имя Абонента
Модераторы: m0p3e, edward_K, Модераторы
-
- Местный житель
- Сообщения: 429
- Зарегистрирован: 24 сен 2008, 11:53
Имя Абонента
Доброго времени суток ребят) Расскажите пожалуйста а как вытащить имя Абонента(Имя офиса в котором мы сейчас работаем) ?? За ранее спасибо
Re: Имя Абонента
Если правильно понял вопрос:
Код: Выделить всё
select abonents.name from x$users,abonents where ((userid == x$users.atl_nrec and x$users.xu$useroffice == abonents.officeno ));
-
- Местный житель
- Сообщения: 429
- Зарегистрирован: 24 сен 2008, 11:53
Re: Имя Абонента
m0p3e писал(а):Если правильно понял вопрос:Код: Выделить всё
select abonents.name from x$users,abonents where ((userid == x$users.atl_nrec and x$users.xu$useroffice == abonents.officeno ));
ДАДА abonents.name только вот хочу вытащить его при выводе word-отчета(PRBDOC) с помощью данной выборки не получается((
Re: Имя Абонента
Видимо, что-то неправильно делаете
Код: Выделить всё
.create view as select abonents.name from x$users,abonents where ((userid == x$users.atl_nrec and x$users.xu$useroffice == abonents.officeno ));
.....
.fields
If(a.getfirst abonents,a.abonents.name,'')
.endfields
^
-
- Местный житель
- Сообщения: 429
- Зарегистрирован: 24 сен 2008, 11:53
Re: Имя Абонента
m0p3e писал(а):Видимо, что-то неправильно делаетеКод: Выделить всё
.create view as select abonents.name from x$users,abonents where ((userid == x$users.atl_nrec and x$users.xu$useroffice == abonents.officeno )); ..... .fields If(a.getfirst abonents,a.abonents.name,'') .endfields ^
Ничего не понимаю 0 и все(((
Код: Выделить всё
.LinkForm 'TOVTRANSNAKLAD2011' Prototype is PRBDOC
.Group 'Продажа'
.NameInList 'Накладная Т-1 25.07.11'
!----------------------------------------
.create view Abongorod
as select abonents.name
from
x$users,
abonents
where
((
userid == x$users.atl_nrec
and x$users.xu$useroffice == abonents.officeno
));
.create view vSpStep
from
SpStep (ReadOnly),
KatParty (ReadOnly)
where
((
PosNRec == SpStep.nRec
and SpStep.cParty == KatParty.nRec
));
.Create view SchKpp
from
BaseDoc (ReadOnly),
KatOrg OrgFrom (ReadOnly),
KatOrg OrgTo (ReadOnly),
KatOrg OrgPol (ReadOnly) ,
Dogovor AppDogovor (ReadOnly)
where
((
BaseDocNrec == BaseDoc.nRec
and BaseDoc.corg==OrgTo.nrec
and BaseDoc.cGrOtpr==OrgFrom.nrec
and BaseDoc.cGrPol==OrgPol.nrec
and BaseDoc.cDogovor==Dogovor.nrec
and BaseDoc.cAppDogovor==AppDogovor.nrec
));
!-------------------------------------------------------------------
.var
pos:integer;
kolitog:double;
Akciz : double
CenaAk : double
summatov : double
SumAk : double
totSumAk : double
.endvar
!-------------------------------------------------------------------
.var
SrcCountry, // Новые графы СФ "Страна происхождения"
GTDNumber : string; // "Номер ГТД"
AddrDost : string; // «Адрес доставки»
skladfio :string; // кладовщик
skladfio1 :string; // ещё ФИО
.endvar
!-------------------------------------------------------------------
.function ft_sGetClass(cotbl: word; crec: comp; scl: string): string;
#ifNdef _ExtClass_Func
#error Необходимо подключить ExtClass.vih
#end
var
ExCl: iExtClass;
scl2: string;
begin
ft_sGetClass := '';
scl2 := Trim(scl);
if ((cotbl = 0) or (scl2 = '') or (crec = comp(0))) exit;
ft_sGetClass := ExCl.GetSegName(ExCl.GetClassCode(cotbl, scl2), comp(crec));
end.
.{
.{table 'SchKpp.BaseDoc'
.}
.{ CheckEnter IsBaseFin
.}
.{CheckEnter ISEXCLASS
.}
.{CheckEnter ISGROUP
.}
.{
.}
.fields
If(Abongorod.getfirst abonents=tsOk, Abongorod.abonents.name,'')
k3
ddoc
nomer
ddoc
nomer
.endfields
^^^^^^
.if DELIMITER
----------------------------------------------------------------------------------------------------------------------------
.end
.}
.endform
Re: Имя Абонента
Маловероятно, но если так:
А в сапорте запрос отрабатывает?
Код: Выделить всё
.create view a as select abonents.name from x$users,abonents where ((userid == x$users.atl_nrec and x$users.xu$useroffice == abonents.officeno ));
.....
.fields
If(a.getfirst x$users = tsOk,If(a.getfirst abonents = tsOk,a.abonents.name,''),'')
.endfields
^
-
- Местный житель
- Сообщения: 429
- Зарегистрирован: 24 сен 2008, 11:53
Re: Имя Абонента
ДА в саппорте все ок выводит то что надо)m0p3e писал(а):Маловероятно, но если так:А в сапорте запрос отрабатывает?Код: Выделить всё
.create view a as select abonents.name from x$users,abonents where ((userid == x$users.atl_nrec and x$users.xu$useroffice == abonents.officeno )); ..... .fields If(a.getfirst x$users = tsOk,If(a.getfirst abonents = tsOk,a.abonents.name,''),'') .endfields ^