12.22.2009

Kartu Kredit

Pelajaran berharga dari proses yang namanya growing up.
Dari ga punya uang sampe bisa cari uang sendiri.
Kartu kredit.
Ga bisa baik-baik sama sales kartu kredit. Repot sendiri.
Kalo ga berminat langsung tolak aja.
Apalagi sama sales kartu kota yang ga pernah tidur.
Dulu saya pengen banget punya kartu itu.
Sekarang mau ditutup susah banget.

Kalo ngerasa tawarannya menggiurkan jangan langsung diterima. Cari info dulu.
You can always call them back right?

Oh ya, saya tutup kartu itu karena tiba-tiba suatu hari saya kepikiran.
Gimana kalo suatu saat saya dipanggil Allah.
Tagihan tahunan datang dan keluarga saya yang repot.
Oh I really don't want to imagine them remember me as anak perempuan tukang ngutang nyusahin keluarga.

So far kartu kredit aktif saya ada 3 (Dek catet ya, in case something happened)
Mandiri corporate gratis iuran tahunan seumur hidup.
BCA iuran tahunan 300 ribu.
Standchart iuran tahunan berapa ya lupa.

Kayanya begitu berhasil upgrade Mandiri jadi Gold, BCA dan Standchart ditutup aja ah.

12.06.2009

Youth Is...



Are you searching for something precious? In the end you can't see it. Nor can you touch it. It simply gets carved into your heart...

From the show Invincible Youth - KBS World, Saturday & Sunday (in Indonesia).




I think this variety show has a great way to teach youngsters about wisdom, love and the value of hard work. At the same time it is very entertaining with the presence of seven girl singer group members as regular casts. That's why it is effective to attract a lot of young viewers. Very great.

All pictures are courtesy of KBS World

12.02.2009

What Have Been Happened Lately

First of all, I am officially a commuter starting from 2 months ago. It's a bittersweet. I'll tell you why. Pondok Aren to Gambir is gotten through 1 public transport from Pondok Aren to Jurang Mangu train station, then the train from Jurang Mangu to Tanah Abang, then an 'illegal' public transport from Tanah Abang to Gambir. It took approximately one and a half hour to get to the office. In the morning it is not a big deal. But when got home, it makes me exhausted. Usually I got home around five thirty to six in the afternoon. After that, my body won't cooperate anything more than eat, wash up and prays. No more little browsing or shopping in workdays. It kinda make me feel bored but what can I do? I really value little time spent around my mom and sister. Even if it just to see their faces and say hi. So I think this is better. Go home every day and enjoy my time with them while I can.

11.29.2009

Korea's King of Ballad



Proudly introducing you (if you haven't know) Mr. Shin Seung Hoon! ^_^ I'm currently smitten by his voice in OST of IRIS, Love of IRIS. This IRIS drama is soo on hype. With it's high production budget, abroad shoots (so far I had seen scenes in Hungary and Japan) and a lot of stars playing in it. It has Lee Byung Hun, Kim Tae Hee, TOP. It's OST has Baek Ji Young, Kim Tae Woo, Big Bang and yes, Mr. Shin Seung Hoon himself. Oh he has that mysterious aura which makes him even more charismatic as he gets older. I really hope his prodigy will be as as good as him, or even better. May I wish a hard work and good luck for Tei, Shin Hye Sung, who else? Lee Seung Gi? Kim Jong Kook? No? Hihi.

Download Shin Seung Hoon - Love of IRIS
[Credit: Soompi IRIS forum]

11.21.2009

SAP BI GetQueryViewData

Now that my scope of work has shifted, I found new things to play with. Good bye ABAP-ing in ECC 6.0. Welcome ABAP-ing in SAP BI, kekekke. More than that, I am challenged to bring out SAP BI data to the world company. Like what my seniors and I have been doing in R3, we abused brought out the precious information to Web Services and SQL Servers. And the result are dynamic heart beats of transactions and reports that have the spirit of single source of truth. Speaking of information in our company is speaking of SAP data. No other. Of course, without having to remember a T-Code.

Years passed through. My interest got hooked on SAP BI. With all massive storage and OLAP techniques that makes reporting finally got its attention in the first place. To communicate with SAP BI from outside, I've tried the hard way and currently using the easy way. The hard way, learn MDX Query and pass it to BI by calling a BAPI. I can't remember the BAPI name, I don't want to discuss that now. Me feels too hard to coupe with MDX query. The easy way, using a web service that SAP BI provide. For doing this, you have to work with some one who have access to SAP BI GUI and can operate SAP Query Designer. Ask the dude to follow the steps to prepare the web service in SAP BI here. That document is a starter, the journey to have a ready-to-call web service has just begun my friend. This is tricky, you thought you got the web service link, but when you tried to access it, BUM! Failed. Well if that's the case, kindly contact me. See if I can help you. Been there, me. Sorry but I really need to skip so that I can finish this fast.

Specify your output data to SAP BI dude so that they can build that into a query, of course from the Query Designer. As a result, you will get query name and info provider name.

Now it's web application's turn. The service you need to call is GetQueryViewData. When testing, use a simple query without any variable screen. Because dealing with variable screen is the second confusing thing. Explanation from SAP on how to pass parameter to variable screen in this service is veeery hard. It is far away from plain. I have to google and google again until accidentally met the same programmer with the same problem. And this is how GetQueryViewData is called using parameter:

using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;

using System.Collections.Generic;
using System.Net;
using WSDashboardEnterprisePortal.SAPBIProxy.GetQueryData;
//That was the class of the web reference
public static GetQueryViewDataResponse GetQueryData() {
       NetworkCredential login = new NetworkCredential();
       GET_QUERY_DATA BWQuery = new GET_QUERY_DATA();
       login = new NetworkCredential();
       login.UserName = "UserName";
       login.Password = "Password";
       BWQuery.Credentials = login;
       BWQuery.PreAuthenticate = true;
       GetQueryViewData gqvd = new GetQueryViewData();
       gqvd.Infoprovider = "InfoProvider";
       gqvd.Query = "QueryName";
       List listParam = new List();
       W3query param;
       for (int k = 0; k < arrParameter.Length; k++) {
       //If you only have one parameter, omit this loop
            param = new W3query();
            param.Name = string.Concat("VAR_NAME_",(k+1).ToString()); //
VAR_NAME_1, VAR_NAME_2, and so on
            param.Value = "0CALMONTH";
            listParam.Add(param);
            param = null;
            param = new W3query();
            param.Name = string.Concat("VAR_VALUE_EXT_",(k+1).ToString());
            //That was VAR_VALUE_EXT_1, VAR_VALUE_EXT_2, and so on
            param.Value = "200909";
            listParam.Add(param);
      }
      gqvd.Parameter = listParam.ToArray();
      gqvd.ViewId = null;
      GetQueryViewDataResponse response = BWQuery.GetQueryViewData(gqvd);
      return response;
}

11.19.2009

Two Things That I Don't Need To Do

In my case, gaining weight and being improvident are two things in common. Things that I don't need to do.

Sinetron It Is

There are dramas in Korean being called as makjang series. Makjang plot it self is described as:

outrageous storylines involving adultery, revenge, rape, deception and the like, designed to keep viewers hooked no matter how ridiculous the stories became.

In Indonesia, I am sure we call that sinetron :D
Credit: dramabeans

11.16.2009

On Rainy Days Like This

Suddenly remind me of old-office days. 8 o'clock in the morning, inside angkot B-09 Ciledug, listening to Opick's song. It was cloudy outside, rain began to pour in. I was wondering will I pass the last of lots of Pertamina exam. Then, if not how long will I be working in current office. All feelings got in my heart. The memories of friends who are already pass Telkom exam. My parents who wish me to work in decent hours. Allah Who is very kind to me. It was hard days. And I was alone. Like I always do. Ah no~~. Allah is there ^^

 
Template by yummylolly.com