January 21, 2020, 10:12 pm
Hai,
I have a standard session, in this report i have to display the warehouse based on the least economic inventory from item general used min function.
I had placed messages to the script the data picks the least value but doesn't gives the warehouse having the least economic inventory.
Regards,
Kiran Krishna.
↧
January 22, 2020, 12:02 am
Hello together,
I want to zoom from session tdcms2550m000 (Boni) to Session tfacp2521m000 (Invoicing party) - table tccom122.
The zoom works as expected.
Now i want to preselect the query with the query.extend.where.in.zoom() function.
I want to do this:
Code:
query.extend.where.in.zoom(
"tccom122.ifbp in (select tdcms010.ofbp from tdcms010)")
However, I get an empty result. When I execute the query in SQL Management Studio I get a result.
This is the query:
Code:
select *
from ttccom122100
where t_ifbp in
(select t_ofbp
from ttdcms010100 )
When I don't use a subquery and use a hard-coded list it also works:
Code:
query.extend.where.in.zoom(
"tccom122.ifbp in ('9999','1111')")
}
What am I doing wrong?
Regards
Martin
↧
↧
January 22, 2020, 12:13 pm
A new job entry has been added:
INFOR CPQ DEVELOPER
Quote:
Hi We are looking for INFOR CPQ CANDIDATE FOR OUR CLIENT IN UAE. ANY NATIONALS CAN APPLY. WE CAN DO REMOTE FOR THE CANDIDATE WHO ARE EXPERT IN INFOR CPQ.
SHARE RESUME TO ani@manumedisoft.com or call me at 630 800 4899
|
↧
January 23, 2020, 11:13 pm
Hello,
I am facing another problem with the zoom session.
I want to do a simple select and so I use the
query.extend.select.in.zoom function in the "selection filter" section.
However, I always get all fields returned and not just the selected ones.
I've written it like this:
Code:
query.extend.select.in.zoom("tfacp200.ttyp")
Regards
Martin
↧
January 24, 2020, 2:58 pm
We are on BaaN 4c4 with MS SQL back end. I am not familiar with the tables and fields, but can pick up very quickly.
My goal is to eliminate a million MS Access files and Excel sheets that are used to get data dumps out of BaaN because each person that created them over the last 20 years put their own little spin on them and none of them match.
I was hoping to find a forum or a site that has a bunch of Crystal Reports or just some SQL queries that give some straight forward reports like Backlog, AR Trial Balance, Bookings, etc. Are there any forums or sites that have some queries or reports for download?
↧
↧
January 25, 2020, 2:07 am
Dear All,
We have a requirement of data upload using a file, and also validate those fields by maintaining those fields in custom session using field details along with sequence. In addition to this any changes in the custom table session fields need to reflect dynamically in the upload file.
For ex: if i am uploading x,y,z table fields in the file, we will maintaining these in field custom table also. And if a new field is "a" added to the table as well as in file also.Program should able to upload this by validating the data.
Can any one can help me on this logic.
Thanks in advance.
Raj
↧
January 25, 2020, 8:50 am
I want current login user employee no
i have to use this under table authorization (condition text), how i can achieve this ?
i tried this but not working (tdpur200.remn <> logname$)
↧
January 27, 2020, 2:36 am
Hello together,
At the moment on the sales order acknoledgment there is printed the "Planned Delivery Date".
I thought that there was a possibility to switch to the Planned Receipt Date - but I forgot where to find these settings.
So the "Planned Receipt Date" should be printed instead of the "Planned Delivery Date" on the sales order acknoledgement.
We are using Baan IV.
Regards
Martin
↧
January 28, 2020, 12:43 am
Hi Gurus,
Can any one please tell me how to use OpenSSL in LN Scripts ? Is there any script for reference which uses OpenSSL for encryption /Decryption of data
↧
↧
January 28, 2020, 4:05 am
A new job entry has been added:
Infor LN Technical
Quote:
Infor LN Technical consultant
Delaware OH
Long-term
Versions: FP2, FP7, FP9, LN 10.4, LN 10.5, LN 10.6
|
↧
January 29, 2020, 1:22 am
Hello Developers,
We use the session tdsls3204m000 to generate sales orders out of contracts.
We run this program as a job and it runs over all contracts.
After the execution of generate sales orders I want to populate each generated sales order with additional information.
I want to do this in the "After Command" hook of the Standard Form Command "exec.cont.process"
Code:
function extern void function.exec.cont.process.after.command()
{
domain tcorno orno
orno = tdsls400.orno
db.retry.point()
select tdsls400.*
from tdsls400 for update
where tdsls400._index1 = {:tdsls400.orno}
selectdo
dal.change.object("tdsls400")
dal.set.field("tdsls400.cdf_ades", tdsls300.cdf_ades)
dal.set.field("tdsls400.cdf_dlan", tdsls300.cdf_dlan)
dal.save.object("tdsls400")
endselect
commit.transaction()
}
The problem is, that tdsls400.orno is always the orno of the
last generated sales order.
I need all order numbers - not just the last to iterate over all.
Is this possible?
Regards
Martin
↧
January 30, 2020, 12:03 am
Hi all,
Now, I have created monitor and completed to alert message.
But I need to change sorting column in alert message as sample below
Current:
1) ID
2) Number
3) Name
Need to show:
1) ID
2) Name
3) Number
I am not sure how to setting to sort the column.
Please advise about this one.
↧
January 30, 2020, 10:17 am
Hi,
I have an after.report layout that has 'Number of Rows' set to 22. I need to have at least 25 lines in the layout but I cannot get it to go past 22. I've tried to resize but no success.
Any ideas how to go past the Number of Rows?
↧
↧
January 31, 2020, 2:23 am
Hi All,
When i am trying to print a report from DOM, it is giving me the error shown in the image attached. Can anyone please tell me what error is it?
↧
January 31, 2020, 6:34 am
Hi all,
I'm trying to copy the text from a planned order to the production order when transferring the order from planning to shop floor.
I have created a user exit script tisfc001ue with the following code:
Code:
function extern long ue.after.after.save.object(long mode)
{
on case mode
case DAL_NEW:
if get.compnr() = 310 then
long ret
ret = text.copy("tisfc001.txta","cprrp100.txta","","","","","","")
dal.set.field("tisfc001.txta", tisfc001.txta)
endif
break
case DAL_UPDATE:
break
endcase
return(0)
}
In the debugger I see that a new text number is created and that the variable in the second argument of dal.set.field() contains that text number. But somehow it is not saved.
Anyone any ideas?
↧
February 2, 2020, 7:34 pm
dear all,
Please help me, user cannot print production order appear error
"" [MR_FLT_INT ] Float exception in " rticst0404m0030' , info: Signal SIGFPE raise, code EXCEPTION_FLT_DIVIDE_BY_ZERO.
""Cannot continue in rticst0404m0030 ( r.s.detail.1.bef.lay) [last function.sql.fetch ]
please help me..
↧
February 2, 2020, 9:34 pm
I have created many calculated fields in session extension.
However, I only use Expression Type "Function" to query and assign value to the ext variable. I tried other Expression Type by using the same query but the result is not what I anticipated.
The query result is correct for a record, but it will display the same value for all records in multi-occurrence session. The desired output is to just add a description field alongside a code field while making it filterable in the session (LNUI).
Has anyone faced this problem before?
↧
↧
February 3, 2020, 10:06 pm
A new resume entry has been added:
LN Functional Consultant
Quote:
With 15 years of achievement driven experience in Business Analysis, Process Improvement, Solution Development & Delivery, Quality Management & IT Consulting Services backed by Industry leading certifications like PRINCE2.
• Unique blend of Functional, Qualitative & Quantitative skills along with expertise in all Phases of Business Process improvement and Software Development Life Cycle (SDLC) for successful delivery of the Solutions.
• Highly self-motivated go-getter who always exceed the goals, have been promoted regularly, earned highest customer satisfaction rating throughout the career and has garnered numerous awards.
• Creative thinker with solid confidence in learning & utilizing the latest Technologies/Tools to handle any critical requirements there by adopting the new style of IT and fostering innovations.
|
↧
February 4, 2020, 8:02 pm
Hi,
i create query to download asset with the details include asset life.
for asset life, i need to calculate by script.
may i know?
thank you for advices in advance.
↧
February 5, 2020, 9:54 am
A new job entry has been added:
ERP Specialist
Quote:
Role: ERP Specialist
Location: Orange, CT
Duration: Contract or Full Time
Job Description:
· BaaN/ ERP LN 10.X, FP5- Preferred technical experience with DAL, AFS, 4GL development.
· Expertise in customization on all Tools components.
|
↧