Feeds:
Posts
Comments

Dear all,

For our friends that didn’t know the SAP software is …

Now, we put some simple SAP screen-shot with short descriptions …

before you can login to SAP server, in this example we using IDES, you should create the shortcut logon in SAP GUI with click New Item button on SAP Logon GUI

sap_logon

After that, the system will show New System Entry like this :

new_system_entry

In this entry, you may click new button to create new connection entry system, after click next button, the dialog will show next entry like this :

new_system_entry_1

In this dialog, you have to input 4 fields to describe and connect to SAP server.

1. Descriptions: this make you easy view on the Logon GUI dialog.
2. Application server: fill this field with application server IP address or hostname, if not sure, ask to your administrator or SAP BASIS to know this application entry point address.
3. System number: fill this field with system number of SAP server, if not sure, ask to your administrator or SAP BASIS to know this installed system number.
4. System ID: fill this field with system ID of SAP server, again, if not sure, ask to your SAP administrator or SAP BASIS to know this System ID.

Don’t forget, Choose connection type with : Custom Application Server.

After fill all required fields, click next button to next options dialog, like this :

new_system_entry_2

Netwotk settings for this connection, if you use the secure netwok communication, you should check mark this fields, and fill required SNC name and options.

Also, choose the network setting speeds, for best performance or on Local Network, choose High Speed Connection (LAN), even in actual we use High Speed Connection (LAN) in WAN connections, 512Mbps is enough to use this HS connection, but in my network we use E1 thats mean using 2048Kbps or 2Mbps. :mrgreen: fast enough …

After complete, and change click next button to choose the Language and Upload/Download settings, and click Finish, shown like below :

new_system_entry_3

And system will create entry system connetion shown like this :

sap_logon

Now, you may logon using that system connection.

Next post we will show you the Navigation of SAP GUI.

Cheers,
8-)
Man’z

Dear All,

Just simply change like this :

First, capture the hardware address / mac-address before changing

# ifconfig eth0 | grep HWaddr

After that, do this command :

# ifconfig eth0 down
# ifconfig eth0 hw ether 80:00:27:88:F6:AF
# ifconfig eth0 up

And then, capture again after changing the mac-address

# ifconfig eth0 | grep HWaddr

be aware, this command will be disconnect you LAN/WAN connection, do after connection idle or you know no active connection.

If you use the DHCP server, usually DHCP server will be re-flush the IP client when eth0 up after down or re-forcing from client or the TTL of IP lease is expired.

For forcing new ip before TTL expired, do like this :

# sudo dhclient -r

or

# sudo dhclient

or just more simple

# init.d/rc.d/network restart

That’s all falks ..

Sincerely
8-)
Man’z

tested on virtual ubuntu

Dear all of my friends,

After long week end and no time to write this blog, here we are, now we give you tutor for mixing between Mikrotik + IPCop + Juniper Netscreen as we use at my Network Infrastructures.

Some of resource from chatting with the geek, read the resource, trying on multiple virtual machine to create the multiple subnet. Looks like this mixed things is goods enough for me.

Why already use the JunNet still need the Mikrotik and IPCop as router and Web-Proxy. Our network infrastructure cannot be change due to WAN condition that has already built up using JunNet, in this case, i never ever think to remove this JunNet to prevent bad situations. So, we try to mixed it up together to make stronger and better the network infrastructure even some of network admin not recommended it, why ? too cost-inefficients :D but ? why think too hard the costs ? just management thinked it, that the one of managers rules and duty hehehehehe … :D

Based on this reason, we mixed it up.

Figure that i configure :

mikrotik_ipcop_network

Now …

1. go get the Mikrotik free for 24 hours to test, click here
2. get the IPCop, click here

After downloading the ISO format, you can boot-up your PC’s or your Virtual Machine. In this blog we use the VirtualBox, go get here
Why virtualbox ?, need to running in multiple guest os including *nix and running with small memory consumptions and last one is very fast running.

Mikrotik:
1. Ether1 is LAN side
2. Ether2 is WAN side or Point to GREEN IP IPCop

Now, this configuration for Mikrotik :

—-  Mikrotik Configuration —-

ip address add address=192.168.5.1 netmask=255.255.0.0 interface=ether1 comment=”IP LAN”
ip address add address=192.168.3.1 netmask=255.255.0.0 interface=ether2 comment=”IP Internet”
ip route add dst-address=0.0.0.0/0 gateway=192.168.3.2 scope=255 target-scope=10 comment=”MT Gateway IPCop” disabled=no
ip dns set primary-dns=x.x.x.x secondary-dns=y.y.y.y allow-remote-requests=yes cache-size=2048Kib cache-max-ttl=1w

ip firewall nat add chain=dstnat protocol=tcp dst-port=80 action=dst-nat to-addresses=192.168.3.2 to-ports=80 comment=”IPCop”
ip firewall nat add chain=dstnat protocol=tcp dst-port=445 action=dst-nat to-addresses=192.1683.2 to-ports=80 comment=”Https IPCop”
ip firewall nat add chain=dstnat src-address=!192.168.3.0/24 protocol=tcp dst-ports=80 action=dst-nat to-addresses=192.168.3.2 to-ports=878
ip firewall nat add chain=dstnat src-address=!192.168.0/24 protocol=tcp dst-ports=443 action=dst-nat to-addresses=192.168.3.2 to-ports=878
ip firewall nat add chain=srcnat src-address=192.168.5.0/24 action=masquerade
ip firewall nat add chain=srcnat out-interface=ether2 action=masquerade

ip firewall mangle add chain=forward content=”X-Cache: HIT” action=mark-connection new-connection-mark=squid_con passthrough=yes
ip firewall mangle add chain=forward connection-mark=squid_con action=mark-packet new-packet-mark=squid_pkt passthrough=no
ip firewall mangle add chain=forward connection-mark=!squid_con action=mark-connection new-connection-mark=all_con passthrough=yes
ip firewall mangle add chain=forward protocol=tcp src-port=80 connection-mark=all_con action=mark-packet new-packet-mark=http_pkt passthrough=no
ip firewall mangle add chain=forward protocol=icmp connection-mark=all_con action=mark-packet new-packet-mark=icmp_pkt passthrough=no
ip firewall mangle add chain=forward connection-mark=all_con action=mark-packet new-packet-mark=test_pkt passthrough=no
ip firewall mangle add chain=forward dst-address=192.168.3.2 action=mark-connection new-connection-mark=ipcop

ip firewall filter add chain=input
dst-port=20,21,22,25,80,88,110,119,137-139,443,445 protocol=tcp src-mac=<mac-address> action=accept

ip firewall filter add chain=input dst-port=993,995,989,990,1723,8080,8291,3128 protocol=tcp src-mac=<mac-address> action=accept

queue simple add name=”IPCop” packet-mark=ipcop-pkt
queue simple add name=”Squid_HIT” dst-address=0.0.0.0/0 interface=all parent=none packet-marks=squid_pkt direction=both priority=8 queue=default-small/default-small limit-at=0/0 max-limit=0/0 total-queue=default-small
queue simple add name=”Main_Link” dst-address=0.0.0.0/0 interface=all parent=none direction=both priority=8 queue=default-small/default-small limit-at=0/0 max-limit=35000/256000 total-queue=default-small
queue simple add name=”Ping_queue” dst-address=0.0.0.0/0 interface=all parent=none packet-marks=icmp_pkt direction=both priority=2 queue=default-small/default-small limit-at=0/0 max-limit=0/0 total=queue=default-small
queue simple add name=”Other_Port” target-adresses=192.168.3.0/24 dst-address=0.0.0.0/0 interface=all parent=Main_Link packet-marks=http_pkt direction=both priority=8 queue=default-smal/default-small limit-at=5000/5000 max-limit=50000/256000 total-queue=default-small
queue simple add name=”Another_Port” target-addresses=192.168.5.0/24 dst-address=0.0.0.0/0 interface=all parent=Main_Link packet-marks=test_pkt direction=both priority=8 queue=default-small/default-small limit-at=0/0 max-limit=0/256000 total-queue=default-small

—- Mikrotik Configuration Finish —-

src-mac=<mac-address> you can change with src-address-list
Above scripts is mixing have i read, links … i’m forgot … sorry.

Now, you install the IPCop, and configure using the GREEN + RED network configurations.
The GREEN IP means your LAN side, the RED IP means your WAN side (connect to internet / modem )
In this example: Fill-up the GREEN IP with : 192.168.3.2 and RED IP with : 192.168.1.110

Don’t forget to set the Primary and Secondary DNS  same with Mikrotik DNS set, that we already mention above in command ip dns set primary-dns=x.x.x.x secondary-dns=y.y.y.y

And then, set the Gateway pointed to IP JunNet, for this example is: 192.168.1.200.

Go to the JunNet configuration and put this line for the IPCop GREEN IP allowed in JunNet :

—- Juniper Netscreen Configuration —-

set address “Trust” “IPCop” 192.168.3.2 255.255.255.255
set policy id 16 from “Trust” to “Untrust” “IPCop” “Any” “MAIL” permit log
set policy id 17 from “Trust” to “Untrust” “IPCop” “Any” “HTTP” permit log
set policy id 18 from “Trust” to “Untrust” “IPCop” “Any” “HTTPS” permit log
set policy id 19 from “Trust” to “Untrust” “IPCop” “Any” “FTP” permit log
set policy id 20 from “Trust” to “Untrust” “IPCop” “Any” “DNS” permit log
set policy id 21 from “Trust” to “Untrust” “IPCop” “Any” “NTP” permit log
set policy id 22 from “Trust” to “Untrust” “IPCop” “Any” “ANY” drop log

—- Juniper Netscren Configuration Finish —-

After that, clear the proxy option on client-browsers, and set the clients computer with :

IP: 192.168.5.2 ~ 192.168.5.254 => one subnet with Mikrotik
Netmask: 255.255.255.0
Gateway: 192.168.5.1 => Mikrotik ether1 or LAN Connection
Primary DNS: 192.168.5.1
Secondary DNS: 192.168.3.2 / 192.168.1.200 => GREEN IP IPCop or JunNet IP

For another future like IPCop user-auth, URL Filtering and other goto the http://www.advproxy.net/ for general web.
Advance Proxy download at : http://www.advproxy.net/download.html
URL Filtering download at : http://www.urlfilter.net/download.html

… done.

Surf with it, filter with it and shapping with it … with Mikrotik + IPCop + JunNet .. :D

Oh ya … forgot something, you may use your IP to suitable with your network, this blog only for example.

See ya …

Cheers,
8-)
Man’z

Dear All pren ….

Langsung aja, cobain deh create registry pake :

Reg.RootKey := HKEY_LOCAL_MACHINE;
Reg.CreateKey(‘SOFTWARE\\Man’z, Inc.’);

di Vista … kalo berhasil … kasih tahu daku caranya ya …. soalnya daku gak berhasil dah coba gimana pun caranya pake system registry standard. 8-)

Tapi setelah bertanya teman – teman , emang kalo di vista itu agak repod.. gak boleh create di key HKLM, karena bakal di anggap virus, karena ini security dari vista nya sendiri.

Nah, setelah berputar – putar dan bertanya pada rumput yang bergoyang, karena lagi ada angin :mrgreen: dapet deh caranya … gimana … gimana … gimana … ??????

Nih .. begieu yeuh : (daku mah to the point ajah, sesuai dengan phylosophy nya… :mrgreen: )

Create manifest dan kasih nama Vista.manifest ( namanya seh terserah ), yang isinya format xml :

<?xml version=”1.0″ encoding=”utf-8″ ?>
  <assembly xmlns=”urn:schemas-microsoft-com:asm.v1″ manifestVersion=”1.0″>
    <assemblyIdentity version=”1.0.0.0″
    processorArchitecture=”X86″
    name=”Vista UAC Compat.Application”
    type=”win32″ />
  <trustInfo xmlns=”urn:schemas-microsoft-com:asm.v3″>
    <security>
      <requestedPrivileges>
      <requestedExecutionLevel level=”requireAdministrator” />
      </requestedPrivileges>
    </security>
  </trustInfo>
  </assembly>

trus yang kedua, buat file Vista.rc, yang isi nya :

1 24 Vista.manifest

trus, compile si Vista.rc supaya jadi Vista.res, caranya :

brcc32 vista.rc jebred enter :mrgreen:

Nah, di program kita tambahin {$R vista.res} di paliiiinnnggg awal program kita, maksudnya mainunit nya lah.

Setelah itu coba jalankan … pasti deh munclu error kayak begini :mrgreen:

[DCC Error] E2161 Warning: Duplicate resource: Type 24 (user-defined), ID 1; File C:\Manz\Projects\BDS2007\ManagementSystem\Vista.res resource kept; file Vista.res resource discarded.

Lha … napa bisa begitu … :roll:

gak apa – apa, gak usah risau dan kaget … ini karena standard project dari CodeGear untuk theme runtime. Lha … trus gimana dwonk … ;-)

Nih, keterangannya dulu ya … sabar dikit

si CodeGear atawa project kita gak bisa menjalankan Enable Theme Runtime setting yang ada di menu Project->Options trus Application->Enable Theme Runtime dan juga setting yang sama pada project kita.

Karena bakal terjadi saling tarik antar CodeGear sebagai main project dengan project kita yang disebut sub-project.

Nah, kita gak perlu pakai setting tersebut, jadi kita bisa bantai 2 setting tersebut. :twisted:

Setelah kita bantai 2 setting tersebut, silahkan di compile … pasti gak munclu lagi tuh errornya :mrgreen:

Setelah jadi EXECUTABLE file, aplikasi yang kita buat bisa dijalankan … cobain deh lewat explorer.

Tapi sekarang dapat masalah, kenapa ? karena proyek kita gak bisa dijalankan lewat IDE nya CodeGear, bakal munclu error :-(

Kalo pake debug mode :

Unable to create process.

Kalo gak pake debug mode :

System error. Code: 740
The requested operation requires elevation.

Ini nih yang jadi ganjelan masalah saat ini. Mungkin dari temenz ada solusi mengenai handling error seperti ini ? saya tunggu ya … 8-)

Note: dah di cobain di Windows XP ama Vista … jalan … adem ayem :D

Salam Coderz,
8-)
Man’z

Dear barudax STTI – DCI … siapa ajah dah yang suka baca blog ini …

Khusus untuk anak – anak STTI – DCI seluruuuuuhhh angkatan …

Register and Join at : http://sttindonesia.ning.com/ :mrgreen:

Sekedar berjumpa dan menyambung tali silaturahim dengan kawan – kawan lamaaaaaa …

Tengkiu to Akang Ricky … yang udah nyempetin buat nie social community network …

Salam STTI,
8-)
Man’z

SAP ABAP … begin

Dear alllll prenz …

Sekarang daku mo posting, belajar ABAP sedikit ajah ya …

ABAP itu apaan seh, ABAP adalah Advance Business Application Programming, perasaan daku pernah deh dulu nulis ini. Nah, si ABAP ini adalah salah satu bahasa pemrogramman yang memang di spesialisasi kan oleh SAP.

Jadi tidak terlepas dari System SAP nya sendiri. Kita bisa membuat customizing dari module yang ada / template nya lah kalo gampangnya, tapi kita juga bisa buat sendiri.

Nah, cape nulis sekarang jalanin SAP Servernya, trus SAPGUI nya di client, login ke SAP System nya.

Trus, jalanin deh t-code SE38 The ABAP Editor. trus tuliskan nama nya pada … hmm.. .apa ya namanya, kalo di Delphi mah Object Inspector nya lah …, tapi kudu di inget, setiap yang kita buat itu harus diawali dengan huruf Z atawa Y, kenapa ? soalnya kalo tanpa huruf depan itu, pada saat terjadi upgrade version, programnya lenyap, ketimpa dengan standard yang upgrade version, tapi kalo depannya huruf Z atawa Y, gak bakal lenyap. Dah lah singkat cerita ajah dah itu mah. 8-)

Trus, ngapain ? ngetik terus… cape … liat screen-shoot nya ajah yaw dibawah ini :mrgreen:


Tuh, trus ketik dah diatas, hati hati antara koma dengan titik.

Kemudian dikau harus di save, di activate (click pada tombol korek api), kemudian di run deh. Hasilnya … hasilnya … hasilnya … kayak apa ? 8-O

Nih screen-shoot nya …

Udah deh … gampang kan …. :mrgreen: … ya gampang sekali … karena ini baru permulaan … kalo di delphi mah, hello world na lah kitu … :mrgreen:

Selamat mencoba …

Salam SAP,
8-)
Man’z

Dear all, dah lama nih gak posting … sorry baru kelar nginstall SAP IDES 4.7 di laptop …

Jadi dengan kekuatan laptop sony vaio gw ini dengan spek Core 2 Duo 2 Gigz dan RAM 2 Gigz dan HD 330 Gigz … akhirnya selesai sudah installasi SAP IDES 4.7 dilaptop dengan bantuan virtualisasi.

Ngintall SAP IDES 4.7 dengan servernya windows 2003 pake virtualization berkat bantuan innotek VirtualBox, kenapa masih yang innotek, karena daku pake yang versi 2.0 jebrod melulu alias gak pernah berhasil.

Pake innotek VirtualBox versi 1.5.6 untuk kekuatan server windows 2003 dengan memory 1 Gigz ato 1024 Mb dan juga mempersiapkan harddisk segede 100 Gigz fixed size.

Pertama nginstall dulu Windows 2003 nya di virtual box, partisi jadi 2 harddisk itu, dengan 20 – 80 size.
Buat Virtual Memory Paging di Windows 2048 – 2560 di drive C nya, yang di D … kosyongin ajah. Jangan kegedean, soalnya bisa drop performance nya. 8-)

Jangan lupa untuk setting di Domain Security Policy nya Windows 2003, kalo mo pake password yang gampang … :D ya yang gampang ajah …. settingnya di :

buka Domain Security Policy, pilih Account Policy, Password Policy dan set untuk :
Minimum password length di set 0, supaya bisa gak pake password, tapi kudu dipake tuh passwordnya.
Password must meet complexity requirements nya di disabled
Store password using reversible encryption nya juga di disabled

Nah, udah itu jalankan cmd : dan ketik : gpudate /target:computer /force … kenapa ? biar policy nya ke update ( flush ) atawa refresh lah mun ceuk sunda na mah … 8-)

Jangan lupa juga install microsoft network loopback connectionnya. Kalo daku pake ip nya 200.200.200.20 nm 255.255.255.0, kenapa ? ya pengen ajah … :D

Dah itu ? ya udah … copy kan tuh SAPINST nya ke drive C. tapi sebelumnya install dulu Oracle nya tanpa create database ya … jangan lupa tanpa create database. tapi perlu di ingat, jalanin installasi dari Oracle itu khusus untuk SAP, karena ada beberapa perubahaan parameter dengan Oracle biasa, tapi daku juga dah cobain pake Oracle biasa … jalan langsung tuh …

Nah, setelah itu jalanin tuh SAPINST nya … dan install dulu Central Instance, and follow the instructions.

Dah beres, install dah Database Instance nya … untuk loading database dari SAP nya.

Nah yang ini ni … pada saat loading Database Instance nya … kudu sabaaaaarrrrrr beneeerrr … soale kalo untuk instalasi Central Instance itu paling lama cuman 30 menitan … gak lebih dah,… tapi kalo untuk Database Instance nya …. :D … 3 hari meeennn …. 3 x 24 jam .. lebih lama dari pada tamu datang dan lapor ke RT :D

dibawah ini lagi install loading Database Instance, full utilization dan nungggguuuuuuuuuuuuu 3 hari … sabar yee :D

Trus install SAP GUI versi 7 nya kalo punya, tapi harus punya, kalo engga gimana dwonk mau pake SAP nya … Dan konfigurasikan link nya supaya bisa akses ke servernya.

Hasilnya … dah 3 x 24 jam … nah ini sekerin shyut nya :

1. Virtualization SAP Server Windows 2003 run

2. Setting untuk SAP GUI

Isikan untuk application servernya langsung ke IP di VirtualMachine nya…

System number dan System ID jangan lupa, harus sama pada saat instalasi Central Instance maupun Database Instance nya.

3. SAP IDES RUN on System

Nah, setelah itu …. dikau prends tinggal pake dah tuh SAP IDES nya … ya kalau performance nya turun … wayahna ceuk sunda mah … tapi gak lelet lelet amat koq …

ntar dikau prenz bisa login dulu dengan Client 000, username SAP* dan password (password yang sudah diset pada saat setup) jangan lupa ini … kalo lupa … wah repod lagii … kudu reset sana reset sini, atawa bisa login pake DDIC dengan password yang juga sudah di set pada saat install.

Nah gimana kalo passwordnya lupa ??? kan biasa SAP itu kalo 3x salah pasti usernya ke lock … trus ? trus ? trus ? … tunggu tanggal main nya untuk cara buka dari Oracle nya …. hmmm tapi mungkin MS SQL Server juga dan yang lainnya sama kali ya … tapi … kapan dwonk … sabarrrrr …. daku release dulu yang ini yaw…

Cobain juga belum … apa lagi mau nge-reset  … hihihihihihihih :D .. sabar lah ntar juga daku posted disini.

Selamat mencoba …. See yach …

Salam SAP,
8-)
Man’z

Mohon Maaf yaa..

Assalammu’alaikum Wr. Wb.

Lebaran sebentar lagi … kayak lagu ajah… :-)

Hati gembira karena datang nya Idul Fitri, kita kembali ke Fitrah nya… bersih dari dosa dan kesalahan, tapi dengan catatan… kalo puasa kita lulus — lempeng dan benar menurut Alloh SWT.

Akan tetapi hati juga terasa sedih, dimana segala limpahan Barokah, Ridho, Rizki dan Ar-Rahman Ar-Rahiim Nya akan lewat…

Apakah kita akan bertemu lagi dengan tamu Agung Ramadhan di tahun depan ?

Apakah ini pertemuan terakhir dengan tamu Agung Ramadhan di tahun ini ?

Ya Alloh, semoga kita semua dipertemukan lagi dengan tamu Agung Ramadhan Mu ya Alloh … di tahun depan

Nikmat rasanya mendapatkan kenikmatan berpuasa di bulan Suci ini…

Temanz .. Frenz … Maaf’in daku ya, atas segala kesalahan yang disengaja ataupun yang tidak disengaja … baik kesalahan dalam bahasan, kesalahan dalam ketikan, karena jari tak punya mata, hanya kepala yang punya mata dan hati yang punya mata ( kalau tidak ditutup oleh-NYA )…

Minal Aidin Wal Fa’izin … Mohon Maaf Lahir dan Bathin …

Sekali lagi tak ada kata yang indah selain memohon maaf atas segala kesalahan, atas .. hmm… mungkin diantara temanz ada yang disakiti hati, ada yang di singgung perasaan … sampai tak enak hati …

Maaf’in yaaaaaa …. 8-)

Wassalam,
8-)
Man’z

Dear all of my friendz,

Right now after socialization from POLDA Banten and BSA last month (Aug), they do the activities for sweeping the an illegal software. Actually, we didn’t get true evidence for this, but, from the news i heard, some companies surrounding Industrial Estate already audited and get some results.

The results is, some computer has been taken by police to get more deeply check.

We didn’t know, its true story or not, but we still search the evidence that they already sweeped.

For your all of my friendz who already read this blog, please be aware using piracy software even you’re already get some an original software. They sweep all computer one by one.

Just be aware …

Sincerely yours,
8-)
Man’z

« Newer Posts - Older Posts »