Thursday, October 27, 2016

Checklist before leaving Canada back to your home country

5 Important things to be done while relocating back to India from Canada.

1.Backup all your proofs which show you visited and worked in Canada

   Below are the documents which i want you to take backup as these documents can be very useful for you if you are applying PR etc
    1. Company Payslips
    2. Bank Statements- Please get them from starting of your back accounts. Ideally get them from bank with a bank seal on it.It might be useful for applying loan in India
    3.Lease agreements
    4.Company offer letters

2. Zero stains on your credit history

    Below are the points to be taken to make sure you have no bad credit history. This will help in getting easier loans if you ever back in Canada.
    1.Pay all the credit card dues and close them
    2.Pay all your phone bills and cancel the connection.
    3.Pay your rents and get a no objection certificate if possible.
    4.Pay your driving tickets and other tickets.

3. Be careful with your bank

    As you may be filling taxes and you might get some refunds it is always advisable to have one bank account active. Most of the Canadian banks charge for checking's account if you don't have enough balance. My advise is to close your checking's account and have only savings bank account. Advantage of savings bank is it gives you money on the funds you have and generally deposits are not charged only withdrawals are charged. If you are closing down your checking account please make sure you update below websites just to make money gets deposited properly into your account
    1. Update CRA - Canada Revenue Agency
    2.Update your personal / medical/vehicle insurance company
    3.Update your Working company which pays your salary.
    4.Update your Rental company
    5. Update the websites from which you do money transfers

4.Update CRA
As you are relocating i would suggest you to update CRA - Canada revenue Agency about your departure from the country. This will help CRA to calculate your taxes properly and process returns.

5.Make proper contacts.

 As Canadian job market is very small and each every person is connect with other people it is always better to have proper contacts, so I request you to give your details and all the required people to LinkedIn , Facebook etc.

As you would be moving back to your country , try to do a break over journey in Toronto or Vancouver etc places and appreciate the Canadian lifestyle.

If you like this post or have some more points to be added please write in the comment.


----------------------------------------------------------------------------

All the messagesbelow are just forwarded messages if some one feels hurt about it please add your comments we will remove the post.Host/author is not responsible for these posts.

Monday, September 26, 2016

IBM Maximo : Calling a report from a push button in Maximo

Idea here is to launch a report from a push button on any screen. In this way business can run a specific report by clicking a button in the screen itself.

1.       Find the report which you want to run (ex: woprint.rptdesign) and hit the database to find the report number and execute below query

select reportnum,reportname,appname from report where reportname='woprint.rptdesign' and APPNAME='WOTRACK';



2.       From Report Library file (REPLIBRARY) and search for reportnum="351" , note the id related to it (highlighted)






id="reportd351"
label="Request Page" mboname="WORKORDER" reportnum="351" reporttype="BIRT" width="550">

3.       Navigate to application designer, search for WOTRACK and a new button with details like
Event : reportd351 and save it



4.       From Work Order Tracking application , you can see a Print Report button, when you click it shows report page like below




And on Submit, it generates the report.




----------------------------------------------------------------------------
 All the messages
below are just forwarded messages if some one feels hurt about it please add your comments we will remove the post.Host/author is not responsible for these posts.

Tuesday, September 20, 2016

Maximo Environment refresh- Naming environments

-- Below are the scripts which can be executed after production refreshes to make sure every environment is named from login screen etc.
Below is a example where we are trying to set values in a system as Development Environment


------ Messages on the Login Screen -----

--Login Button ---
update maximo.maxmessages set value = 'Sign In to Development' where msgkey = 'loginbutton' and msggroup = 'login';

-- Welcome Message ---
update maximo.maxmessages set value = 'You are in Development' where msgkey = 'welcome' and msggroup = 'login';

update maximo.maxmessages set value = 'Welcome to Development' where msgkey = 'welcomemaximomessage' and msggroup = 'login';

update maximo.maxmessages set value = 'Welcome to Development, {0}' where msgkey = 'welcomeusername' and msggroup = 'login';

-- Maximo Log Out Messages ----
update maximo.maxmessages set value = 'All users will be logged out of Development Environment in {0} minutes. Save your work.' where msgkey = 'AdminLogoutSubject';

update maximo.maxmessages set value = 'Maximo configuration in progress on Development Environment' where msgkey = 'AdminLogoutMessage';

--- Maximo Application ----

update maximo.maxapps set description = 'DEV - ' || description;

commit;



----------------------------------------------------------------------------
 All the messages below are just forwarded messages if some one feels hurt about it please add your comments we will remove the post.Host/author is not responsible for these posts.