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

In LN standard report quantity is showing %%% simbol

$
0
0
Hello Everyone,

please help me to share your suggestion on below,

When printing the sales order report, incorrect values for Quantity are shown. The values are % % % is showing...


Thanks in advance.:)

UTC to Normal Date in SQL

$
0
0
Hi,

I have stored a date in the UTC format in the baan table... When I applied a query, I got the date in UTC format as follows...

select tccom450.name, tccom450.date from tccom450

Result :
Ram -----2017-11-14 16:27
Bala -----2017-11-14 16:47

But I need to print date as a normal format as follows...
Ram -----2017-11-14
Bala -----2017-11-14

So how can I modify the query "select tccom450.name, tccom450.date from tccom450" to a new one for support the normal date...?
Can anybody assist me is there any function are available in SQL to perform this conversion...?
Thanks in advance
Regards,
Pralash

Using LN Studio and debug in web ui

$
0
0
Hi everyone,

We are want use Webui for develop and debug. When i try to open script webui, the error occurs;

--Session ttadv2130s0000 is not supported in this version of LN UI-

I searched that error in Infor Extreme and someones also faced that problem. They said, you need LN studio for edit/view scripts.(https://www.inforxtreme.com/espublic...om=KBFavorites) So, does the LN Studio any requirements like tool version or something else? Does anyone have experiences with LN Studio?

Any suggestions on a good way to approach this?

Regards,
Serkan

Senior Consultant with 9 years experience

convert timestamp data type into date in BaaN SQL

$
0
0
Hi,

Is there any predefined BaaN SQL oriented built function is available for converting the timestamp(UTC) data type into date data type?

Can anybody please let me know if there is a option is available?
Thanks in advance,
Regards,
Pralash

Infor LN Whatsapp Group

$
0
0
A new blog entry has been added:

Infor LN Whatsapp Group

Quote:

We have created a Whatsapp Group to give a common Real Time platform for all Baan / Infor ERP LN Consultants to discuss their issues and try and get quick assistance to their problems. 

Find the SQL Distinct count

$
0
0
Hello,

I'm using the following sql query for find out the distinct count for a column... But I got the result as wrong( total number of records) instead of find out the distinct count..

select distinct count(tctls903.user):counter
from tctls903
selectdo
rprt_send()
endselect

Could you please assist me how to get the count of distinct column value by modifying the above query...
Thanks in advance...
Pralash

from External Application to Baan Session(With out giving any credential)

$
0
0
Hi All,

I want from External Application to call Baan Session(With out giving any credential)

External Application is a page, user do not give any credential form login in Baan.. it will bypass or give anonymous credential?

any thought please share with me.

Regards,
Pradipta

Sr. ERP Functional Consultant & Business Analyst Infor LN and BAAN ERP

$
0
0
A new resume entry has been added:

Sr. ERP Functional Consultant & Business Analyst Infor LN and BAAN ERP

Quote:

Sr. ERP Functional Consultant & Business Analyst. 12+ years of IT experience including 10+ years of broad-based management in Business Analysis & Solutions,
System Design - Functionality and Database, Implementation and Support. Strategically and cost effectively utilize technology in alignment with corporate goals. Consistently improve delivery times and service levels while reducing costs. Excel at strategic planning, building high-performance teams, project management, andimplementing best practice methodologies and continuous improvement programs. Proven areas of expertise
  • Functional Consulting -Financials & Logistics
• Presales Consulting

Report customization process

$
0
0
Hi,

I need some customization work for the report. Here I explain the step one by one.

I have a table definition with index tctls903.log as shown in the attachment(screen2.png).

I maintain a session in order to store the users who are currently logged in LN.
The session is attached as (screen1.png).

I developed a report for count the number of users who are logged in LN for every day as shown(screen3.png). When I click the "Total Logged User" check box, I need to get the result as follows.

2017-11-9------- 2
2017-11-10------- 2
2017-11-11------- 1
2017-11-12------- 2
2017-11-13------- 3

But I got the result for first day as follows
2017-11-9------- 2

So how can I got the count for each and every day...

My script is as follows.
unction counter.user()
{
select distinct tctls903.logg
from tctls903
where tctls903._index1 inrange {:logg.f} and {:logg.t}
as set with 1 rows
selectdo
select count(*):counter
from (select distinct tctls903.user
from tctls903
where tctls903._index1 inrange {:logg.f} and {:logg.t}) get_distinct_so
selectdo
rprt_send()
endselect
endselect
}

Can you please assist me that how to find the count of users who logged in every day....
Thanks in advance,
Regards,
Pralash

Attached Images
File Type: png screen1.PNG (50.9 KB)
File Type: png screen2.PNG (50.5 KB)
File Type: png screen3.PNG (25.4 KB)

Report Customization : Add Data from Different Table

$
0
0
Hi,

I want to customize report from session tfgld1101m100 and table tfgld101.
I also required data from session tfcmg2100s000 and the table tfcmg204.

How to get / retrieve the data?

Herewith I attached the session.

Thanks,
Sobiratul

Attached Files
File Type: pdf Finance Report.pdf (287.6 KB)

Exit between selectdo and endselect

$
0
0
Hi,

I'm new for LN Programming... I'm using the break statement in order to exit the control from the body of selectdo and endselect. But I'm not able to get the break of the loop... Is it correct for using break with in the selectdo and endselect or some other else?

My Sample script is as follows....

Code:

function read.counter.table()
{
change = tcyesno.no
process.end = tcyesno.no


select tctls903.logg
from tctls903
where tctls903._index1 inrange {:logg.f} and {:logg.t}
selectdo
   
    if logg.t.change=logg.t or logg.f.change=logg.t then
    break
    endif

    if change=tcyesno.no then
        act.date = sprintf$("%u(%04Y-%02m-%02d)",tctls903.logg)
        logg.first=tctls903.logg
    else
        logg.first=logg.f.change
        act.date = sprintf$("%u(%04Y-%02m-%02d)",logg.first)
    endif
   

    select tctls903.logg as temp
    from tctls903
    where tctls903._index1 inrange {:logg.first} and {:logg.t}
    selectdo
        act.date2 = sprintf$("%u(%04Y-%02m-%02d)",temp)
        if act.date <> act.date2 then
            logg.f.change = temp |kkkk
            break
        else
            change=tcyesno.yes
            logg.t.change=0
            logg.t.change = temp
        endif
    endselect   

   
    counter = 0

    select distinct tctls903.user
    from tctls903
    where tctls903._index1 inrange {:logg.first} and {:logg.t.change}
    selectdo
        counter = counter+1
   
    endselect
   
    rprt_send()
endselect

|message("%s",sprintf$("%u(%04Y-%02m-%02d)",logg.t.change))
}


Please let me know if there is some another methods are available to exit the control the body of the loop instead of the "Break" statement...?

Regards,
Pralash

LN Functional consultants needed in Pune

$
0
0
A new job entry has been added:

LN Functional consultants needed in Pune

Quote:

ERP LN Functional Consultants are need for a leading IT serices provider.
Position will be based out of Pune.
Mimimum FP7 experience needed.
one consultant each for Logistics, Manufacturing & Finance.
please get in touch -  baanravi@gmail.com 

How can i reload the form using script

$
0
0
Hi,

I'm new for LN Programming... I developed a report and also getting the corresponding result by giving the date interval. if I minimized the report window and delete a record by executing some another session...After that I have maximized the report and click the print option, I got the old result instead of a new one... I think the form is not reloaded once again... so I'm getting the old result....

Hence please let me know that how to reload the form every time when I click the "Print" option in the report result....

Thanks in advance
Regards,
Pralash

Getting the particular record in BaaN

$
0
0
Hi,

I have a table with 10 records,

I can get the fifth record, by using the following query in MySQL as follows..

Select *from employee limit 5,1

How can I write this query in BaaN SQL...

Is it possible using the limit clause in baan? if so, please let me know that how can I write this query in baan?
Thanks in advance,
Regards,
Pralash

Integration Transaction date from 2014

$
0
0
new integration transactions for Production Order (SFC) / Operation Costs are coming into the tfgld410 table with a year 2014 date for the transaction date.

Anyone ?

Can i get the non condition matched records in selectempty

$
0
0
Hi,

I'm new for LN Programming.... I already know that we can get the condition matched records only if the specified condition is match in the select query as follows....

select tccom406.*
from tccom406
where tccom406.sex="male"
selectdo
do something
selectempty
endselect

Suppose I have the table with 10 records... In these records the tccom406.sex="male" for 6 records and the rest one has "female"

When I execute the query I got the 6 records which has tccom406.sex="male".... in selectdo option....

But can I get the remaining 4 records in the selectempty option....?
Can you please let me know that about the selectempty in detail?
Thanks in advance,
Regards,
Pralash

Can i sorting an array in BaaN using any predifined function...

$
0
0
Hi,

I'm new for LN programming... I want to know that there is any predefined LN functions are available for sorting a one dimensional array in ascending or descending order. If it is possible one, please let me know....
Thanks in advance,
Regards,
Pralash

Need for Micsofot Sharepoint developer

$
0
0
Hi,
We need for Micsofot Sharepoint developer, especially on new complex form creation and maintenance process...
Does anybody has the idea?
Regards,
Pralash

Can i create the report by assigning more than one table

$
0
0
I'm new for LN Programming... I have created a basic report by using a single table.... But right now, I need to develop a report by using two table with different types of columns.... So is it possible to create a report by using more than one baan tables... If it is possible one, please let me know how to do that...?

Thanks in advance,
Regards,
Pralash
Viewing all 4216 articles
Browse latest View live


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