Quantcast
Channel: Baanboard.com
Viewing all 4216 articles
Browse latest View live

Error Message "Valuation price not found for item ...... "

$
0
0
Hi,

One purchased item has 2 lots received from 2 orders.

1. First lot received to warehouse W1, and then 2 transfers on 2 different dates to warehouse W2.
2. Second lot received to warehouse W1. Still remain in W1.

When performance inventory valuation, W1 has value whereas W2 no value with error message "Valuation price not found for ....". Is this problem caused by warehouse transfer ? Anyone has idea ? Please advise.

Thanks in advance from Cindy

We're BAAN / ERP LN Technical Consultant, e-Emphasys Mumbai

$
0
0
A new job entry has been added:

We're BAAN / ERP LN Technical Consultant, e-Emphasys Mumbai

Quote:

We are looking for qualified Baan Technical Consultants at e-Emphasys. e-Emphasys offers world-class Managed Services with comprehensive support for mission-critical systems, databases and applications. Our end-to-end Managed Service solutions help you to focus on your core strengths and strategic initiatives to give you a sustainable competitive edge. Our unique delivery model ensures complete commitment and ownership from our experts for your specific business environment. With extensive industry experience in the enterprise solution space and a dedicated center of excellence (CoE), we have implemented and supported Baan/Infor ERP LN solutions and allied products seamlessly across the world. 
 

Check printing issue

$
0
0
Printing checks to pre-printed paper, so essentially its just printing to a letter sized page with the check details in the middle of the page.

The 1st page is good, but the second page starts to be printed 2 lines down on the page, which results in the check details being misaligned.

any ideas?

XML File Parsing

$
0
0
Hi,

I have following structure of the xml file:

<?xml version="1.0"?>

-<SyncMaterialIssue1 releaseID="2" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xsi:schemaLocation="http://schema.infor.com/2.13.x/InforOAGIS http://schema.infor.com/2.13.x/InforOAGIS/BODs/SyncMaterialIssue1.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schema.infor.com/InforOAGIS/2">


-<ApplicationArea>


-<Sender>

<LogicalID>lid://infor.ln.dev-ln-900</LogicalID>

<ComponentID>erp</ComponentID>

<ConfirmationCode>OnError</ConfirmationCode>

</Sender>

<CreationDateTime>2017-07-13T14:26:52Z</CreationDateTime>

<BODID>infor-nid:infor:900:S_900:MN0000001:?MaterialIssue1&verb=Sync</BODID>

</ApplicationArea>


-<DataArea>


-<Sync>

<TenantID>infor</TenantID>

<AccountingEntityID>900</AccountingEntityID>

<LocationID>S_900</LocationID>


-<ActionCriteria>

<ActionExpression actionCode="Change"/>

</ActionCriteria>

</Sync>


-<MaterialIssue1>

<ProductionOrderNumber variationID="25">MN0000001</ProductionOrderNumber>


-<Lines>

<Item> KSRMFG002-R</Item>

<EstimatedQuantity>1</EstimatedQuantity>

<Operation>10</Operation>

</Lines>


-<Lines>

<Item> KSRMFG002-R</Item>

<EstimatedQuantity>0</EstimatedQuantity>

<Operation>20</Operation>

</Lines>


-<Lines>

<Item> KSRMFG002-R</Item>

<EstimatedQuantity>0</EstimatedQuantity>

<Operation>30</Operation>

</Lines>


-<Lines>

<Item> KSRMFG002-R</Item>

<EstimatedQuantity>0</EstimatedQuantity>

<Operation>40</Operation>

</Lines>

</MaterialIssue1>

</DataArea>

</SyncMaterialIssue1>

I want to read this file so that it reads all production orders and lines under each one of them. I have following code to read the same:


long ret_val,ret_val2, ret_val3, savepono, ret
domain tcmcs.str50 savepdno,saveitem,saveqnty


ret_val = xmlFindFirst ("ProductionOrderNumber", i.request)
ret_val2 = xmlGetDataElement(ret_val, "ProductionOrderNumber",savepdno)

ret_val3 = xmlGetRightSibling(ret_val)

select Max(ticst001.pono):savepono
from ticst001
where ticst001._index1 = {:savepdno}
selectdo
endselect

while ret_val3 <> 0
ret_val2 = xmlGetDataElement(ret_val, "Item",saveitem)
ret_val2 = xmlGetDataElement(ret_val, "Quantity",saveqnty)
savepono = savepono + 10
dal.new.object("ticst001")
dal.set.field("ticst001.pdno", savepdno)
dal.set.field("ticst001.pono", savepono)
dal.set.field("ticst001.sitm", saveitem)
dal.set.field("ticst001.ques", val(saveqnty))
dal.set.field("ticst001.opno", 10)
ret = dal.save.object("ticst001")

if ret = 0 then
commit.transaction()
else
abort.transaction()
endif
ret_val3 = xmlGetRightSibling(ret_val3)
endwhile

But system is not reading ProductionOrderNumber element at all. Also, can you please verify if rest of the other code is fine as well? Can you please suggest if you find any issue?


Thanks,
Anubhav

XML Parsing Issue

$
0
0
Hi,

I have following structure of the xml file:

<?xml version="1.0"?>

-<SyncMaterialIssue1 releaseID="2" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xsi:schemaLocation="http://schema.infor.com/2.13.x/InforOAGIS http://schema.infor.com/2.13.x/InforOAGIS/BODs/SyncMaterialIssue1.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schema.infor.com/InforOAGIS/2">


-<ApplicationArea>


-<Sender>

<LogicalID>lid://infor.ln.dev-ln-900</LogicalID>

<ComponentID>erp</ComponentID>

<ConfirmationCode>OnError</ConfirmationCode>

</Sender>

<CreationDateTime>2017-07-13T14:26:52Z</CreationDateTime>

<BODID>infor-nid:infor:900:S_900:MN0000001:?MaterialIssue1&verb=Sync</BODID>

</ApplicationArea>


-<DataArea>


-<Sync>

<TenantID>infor</TenantID>

<AccountingEntityID>900</AccountingEntityID>

<LocationID>S_900</LocationID>


-<ActionCriteria>

<ActionExpression actionCode="Change"/>

</ActionCriteria>

</Sync>


-<MaterialIssue1>

<ProductionOrderNumber variationID="25">MN0000001</ProductionOrderNumber>


-<Lines>

<Item> KSRMFG002-R</Item>

<EstimatedQuantity>1</EstimatedQuantity>

<Operation>10</Operation>

</Lines>


-<Lines>

<Item> KSRMFG002-R</Item>

<EstimatedQuantity>0</EstimatedQuantity>

<Operation>20</Operation>

</Lines>


-<Lines>

<Item> KSRMFG002-R</Item>

<EstimatedQuantity>0</EstimatedQuantity>

<Operation>30</Operation>

</Lines>


-<Lines>

<Item> KSRMFG002-R</Item>

<EstimatedQuantity>0</EstimatedQuantity>

<Operation>40</Operation>

</Lines>

</MaterialIssue1>

</DataArea>

</SyncMaterialIssue1>

I want to read this file so that it reads all production orders and lines under each one of them. I have following code to read the same:


long ret_val,ret_val2, ret_val3, savepono, ret
domain tcmcs.str50 savepdno,saveitem,saveqnty


ret_val = xmlFindFirst ("ProductionOrderNumber", i.request)
ret_val2 = xmlGetDataElement(ret_val, "ProductionOrderNumber",savepdno)

ret_val3 = xmlGetRightSibling(ret_val)

select Max(ticst001.pono):savepono
from ticst001
where ticst001._index1 = {:savepdno}
selectdo
endselect

while ret_val3 <> 0
ret_val2 = xmlGetDataElement(ret_val, "Item",saveitem)
ret_val2 = xmlGetDataElement(ret_val, "Quantity",saveqnty)
savepono = savepono + 10
dal.new.object("ticst001")
dal.set.field("ticst001.pdno", savepdno)
dal.set.field("ticst001.pono", savepono)
dal.set.field("ticst001.sitm", saveitem)
dal.set.field("ticst001.ques", val(saveqnty))
dal.set.field("ticst001.opno", 10)
ret = dal.save.object("ticst001")

if ret = 0 then
commit.transaction()
else
abort.transaction()
endif
ret_val3 = xmlGetRightSibling(ret_val3)
endwhile

But system is not reading ProductionOrderNumber element at all. Also, can you please verify if rest of the other code is fine as well? Can you please suggest if you find any issue?


Thanks,
Anubhav

how to delete the job posting

$
0
0
Let me know how to delete the job posting

How to Write Text into LN from Process BOD

$
0
0
Hello Everyone,

How can I write text in LN from Process BOD? I have one table field of type text, for which I want to write text based on the text written by User in BOD.

Appreciate your help.


Regards
Vikash

Images in LN

$
0
0
Hello,

Can someone please tell us how to store images in LN.

\We are on Cloud and using LN 10.5

We want to use these images on IR Reports but it is to be stored in LN Server.

We can see that there is a session ttadv2570m000 in LN (Additional Files)
Can we store any images here.
If yes, how is it possible.

Thank You in advance.

Regards,
Sangeeta

Retrieving drawing from database

$
0
0
Team,
I am working on report decoding of baan and hence finding fields and their related logic. Now for Baan, i need to retrieve drawings. What is logic to retrieve them.
For example-- if i need to retrieve text, i tave to match txta field of any table to tttxt010.ctxt and fetch tttxt010.text. Similarly what is procedure to find drawings and view them.

Regards
Kapil S Sapre

How to display SQL query results on the Form

$
0
0
hi
I use SQL select qmptc011.quid,qmptc011.item,qmptc015.* from qmptc011 left join qmptc015 on qmptc011.quid = qmptc015.quid

But Only display qmptc011 results,Can't dislay SQL query results on the Form.
Please help me.
Thanks

Resume__Ananth_Inamdar_BPCS_ERP_LX_Consultant

$
0
0
A new blog entry has been added:

Resume__Ananth_Inamdar_BPCS_ERP_LX_Consultant

Quote:

Profile Highlights
A MMM (Manufacturing) Quality Management (QMS) & SCM (Supply Chain) Consultant with overall 30 plus years of work experience in Production Planning, Quality Management System, Shop Floor and Supply Chain of Manufacturing and IT companies

Write to other DB table

$
0
0
Hi,

Is there any way to write data from LN tables to other database tables
through a session

e.g. LN DB is Oracle and we wants to write data from LN/Oracle table to Sql Server table. on execution of a session with input fields.

Regards
Kedar

Excellent opportunity for Baan Technical consultants with Virtusa-Polaris Gurgaon - E

$
0
0
A new job entry has been added:

Excellent opportunity for Baan Technical consultants with Virtusa-Polaris Gurgaon - Early joiners preferred

Quote:

We are looking for Baan Technical Consultants,

Job Description:
 Well versed in development of sessions, interfaces etc. in Baan / Infor LN
 Knowledge of EDI, ODM & Integration
 Knowledge of Data base Oracle / SQL Server
 Knowledge of Operating systems like Unix, Linux, Windows etc.
Knowledge of products like Mingle & ION would be added advantage.
 Good communication skills

Exp - 3 - 6 years

Work Location - Gurgaon 

Verpackungskosten

$
0
0
Hallo Zusammen,

wie werden in LN die Verpackungskosten hinterlegt? Kann ich dies irgendwie gleich beim Artikel machen oder wird das dann über einen Verpackungsartikel im VK-Auftrag bzw. in den VK-Auftragspositionen hinterlegt?

Viele Grüße
MS-Tech

Artikel aktiv und inaktiv

$
0
0
Hallo Zusammen,

weiß jemand, wie und ob ich Artikel inaktiv schalten kann? Geht das denn irgendwie?

Viele Grüße
MS-Tech

Unable to attach Procedures to methods in Infor LN Studio.

$
0
0
Hi,

Using Infor LN Studio, Created Interface project fr BOD. Defined the application, Interface Definition, attribute also. Linked the table for Interface Implementation. When I am trying to Link the Procedures, I can't see anything on the list.

Attached the screenshot for your reference. Can any one help me on this.

Regards,
Naga K

Attached Images
File Type: png LinkProcedure_LNStudio.PNG (62.0 KB)

Troubleshooting session imported via PMC

$
0
0
Good day.

I'm an LN newbie. I have recently imported this session onto my test server, but I am unable to get it to start.

I have run Create Tables, and both Create and Convert Runtime after the import.

The message I received was "Cannot read session or object". In the eventviewer, I noticed these: Errno : 2 (No such file or directory)
BdbErrno : 111 (No record found)

I am able to open the table via ttaad4100.

Can anyone offer any advice or point me in the right direction?

Thank you, and have a great day.

Need help troubleshooting bdberror 511

$
0
0
Good day.

I imported a new session into my test server via PMC.

I have done Create Tables, both Create and Convert Runtime and got no errors.

However, when I started the session, I received the message "Cannot read session or object".

I am able to open the relevant table with ttaad4100.

Checking the eventviewer indicated that it is "bdberrno: 111". I also noticed these:
Errno : 2 (No such file or directory)
BdbErrno : 111 (No record found)

Can someone offer some advice or point me in the right direction to fixing this? Thank you.

Purchase Requisition: To use item description only

$
0
0
Hi,

We are using purchase requisition and then convert to purchase order.
And we have item that one time purchase.
Therefore, we tried to insert item with blank item code and write detail in the description. But when we convert to purchase order, system required item code, which means the description will be deleted.

So, is there any other method or ways i can remain the description during the conversion?
Or else, is there any method i can view directly the Text at the same session and line of purchase requisition.

Your advice is highly appreciated.
Thank you.

Urgent requirement for a Baan Administrator, should have exposure in ERP LN FP7, BAAN

Viewing all 4216 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>