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

Infor LN Technical Consultant

$
0
0
A new job entry has been added:

Infor LN Technical Consultant

Quote:

Role and ResponsibilitiesReport customization as per the functional specificationNew functionalities customization as per functional specificationAutomating programs using AFS, DAL and any other suitable methodCreate and maintain Technical Documentation relating to Reports and Session developmentParticipate in the Development of Test Scenarios to ensure minimal errors in the developmentSystem Administration – DEM, Authorization, Exchange Scheme, JobDevelopment, support, and maintenance tasks as assignedDesign solutions based on requirements, feature lists, and/or error logsTroubleshoot and debug codeAdhere to all Company, Department, and Workgroup policies and proceduresWork independently to accomplish assigned individual or project tasksMust be a self-starter and highly motivated to achieve customer satisfactionReport status of tasks as directedParticipate in department, workgroup, and project meetings and discussionsReview work of others and offer constructive feedback Qualifications and Education RequirementsBE/MSc Computer science Preferred Skills

Call copy item using AFS in Baan IV

$
0
0
Hello,
I am trying to call the main session tiitm0101m000 through AFS and then invoke the session tiitm0202s000 using the copy button on the tiitm0101m000 form. I tried stpapi.form.command() but does not work probably because this is Baan IV. Any ideas on how I can achieve this using AFS.

Thanks,
PC

Infor LN Lead Solution Architect - German speaking

$
0
0
A new job entry has been added:

Infor LN Lead Solution Architect - German speaking

Quote:

Anthesis is an Infor Channel Partner based in the UK. We work very closely with the vendor to supply skilled resource to their many projects.

We are currently looking for a highly skilled Infor LN Solution Architect Lead for a German project. We are keen to speak to you regardless of your current situation/project commitments.

Calling function from PCF contraint

$
0
0
HI,
In Baan V I am trying to call a Baan V constraint. If the function has function declaration within body then I cannot compile constraint. e.g.

In constaint I have
! #include <itisfcc001>

In functiion itisfc001 if I have say

function tisfc001 () {
}

This will result in compilation error indicating function within function not supported.
I can though use function to define variable that can be used across the constraint without any issue.

Baan Fucntions

$
0
0
Hi,

Aniyone knows what these ## means in front and after the variables?

#define GREATER.OR.EQUAL(VALUE1, VALUE2)
^ (tcmcs.dll0012.double.cmp.greater.equal(
^ domainof(##VALUE1##),
^ "",
^ ##VALUE1##,
^ ##VALUE2##))
My guess is if one needs to return them in calling program then it should be surrounded by #

Arvind

Invoice could not be written to finance in Baan IV

$
0
0
Hi,

While running PDSO, i am getting an error "Invoice could not be written to finance" It's for customize item PCS project.

Colud you please some one advise me.

Many Thanks,
Rakesh

duplicate record in query.extend.where.in.zoom

$
0
0
A new blog entry has been added:

duplicate record in query.extend.where.in.zoom

Quote:

hiii gurus,

I need a help in query.extend.where.in.zoom.
(Scenario)
field.orno.from:
   before.zoom:
   selection.filter:
      query.extend.select.in.zoom("tdcsl491.orno")
      query.extend.from.in.zoom("tdcsl491")
      query.extend.where.in.zoom("tdpur400.orno = tdcsl491.orno)
- i have used two table in query.extend.
- on above example tdpur400.orno has only one record but tdcsl491.orno has a multiple record.
So, When i am trying to open the zoom button,it show me many duplicate record...

Is that possible to get single/Unique record on  "query.extend.where.in.zoom" ???


Thanks in Advance,
DPatel

Invoice Layout

$
0
0
Im new to ln, can anyone help me to fill the vertical lines in Invoice layout. Please see my attachment. In detail layout vertical lines are not completely printing. There are two detail layouts, one for printing invoice lines and other for showing "to be continued" text when the lines exceed the limit of line number 46 and go to next page for printing remaining invoice lines. In this attached case there is only two invoice lines, in-which for the remaining lines (till 46 line no) i want to print the vertical lines.

Attached Images
File Type: jpg invoice capture.JPG (75.8 KB)

Baan/Infor Technical Consultant (France)

$
0
0
A new job entry has been added:

Baan/Infor Technical Consultant (France)

Quote:

I am currently looking for a BaaN technical consultant to work for a global electrical manufacturing company. The client is looking for someone to work on an 18-month contract in France.
Requirements:

Problem facing to export Excel report in LN

$
0
0
Hi,
I need to take LN data and format it into an Excel report. The problem is that only header part is coming. Please help me how i can access data in excel. Here i am attaching a output screen nd code:


function generate.xls()
{
srvr.file = bse.tmp.dir$() & "\" & str$(utc.num()) & ".xls"

srvr.file = bse.tmp.dir$()
clnt.file = "Store Gate Pass Out" & strip$(str$(utc.num())) & ".xls"
fp = seq.open(srvr.file & "/" & clnt.file, "w+")

generate.header.detail()
get.detail()
seq.close(fp)

if tc.is.html.ui() = false then
file.ldir = "C:\temp\"
fp = server2client(srvr.file & "/" & clnt.file, file.ldir & clnt.file, 0)
if fp >= 0 then
start.application.local("excel " & file.ldir & clnt.file, false, fp)
endif
else
fp = client.download.file (srvr.file & "/" & clnt.file, file.ldir & clnt.file)
endif

}

function generate.header.detail()
{


if fp >0 then

file.rval = seq.puts("<TABLE BORDER = ""1"">", fp)
file.rval = seq.puts("<TR>", fp)
file.rval = seq.puts("<TD align = ""center"" nowrap><B>RGP No</B>", fp) |1
file.rval = seq.puts("<TD align = ""center"" nowrap><B>Issued To</B>", fp) |2
file.rval = seq.puts("<TD align = ""center"" nowrap><B>Date</B>", fp) |3
file.rval = seq.puts("<TD align = ""center"" nowrap><B>Through</B>", fp) |4
file.rval = seq.puts("<TD align = ""center"" nowrap><B>Item</B>", fp) |5
file.rval = seq.puts("<TD align = ""center"" nowrap><B>U/M</B>", fp) |6
file.rval = seq.puts("<TD align = ""center"" nowrap><B>RGP QTY</B>", fp) |7
file.rval = seq.puts("<TD align = ""center"" nowrap><B>Bal QTY</B>", fp) |8
file.rval = seq.puts("<TD align = ""center"" nowrap><B>Expt.DT.Return</B>", fp) |9
file.rval = seq.puts("<TD align = ""center"" nowrap><B>Remark</B>", fp) |10

file.rval = seq.puts("</TR>",fp)
file.rval = seq.puts("</TABLE>",fp)



endif
}

function get.detail()
{

select tdcus105.gpno,tdcus105.bpid,tdcus105.date,tdcus105.emno,tdcus115.item,tdcus115.unit,tdcus115.qoor,tdcus115.pqty,tdcus105.rdat,tdcus105.rmks
from tdcus105,tdcus115
where tdcus105.date inrange {:date.f} and {:date.t}
and tdcus105._index1 refers to tdcus115
order by tdcus105.date
selectdo
print.detail()
endselect


}

function print.detail()
{

file.rval = seq.puts("<TABLE border = ""1"">", fp)
file.rval = seq.puts("<TR>", fp)
file.rval = seq.puts("<TD align = ""center"" nowrap>" & tdcus105.gpno, fp) |1 |1
file.rval = seq.puts("<TD align = ""center"" nowrap>" & tdcus105.bpid, fp)
file.rval = seq.puts("<TD align = ""center"" nowrap>" & sprintf$("%u(%04Y/%02m/%02d)", tdcus105.date), fp)
file.rval = seq.puts("<TD align = ""center"" nowrap>" & tdcus105.emno, fp)
file.rval = seq.puts("<TD align = ""center"" nowrap>" & tdcus115.item, fp)
file.rval = seq.puts("<TD align = ""center"" nowrap>" & tdcus115.unit, fp) |2
file.rval = seq.puts("<TD align = ""center"" nowrap>" & sprintf$("%u(%04Y/%02m/%02d)", tdcus105.date), fp) |3
file.rval = seq.puts("<TD align = ""center"" nowrap>" & sprintf$("%@ZZZZZZZZZ9VD99@",tdcus115.pqty), fp) |4
file.rval = seq.puts("<TD align = ""center"" nowrap>" & sprintf$("%u(%04Y/%02m/%02d)", tdcus105.rdat), fp)
file.rval = seq.puts("<TD align = ""center"" nowrap>" & tdcus105.rmks, fp)


file.rval = seq.puts("</TR>", fp)
file.rval = seq.puts("</TABLE>", fp)

}

Attached Files
File Type: xls Store Gate Pass Out1561098764.xls (468 Bytes)

Where is your Baan/LN hardware located?

Label Description

$
0
0
Hello,

When i creating a new session,i give session description but it changes to session name only.any solution to overcome this problem.

Item code conversion - New production unit ( Plant)

$
0
0
A new blog entry has been added:

Item code conversion - New production unit ( Plant)

Quote:

Good morning everyone,
We have an unique situation where we bought another company recently and we use BaaN as well. The issue is that they use different product code from what we have at all other units. The order that comes through our Portal / catalogue has different item codes. We are struggling with converting all the items codes, components and constraints which is not that easy. We have thousands of items codes to be converted. 
Can someone suggest if we have any third party solutions availble to convert all of their codes to our codes at our headoffice. We spend lots of man power in the conversion of the codes to match with our sister company.
Please advise me.
Thanks

I want to initialize some value while standar script executed

$
0
0
A new blog entry has been added:

I want to initialize some value while standar script executed

Quote:

Hiiiii all,

I have customize one session "Purchase Order Approval Process".

I have writen User exit in on Purchase Order ,User could not able to approve purchase Order until they approved the "Purchase Order approval process" in my customize table.
All the scenario is working fine..

Now my question is....How can i display my customize table status in Standard table??
I also have tried USER EXIT,but that can only execute on change or delete..


Best Regards,
DPatel

Text Print in LNUI

$
0
0
Hello,

When I print Purchase order using "D" device.the text now get alligend in report.if i used DEFINE Monospace in report script,alignment is correct but font get small for all report.any other solution printing text(tdpur401.txta) correctly in report

Attached Files
File Type: doc Print.doc (382.5 KB)

TFGLD410 tror and fitr fields

$
0
0
Good morning. I may not be searching correctly but I can't find a posting about this.

In the TFGLD410 table there are two fields T$TROR and T$FITR fields that show numeric entries. When you look at the associated Baan Sessions, Baan shows text.

Where is the translation table to convert the T$TROR and T$FITR entries from numeric and text?

Thank You,
Alex

LN7 / ION - DAL.New and workflow

$
0
0
Hello All
I am using dal.new.object to add to adjustment order lines as follows

ret = dal.new.object("whinh521")
dal.set.field("whinh521.orno",whinh520.orno)
dal.set.field("whinh521.pono",tibom310.pono)
dal.set.field("whinh521.cwar",whinh520.cwar)
dal.set.field("whinh521.item",tibom310.sitm)
dal.set.field("whinh521.qvrc",tibom310.qana)
dal.set.field("whinh521.qvrr",tibom310.qana)

ret = dal.save.object("whinh521")
if not ret then
else
show.dal.messages(MSG.ALL)
endif

This works fine until I turn on an ION workflow on adjustment order lines.
It then fails with the following message

Adjustment Order: Database error 221 occurred.
Adjustment Order: Record ['ADJ000485', 10] cannot be saved in table Adjustment Order Lines in company 4001.

When I look at the table whinh521 in general table maintenance, it now shows a Workflow status field though it is not actually part of the table. How can I get it to just set the default workflow status when I add using dal.new.object?

Any help appreciated

Thanks
Ronan

Infor OS installation Error

$
0
0
Hello Everyone,

Greetings of the DAY!!!!

While installing InforOS 12.0.32 & 28, we are receiving attached error, although my %SystemDrive% variable is working fine.

Regards,
SUKHDEV SINGH

Extension - custom command on session extension point

$
0
0
Hello all,

We have a stand. LN session (modify) X for changing data (LN 10.5.)
X session has two fields, field A and field B. A is not part of the maintable (only form field), B is part of the maintable.

Now, when users inputs some value into field A and leaves it with tab (focus jumps on field B), field B gets recalculated, depending on the value in field A.

Recalculation for field B is done in the LN stand. program script in the before.checks and when.field.changes sections of the field A. But we cannot modify the stand. script.

Goal: Instead of user manually inputing value into A, session should have custom command, that calculates value in the field A - as a result field B also should get recalculated.

So, instead of:
A: User manually inputs value into field A, tab, value B gets recalculated
we should have:
B: User clicks on the form command, that fills the A, value B gets recalculated

We've added custom command for session X (session extension point - > new custom command). On command excecute the code fills some value in the field A (value gets displayed when field gets focus), but the field B doens't get recalculated when pressing TAB or setting focus on field B. Looks like the field A sections are not getting triggered. Custom form command is under Actions -> command name.

How can I trigger the when.field.changes or before.checks for field A with session extension point? Is this even possible?
I've already tried with check.all.input and display.fld, but it does nothing. Also I cannot use table extension, because field A is not part of the table, it's only defined as a formfield.

Infor LN technical Consultant who will be part of IT department during ERP Implementa

Viewing all 4216 articles
Browse latest View live


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