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

Unable to pick the data against the value.

$
0
0
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.

query.extend.where.in.zoom with subcall

$
0
0
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

Infor Cpq Developer

$
0
0
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 

query.extend.select.in.zoom

$
0
0
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

Where can I find some queries for standard reports?

$
0
0
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?

How to Upload file with validation

$
0
0
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

Infor LN 10.7

$
0
0
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$)

Print Planned Receipt Date on Sales Order Acknoledgemnt

$
0
0
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

OpenSSL usage in Ln Script

$
0
0
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

Infor LN Technical

$
0
0
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
 

Get result set of standard form command

$
0
0
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

Sorting column in alert message of monitor

$
0
0
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.

Adding Lines To Report Layout Past Number of Rows

$
0
0
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?

Document Output Error

$
0
0
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?

Attached Images
File Type: png DOM_error.PNG (30.8 KB)

text.copy

$
0
0
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?

Production Order :- Error float exception

$
0
0
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..

How to create a Calculated Field in Session Extension with working Filter?

$
0
0
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?

LN Functional Consultant

$
0
0
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.

To calculate asset life balance(month calculation)

$
0
0
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.

ERP Specialist

$
0
0
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.
Viewing all 4216 articles
Browse latest View live