[development-axapta] What is best way to add Multiple Trans to a report?

2004-11-16 Thread bob . brinker






Everybody,

I want to print MarkupTrans: Desc and Amount on the SalesInvoice after the
item detail lines have all been printed. There may be multiple markup
transactions each invoice. What is the best way to accomplish this? Should
I use a method or a data source, etc.

    Thanks,
 Bob


Bob Brinker
Oakdene Group, Inc.
2625 Butterfield Rd. (Suite 212E)
Oak Brook, IL 60523-1261
(630)368-1046 x/230
(630)368-1050 (Fax)
[EMAIL PROTECTED]













Yahoo! Groups Sponsor


  ADVERTISEMENT 












Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/development-axapta/ 
To unsubscribe from this group, send an email to:[EMAIL PROTECTED] 
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.










Re: [development-axapta] To E-mail any Axapta report as HTML in the body of the e-mail

2004-11-15 Thread bob . brinker






Hi Everyone,

I have a problem that really has me stumped. I am trying to print
ReturnActionId and ReturnActionTxt on a PurchInvoice that is a credit note.
Everything compiles okay but the code and text do not print on the
document. Below is part of the coding.  I know this is pretty detailed but
can anyone help me or suggest how I might resolve this?.

--
Method added to table: VendInvoiceTrans:
  display returnActionId getReturnActionId()
{
    PurchLine purchline;
    ;
    select ReturnActionId from purchLine where purchLine.purchId ==
this.purchId
    && purchLine.inventTransId == this.inventTransId;
    return purchLine.ReturnActionId;
}
-
Methd added to table: PurchLine:
display RtActionTxt getRtActionTxt()
{
    ReturnActionDefaults returnActionDefaults;
    ;
    select Txt from returnActionDefaults where
returnActionDefaults.ReturnActionId == this.ReturnActionId;
    return returnActionDefaults.Txt;
}
--
Part of the coding from the PurchInvoice report.


Body:Body_3
  Methods
    executeSection
  void  executeSection()
{;
    element.printInventTrans();
}
  Section Group: InventTrans
    Body:Body_1
  Methods
    execcuteSection
    void  executeSection()
{;
//  if (getReturnActionId)  // print return action message
   element.execute(1);
}
    String:InventDimPrint
Programmable Section(1):ProgrammableSection.
  Methods
    executeSection
    void  executeSection()
{;
  if (getReturnActionId)  // print return action message
   element.execute(2);
}
    String:getReturnActionId
    Table:  VendInvoiceTrans
    Method: getRtActionId.
Programmable Section(2): ProgrammableSection_1
  Methods
  String: GetReturnActionTxt
    Table: PurchLine
    Method: GetRtActionTxt
-
Thanks,
Bob


Bob Brinker
Oakdene Group, Inc.
2625 Butterfield Rd. (Suite 212E)
Oak Brook, IL 60523-1261
(630)368-1046 x/230
(630)368-1050 (Fax)
[EMAIL PROTECTED]













Yahoo! Groups Sponsor


  Get unlimited calls to 	U.S./Canada  












Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/development-axapta/ 
To unsubscribe from this group, send an email to:[EMAIL PROTECTED] 
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.










[development-axapta] Modify SalesNotInvoiced Report to Show only DeliveredNotInvoiced

2004-11-14 Thread bob . brinker






Hi All,


I am still trying to modify the SalesNotInvoiced report to only show orders
that are delivered and not invoiced. I worked on this about a week ago
using an approach that did not work out so now I am back at it.

Since this is already calculated in the program and prints on the report I
thought such a modification should be easy. After looking at this again for
most of a day I have not been able to figure out and successfully determine
where to make the modification. Your help, suggestions, etc would be
appreciated.

Already calculated in the program:

display SalesQty deliveredNotInvoiced()
{
    return this.delivered() - this.invoiced();
}

Thanks,
Bob





Bob Brinker
Oakdene Group, Inc.
2625 Butterfield Rd. (Suite 212E)
Oak Brook, IL 60523-1261
(630)368-1046 x/230
(630)368-1050 (Fax)
[EMAIL PROTECTED]













Yahoo! Groups Sponsor


  Get unlimited calls to 	U.S./Canada  












Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/development-axapta/ 
To unsubscribe from this group, send an email to:[EMAIL PROTECTED] 
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.










[development-axapta] Getting SQL Error Merssage when try to go into Axapta

2004-11-13 Thread bob . brinker





Hi Everybody,

Can anyone tell me what the error message below means? I suddenly started
getting it when I try to go into Axapta and cannot go any further. I am
getting it on a PC where Axapta and SQL Server are installed standalone.

 SQL has reported the following error:

[Microsoft][ODBC SQL Server Driver][TCP/IP Sockets] SQL Server does not
exist or access denied. Connect information was: Usersid = [bmssa],
Datebase -[AXDB],Server=[IBM-06814FB655A],DSN=[BMSSA].Other

Thanks in advance,
Bob











Yahoo! Groups Sponsor


  ADVERTISEMENT 












Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/development-axapta/ 
To unsubscribe from this group, send an email to:[EMAIL PROTECTED] 
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.










[development-axapta] Printing Multiple Misc Charges on a Sales Order

2004-11-12 Thread bob . brinker





Hi Everybody,

I need help on the following:

 I have created a method to print the miscellaneous charges from table
MarkupTrans onto the SalesInvoiceUS report but I am only getting 1 line
printed even if there are several rows of charges in the table. The method
I am using is printed below. What do I need to do to get all the applicable
charges printed or can this even be done using a method.

display MarkupTransTxt60 mMarkupTransTxt()
    {
    MarkupTrans markupTrans;
    ;
    select txt from markupTrans where markupTrans.Voucher ==
this.LedgerVoucher;
   return markupTrans.Txt;
}

 Thanks,
Bob



Bob Brinker
Oakdene Group, Inc.
2625 Butterfield Rd. (Suite 212E)
Oak Brook, IL 60523-1261
(630)368-1046 x/230
(630)368-1050 (Fax)
[EMAIL PROTECTED]










Yahoo! Groups Sponsor


  ADVERTISEMENT 












Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/development-axapta/ 
To unsubscribe from this group, send an email to:[EMAIL PROTECTED] 
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.










[development-axapta] Problem Printing Misc Charges on SalesInvoice

2004-11-09 Thread bob . brinker






Hi All,

I am having a problem printing the detail Misc Charges (from the
MarkupTrans table) on the SalesInvoiceUS report. These are the charges that
are summarized as Frt/Misc on the standard report. I get no description and
.00 for the charge.

 I have assumed that it is sufficient to go after the MarkupTrans table
using just RecId and queried both tables to be sure I have the correct
record Id?s.  Any help, suggestions, etc will be greatly appreciated.

I am using the method shown below but the detail misc charges do not appear
when I print an invoice. Can any one tell me what I am doing wrong?

display MarkupTransTxt60 mMarkupTransTxt()
    {
    MarkupTrans markupTrans;
    ;
    select txt from markupTrans where markupTrans.TransRecId == this.RecId;
   return markupTrans.Txt;
}

I also tried, without success, to obtain the Misc Charges by adding the
MarkupTrans as a data source and setting the relationship using OuterJoin
and 1:n and as follows.

CustInvoiceJour.RecId = = MarkupTrans.TransRecId


Thanks,
Bob













Yahoo! Groups Sponsor


  ADVERTISEMENT 












Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/development-axapta/ 
To unsubscribe from this group, send an email to:[EMAIL PROTECTED] 
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.










[development-axapta] Big problem: Please Help: Inventory Dimension Size Error

2004-11-09 Thread bob . brinker






Hi All, 11-9/04

After a week of testing today I started getting an error when ever I try to
post an AR sales order , enter or modify a sales order. Seems like I cannot
do anything with sales orders. The error I am getting is: ?Inventory
dimension 'Size' is an item dimension and must consequently be specified?.
I checked previously entered and invoiced sales orders and they do not have
a size.

Can anyone tell me how to get around this error as I cannot do anything
with sales orders? Could I or someone else have done something to cause
this?

Thanks,

Bob



Bob Brinker
Oakdene Group, Inc.
2625 Butterfield Rd. (Suite 212E)
Oak Brook, IL 60523-1261
(630)368-1046 x/230
(630)368-1050 (Fax)
[EMAIL PROTECTED]













Yahoo! Groups Sponsor


  ADVERTISEMENT 












Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/development-axapta/ 
To unsubscribe from this group, send an email to:[EMAIL PROTECTED] 
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.










[development-axapta] PurchTable Return Action Codes Descriptions

2004-11-08 Thread bob . brinker






Hi All,

The Return Action code is on the Setup tab of the PurchTable form. I assume
there is a table that defines the codes and their descriptions that display
from the drop down box. I want to print the code and its description on
some purchase documents. Does anyone know the name of the table or can tell
me how to find it?

Any help will be sincerely appreciated.

Thanks,
Bob


Bob Brinker
Oakdene Group, Inc.
2625 Butterfield Rd. (Suite 212E)
Oak Brook, IL 60523-1261
(630)368-1046 x/230
(630)368-1050 (Fax)
[EMAIL PROTECTED]













Yahoo! Groups Sponsor


  ADVERTISEMENT 












Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/development-axapta/ 
To unsubscribe from this group, send an email to:[EMAIL PROTECTED] 
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.










[development-axapta] What determines the Scope of an IF Statement

2004-11-07 Thread bob . brinker






Hi All,

I am a little confused about what controls the scope of an IF statement. I
thought that the curly brackets { and } controlled the scope but there are
no curly brackets following the IF in some Axapta code. For example: What
is the scope of the first IF in the code below taken from the fetch in
SalesInvoiceUS? It appears that only element.execute(1) is controlled by
the first IF.
 }

    if (custInvoiceJour.SumMarkup)  // print freight/misc charges
    element.execute(1);

  element.printBackorders();

    taxSpecPrintLevel = CustFormletterParameters::Find
().TaxSpecPrintLevel;

    if (taxSpecPrintLevel != TaxSpecPrintLevel::None)
    {

Thanks,

Bob



Bob Brinker
Oakdene Group, Inc.
2625 Butterfield Rd. (Suite 212E)
Oak Brook, IL 60523-1261
(630)368-1046 x/230
(630)368-1050 (Fax)
[EMAIL PROTECTED]













Yahoo! Groups Sponsor


  ADVERTISEMENT 












Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/development-axapta/ 
To unsubscribe from this group, send an email to:[EMAIL PROTECTED] 
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.










[development-axapta] Please I really need help SalesinvoiceUS

2004-11-05 Thread bob . brinker





How do I print a line of Invoice Comments after all detail lines have been
printed and then a break down of all the special charges charges as opposes
to the summary line?
Thanks in advance,
Bob


Bob Brinker
Oakdene Group, Inc.
2625 Butterfield Rd. (Suite 212E)
Oak Brook, IL 60523-1261
(630)368-1046 x/230
(630)368-1050 (Fax)
[EMAIL PROTECTED]










Yahoo! Groups Sponsor


  ADVERTISEMENT 












Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/development-axapta/ 
To unsubscribe from this group, send an email to:[EMAIL PROTECTED] 
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.










[development-axapta] How omit Printing a field that is blank?

2004-11-03 Thread bob . brinker






Hi All,

I have added the RMA number (table InvoiceJour) and the Return Action
(PurchTable) fields to the PurchInvoice Credit Note report  but do not want
to print them if they are blank. How can I do this?

Thanks,

Bob


Bob Brinker
Oakdene Group, Inc.
2625 Butterfield Rd. (Suite 212E)
Oak Brook, IL 60523-1261
[EMAIL PROTECTED]













Yahoo! Groups Sponsor


  ADVERTISEMENT 












Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/development-axapta/ 
To unsubscribe from this group, send an email to:[EMAIL PROTECTED] 
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.










[development-axapta] Need Help Adding Model Group to the PurchPackingSlip Report

2004-10-31 Thread bob . brinker





Hi All,

I have spent half a day without success trying to add ModelGroupId from the
InventTable to the PurchPackingSlip report. Can anyone tell me what I am
doing wrong? Your help would be very appreciated.

I tried to do it using a method and also by adding InventTable as a data
source and neither worked.
* Method approach:
The method I created is listed below. First I put it where I thought it
should go. When that did not work I tried several other places in the
report. The message I keep getting is ?Unknown source for data method
GetModelGroupID? and the code is listed below.

display ModelGroupId GetModelGroupId()
{
    return InventTable::find(VendPackingSlipTrans.ItemId).ModelGroupId;
}

* Data Source Approach
When I  added the InventTable as a data source no error was returned and
the label printed on the report but not the ModelGroupId itself. The
relationship I used is shown below.

VendPackingSlipTrans.ItemId = = InventTable.ItemId
*
 Thanks in Advance,
Bob





Bob Brinker
Oakdene Group, Inc.
2625 Butterfield Rd. (Suite 212E)
Oak Brook, IL 60523-1261
(630)368-1046 x/230
(630)368-1050 (Fax)
[EMAIL PROTECTED]










Yahoo! Groups Sponsor


  ADVERTISEMENT 












Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/development-axapta/ 
To unsubscribe from this group, send an email to:[EMAIL PROTECTED] 
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.










[development-axapta] How do I change the Name of the PurchPackingSlip Based on Sign of Qty?

2004-10-31 Thread bob . brinker





Hi Group,

How do I change the name that prints on the PurchPackingSlip Report Based
on the sign of the Quantity?

I want to change the name that prints on PurchPackingSlip from ?Packing
Slip? to ?Return to Vendor? if the quantity is negative.

 I think something like the following is needed: If Qty < 0 ReportNameTxt
= ?Return to Vendor? but I do not know the exact syntax nor where to put
it. Can someone tell me how to do this?

Thanks in Advance,
Bob










Bob Brinker
Oakdene Group, Inc.
2625 Butterfield Rd. (Suite 212E)
Oak Brook, IL 60523-1261
(630)368-1046 x/230
(630)368-1050 (Fax)
[EMAIL PROTECTED]










Yahoo! Groups Sponsor


  ADVERTISEMENT 












Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/development-axapta/ 
To unsubscribe from this group, send an email to:[EMAIL PROTECTED] 
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.










[development-axapta] Formletter: What does it do or mean?

2004-10-27 Thread bob . brinker






Hi Everyone,

I have seen the word Formletter used in Axapta methods but cannot find what
it means or does. Can someone explain it or tell me where I can find
information on it. I could not find it in the Developer's Guide.

Thanks,

Bob


Bob Brinker
Oakdene Group, Inc.
2625 Butterfield Rd. (Suite 212E)
Oak Brook, IL 60523-1261
[EMAIL PROTECTED]













Yahoo! Groups Sponsor


  ADVERTISEMENT 












Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/development-axapta/ 
To unsubscribe from this group, send an email to:[EMAIL PROTECTED] 
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.










[development-axapta] Are Page and PagesTotal Global data Methods

2004-10-22 Thread bob . brinker






Hi All,

There are some Data Methods, in reports for example like Page and
PagesTotal, that do not seem to be defined within the report. Are these
Data Methods defined somewhere and what are the other ones or am I missing
something?

Thanks in Advance and with Sincerely Appreciation for the on-going help I
have received,

Bob






Bob Brinker
Oakdene Group, Inc.
2625 Butterfield Rd. (Suite 212E)
Oak Brook, IL 60523-1261
(630)368-1046 x/230
(630)368-1050 (Fax)
[EMAIL PROTECTED]













Yahoo! Groups Sponsor


  ADVERTISEMENT 












Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/development-axapta/ 
To unsubscribe from this group, send an email to:[EMAIL PROTECTED] 
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.










[development-axapta] How Restore Fonts on Axapta Reports?

2004-10-21 Thread bob . brinker






Hi All,

I have a problem that I am almost too embarrassed to present to the group.
While working on a custom report and template yesterday I increased some
font?s sizes.

 Now some other Axapta reports such as the SalesInvoiceUS are messed up
with large fonts printing with fields overlaying other fields. I need help
in setting the fonts back to the way they were. Any help will be sincerely
appreciated.

Thanks,

Bob








Bob Brinker
Oakdene Group, Inc.
2625 Butterfield Rd. (Suite 212E)
Oak Brook, IL 60523-1261
(630)368-1046 x/230
(630)368-1050 (Fax)
[EMAIL PROTECTED]













Yahoo! Groups Sponsor


  ADVERTISEMENT 












Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/development-axapta/ 
To unsubscribe from this group, send an email to:[EMAIL PROTECTED] 
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.










[development-axapta] Replacing an Axapta Report with a Custom Report. on an IM Menu

2004-10-15 Thread bob . brinker




Hi All,

I have created a report using the report wizard and a custom report 
template. The only way I have been able to run the report is to select Go. 
 Then the report compiles, presents a selection screen and executes which 
is great.

 Now I want to put the report on a menu and have it print (instead of the 
Axapta report) when the user presses print on the Inventory Journal 
screen. Can someone tell me how to do that?

Menu ? IM ? Journals ? Transfer ? User Selects a Journal and presses 
print.

Does the report have to compile each time it is run?

Thanks,
Bob










Bob Brinker
Oakdene Group, Inc.
2625 Butterfield Rd. (Suite 212E)
Oak Brook, IL 60523-1261
(630)368-1046 x/230
(630)368-1050 (Fax)
[EMAIL PROTECTED]

[Non-text portions of this message have been removed]










Yahoo! Groups Sponsor


  ADVERTISEMENT 












Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/development-axapta/ 
To unsubscribe from this group, send an email to:[EMAIL PROTECTED] 
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.










[development-axapta] Creating Forms

2004-10-14 Thread bob . brinker






Hi All,

Within the last couple weeks I believe someone posted a message with detail
instructions on creating a form. I intended to save it but must have
accidentally deleted it.

If anyone has it would you be so kind as to send it to me.

Thanks,

Bob




Bob Brinker
Oakdene Group, Inc.
2625 Butterfield Rd. (Suite 212E)
Oak Brook, IL 60523-1261
(630)368-1046 x/230
(630)368-1050 (Fax)
[EMAIL PROTECTED]













Yahoo! Groups Sponsor


  ADVERTISEMENT 












Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/development-axapta/ 
To unsubscribe from this group, send an email to:[EMAIL PROTECTED] 
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.










[development-axapta] Finding a Field in a Table

2004-10-14 Thread bob . brinker






Hi All,

I am trying to retrieve a custom field (Carrier) added to the
InventJournalTable but am getting error: Field not found in Table. The
field has been added to the table and contains data. Any suggestion? The
error message is pointing to the column after the equal sign.

display Carrier GetCarrier()
{
return (select Carrier from InventJournalTable where
InventJournalTable.JournalId == InventJournalTrans.JournalId).Carrier;
}



Thanks,

Bob








Bob Brinker
Oakdene Group, Inc.
2625 Butterfield Rd. (Suite 212E)
Oak Brook, IL 60523-1261
(630)368-1046 x/230
(630)368-1050 (Fax)
[EMAIL PROTECTED]













Yahoo! Groups Sponsor


  ADVERTISEMENT 












Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/development-axapta/ 
To unsubscribe from this group, send an email to:[EMAIL PROTECTED] 
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.










[development-axapta] Error in Method Retrieving field from Table

2004-10-08 Thread bob . brinker






Hi All,

I am trying to retrieve a custom field (Carrier) added to the
InventJournalTable but am getting error: Field not found in Table. The
field has been added to the table and contains data.  The error message is
pointing to the column after the equal sign. I have checked all the files
and fields against the AOT many times but cannot spot the problem. Any
suggestions as what the problem could be would be appreciated.?

display Carrier GetCarrier()
{
return (select Carrier from InventJournalTable where
InventJournalTable.JournalId == InventJournalTrans.JournalId).Carrier;
}

Thanks in Advance,
Bob








Bob Brinker
Oakdene Group, Inc.
2625 Butterfield Rd. (Suite 212E)
Oak Brook, IL 60523-1261
(630)368-1046 x/230
(630)368-1050 (Fax)
[EMAIL PROTECTED]













Yahoo! Groups Sponsor


  ADVERTISEMENT 












Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/development-axapta/ 
To unsubscribe from this group, send an email to:[EMAIL PROTECTED] 
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.










[development-axapta] Report Wizard on a Menu

2004-10-08 Thread bob . brinker







Hi All,

I created a report using the report wizard but it does not get added to a
menu when that option is selected.
Has anyone else had this problem and how did you handle it?

Thanks,
Bob









Bob Brinker
Oakdene Group, Inc.
2625 Butterfield Rd. (Suite 212E)
Oak Brook, IL 60523-1261
(630)368-1046 x/230
(630)368-1050 (Fax)
[EMAIL PROTECTED]













Yahoo! Groups Sponsor


  ADVERTISEMENT 












Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/development-axapta/ 
To unsubscribe from this group, send an email to:[EMAIL PROTECTED] 
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.










[development-axapta] Fields in Field Groups

2004-10-07 Thread bob . brinker





Hi Everyone, 

Does anyone know if it is possible to modify the properties of fields in 
field groups. I created a report with the report wizard. When I select 
properties on a field in a group the properties display but cannot be 
modified.  Is their any way to chage the properties of  a field in a field 
group in a report

Thanks,

Bob 














Bob Brinker
Oakdene Group, Inc.
2625 Butterfield Rd. (Suite 212E)
Oak Brook, IL 60523-1261
(630)368-1046 x/230
(630)368-1050 (Fax)
[EMAIL PROTECTED]

[Non-text portions of this message have been removed]













Yahoo! Groups Sponsor


  ADVERTISEMENT 












Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/development-axapta/ 
To unsubscribe from this group, send an email to:[EMAIL PROTECTED] 
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.










[development-axapta] Report Wizard with Custom Template

2004-10-03 Thread bob . brinker






Hello Everyone,

I am having a problem with the report wizard and a custom template and hope
some can help me. I have modified some reports but this is the first one I
wrote from scratch.

I am trying to produce a report but am not getting the expected results.
First I created a report template that contains 3 Header sections, a
Programmable section and a Footer section. Then I used the Report Wizard to
produce the report entering my template when it was called for. The report
has 2 Data Sources.

The 1st Header section I defined in the Template with company name, logo,
etc and it is working fine.

The problem I am having is getting the fields to the 2nd and 3rd  header
sections of the report which I want to populate from a Data Source. If I
look at the AutoDesignSpecs I do not see any of the Header sections.

I would really appreciate any suggestions.

Thanks,

Bob





Bob Brinker
Oakdene Group, Inc.
2625 Butterfield Rd. (Suite 212E)
Oak Brook, IL 60523-1261













Yahoo! Groups Sponsor


  ADVERTISEMENT 












Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/development-axapta/ 
To unsubscribe from this group, send an email to:[EMAIL PROTECTED] 
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.










[development-axapta] Inventory Journal Lines - Transfer ? Report.

2004-10-02 Thread bob . brinker




Hi Group, 

I am trying to find the name of the report in the AOT for the Inventory 
Journal Lines - Transfer ? Report. I tried tracing it through the menus 
but was unsuccessful in finding the name of the report.

The Axapta navigation to produce the report is:

Menu ->  IM =>  Journal =>  Item transaction => Transfer => Select Journal 
=> Print.

Any help will be greatly appreciated as I need to work on the report this 
weekend.

Thanks in advance,

Bob




















Bob Brinker
Oakdene Group, Inc.
2625 Butterfield Rd. (Suite 212E)
Oak Brook, IL 60523-1261
(630)368-1046 x/230
(630)368-1050 (Fax)
[EMAIL PROTECTED]

[Non-text portions of this message have been removed]











Yahoo! Groups Sponsor


  ADVERTISEMENT 












Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/development-axapta/ 
To unsubscribe from this group, send an email to:[EMAIL PROTECTED] 
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.










[development-axapta] Identifying Confirmation report in the Axapta AOT

2004-09-24 Thread bob . brinker





Bjorn,

Thank you very much for the detail explanation on retreiving the Axapta
report name. It is very helpful and I have used it several times.

 I have one report that I could not determine what it is called in the
Axapta AOT. Do you are anyone else know what the Confirmation report is
called in the AOT.

It is the Sales Confirmation report and Confirmation prints on the report.
The report is selected from AR ==> Sales Orders ==> Post ==> Confirmation.

Thanks so much for your help,

Bob Brinker











Yahoo! Groups Sponsor


  ADVERTISEMENT 












Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/development-axapta/ 
To unsubscribe from this group, send an email to:[EMAIL PROTECTED] 
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.










[development-axapta] Printing Buyer Name on Purchase Orders

2004-09-23 Thread bob . brinker





 Hi All,

I hope this problem is appropriate for this group but I am having a problem
with adding a field to purchase orders and need help.

I am trying to modify the Purchase Order to print Buyer Group ID and
Description. The Buyer Group ID is printing fine but the Description is not
coming out.

Listed below is what I did to get the Buyer Group Description

   Set up a project and dragged report PurchPurchaseOrder to it.

   Added a new data source:   InventBuyerGroup.
  Fetch Mode:   1:1
Join Mode:  OuterJoin

   Added a new Relationship:
 VendorPurchaseOrderJour.ItemBuyerGroupID = =   InventBuyerGroup.Group

I have spent some time on this. Does anyone have a suggestion as to what
may be wrong or what I should check, etc?

Thanks in advance for any help.

Bob












Yahoo! Groups Sponsor


  ADVERTISEMENT 












Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/development-axapta/ 
To unsubscribe from this group, send an email to:[EMAIL PROTECTED] 
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.










[development-axapta] development-axapta: Order Lines Not Invoiced Report called in the AOT?

2004-09-21 Thread bob . brinker





Hi Everyone,

I need help again. I have spent a lot of time looking but have not been
able to find the name of the Axapta report in the AOT that prints the
report called "Order lines not Invoiced".  I found a report with a similiar
name but not the right one. Any help will be greatly appreciated or if
anyone can tell me a way to search for the report names in the AOT when it
is not the name used on the report.


Thanks and best regards,

   Bob










Bob Brinker
Oakdene Group, Inc.
2625 Butterfield Rd. (Suite 212E)
Oak Brook, IL 60523-1261
(630)368-1046 x/230
(630)368-1050 (Fax)
[EMAIL PROTECTED]











Yahoo! Groups Sponsor


  ADVERTISEMENT 












Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/development-axapta/ 
To unsubscribe from this group, send an email to:[EMAIL PROTECTED] 
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.










[development-axapta] development-axapta: Truncated Fields when Printed but OG if Displayed

2004-09-20 Thread bob . brinker





Hi All,

The BankDepositSlip document truncates the Deposit Slip number when
printed. When displayed back to the screen the Deposit Slip Number displays
OK; however, if printed it is truncated. For Example:

Report to Screen: Deposit slip: DEP_0012  <==Okay

Report to Printer:  Deposit slip: DE_00(  <==Truncated

Does anybody have an idea how to correct this problem?

I also have a second problem. The Deposit Slip number displays twice on the
document: Once in the top RT hand corner and once at the end of the
document. In both places it is truncated when printed. The AutoDesignSpes
layout does not show the field printed at the bottom so I am not sure what
causes it to print.

Any help will be appreciated.

Thanks,
Bob











Bob Brinker
Oakdene Group, Inc.
2625 Butterfield Rd. (Suite 212E)
Oak Brook, IL 60523-1261
(630)368-1046 x/230
(630)368-1050 (Fax)
[EMAIL PROTECTED]











Yahoo! Groups Sponsor


  ADVERTISEMENT 












Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/development-axapta/ 
To unsubscribe from this group, send an email to:[EMAIL PROTECTED] 
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.










Fw: [development-axapta] Re: Credit Notes: axapta

2004-09-19 Thread bob . brinker




Ken,

Thanks for the information on Credit Notes. That is exactly what I was 
looking for.

Bob 

Bob Brinker
Oakdene Group, Inc.
2625 Butterfield Rd. (Suite 212E)
Oak Brook, IL 60523-1261
(630)368-1046 x/230
(630)368-1050 (Fax)
[EMAIL PROTECTED]
- Forwarded by Bob Brinker/OGIDM on 09/19/2004 02:22 PM -


"ken_mbsdev" <[EMAIL PROTECTED]>
09/17/2004 04:20 PM
Please respond to development-axapta
 
    To: [EMAIL PROTECTED]
    cc: 
    Subject:    [development-axapta] Re: Credit Notes: axapta


Hi Bob,

The Credit Note document printed out of Accounts Receivable based on 
a sales order is SalesInvoice.  The "Credit Note" string comes out of 
the label file and happens within the invoicetxt method with the 
following line:

invoiceTxt = element.design().lookupLabel(literalStr("@SYS8125"));

The Credit Note document printed out of Accounts Payable based on a 
purchase order is PurchInvoice.  Again, the "Credit Note" string 
comes from the label file within the invoicetxt method with the 
following line:

invoiceTxt = element.design().lookupLabel(literalStr("@SYS71591"));

Hope this helps,

Ken

Ken Paul
MBS Dev, Inc.
1400 Saint Andrews Drive
Suite 113
Broomfield, Colorado  80020
(303) 469-2346
[EMAIL PROTECTED]

--- In [EMAIL PROTECTED], [EMAIL PROTECTED] wrote:
> Hi Everyone,
> 
> Does anyone know the name of the Reports in the AOT that prints the 
Credit 
> Notes documents? There is a Credit Note document that can be 
printed out 
> of Accounts Payable based on a purchase order. There is also a 
Credit Note 
> document that may be printed out of Accounts Receivable based on a 
sales 
> order. Both documents say Credit Note on them. I need to find the 
report 
> names of both reports.
> 
> I have spent several hours but have not been able to find any 
report that 
> is called anything like a Credit Note looking under Reports in the 
AOT. I 
> would really appreciate any help or if anyone can tell me a way to 
search 
> for the report names.
> 
> Thank you in advance,
> 
>    Bob
> 
> 
> 
> 
> 
> 
> 
> 
> 
> Bob Brinker
> Oakdene Group, Inc.
> 2625 Butterfield Rd. (Suite 212E)
> Oak Brook, IL 60523-1261
> (630)368-1046 x/230
> (630)368-1050 (Fax)
> [EMAIL PROTECTED]
> 
> [Non-text portions of this message have been removed]



Yahoo! Groups Sponsor

ADVERTISEMENT




Yahoo! Groups Links
To visit your group on the web, go to:
http://groups.yahoo.com/group/development-axapta/
 
To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]
 
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. 

[Non-text portions of this message have been removed]











Yahoo! Groups Sponsor


  ADVERTISEMENT 












Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/development-axapta/ 
To unsubscribe from this group, send an email to:[EMAIL PROTECTED] 
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.










[development-axapta] Credit Notes: axapta

2004-09-17 Thread bob . brinker




Hi Everyone,

Does anyone know the name of the Reports in the AOT that prints the Credit 
Notes documents? There is a Credit Note document that can be printed out 
of Accounts Payable based on a purchase order. There is also a Credit Note 
document that may be printed out of Accounts Receivable based on a sales 
order. Both documents say Credit Note on them. I need to find the report 
names of both reports.

I have spent several hours but have not been able to find any report that 
is called anything like a Credit Note looking under Reports in the AOT. I 
would really appreciate any help or if anyone can tell me a way to search 
for the report names.

Thank you in advance,

   Bob









Bob Brinker
Oakdene Group, Inc.
2625 Butterfield Rd. (Suite 212E)
Oak Brook, IL 60523-1261
(630)368-1046 x/230
(630)368-1050 (Fax)
[EMAIL PROTECTED]

[Non-text portions of this message have been removed]











Yahoo! Groups Sponsor


  ADVERTISEMENT 












Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/development-axapta/ 
To unsubscribe from this group, send an email to:[EMAIL PROTECTED] 
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.










RE : [development-axapta] Credit Note Reports... Please Help

2004-09-16 Thread bob . brinker





Hi Everyone,

Does anyone know the name of the Reports in the AOT that prints the Credit
Notes documents? There is a Credit Note document that can be printed out of
Accounts Payable based on a purchase order. There is also a Credit Note
document that may be printed out of Accounts Receivable based on a sales
order. Both documents say Credit Note on them. I need to find the report
names of both reports.

I have spent several hours but have not been able to find any report that
is called anything like a Credit Note looking under Reports in the AOT. I
would really appreciate any help or if anyone can tell me a way to search
for the report names.

Thank you in advance,

   Bob









Bob Brinker
Oakdene Group, Inc.
2625 Butterfield Rd. (Suite 212E)
Oak Brook, IL 60523-1261
(630)368-1046 x/230
(630)368-1050 (Fax)
[EMAIL PROTECTED]











Yahoo! Groups Sponsor


  ADVERTISEMENT 












Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/development-axapta/ 
To unsubscribe from this group, send an email to:[EMAIL PROTECTED] 
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.










RE : [development-axapta] No Editor after a new job is created

2004-09-07 Thread bob . brinker




Hi All,

I have a very elementary question. I created a newJob but the editor 
window did not appear.  My new Job is Hellojob and a screen print is shown 
below. I thought the Editor would display if a job, class or macro  is 
created and then edited.  Any help will be greatly appreciated as this has 
got. me stopped.

Thanks in advice,
Bob





Bob Brinker
Oakdene Group, Inc.
2625 Butterfield Rd. (Suite 212E)
Oak Brook, IL 60523-1261
(630)368-1046 x/230
(630)368-1050 (Fax)
[EMAIL PROTECTED]

[Non-text portions of this message have been removed]











Yahoo! Groups Sponsor


  ADVERTISEMENT 












Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/development-axapta/ 
To unsubscribe from this group, send an email to:[EMAIL PROTECTED] 
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.










Re: [development-axapta] Isolating Axapta Modifications until Tested

2004-08-20 Thread bob . brinker




Hi All, 

Does anyone have a scheme for modifying and testing Axapta so that the 
modifications are kept out of the ?live? Axapta system until they are 
fully tested? Or could you point me to the Axapta manual(s) or another 
resource where this is covered best covered?

Thank You,
 
  Bob







Bob Brinker
Oakdene Group, Inc.
2625 Butterfield Rd. (Suite 212E)
Oak Brook, IL 60523-1261
[EMAIL PROTECTED]

[Non-text portions of this message have been removed]










Yahoo! Groups Sponsor


  ADVERTISEMENT 












Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/development-axapta/ 
To unsubscribe from this group, send an email to:[EMAIL PROTECTED] 
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.










RE: [development-axapta] Projects Shared and Private

2004-08-20 Thread bob . brinker




Hi All, 

I need help with the meaning and use of ?shared? virsus ?private? projects 
relative to identifying Axapta modifications. I checked the Developers 
Guide but could not find a complete definition. 

The Developer?s Guide says: ?A private project is only available to the 
user who created it. In contrast, a shared project is available to all 
users, and can be used as a tool for work groups to manage their work?.

For example, if a report is modified as part of a private project does any 
user who prints that report get the modified version? How about a report 
modified as part of a shared project?   Does the same apply to screens, 
etc as as for reports?

Any help will be greatly appreciated.

Thanks,
 
  Bob



Bob Brinker
Oakdene Group, Inc.
2625 Butterfield Rd. (Suite 212E)
Oak Brook, IL 60523-1261
[EMAIL PROTECTED]

[Non-text portions of this message have been removed]










Yahoo! Groups Sponsor


  ADVERTISEMENT 












Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/development-axapta/ 
To unsubscribe from this group, send an email to:[EMAIL PROTECTED] 
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.










[development-axapta] Fw: Error Messages when trying to print a Sales Order Packing Slip: Axapta

2004-08-18 Thread bob . brinker




Hi Girish,

Thanks for the information. It is what I was looking for. 

Regarding the error message I am trying to understand what any in general 
mean including labels.

Thanks again,

    Bob

== 

Bob Brinker
Oakdene Group, Inc.
2625 Butterfield Rd. (Suite 212E)
Oak Brook, IL 60523-1261
[EMAIL PROTECTED]
 
- Forwarded by Bob Brinker/OGIDM on 08/18/2004 05:27 PM -


"Girish Bhatkal" <[EMAIL PROTECTED]>
08/17/2004 03:11 AM
Please respond to development-axapta
 
    To: <[EMAIL PROTECTED]>
    cc: 
    Subject:    Error Messages when trying to print a Sales Order 
Packing Slip: Axapta 

Hi Bob,

  when you do the posting, in the Posting delivery note form , in the
parameter group / Quantity what is selected?
Also before selecting OK on this form you check in the lines tab if there
are any lines. if not then check if you have selected the correct Quantity
option (Deliver Now / All/ Picked / Delivery note).

 About the error message, your query is not clear. Do you want to
understand what @SYP229 or any other label , means?

cheers,
Girish
  -Original Message-
  From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
  Sent: 16 August 2004 20:12
  To: [EMAIL PROTECTED]
  Subject: [development-axapta]: Errorr Messages when trying to print a
Sales Order Packing Slip.


  Hi All,

  Please excuse me for posting this message twice. The first time I posted
  it with an incorrect subject in the header.

  I am still learning Axapta and am having a problem deciphering some 
Axapta
  3.0 exception messages.  (Example: "@SYP229"). Are  there some best 
places
  to look for information like this? I tried several resources like 
TechNet
  but with no helpful results.

  Could anyone suggest what resources are available when further
  interpretation of  error message(s) is needed.  For example, I am trying
  to get a Packing Slip from a Sale Order in Accounts Receivable as 
follows:


  Menu ==>  A/R  ==>  Sales Order  ==>    Posting  ==>  Packing Slip  ==> 
OK


  The report must be produced in this way because Axapta passes something 
to
  it before report can be produced.

  Posting seems to start but is interrupted within about 15 seconds with 
the
  following messages displaying  in the Info Log and no Packing Slip is
  produced:

  Posting
  No lines for posting or quantity = 0
  Posting has been canceled.
  @SYP229

  Any help will be greatly appreciated. Thanks in advance,

   Bob


  Bob Brinker
  Oakdene Group, Inc.
  2625 Butterfield Rd. (Suite 212E)
  Oak Brook, IL 60523-1261
  [EMAIL PROTECTED]

  [Non-text portions of this message have been removed]



    Yahoo! Groups Sponsor
  ADVERTISEMENT






--
  Yahoo! Groups Links

    a.. To visit your group on the web, go to:
    http://groups.yahoo.com/group/development-axapta/

    b.. To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

    c.. Your use of Yahoo! Groups is subject to the Yahoo! Terms of 
Service.



[Non-text portions of this message have been removed]



Yahoo! Groups Sponsor

ADVERTISEMENT




Yahoo! Groups Links
To visit your group on the web, go to:
http://groups.yahoo.com/group/development-axapta/
 
To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]
 
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. 

[Non-text portions of this message have been removed]











Yahoo! Groups Sponsor


  ADVERTISEMENT 












Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/development-axapta/ 
To unsubscribe from this group, send an email to:[EMAIL PROTECTED] 
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.










[development-axapta]: Errorr Messages when trying to print a Sales Order Packing Slip.

2004-08-16 Thread bob . brinker




Hi All, 

Please excuse me for posting this message twice. The first time I posted 
it with an incorrect subject in the header. 

I am still learning Axapta and am having a problem deciphering some Axapta 
3.0 exception messages.  (Example: "@SYP229"). Are  there some best places 
to look for information like this? I tried several resources like TechNet 
but with no helpful results.

Could anyone suggest what resources are available when further 
interpretation of  error message(s) is needed.  For example, I am trying 
to get a Packing Slip from a Sale Order in Accounts Receivable as follows: 
    

Menu ==>  A/R  ==>  Sales Order  ==>    Posting  ==>  Packing Slip  ==> OK 


The report must be produced in this way because Axapta passes something to 
it before report can be produced. 

Posting seems to start but is interrupted within about 15 seconds with the 
following messages displaying  in the Info Log and no Packing Slip is 
produced: 

Posting 
No lines for posting or quantity = 0 
Posting has been canceled. 
@SYP229 

Any help will be greatly appreciated. Thanks in advance, 

     Bob
  
 
Bob Brinker
Oakdene Group, Inc.
2625 Butterfield Rd. (Suite 212E)
Oak Brook, IL 60523-1261
[EMAIL PROTECTED]

[Non-text portions of this message have been removed]











Yahoo! Groups Sponsor


  ADVERTISEMENT 












Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/development-axapta/ 
To unsubscribe from this group, send an email to:[EMAIL PROTECTED] 
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.










Re: AW: [development-axapta] SP 2 and SP 3

2004-08-16 Thread bob . brinker




Hi All,

I am still learning Axapta and am having a problem deciphering some Axapta 
3.0 exception messages.  (Example: "@SYP229"). Is there one best place to 
look for information like this?

Could anyone suggest what resources are available when further 
interpretation of  error message(s) is needed. For example, I am trying to 
get a Packing Slip from a Sale Order in Accounts Receivable as follows: 

Menu ==>  A/R  ==>  Sales Order  ==>    Posting  ==>  Packing Slip  ==> OK

The report must be produced in thsi way because Axapta must pass something 
to it before report can be produced.

Posting seems to start but is interrupted within about 15 seconds with the 
following messages displaying  in the Info Log and no Packinng Slip is 
produced: 

Posting
No lines for posting or quantity = 0
Posting has been canceled.
@SYP229

Any help will be greatly appreciated. Thanks in advance, 
 
          Bob







Bob Brinker
Oakdene Group, Inc.
2625 Butterfield Rd. (Suite 212E)
Oak Brook, IL 60523-1261
(630)368-1046 x/230
(630)368-1050 (Fax)
[EMAIL PROTECTED]

[Non-text portions of this message have been removed]











Yahoo! Groups Sponsor


  ADVERTISEMENT 












Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/development-axapta/ 
To unsubscribe from this group, send an email to:[EMAIL PROTECTED] 
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.










[development-axapta] Fw: Minimum requirement for coding in Axapta' Axapta

2004-08-09 Thread bob . brinker




Hi,

I know there are certifications but I have never heard of a Development 
License.  Can someone please explain along with who requires and issues a 
development license? 

    Thanks,
    Bob

Bob Brinker
Oakdene Group, Inc.
2625 Butterfield Rd. (Suite 212E)
Oak Brook, IL 60523-1261
[EMAIL PROTECTED]
- Forwarded by Bob Brinker/OGIDM on 08/09/2004 08:52 AM -


vinay malhotra <[EMAIL PROTECTED]>
08/08/2004 11:58 PM
Please respond to development-axapta
 
    To: [EMAIL PROTECTED]
    cc: 
    bcc: 
    Subject:    Minimum requirement for coding in Axapta' Axapta


hi,

Minimum requirement is development license.

regards

vins
--- maroof <[EMAIL PROTECTED]> wrote:

> Hello
>  I am new to Axapta. I have a 2-tier installation on
> a
> box.
> I wanted to know the minimum stuff required for
> Axapta
> development.
> 
> Would appreciate if someone could explain in detail.
> 
> Thanks,
> Maruf
> 
> 
> 
> 
> 
> __
> Do you Yahoo!?
> Yahoo! Mail - 50x more storage than other providers!
> http://promotions.yahoo.com/new_mail
> 



 
__
Do you Yahoo!?
Yahoo! Mail - 50x more storage than other providers!
http://promotions.yahoo.com/new_mail


Yahoo! Groups Sponsor

ADVERTISEMENT




Yahoo! Groups Links
To visit your group on the web, go to:
http://groups.yahoo.com/group/development-axapta/
 
To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]
 
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. 


[Non-text portions of this message have been removed]










Yahoo! Groups Sponsor


  ADVERTISEMENT 












Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/development-axapta/ 
To unsubscribe from this group, send an email to:[EMAIL PROTECTED] 
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.










Re: [development-axapta] Re-Installing SQL Server 2000 & SP3a for Axapta

2004-04-07 Thread bob . brinker




Hi All,

Has anyone had a problem re-installing
SQL Server 2000 and its SP3a. They were installed incorrectly the first
time using the MSDE desk top engine. I have removed them and reinstalled
several times (using full SQL Server as opposed to the MSDE desk top engine)
 but continue to get Event System log and Event Application log errors.
 It seems that remnants of a previous install(s) are not getting removed.

The remove and last re-install I got
one Event Application log warning message when SQL Server 2000 was
installed. It said SuperSocket Information(SpnRegister) Error 1355. 

I got two identical Event System log
warning messages. They said: The Security system could not establish
a secured connection with the server DNS/in5.interaccess.com. No authentication
protocol was available. Help said something like by the time you read this
it was probably was resolved.

Since they were only warnings I went
ahead and installed SQL Server 2000 SP3a and got both Event Application
log errors and Event System log errors. The Event System
log error from SP3a install was source = Netlogon.

The two Event application log errors
were 1: Source = userenv and 2: Source = AutoEnrolment.

I would greatly appreciate any suggestions
to resolve this problem.

           
                     
                     
                     
             Best Regards,

           
               
               
      Bob


Bob Brinker
Oakdene Group, Inc.
2625 Butterfield Rd. (Suite 212E)
Oak Brook, IL 60523-1261
[EMAIL PROTECTED]







Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/development-axapta/ 
To unsubscribe from this group, send an email to:[EMAIL PROTECTED] 
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.










Re: [development-axapta] Manuals and information

2004-03-11 Thread bob . brinker




Try the Navision Axapta web site. There
are a number of manuals available.

Bob Brinker
Oakdene Group, Inc.
2625 Butterfield Rd. (Suite 212E)
Oak Brook, IL 60523-1261
(630)368-1046 x/230
(630)368-1050 (Fax)
[EMAIL PROTECTED]







Yahoo! Groups Sponsor


ADVERTISEMENT












Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/development-axapta/ 
To unsubscribe from this group, send an email to:[EMAIL PROTECTED] 
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.










Re: [development-axapta] X++ language reference

2004-03-04 Thread bob . brinker




Peter,

Try Microsoft's web site. There is a
manual called X++ Advanced 3.0 Microsoft Axapta Edition. If you are not
a partner your affiliatate may have to oder it. There is also an on line
class called X++ Basic R3.0 - Axapta.


         
               
               
      Hope this helps.

         
               
               
      Bob



Bob Brinker
Oakdene Group, Inc.
2625 Butterfield Rd. (Suite 212E)
Oak Brook, IL 60523-1261
(630)368-1046 x/230
(630)368-1050 (Fax)
[EMAIL PROTECTED]







Yahoo! Groups Sponsor


ADVERTISEMENT




Click Here















Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/development-axapta/ 
To unsubscribe from this group, send an email to:[EMAIL PROTECTED] 
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.










[development-axapta] RE: [dev-axapta] : License Value ID codes

2004-02-25 Thread bob . brinker




Hi All,

I am new at this so this question is
pretty elementary. Where is the value of the code defined such as the ID
60 in the message "License value for 'ID 60' has not been created".
 I tried help but it returns the same information as the original
message. Does the message mean I should have gotten a license code for
the item in question?

         
               
              Thanks
in advance,

         
               
              Bob





Bob Brinker
Oakdene Group, Inc.
2625 Butterfield Rd. (Suite 212E)
Oak Brook, IL 60523-1261
(630)368-1046 x/230
(630)368-1050 (Fax)
[EMAIL PROTECTED]







Yahoo! Groups Sponsor


ADVERTISEMENT




Click Here















Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/development-axapta/ 
To unsubscribe from this group, send an email to:[EMAIL PROTECTED] 
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.










RE: [development-axapta] Installing Axapta and Applying Service Packs

2004-02-23 Thread bob . brinker




Hi All,

I am trying to find a good document
on Installing Axapta and applying Service Packs 1, 2 3. etc. The documet
I have for install does not seem to be current and I have nothing on Service
Packs. Any help will be greatly appreciated.


         
               
              Thank
you,

         
               
              Bob 




Bob Brinker
Oakdene Group, Inc.
2625 Butterfield Rd. (Suite 212E)
Oak Brook, IL 60523-1261
(630)368-1046 x/230
(630)368-1050 (Fax)
[EMAIL PROTECTED]







Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/development-axapta/ 
To unsubscribe from this group, send an email to:[EMAIL PROTECTED] 
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.










RE: A: [development-axapta] Upgrading in Axapta documentation

2004-02-19 Thread bob . brinker




Hi All,

I am new to this and possibly made an
error but I visited the Axapta Technet web site and found many documents
but could not find the specific one addressing "do's and don'ts of
upgrading in Axapta". Does someone know the exact title of the document
indicated? 

         
               
      Kind Regards,

         
               
      Bob 




Bob Brinker
Oakdene Group, Inc.
2625 Butterfield Rd. (Suite 212E)
Oak Brook, IL 60523-1261
(630)368-1046 x/230
(630)368-1050 (Fax)
[EMAIL PROTECTED]






"Mai-Britt Winther \(MICROSOFT
BUSINESS SOLUTIONS\)" <[EMAIL PROTECTED]>
02/18/2004 04:45 PM
Please respond to development-axapta
        
        To:
       <[EMAIL PROTECTED]>
        cc:
       
        Subject:
       RE: A:  [development-axapta] Upgrading
in Axapta documentation **KEEPER**


Hi Jack
 
If you visit the Axapta technet
you will find a document published a few months ago by us â describing
the doâs and donâts of upgrading in Axapta.
 
Best regards
 
Mai-Britt
 



From: Jack Schilder [mailto:[EMAIL PROTECTED]

Sent: 18. februar 2004 23:42
To: [EMAIL PROTECTED]
Subject: [development-axapta] Upgrade documentation
 
Hi everyone,

In this year 4th year of my study, a (bachelor) paper has to be 
written.
As a former intern at an MBS partner, Axapta seemed a logical choice 
to write about. The titel of my paper will be: Framework for 
upgrading to new Axapta releases.

In this particular company,there are no specific upgrade-manuals. 
Only one programmer knows how to do an upgrade, and he does it 
mainly by heart. He said it's an 'hands-on job'. Maybe, but 
structured documents are needed for this process. A lot of problems 
occur during and due to these upgrades, obviously most of these 
problems ocur with the non-standard axapta programming. 

My question to you people: Do you have these kind of update manuals 
in your company, like detailed checklist? And if so would it be 
possible for me to see them?
Has Microsoft shared documents with you that helped with the upgrade?

With kind regards,

Jack Schilder, student at the Amsterdam Business School





Yahoo! Groups Links

To visit your group on the web, go
to:
http://groups.yahoo.com/group/development-axapta/
  
To unsubscribe from this group, send
an email to:
[EMAIL PROTECTED]
  
Your use of Yahoo! Groups is subject
to the Yahoo!
Terms of Service. 








Yahoo! Groups Links

To visit your group on the web, go to:http://groups.yahoo.com/group/development-axapta/ 
To unsubscribe from this group, send an email to:[EMAIL PROTECTED] 
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.