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

Finance Domain Consultant

$
0
0
A new job entry has been added:

Finance Domain Consultant

Quote:

Role: Finance Domain Consultant
Location: Orange, CT
Duration: Contract or Full Time
 
Job Description:
 
·         Should have a good Finance module domain experience. Working knowledge in any tier 2 ERPs (BaaN Finance etc.,)
·         3 years exp in Finance/Logistics/Service Modules

shop floor - change line/machine

$
0
0
Dear,

Need your advice,

i have a production order that already been generate, after report complete for first kit then suddenly the line process change to another line/work center..how to handle this kit list?

it is have to return back the qty that has been back flush - cancel production - generate new production with new line/work center?

please advice

regards

Searching for Job/Freelance Assignment to work from Offshore India

How to stop tmboaserver by using bshell command?

$
0
0
Dear All,

I want to know what is tmboaserver?
How they work and if we want to start or stop bus component by using tmboaserver then which commands we use?

For starting bus component I'm using below command-
-- -set NO_WORKTOP=1 -setBSE_COMPNR=companyNumber tmboaserver -busc


Thanks,
T.Desai

How to know if a standard form command is successfully executed in Extension Modeler?

$
0
0
I am using Extension Modeler type Session. I added a standard form command in order to implement something after a standard form command is executed without any error, but the point is that I don't know how to check if the standard form command is error or not. Is there anything like a variable or function to check for such result?

For example, Clicking putaway in Warehouse Receipt session (whinh3512m000) and expect it to putaway. After it is done, I want to implement something for this condition. If it has any error or putaway is not success, then I want to do something else.

I only found Before Command and After Command for the available Hooks but these hooks alone cannot get the job done.

Any help is appreciated.

Project Management, Team Management, Client Management, Business/Product Analyst, ERP

Safety Stock Mismatch

$
0
0
We have set safety stock zero in item master table. While running DRP system showing safety stock. Can anybody help what is the reason?

Organization of Extensions Infor LN

$
0
0
Hello,

we are using Infor LN and the number of extensions is rising constantly.

When writing code I always comment it. However I sometimes find it hard to figure out what functionality is written e.g. in the table extension of tcibd001 etc.

How do you organize your extensions?
I thought about always writing a comment in the declarations hook like this:

|*****************
| functionality: populate cdf's/ calculate price/ etc
| last modified by: xy
| last modification date: 10/02/2020
|
|*****************

File Path existence and space availability

$
0
0
Hi All,

We have created a customized parameter session to maintain server paths.
These paths would be used by other sessions for file extractions.
Now, is there any function in Baan IV (like path.exists()) to check whether the inputted path is actually present and there is some space. (whether the space is sufficient for the file is not required)

Thanks & Regards,
Arlina

tdsls101.ldam in DAL method - always 0 value

$
0
0
Similar to this thread: http://www.baanboard.com/baanboard/s...ad.php?t=48318

I need to use DAL to update fields in Sales Order Line and Sales Quotation Line.
There is a problem when I try to update discount in the line.

I solved the issue in Sales Order Line using the solution in mentioned link.

However, the same method does not solve the same issue in Sales Quotation Line.

The field is tdsls101.ldam.

This is current code.

Code:

        select        tdsls101.*
        from        tdsls101 for update
        where        tdsls101.qono = :i.sales.quotation
        and                tdsls101.pono = :i.position
        as set with 1 rows
        selectdo
                dal.change.object("tdsls101")
                dal.set.field("tdsls101.item", i.item)
                dal.set.field("tdsls101.qoor", i.qty)
                dal.set.field("tdsls101.pric", i.price)
                dal.set.field("tdsls101.ldam", i.ldam, 1)
                dal.set.field("tdsls101.dorg", tdgen.dorg.manual, 1)
                if dal.save.object("tdsls101") <> 0 then
                        while dal.get.error.message(error.msg) > -1
                                message(error.msg)
                        endwhile
                endif
        endselect

Current situation from this code is that both tdsls101.ldam and tdsls101.dorg are 0 and Not Applicable respectively after the code gets executed while other fields get updated correctly. No errors whatsoever.

Any clues?

error " payment advice is zero "

$
0
0
Dear all,

please help me, i have issue regarding payment advice. got error " payment advice is zero "

please see attachment

thanks

Attached Images
File Type: png payment advice zero.PNG (254.1 KB)

Resume - Infor LN TP Project Consultant

$
0
0
A new resume entry has been added:

Resume - Infor LN TP Project Consultant

Quote:

Dear Sir/ Madam,
                               
I am writing to apply for the mentioned position, I'm particularly interested in the position which suits to mynearly 7 years of experience in the areas of ERP & Project Management of Civil Engineering Projects, besides others.   
 

Baan Integration

$
0
0
Hi All
Good Morning
Not able to post Integration transaction even not getting any error in error log related to issue

Can anybody help

Overlay Types in DOM

$
0
0
Hi,
I am having a problem using the overlay Types in DOM.
1. First Page
2. Last Page
3. Odd Pages
4. Even Pages
5. All Pages
6. Intermediate Pages
7. Specific Pages

I have these types of Overlays in DOM. However only top 5 of them actually works.

I want to Use "Specific Pages"
and i specify 2-99 as its value.
Means i want it to print that overlay from 2 page to 99th page (if any).
Top five works fine. But when i choose Specific pages and in that if i specify only 2, it doesn't works.

Please Help.

db.retry.point

$
0
0
Hello,
I develop a table extension which updates field tsmsc110.csvl if field tsmsc120.pdis(1) has changed.

When testing and debugging the extension I sometimes get the error message which I attached. (DAL engine unreachable field. Transaction is on, cannot continue.)

I've read that this error message has to do with transaction handling and setting correctly the db.retry.point.

My code has a functions, before save and after save hook.
I use before save and after save to check if the value has changed.
If yes, than performe the dal.change in the after.save hook (function update.customs.value())
The db.retry.point is in the before save hook.
The commit/abort.transaction() is in the after save hook.

Is this correct?


This is my code:
Code:

|common functions to be used in extension script.

function get.old.values()
{
        old.disc = tsmsc120.pdis(1)
}

function long update.customs.value(domain tcitem item,
domain tcpono lino, domain tcorno orno, domain tcdisc disc)
{


long error.found
select  tsmsc110.*
from    tsmsc110 for update
where  tsmsc110.cmso = :orno and
        tsmsc110.item = :item and
        tsmsc110.lino = :lino
as set with 1 rows
selectdo
 error.found = dal.change.object("tsmsc110")
                if error.found then
                        dal.set.error.message("@Cannot update tsmsc110 for item %1$s.", item)
                        return(DALHOOKERROR)
                else
                        dal.set.field("tsmsc110.csvl", tsmsc110.pris*(1-disc/100))
                       
                       
                        error.found = dal.save.object("tsmsc110")
                        if error.found then
                                dal.set.error.message("@Cannot save tsmsc110 for item %1$s.", item)
                                return(DALHOOKERROR)
                        endif
                endif
endselect

return (0)
}

|function for return value and end of transaction handling
function void handle.return.value(long retval)
{
on case retval

case 0:
        commit.transaction()
        break

case DALHOOKERROR:
        abort.transaction()
        show.dal.messages()
        break

default:
        abort.transaction()     
        show.dal.messages()
        break

endcase
}


| before save
function extern long before.save.object(long mode)
{
        db.retry.point()
        on case mode
        case DAL_NEW:
                break
        case DAL_UPDATE:
                with.old.object.values.do(get.old.values)
                break
        endcase
        return(0)
}

| after save
function extern long after.save.object(long mode)
{
        long ret
        on case mode
        case DAL_NEW:
                break
        case DAL_UPDATE:
                | discount has been changed --> update customs value
                if double.cmp(tsmsc120.pdis(1), old.disc, 0.001) then
               
                        ret = update.customs.value(tsmsc120.item, tsmsc120.lino, tsmsc120.cmso, tsmsc120.pdis(1))
                        handle.return.value(ret)
                endif       
                break
        endcase
        return(0)
}


Attached Images
File Type: png error.png (62.0 KB)

Help required related to usage of cmf.sendToPerson

$
0
0
Hello there,

I am trying to use cmf.sendToPerson and giving multiple User Ids but its not working, i think i am missing something

Code:


|Build message XML header
        mid = create.xml.header()

        service = "SMTP"

        cmf.AddressList = cmf.createAddressList()
        ret = cmf.addAddressEntry(cmf.AddressList,
                                  "To",
                                  "Ajesh",
                                  "xxxxx@xxxxxxx.com",
                                  "SMTP")
        ret = cmf.addAddressEntry(cmf.AddressList,
                                  "To",
                                  "Adarsh",
                                  "xxxxx@xxxxxxx.com",
                                  "SMTP")


        |Send message
        if mid <>0 then
                stat = cmf.startService(service,2)
                if stat<>0 then
                        message("Message could not be sent "&
                                "(Infor ERP Enterprise eMessage Connector"&
                                " service did not start)")
                        exit()
                endif
                |stat = cmf.send(mid,service)

                |send message
                stat = cmf.sendToPerson( mid,
                                        cmf.AddressList,
                                        0,
                                        false,
                                        message.str)

Anybody with any clue.

None of the return values are giving any negative value.

Issue with time defaulting in webui/html ui

$
0
0
Hi all,
I am facing an issue in which if date and time domain is used for an input date,time gets defaulted as 23:59 in webui/html ui whereas time gets defaulted 00:00 in LN worktop.The issue is when user enters maximum date i.e 19-01-2038 it defaults 23:59 in Web/LN ui due to which it does not allow to save the date as it exceeds the maximum date and time i.e 19-01-2038 08:44:07.I have tried converting the time in Ui script but control does not go through the field section as it pops the error on input of date itself.
Please note time field is hidden in the session due to which user is not able to input time.
Please suggest on the same

How to stop tmboaserver by using bshell command?

$
0
0
Dear All,

I want to know what is tmboaserver?
How they work and if we want to start or stop bus component by using tmboaserver then which commands we use?

For starting bus component I'm using below command-
-- -set NO_WORKTOP=1 -setBSE_COMPNR=companyNumber tmboaserver -busc


Thanks,
T.Desai

Cancel paid check

$
0
0
I am hoping someone on this board can help me out.

We accidently paid a supplier twice in cash management (they only got one actual payment). First time as a One-Time supplier and second time as an established supplier. The check is in paid status. is there any way to cancel one of the checks?

Any suggestions? Appreciate your help.

NS

CDF disable on worktop Grid

$
0
0
Hi,

I have created CDF on tdsls401. I have added in GRID.it's working properly on the main company but another company cdf is disabled.

How can enable cdf in all company?

Please suggest.

Thanks & Regards,
Chaitanya Shah
Viewing all 4216 articles
Browse latest View live


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