Tuesday, 13 May 2008

Antenna installation - Rotor/Rotator + Mast

Thinking hard on how I could bring up my mast + rotator + yagi + 10m delta loop antenna to-be. Found the following diagrams and photos which might help me later on..

1. Load bearing support

2. Roof mount (no idea where I could get this though)

3. Guy ring and clamp, turnbuckles, etc.

Place to visit/URLs:
1. KAMCO 

Monday, 12 May 2008

Ikea has invaded my home office!

It seems that my new home office to-be, has been invaded by Ikea furniture. 

List of them now (originally):
  1. One Galant combinations table (corner).
  2. Two Effektiv wall cabinets.
  3. Two unit of Mikael drawers.
  4. One unit of BESTA storage for my radio stuffs.
Added as of last Saturday:
  1. One Billy bookcase.
  2. One Karsten swivel chair.
  3. A Signum cable management tray and Summera pull out keyboard tray.
  4. Two Lindmon blinds of 120cm and 60cm sizes.
I will update this blog with photos when everything is in place and ready to be occupied.

SAP/ABAP - Unicode conversion

Due to expansion, my client is currently involved in Unicode conversion exercise which is due next week. The project has started quite a while back and as usual, most of the code changes had been outsourced to third party which seems to outsource it to you-know-where region. Anyway, found out that many of these programmers were interested in getting the codes past the syntax check and not more. 

Anyway, for those who are doing Unicode conversion, the following might be helpful:
  1. Transaction UCCHECK is available and very helpful to do a first time check on what needs to be changed in your coding.
  2. OSS Note/SAP Marketplace is the first place to pay a visit when you're working with copied version of standard code. There might be some codes that have been changed to reflect the Unicode support, especially if they've to do with file interfaces.
  3. Carriage return & line feed (CRLF) which has been denoted as hex '0D0A' all this while will fail during execution, change it to cl_abap_char_utilities=>cr_lf.
  4. Any calls to the old Function Modules WS_DOWNLOAD and WS_UPLOAD need to be changed to GUI_DOWNLOAD and GUI_UPLOAD.
  5. Any direct assignment of non-compatible structure will surely fail, do a casting instead, especially from type P to type C. 
  6. To make life easier, use method cl_abap_container_utilities=>fill_container_c to assign structure of mix types into a string/text.
  7. OPEN DATASET, for syntax which specify IN TEXT MODE, you need to add the ENCODING, the easiest is by DEFAULT, but if you found a syntax which does not specify the TEXT MODE, be very very careful. It might be opened in BINARY mode in previous release and need to be tested very carefully or otherwise, the file produced by your code will be garbled. There are few OSS notes related to this, check them out.

Friday, 9 May 2008

10m delta loop antenna?

Had a long chat with 9M2AU yesterday about 10m, antenna tuner and antenna. He suggested that I should look into a delta loop antenna design. It has simple and easy to assemble and to source for the parts and it has gain too. Since I'm at my base at that time, I fired up my Safari browser and look for the delta loop antenna using google and found few interesting websites that I've already bookmarked. As said, it looks really simple .. and no antenna tuner is required. To find the overall length of the loop, just follow the following equation:

length = ( 1005 / centre operating frequency  ft ) * velocity factor
e.g.: for 1
0m, overall length = ( 1005/28.450 ) * 0.75  = around 26.3ft 
Since it is a delta loop (triangle), divide the final length by 3 to get the equal length of each side.

Sample delta loop found in the following website (requires 4:1 balun):


How to brew a 4:1 air-wound current balun? Here is the instruction found in this website (PA3CNJ).

This air-core balun is wound using the following components :
40mm diameter grey PVC pipe with a length of 9.5cm
2 endcaps 40mm PVC
Simple zip cord (multi-stranded core insulated wire)
8 turns bifilar wound
2 banana type chassis connectors
1 SO239 socket


Terminals B and C are wired to the banana chassis connectors for hooking up the feedline. The SO239 terminal center pin is wired to C and it's shield to D. Make sure to connect D and A together. As can be seen on the image at the top of this page, the wiring enters the PVC pipe and all connections are made internally. In my case - since I am using the balun inside - I did not glue the endcaps to the pipe but used a couple little screws instead. This way the balun is easy to service should the need arise.

NOTE: Let give the credit where it dues, the above instruction was originally taken from H5ANX design.

There are some other delta loop designs that do not require balun too. GOOGLE is your friend!
Found another one:


Monday, 5 May 2008

Another unsuccessful 10m Dxing :(

Went back to my parents house and trying to monitor the 10m .. but I guess the propagation was not that good at Muar on Saturday evening .. tho' I could hear audio coming out at around 18:00hr MYT, but it was so weak. Anyway, I was using long wire antenna and somehow, ignoring that I have my Buddistick with me .. argh! 

Anyway, some photos from the back of my parents house

.  



Tuesday, 29 April 2008

It has been a long time I wanted to modify my Triton. Last week, I received a call from a friend of mine who said that the custom made bumper and sidestep for Triton are available from Ah Lau Bar/Jalan Empat Chan Sow Lin  .. So, here are the photos after the installation ..

I choose not to install the jerry can holder and tyre holder .. so bare minimum .. yet to get the towing ball/shackle or whatamachalit!


Photo from side:

Side step

Standard price list:


Saw this SJ, fully dressed with black steel ..

  

Monday, 28 April 2008

More photos from our new house ..

New photos from our new house:

1. Neighbour has repainted their whole house, it is no more a kindergarten now.


2. The sofa set (3+2+1) and the L shape sofa finally delivered. They look too big for our living room now. Saw them a bit small in the showroom.. most probably due to massive showroom with lot of other sofas.




3. And here is my home office, the wall cabinets are all set, the table is already in place. Yet to get the extra stuff in though.



4. My eldest daughter's room with Ikea furniture.


Consuming EUDR Webservices from SAP ECC

There are number of us who're still stuck in the old SAP ECC or S/4 Hana on Premise and yet to move into Private or Public Cloud. A rece...