Archive for June, 2009

Google faster better bigger..

Google faster, better, bigger……..

Google penetration in the internet application space is tremendous. Just other day when I was walking down near a café, I got stopped by this old gentleman who could barely walk; he was looking for some street directions. He asked me direction toward mayroll drive, I myself not so sure, politely told him “I’m not so sure sir”. His next statement really amazed me, he said “I should I have printed the Google maps, it would have been helpful”. I was surprised, the reason being the man must be at least 80 years old and his understanding of Google and its technologies was something challening for me to comprehend. I asked him if he is a technology person, he said “NO”. The gentleman said he hardly knew anything about computers. He mentioned he was born in the days where a calculator and landline phone were called mysterious devices. He said “I just see my granddaughter using these things and she shows him how they work. Another bombshell he pulled out a navigator from his pocket and launched his favorite Google maps applications and told me how it helps him to get back home every day.

I am wondering Google penetration in people lives on day to day basis and how it is positively changing the world we live in. Google popularity in the internet world really amazes me. Google is not only for some twenty first century technology geeks but it is also a familiar name among people of all ages or should I say centuries, who believed that calculator was a mysterious device. With its ever-increasing share in the internet application space Google has been able to make life easy for people of all demographics. Applications like Picasa, Google maps, Google gadgets are blessings not only for tech savvy people but also for common citizens who just know the name “Google”. One thing seems to be sure & clearer, with its ever increasing popularity Google is here to stay and will be faster, better and bigger……..

 Mail this post

Technorati Tags: ,

 
 
 
 
Is print media dying because of internet? Is internet enemy or friend of  print media?

Yes, that’s the question somebody asks me other day. Well in my opinion it has never been a good time for print media to maximize their profit. Newspapers over the world have shown decrease in terms of advertisement revenue from past few years. However just blaming internet won’t help those news daily’s, they need to evolve from the primitive methods and look at alternative method of making content available to users. To be successful and make your content read and available to users, print media needs to move to alternative methods like news on mobile, RSS, dynamic websites, kiosk etc.

Is Internet a is a threat to print media? Is internet an enemy of friend? Let us know your thoughts….

 Mail this post

Technorati Tags:

Some of the Tcode related to Financial management

 

FGRP                                 Report Writer screen

FM12                                 View blocked documents by user

FST2                                  Insert language specific name for G/L account.

FST3                                  Display G/L account name.

KEA0                                 Maintain operating concern.

KEKE                                Activate CO-PA.

KEKK                               Assign operating concern.

KL04                                 Delete activity type.

KS04                                  Delete a cost centre.

KSH2                                 Change cost centre group – delete.

OBR2                                 Deletion program for customers, vendors, G/L accounts.

OKC5                                Cost element/cost element group deletion.

OKE1                                Delete transaction data.

OKE2                                Delete a profit centre.

OKI1                                 Determine Activity Number: Activity Types (Assignment of material number/service to activity type)

OMZ1                                Definition of partner roles.

OMZ2                                Language dependent key reassignment for partner roles

 Mail this post

Technorati Tags:

Remote server login

How do you connect to the remote server if you are working from the office for the client in remote place.


WAS web application server or ITS are generally used for this purpose. If you are sitting at your office with a server which is in the system and the other server is at the clients place you can generate IDOC, intermidiate documents which carry the data you want to transfer or the documents you want to transfer, these IDOC are interpretted by the system at the recieving end with the message class with which it is bound with. If you want to logon a system which is very distant..then remote login can be used this depends on the internet speed.

 Mail this post

Explain about roll area , Dispatcher, ABAP-Processor.

Roll area is nothing but memory allocated by work process. It holds the information needed by R/3 about programs execution such as value of the variables.

Dispatcher :All the requests that come from presentation server will be directed first to dispatcher. Further dispatcher sends this requests to work process on FIFO(First In and First Out) basis. Dispatcher recieves the request from client and assigns the request to one of the work process.

Roll area: Each workprocess works in a particular memory that memory is known as Role Area, which consists of User context and session data. ABAP- Processor :is an interpretor which can execute logic

 Mail this post

From Excel to ABAP – Is batch mode possible ?

DATA w_file TYPE string.
* Convert the file path into string
w_file = p_input.

* Internal Table should have same field sequence as EXL File.

CLEAR t_upload.
REFRESH t_upload.

* Call function to upload the data into internal table
CALL FUNCTION ‘GUI_UPLOAD’
EXPORTING
filename = w_file
filetype = ‘ASC’
has_field_separator = ‘X’
TABLES
data_tab = t_upload
EXCEPTIONS
file_open_error = 1
file_read_error = 2
no_batch = 3
gui_refuse_filetransfer = 4
invalid_type = 5
no_authority = 6
unknown_error = 7
bad_data_format = 8
header_not_allowed = 9
separator_not_allowed = 10
header_too_long = 11
unknown_dp_error = 12
access_denied = 13
dp_out_of_memory = 14
disk_full = 15
dp_timeout = 16
OTHERS = 17.
IF sy-subrc NE 0.
* MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
* WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4. ELSE.
* Delete the first row of heading from the uploaded table
DELETE t_upload INDEX 1.
ENDIF. ” IF sy-subrc EQ 0.

 Mail this post

About internal tables

About internal tables

An internal table is a run time instance. It get created when program starts execution. It get destroyed when program terminates. It has two different parts: HeaderLine(optional) and Body(Compulsory). Any value that comes to or goes from interanal table, that travels through headerline.

 Mail this post

Explain row type and line type concept

Explain row type and line type concept

Line type refers to the structure of an internal table,whereas row type is the actual part that contains the data and it refers to the table body.creating internal table using line type and row type concept is for reusability purpose.Line type and Row type are defined at DDIC LEVEL.

 Mail this post

 Page 1 of 9  1  2  3  4  5 » ...  Last »