Thursday, February 3, 2011
Saturday, January 15, 2011
I'm back
I read an article posted on "The Star" titled "Go East, Young Man" today. It inspired me a lot, the context is about current situation of world economy, which describing the shifting of economy dominance from west to east. I can't agree more than what he wrote. My gut tells me he must have been sharing more than this in the past. Then I found another article titled "Up close and personal with Tan Sri Lin See-Yan" about his personal life. The interesting part is he trained himself to sleep 3 to 4 hours and to spend same amount of time finish a book!!! Some of his quotes drew my attention:
Doesn't seems like our government aware of this. Fuel price is still hiking in multiple periods.
Yeah, this is the good one. I think procrastination drives me away from my passion and consistency in achieving things.
It's time for me to make a change now!
“One of my best experiences is dealing with housewives. There was a run on sugar and these housewives were hoarding them. I had to explain why they don’t have to. But the moment they left, they went off to buy more sugar. We do not understand the mentality of the people and the effect our policies have on them. This is my biggest criticism of government today. They never consult those their policies would most effect. We tend to take people for granted.”
Doesn't seems like our government aware of this. Fuel price is still hiking in multiple periods.
“Just having an interest is not enough. Interest dies after a while. So in all that we do, there must be passion and confidence in your ability and discipline.
Yeah, this is the good one. I think procrastination drives me away from my passion and consistency in achieving things.
“Now that I have the time, they don’t. That’s what economics taught me. You live within constraints, or you will be a complainer all the time. It is a choice you make or a choice made for you. You can always quit and do something else.”
It's time for me to make a change now!
Friday, March 27, 2009
SAP Certified Development Associate - ABAP with SAP NetWeaver 7.0
Booking Code
- C_TAW12_70
The certification test for "SAP Certified Development Associate - ABAP with SAP NetWeaver 7.0" verifies the profound knowledge in the area of ABAP Development. This certificate proves that the candidate has a fundamental understanding within this profile and is able to apply these skills practically under supervision in a project environment.
Software
- Software components: SAP NetWeaver 7.0
Number of Questions
90
Duration
0 days
Notes
- Associate Certifications are targeting profiles with 1 - 3 years of knowledge and experience. The primary source of knowledge and skills is based on the corresponding training material.
- Please note this certification may have a different passing score from previous or different certification exams. For multiple response items there is no partial credit given.
- Please note that you are not allowed to use any reference materials during the certification test (no access to online documentation or to any SAP system). You will require Photo ID to be allowed to take the test.
- View sample Exam Questions for C_TAW12_70 by clicking here
Competency Areas
The following list helps you to identify the competency areas covered in this test. The percentage indicates the portion of the test dedicated to a particular competency area.
| Competency | Importance |
| |||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Accomplish and identify solutions for defined project tasks. Based on profound knowledge and basic understanding, identified tasks can be performed during system implementation, configuration, and testing in the areas of | 60% |
| |||||||||||||||||||||||||||||||||||||||||||||
| Build solutions by independently researching valid implementation options. Based on profound understanding and deep application skills, project requirements can be transferred into solid customer solutions in | 40% |
| |||||||||||||||||||||||||||||||||||||||||||||
(extracted from SAP)
Wednesday, March 18, 2009
SAP ABAP : Structure, Internal Table, Transparent Table
These confused me a lot. Finally, I wrote something to clear my doubts.
* Transparent Table: SAPLANE
* Internal Table: TY_PLANETYPES
* Structure: Z07_SAPLANE
*Possible ways of typing data object with structure, trans. table and internal table.
TABLES: SAPLANE. "=> Equivalent to DATA: SAPLANE TYPE SAPLANE. [Structure of SAPLANE with the name of SAPLANE]
DATA: t_1 TYPE SAPLANE, "=> Structure of SAPLANE.
t_2 TYPE LINE OF TY_PLANETYPES, "=> Structure of TY_PLANETYPES
t_3 TYPE TY_PLANETYPES, "=> Internal Table of TY_PlANETYPES
t_4 TYPE TABLE OF SAPLANE, "=> Internal Table of SAPLANE
t_5 TYPE TABLE OF TY_PLANETYPES, "=> Single Column Internal Table that listing Internal Table of TY_PLANETYPES.
t_9 LIKE LINE OF t_4, "=> Structure of SAPLANE.
t_10 LIKE LINE OF t_5, "=> Structure of TY_PLANETYPE.
t_12 TYPE TABLE OF SAPLANE WITH HEADER LINE, "=> t_12 is both a Structure and Internal Table. This is obsolete and please avoid using this. SAP OOP prohibited this syntax.
t_13 LIKE LINE OF t_12, "=> ABAP refer t_12 as Internal Table, and form a structure of SAPLANE.
t_14 TYPE Z07_SAPLANE, "=> Structure of Z07_SAPLANE
t_15 TYPE TABLE OF Z07_SAPLANE. "=> Internal Table with Z07_SAPLANE structure.
"t_6 TYPE LINE OF t_1. => SYNTAX ERROR: TYPE a data object with a data object?
"t_7 LIKE LINE OF TY_PLANETYPES. => SYNTAX ERROR: A data object must come after LIKE.
"t_8 LIKE LINE OF t_2. => SYNTAX ERROR: LINE OF a structure?
"t_11 TYPE LINE OF SAPLANE => SYNTAX ERROR: SAPLANE is not internal table. Can't use LINE OF.
Phew! Hopefully these covers everything.
* Transparent Table: SAPLANE
* Internal Table: TY_PLANETYPES
* Structure: Z07_SAPLANE
*Possible ways of typing data object with structure, trans. table and internal table.
TABLES: SAPLANE. "=> Equivalent to DATA: SAPLANE TYPE SAPLANE. [Structure of SAPLANE with the name of SAPLANE]
DATA: t_1 TYPE SAPLANE, "=> Structure of SAPLANE.
t_2 TYPE LINE OF TY_PLANETYPES, "=> Structure of TY_PLANETYPES
t_3 TYPE TY_PLANETYPES, "=> Internal Table of TY_PlANETYPES
t_4 TYPE TABLE OF SAPLANE, "=> Internal Table of SAPLANE
t_5 TYPE TABLE OF TY_PLANETYPES, "=> Single Column Internal Table that listing Internal Table of TY_PLANETYPES.
t_9 LIKE LINE OF t_4, "=> Structure of SAPLANE.
t_10 LIKE LINE OF t_5, "=> Structure of TY_PLANETYPE.
t_12 TYPE TABLE OF SAPLANE WITH HEADER LINE, "=> t_12 is both a Structure and Internal Table. This is obsolete and please avoid using this. SAP OOP prohibited this syntax.
t_13 LIKE LINE OF t_12, "=> ABAP refer t_12 as Internal Table, and form a structure of SAPLANE.
t_14 TYPE Z07_SAPLANE, "=> Structure of Z07_SAPLANE
t_15 TYPE TABLE OF Z07_SAPLANE. "=> Internal Table with Z07_SAPLANE structure.
"t_6 TYPE LINE OF t_1. => SYNTAX ERROR: TYPE a data object with a data object?
"t_7 LIKE LINE OF TY_PLANETYPES. => SYNTAX ERROR: A data object must come after LIKE.
"t_8 LIKE LINE OF t_2. => SYNTAX ERROR: LINE OF a structure?
"t_11 TYPE LINE OF SAPLANE => SYNTAX ERROR: SAPLANE is not internal table. Can't use LINE OF.
Phew! Hopefully these covers everything.
Sunday, March 15, 2009
SAP ABAP: Data Type Categories
I have no idea why this topic caused that much of problems to me, this is a basic topic and I shouldn't have much troubles with it. But somehow, I spent a very long time to understand it, may be that's the way to master the basic? Or I did it in stupid way? Who knows? Anyway, by hook or by crook, I have to get it clear in my mind.
ABAP has 3 categories of Data Types:
DATA: dataObject TYPE data type.
Example 1 with predefined data type:
Example 2 with local type:
Within your program,
Example 3 with global type:
Go to ABAP Dictionary: Initial Screen with command SE11 and define your data type, for e.g. def.
In your program,
ABAP has 3 categories of Data Types:
- Predefined Data Type / ABAP Standard Type / ABAP Type:
- Complete ABAP standard types (Doesn't need to specify length)
- D - Date, YYYYMMDD, length 8 bytes, fixed.
- T - Time, HHMMSS, length 6 bytes, fixed.
- I - Integer, lenght 4 bytes, fixed.
- = 32 bits = 10 digits and 1 +/- sign, MinMax value is +- 2,147,483,647.
- F - Floating point number (F), 8 bytes.
- For scientific calculation purpose, it provides approximate value with rounding error.
- should avoid using this for any business calculation.
- STRING - dynamic length character string.
- XSTRING - dynamic length byte sequence (HeXadecimal String).
- Incomplete ABAP standard types (Length must be specified for the data objects)
- C - Character string
- N - Numerical Character
- This guy is odd, he is character that detects and accepts only numeric (0-9) value from Left Hand Side. Pattern King!
- X - Byte Sequence (HeXadecimal String)
- P - Packed Number
- This guy won't mess up with any rounding errors, because it's using fixed point arithmetic.
- Use it for any business calculation.
- But you have to specify the length and decimals for it.
- Valid Length is from 1 to 16.
- Valid Decimals ranged from 0 to 14. (Zero-decimals will convert it behave like Integral [auto round up and down])
- Local Type
- Apparently, you define and declare the Data Type, and use it to type data objects within the program.
- Global Type
- Obviously, you define your Data Type in ABAP Dictionary, and it can be used throughout the entire SAP system.
DATA: dataObject TYPE data type.
Example 1 with predefined data type:
DATA: lv_dataObjTYPE P LENGTH 5 DECIMALS 2.
Example 2 with local type:
Within your program,
TYPES: abc TYPE P LENGTH 5 DECIMALS 2.
DATA: lv_dataObj TYPE abc.
Example 3 with global type:
Go to ABAP Dictionary: Initial Screen with command SE11 and define your data type, for e.g. def.
In your program,
DATA: lv_dataObj TYPE def.
Please feel free to drop your comments!Bye Bye~ Kok Chye... May you rest in peace...
You were such a good friend. I wouldn't forget how you smiled and laughed with us in those days. Kok Chye, may you rest in peace...
Friday, January 2, 2009
Good Bye 2008!
Year 2009 started for few days already. I have yet to say good bye to year 2008. For formality purpose, Year 2008, tata~
For the past 25 years, I couldn't remember I did any review of the year or not. Anyway, after attending the Fundamental Project Management for IT, I have a strong will to write down what I had done and achieved for all year long.
For the past 25 years, I couldn't remember I did any review of the year or not. Anyway, after attending the Fundamental Project Management for IT, I have a strong will to write down what I had done and achieved for all year long.
- Family : Mum's health condition remains status quo. How I wish she can get better and better, happier and happier. Dad managed to visit his siblings during my cousin's wedding. Sisters? I have to cut it short, in a nutshell, I believe they are happy this year, kakaka~
- Love : I started a relationship. Thanks god, thanks to my current job, thanks to my 18 generation of ancestors, friends, and of course to my babe too. Thanks for accepting my love and loving me in return as well.
- Friends : Quite sad, I am weak in maintaining a strong good term with some of my friends. CK, Jeff, Hoopy, Honey, Mama, Siew Ko, sorry ya~ I will improve it this year.
- Career : This year's bonus not as good as last year, due to management strategic investment for regional expansion by paying out 4.6 times book price. How I wish I am the recipient. My direct selling business is not running smoothly, anyway, I know it's not my priority at this moment. The fashion house business is remain stagnant, oh! I even forgot the check the selling status with my friend, urghhhh!
- Investment : Forget it~ You know what is Global Financial Crisis?
- Property : Bought a car! Some might think it's a liability but I still consider it as my fix asset, although it depreciate every year. Anyway, her name is Little White, IC number is WRM9788, haven't full 1 year. Although it drains 33% of my grossl income, but I have no regrets at all. because I enjoy the freedoms and flexibility to wander around in this city with Little White.
- Study : I have to put this aside first, bread and butter is much more important at this moment.
- Sports : It is all about determination and consistency, but I just couldn't manage it. I will set a plan for Year 2009.
- Travel : Business Trip to Ho Chi Minh City, Vietnam [for a project]. Personal trip to Kelantan [my home town], Lang Tengah [to kao my babe, :P], Miri [Heng Dai Ah Ku's wedding], Batu Pahat [meet Pong Chi and babe's parents], Melacca[with babe on adhoc basis] and Singapore [just right after Christmas, to meet White Rose members].
Subscribe to:
Posts (Atom)