Questions tagged [erp]

Enterprise Resource Planning (ERP) intends to provide a complete view of business by integrating accounting, human resources, supply chain management, capacity planning, production scheduling, customer relationship management, sales planning and more.

Enterprise Resource Planning (ERP) intends to provide a complete view of business as a software application. By comparison, Materials Resource Planning (MRP) gives insight into factors that relate directly to physical production. ERP includes MRP as a subset and extends to other areas such as finance and human resources.

797 questions
0
votes
2 answers

Loading translation po file in openerp 7

I own a 7 openerp server and file translation type po. I looked at all the guides that I have seen under the "Settings" sub category "Translations" option should appear I import / export, while I just listed the "Load Translations" What should I do…
0
votes
1 answer

Can you use the JD Edwards Update command to change a field that is also part of the WHERE clause?

In JD Edward's One World (E1) package, is it possible to use the built in Update table function to update a particular field that is also used in the where clause? The use case is that I am executing a batch process that loops through a series of…
Rafiki
  • 630
  • 1
  • 8
  • 22
0
votes
0 answers

Column 'RowIdent' does not belong to table

I am trying to add a row to a DataTable using the following code: for (int i = 0; i < datesCount; i++ { // Populate payments table with existing data DataRow newPaymentRow = PaymentsMadeDataTable.NewRow(); newPaymentRow["Date"] =…
samb90
  • 1,063
  • 4
  • 17
  • 35
0
votes
1 answer

Reading Web Services URLs from a text file C# NAV

I am using Microsoft Dynamics NAV 2009 as I am building a C# program as the integration. Currently Im defining all my web service references inside my C# code. I wanted to know whether I can call the web service references from a text file since I…
Nareshwar
  • 15
  • 6
0
votes
2 answers

One website, one domain, but two different technologies?

I need advice. I inherited a website that's been around a long time. The website gets a lot of organic traffic from Google. The business and website owner is upgrading the site to make the content more manageable. At the moment, a wordpress CMS…
John
  • 32,403
  • 80
  • 251
  • 422
0
votes
2 answers

Connect Java application 64bit to ODBC driver 32bits

I am building a Java desktop application that should connect to Sage ERP via ODBC driver. However, I have a 64bit windows7 OS and the ODBC driver is 32bit. The thing that had generated the followingv exception: [Microsoft][ODBC Driver Manager] The…
mahoosh
  • 553
  • 1
  • 7
  • 21
0
votes
1 answer

Get geometric cordinates from Oracle table

Hi I need to get geometric coordinates from my Oracle table. Currently I use (select column_value from ( select rownum r, b.* from table( select h.geometry.sdo_ordinates …
Hope
  • 1,252
  • 4
  • 17
  • 35
0
votes
1 answer

Massive ERP system using Scala language

After reading slow compiler and Martin Odersky's response, We are so worried to kick start massive ERP product (which is heavily funded that targets a specific Industry) using Scala language. Edited based on below responses: Splitting into different…
0
votes
2 answers

Payroll, OpenERP 7, U.S. payroll taxes

I have searched and searched but to no avail... has anybody created a payroll module for a U.S. based company? It seems that most of what I've seen is that companies are using payroll companies to process their payroll, but I haven't found anybody…
JimB
  • 231
  • 1
  • 3
  • 13
0
votes
2 answers

Use view in report

I have created a view in SQL Server. I'd like to use this view to create a report in Microsoft Dynamics NAV 2009. Is this possible and if so, how can I use the view? Thanks
Bv202
  • 3,924
  • 13
  • 46
  • 80
0
votes
2 answers

Calling a method from ABL code not working

When I create a new quote from Epicor I would like to add an item from the parts form automatically. I am trying to do this using the following ABL code which runs when 'GetNewQuoteHed' is called: run Update. run GetNewQuoteDtl. run…
samb90
  • 1,063
  • 4
  • 17
  • 35
0
votes
1 answer

Changing the colour of an EpiUltraGrid

I am trying to change the cell colour of an EpiUltraGrid in Epicor. The EpiUltraGrid is based on the Infragistics UltraGrid. I have tried the following line of code: grdPOSuggestions.Rows[i].Cells[13].Appearanace.BackColor = Color.LightGreen; But I…
samb90
  • 1,063
  • 4
  • 17
  • 35
0
votes
1 answer

error initialize OFBiz 10.04 without demo data

We've tested OFBiz 10.04.05 release on ubuntu 12.04 for a little while and would like to go into beta with it. So I installed OFBiz 10.04.05 and then run $ ant run-install-extseed loaded just the extseed data. I am trying to initialize the…
0
votes
1 answer

How can we import data coming another erp?

I have a question concerning the impact of companies acquisition and its impact on the global information system harmonization. as an example, let's take a company A using ABS ERP and acquiring: - Company B using Blue cherry ERP - Company C using…
Conjecture
  • 353
  • 4
  • 18
0
votes
1 answer

Using "if" to change "state" on openerp

I need to change the state of a invoice using it's payment method. def _payment_type_get(self, cr, uid, ids, field_name, arg, context={}): result = {} invoice_obj = self.pool.get('account.move.line') for rec in self.browse(cr, uid,…
Tonon
  • 11
  • 1