Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Need Some help

Status
Not open for further replies.

sara403

Technical User
Jun 10, 2008
58
IN
Hi tuba2007,

Thanks for your valuable reply. I need to know
which viewId links item and Vendor other than Ic0340.

my query is to select an item number and it should link all the related vendors list.

Thanks

saravanan
 
Hi tuba2007,


while transfer the item from one location to another location in i initiated the macro recording, and i started transfering by means of serial number of that item. but in marco i could not identify serial number related code. how to identify this (especially serial number related code)

please help me


Thanks

saravanan.T
 
The macro recorder does not record serialized inventory transactions. You need to run RVSpy to figure out what it is doing.
 
Hi ,

I have recorded a macro for Purchase Order Entry Printing method. How to use this recorded Macro in vb.net if u have any idea?

please help me

Thanks

saravanan.T
 
Hi ,

While transfers the item from one location to another location. I initiated the macro recording, and i started
transfering by means of serial number of that item. The recorded macro had no related information to the serial number and also i ran RVSpy, i could not identify serial number related information


Please advice me

Thanks

saravanan
 
1. Use Copy/Paste from VBA to .Net, and add some Session initialization logic to login to the company. Search this forum for many examples.

2. If you can't identify the serial number information in Rvspy, then perhaps you need to find someone at your company with more technical experience.
 
Hi

whether "Optional fields" is a seperate module of AAs5.4 or it is present in AAs5.4 by default?

1. If "Optional fields" is a separate module, how to install ?

2. If "Optional fields" is present in AAS 5.4, then how to activate?

Thanks

saravanan
 
Optional Fields are installed like any other module. If you purchase it, you get an activation code from Sage.
 
Hi,

job to do:

1 fixing a printer drive (is hard coded)
2 pass the print command for the fixed printer driver

i developed the code for doing the above said, is shown below


while executing the specified dll through source code it works fine, but after we create setup and install, when we execute thought it, it is not responding.


pls provide me some suggestions


ACCPAC.Advantage.PrintSetup rptPrintSetup;
rptPrintSetup = session.GetPrintSetup(" ", " ");
// rptPrintSetup.DeviceName = "PrimoPDF";
// rptPrintSetup.OutputName = "PrimoPort:";

// rptPrintSetup.DeviceName = "PDF995";
// rptPrintSetup.OutputName = "PDF995PORT:";

// rptPrintSetup.DeviceName = "pdfFactory Pro";
// rptPrintSetup.OutputName = "FPP3:";


rptPrintSetup.DeviceName = "pdfFactory";
rptPrintSetup.OutputName = "FPP2:";
//rptPrintSetup.PrintDirectory = "C:\\test";
//rptPrintSetup.Destination = ACCPAC.Advantage.PrintDestination.File;


rptPrintSetup.Orientation = 1;
rptPrintSetup.PaperSize = 1;
rptPrintSetup.PaperSource = 15;
rpt.PrinterSetup(rptPrintSetup);



rpt.SetParam("DEBITCREDIT", "DBN"); // Report parameter: 0
rpt.SetParam("SORTBY", "1");


rpt.NumberOfCopies = 1;
rpt.Destination =ACCPAC.Advantage.PrintDestination.Printer;
rpt.PrintDirectory = "";
rpt.Print();

session.Dispose();















Thanks

Saravanan
 
Start a new thread for each new question for %&^* sake.
Debug your code.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top