Plz help me[need abap oo]

hi frnds,
i lose abap oo [siemens]materials. so now don't hav any oo material. if any hav abap objects materials [pdf format] pls send the link.... i need it immediately... i need ur help ... plz help me....

Hi this may be of some help.
OOPs ABAP uses Classes and Interfaces which uses Methods and events.
If you have Java skills it is advantage for you.
There are Local classes as well as Global Classes.
Local classes we can work in SE38 straight away.
But mostly it is better to use the Global classes.
Global Classes or Interfaces are to be created in SE24.
SAP already given some predefined classes and Interfaces.
This OOPS concepts very useful for writing BADI's also.
So first create a class in SE 24.
Define attributes, Methods for that class.
Define parameters for that Method.
You can define event handlers also to handle the messages.
After creation in each method write the code.
Methods are similar to ABAP PERFORM -FORM statements.
After the creation of CLass and methods come to SE38 and create the program.
In the program create a object type ref to that class and with the help of that Object call the methods of that Class and display the data.
Example:
REPORT sapmz_hf_alv_grid .
Type pool for icons - used in the toolbar
TYPE-POOLS: icon.
TABLES: zsflight.
To allow the declaration of o_event_receiver before the
lcl_event_receiver class is defined, decale it as deferred in the
start of the program
CLASS lcl_event_receiver DEFINITION DEFERRED.
G L O B A L I N T E R N A L T A B L E S
*DATA: gi_sflight TYPE STANDARD TABLE OF sflight.
To include a traffic light and/or color a line the structure of the
table must include fields for the traffic light and/or the color
TYPES: BEGIN OF st_sflight.
INCLUDE STRUCTURE zsflight.
Field for traffic light
TYPES: traffic_light TYPE c.
Field for line color
types: line_color(4) type c.
TYPES: END OF st_sflight.
TYPES: tt_sflight TYPE STANDARD TABLE OF st_sflight.
DATA: gi_sflight TYPE tt_sflight.
G L O B A L D A T A
DATA: ok_code LIKE sy-ucomm,
Work area for internal table
g_wa_sflight TYPE st_sflight,
ALV control: Layout structure
gs_layout TYPE lvc_s_layo.
Declare reference variables to the ALV grid and the container
DATA:
go_grid TYPE REF TO cl_gui_alv_grid,
go_custom_container TYPE REF TO cl_gui_custom_container,
o_event_receiver TYPE REF TO lcl_event_receiver.
DATA:
Work area for screen 200
g_screen200 LIKE zsflight.
Data for storing information about selected rows in the grid
DATA:
Internal table
gi_index_rows TYPE lvc_t_row,
Information about 1 row
g_selected_row LIKE lvc_s_row.
C L A S S E S
CLASS lcl_event_receiver DEFINITION.
PUBLIC SECTION.
METHODS:
handle_toolbar FOR EVENT toolbar OF cl_gui_alv_grid
IMPORTING
e_object e_interactive,
handle_user_command FOR EVENT user_command OF cl_gui_alv_grid
IMPORTING e_ucomm.
ENDCLASS.
CLASS lcl_event_receiver IMPLEMENTATION
CLASS lcl_event_receiver IMPLEMENTATION.
METHOD handle_toolbar.
Event handler method for event toolbar.
CONSTANTS:
Constants for button type
c_button_normal TYPE i VALUE 0,
c_menu_and_default_button TYPE i VALUE 1,
c_menu TYPE i VALUE 2,
c_separator TYPE i VALUE 3,
c_radio_button TYPE i VALUE 4,
c_checkbox TYPE i VALUE 5,
c_menu_entry TYPE i VALUE 6.
DATA:
ls_toolbar TYPE stb_button.
Append seperator to the normal toolbar
CLEAR ls_toolbar.
MOVE c_separator TO ls_toolbar-butn_type..
APPEND ls_toolbar TO e_object->mt_toolbar.
Append a new button that to the toolbar. Use E_OBJECT of
event toolbar. E_OBJECT is of type CL_ALV_EVENT_TOOLBAR_SET.
This class has one attribute MT_TOOLBAR which is of table type
TTB_BUTTON. The structure is STB_BUTTON
CLEAR ls_toolbar.
MOVE 'CHANGE' TO ls_toolbar-function.
MOVE icon_change TO ls_toolbar-icon.
MOVE 'Change flight' TO ls_toolbar-quickinfo.
MOVE 'Change' TO ls_toolbar-text.
MOVE ' ' TO ls_toolbar-disabled.
APPEND ls_toolbar TO e_object->mt_toolbar.
ENDMETHOD.
METHOD handle_user_command.
Handle own functions defined in the toolbar
CASE e_ucomm.
WHEN 'CHANGE'.
PERFORM change_flight.
LEAVE TO SCREEN 0.
ENDCASE.
ENDMETHOD.
ENDCLASS.
S T A R T - O F - S E L E C T I O N.
START-OF-SELECTION.
SET SCREEN '100'.
*& Module USER_COMMAND_0100 INPUT
MODULE user_command_0100 INPUT.
CASE ok_code.
WHEN 'EXIT'.
LEAVE TO SCREEN 0.
ENDCASE.
ENDMODULE. " USER_COMMAND_0100 INPUT
*& Module STATUS_0100 OUTPUT
MODULE status_0100 OUTPUT.
DATA:
For parameter IS_VARIANT that is sued to set up options for storing
the grid layout as a variant in method set_table_for_first_display
l_layout TYPE disvariant,
Utillity field
l_lines TYPE i.
After returning from screen 200 the line that was selected before
going to screen 200, should be selected again. The table gi_index_rows
was the output table from the GET_SELECTED_ROWS method in form
CHANGE_FLIGHT
DESCRIBE TABLE gi_index_rows LINES l_lines.
IF l_lines > 0.
CALL METHOD go_grid->set_selected_rows
EXPORTING
it_index_rows = gi_index_rows.
CALL METHOD cl_gui_cfw=>flush.
REFRESH gi_index_rows.
ENDIF.
Read data and create objects
IF go_custom_container IS INITIAL.
Read data from datbase table
PERFORM get_data.
Create objects for container and ALV grid
CREATE OBJECT go_custom_container
EXPORTING container_name = 'ALV_CONTAINER'.
CREATE OBJECT go_grid
EXPORTING
i_parent = go_custom_container.
Create object for event_receiver class
and set handlers
CREATE OBJECT o_event_receiver.
SET HANDLER o_event_receiver->handle_user_command FOR go_grid.
SET HANDLER o_event_receiver->handle_toolbar FOR go_grid.
Layout (Variant) for ALV grid
l_layout-report = sy-repid. "Layout fo report
Setup the grid layout using a variable of structure lvc_s_layo
Set grid title
gs_layout-grid_title = 'Flights'.
Selection mode - Single row without buttons
(This is the default mode
gs_layout-sel_mode = 'B'.
Name of the exception field (Traffic light field) and the color
field + set the exception and color field of the table
gs_layout-excp_fname = 'TRAFFIC_LIGHT'.
gs_layout-info_fname = 'LINE_COLOR'.
LOOP AT gi_sflight INTO g_wa_sflight.
IF g_wa_sflight-paymentsum < 100000.
Value of traffic light field
g_wa_sflight-traffic_light = '1'.
Value of color field:
C = Color, 6=Color 1=Intesified on, 0: Inverse display off
g_wa_sflight-line_color = 'C610'.
ELSEIF g_wa_sflight-paymentsum => 100000 AND
g_wa_sflight-paymentsum < 1000000.
g_wa_sflight-traffic_light = '2'.
ELSE.
g_wa_sflight-traffic_light = '3'.
ENDIF.
MODIFY gi_sflight FROM g_wa_sflight.
ENDLOOP.
Grid setup for first display
CALL METHOD go_grid->set_table_for_first_display
EXPORTING i_structure_name = 'SFLIGHT'
is_variant = l_layout
i_save = 'A'
is_layout = gs_layout
CHANGING it_outtab = gi_sflight.
*-- End of grid setup -
Raise event toolbar to show the modified toolbar
CALL METHOD go_grid->set_toolbar_interactive.
Set focus to the grid. This is not necessary in this
example as there is only one control on the screen
CALL METHOD cl_gui_control=>set_focus EXPORTING control = go_grid.
ENDIF.
ENDMODULE. " STATUS_0100 OUTPUT
*& Module USER_COMMAND_0200 INPUT
MODULE user_command_0200 INPUT.
CASE ok_code.
WHEN 'EXIT200'.
LEAVE TO SCREEN 100.
WHEN'SAVE'.
PERFORM save_changes.
ENDCASE.
ENDMODULE. " USER_COMMAND_0200 INPUT
*& Form get_data
FORM get_data.
Read data from table SFLIGHT
SELECT *
FROM zsflight
INTO TABLE gi_sflight.
ENDFORM. " load_data_into_grid
*& Form change_flight
Reads the contents of the selected row in the grid, ans transfers
the data to screen 200, where it can be changed and saved.
FORM change_flight.
DATA:l_lines TYPE i.
REFRESH gi_index_rows.
CLEAR g_selected_row.
Read index of selected rows
CALL METHOD go_grid->get_selected_rows
IMPORTING
et_index_rows = gi_index_rows.
Check if any row are selected at all. If not
table gi_index_rows will be empty
DESCRIBE TABLE gi_index_rows LINES l_lines.
IF l_lines = 0.
CALL FUNCTION 'POPUP_TO_DISPLAY_TEXT'
EXPORTING
textline1 = 'You must choose a line'.
EXIT.
ENDIF.
Read indexes of selected rows. In this example only one
row can be selected as we are using gs_layout-sel_mode = 'B',
so it is only ncessary to read the first entry in
table gi_index_rows
LOOP AT gi_index_rows INTO g_selected_row.
IF sy-tabix = 1.
READ TABLE gi_sflight INDEX g_selected_row-index INTO g_wa_sflight.
ENDIF.
ENDLOOP.
Transfer data from the selected row to screenm 200 and show
screen 200
CLEAR g_screen200.
MOVE-CORRESPONDING g_wa_sflight TO g_screen200.
LEAVE TO SCREEN '200'.
ENDFORM. " change_flight
*& Form save_changes
Changes made in screen 200 are written to the datbase table
zsflight, and to the grid table gi_sflight, and the grid is
updated with method refresh_table_display to display the changes
FORM save_changes.
DATA: l_traffic_light TYPE c.
Update traffic light field
Update database table
MODIFY zsflight FROM g_screen200.
Update grid table , traffic light field and color field.
Note that it is necessary to use structure g_wa_sflight
for the update, as the screen structure does not have a
traffic light field
MOVE-CORRESPONDING g_screen200 TO g_wa_sflight.
IF g_wa_sflight-paymentsum < 100000.
g_wa_sflight-traffic_light = '1'.
C = Color, 6=Color 1=Intesified on, 0: Inverse display off
g_wa_sflight-line_color = 'C610'.
ELSEIF g_wa_sflight-paymentsum => 100000 AND
g_wa_sflight-paymentsum < 1000000.
g_wa_sflight-traffic_light = '2'.
clear g_wa_sflight-line_color.
ELSE.
g_wa_sflight-traffic_light = '3'.
clear g_wa_sflight-line_color.
ENDIF.
MODIFY gi_sflight INDEX g_selected_row-index FROM g_wa_sflight.
Refresh grid
CALL METHOD go_grid->refresh_table_display.
CALL METHOD cl_gui_cfw=>flush.
LEAVE TO SCREEN '100'.
ENDFORM. " save_changes
chk this blog
/people/vijaybabu.dudla/blog/2006/07/21/topofpage-in-alv-using-clguialvgrid
with regards,
Hema SUndara.

Similar Messages

  • In the new mail app for OSX v10.7 Lion it seems I can only setup my gmail account as an "imap", when I need to set it up as "pop"... PLZ HELP I NEED MY MAIL TO WORK!!!

    In the new mail app for OSX v10.7 Lion it seems I can only setup my gmail account as an "imap", when I need to set it up as "pop"... PLZ HELP I NEED MY MAIL TO WORK!!!

    Go to System prefs
    Select Mail Contacts and Calendars
    Then select Other
    Then select "Add a Mail Account and click create
    Then go to google for the settings you need:
    First here for the settings online at gmail http://tinyurl.com/du3fu
    Then here for the setting in mail http://tinyurl.com/38fevm8
    These are instructions for Mail 4.0 but all of the necessary settings should be listed.

  • Plz help i need to build a flash gallery with thumbs

    plz help me i need to build a flash gallery with thumbs plz
    give me the code or the fla file ........ !

    You don't give a lot of information about your set-up but there are a couple ways to do this.
    You can run Open Directory on your OS X Server and bind that to your Active Directory forest. This will allow people to authenticate against your OD using their AD credentials. This will work (it's better/easier in 10.5 than 10.4) but will result in Kerberos ticket which you would need to integrate to your site's permissions. You might be able to use Service ACLs to only allow authenticated users to access a certain site or service and that would take care of the authentication and control for you - but would require a certain amount of server manipulation and ODAD interaction. From the tone of your question I'm guessing this is an answer beyond what you were looking for.
    Alternately you should be able to build a website that presents a dialogue and uses LDAP against the AD server. Almost all the examples of this are, of course, using MS specific tools and code like C# and .Net. But even to get this working would certainly programming (using PHP, Java or some other language) to handle the request and answer from the server and this will be beyond anything included in CS4. Depending on your resources maybe you could create the whole website except for the authentication and have someone code that for you. But it would need to be someone not from the MS world because they will probably want to use tools that are Windows specific.
    Lastly there is the web specific .htaccess method that you could use without programming, but as you anticipate it will require you to manage the file that has the name/password information in it and will not talk to AD for information. This is the easy and local way to do it because it cuts AD out of the picture, but that puts the burden of maintenance on you.
    I guess the answer is yes this is possible, but it is not easy or automatic.
    Good luck,
    =Tod

  • Help! Need Abap code in Bex for Customer Exit

    Hi,
    I am new to abap, i need help in creating variable type customer exit.
    i want to create a variable type customer exit the reqmnt is to create a variable that will derive quarter(0CALQUARTER) from FINANCIAL_CLOSING variable.
    Really appreciate if one can provide me the coding for this logic.
    Thanks.

    Hi Yaser,
    Check this below.
    http://scn.sap.com/thread/278890
    Regards.

  • PLZ PLZ PLZ HELP I NEED HELP DESPERATLY!!!!!!!!!!!!!!!!!!!!!!!!!!

    ok well my computer will read my ipod but it will not read it on itunes where it says sources...then i go to the edit section to see if i can change the way the sources are and it tells me that there is no ipod connection when my ipod is connected to my usb on my computer!!!!!!!!!!!!!!!!!!!!!!!!!!!
    HELP PLZ IM ABOUT TO RIP MY HAIR OUT
    GRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRR
    thank you
    breana

    Take a look at this article...
    http://docs.info.apple.com/article.html?artnum=93716

  • After Effects CS4 crash report (PLZ HELP I NEED IT WORKING DESPERATELY)

    Ok, I'll type the window EXACTLY (There's 2 errors I need to fix): -
    After Effects error: Crash in progress. Last logged message was:,7832.
    <ASL.ResourceUtils.GetLanguageIDFromRegistry> >0< Unable to
    obtain the User 'Language' registry key at: Software\Adobe\After
    Effects\9.0.3\ Defaulting to 'en_US'.
    After Effects can't continue: sorry, After Effects has crashed. See
    http://www.adobe.com/support/products/aftereffects.html for known
    issues. If you still can't resolve the issue, please contact Adobe
    Technical Support (2)
    (0::42)
    I'm using CS4 ONLY because I have a 32 bit Windows 8.1 computer which has Nvidia GFX card and an i5 processor.
    It has 4GB of RAM and that's all you need to know. Please help me guys. <3
    Thnx,

    What I meant was that it was running at all was a lucky happenstance.
    xX360noscopfazeopticXx wrote:
    Could Adobe actually see my personal data of my computer and just put an error message there to prevent me from using After Effects just because they realized that I have a Windows 8.1 32 bit computer?
    No. There is no way they could do that. Especially not in CS4.
    There are a lot of people in the same situation as you who pop on the forums with some frequency. Well, not usually trying to run such an old version - it's usually CS5 or CS5.5, but the issues are similar: odd error messages. Trying to run old versions of software on new, unsupported operating systems can be a fun exercise (like getting Linux installed on a potato). However, even if it does work for a while, the least little thing can cause it to foul up. Maybe Windows updated, maybe a background service that wasn't running before is running now, maybe something subtle changed in your registry or your display settings or any of a thousand different things. The bottom line is that something changed between when it was working and now.
    The error message seems to indicate some sort of issue in your registry. That is a tricky area to mess around in. Have you installed ANYTHING on your computer between when it was working and now? Added any browser extensions? Installed any codec packs? Downloaded any apps? Updated any software?
    By the way, it's not very expensive to bump up to a 64-bit version of your OS if you did want to use a modern version of After Effects. I mean, if you want to continue working with After Effects, it would be a lot easier to use an older OS or a newer AE than to keep trying to kludge it like we are.

  • Plz help me HR ABAP

    hi
    i have to collect data from pa0001 by useing emp number and get the value of stell(job)
    next from hrp1001 table i have to get data of sclass and sobid by entering sclass otype and stell
    next from hrp1000 table i have get value of stext by entering the values of otype and sobid
    plz tel me how can i solve this

    <b>Create  one function  Z module    with the  import  ansd export parameters  as below  and you logic is also  there  using   hrp1001 ...etc .</b>
    FUNCTION ZGILL_APPROVER.
    *"*"Local interface:
    *"  IMPORTING
    *"     REFERENCE(PERNR) TYPE  PERSNO
    *"  EXPORTING
    *"     REFERENCE(NAME) TYPE  PAD_CNAME
    *"  EXCEPTIONS
    *"      NO_DATA
    DATA: ls_sobid1 TYPE sobid,
          ls_sobid2 TYPE sobid,
          ls_sobid3 TYPE sobid,
          vorna type PAD_VORNA,
          nachn type PAD_NACHN.
      SELECT SINGLE sobid FROM hrp1001 INTO ls_sobid1
       WHERE otype = 'P'
       and   plvar = '01'
       AND   objid = pernr
       AND   endda >= sy-datum
       AND   begda <= sy-datum
       AND   rsign = 'B'
       AND   relat = '008'.
    IF sy-subrc EQ 0.
    SELECT SINGLE sobid FROM hrp1001 INTO ls_sobid2
       WHERE otype = 'S'
       and   plvar = '01'
       AND   objid = ls_sobid1
       AND   endda >= sy-datum
       AND   begda <= sy-datum
       AND   rsign = 'A'
       AND   relat = '002'.
    IF sy-subrc EQ 0.
    SELECT SINGLE sobid FROM hrp1001 INTO ls_sobid3
       WHERE otype = 'S'
       and   plvar = '01'
       AND   objid = ls_sobid2
       AND   endda >= sy-datum
       AND   begda <= sy-datum
       AND   rsign = 'A'
       AND   relat = '008'.
    IF sy-subrc EQ 0.
    SELECT SINGLE vorna nachn from pa0002 INTO (vorna , nachn)
       WHERE pernr = ls_sobid3
       AND   endda >= sy-datum
       AND   begda <= sy-datum.
    IF sy-subrc EQ 0.
    Concatenate vorna nachn into name separated by SPACE.
    condense name.
    else.
    Raise NO_DATA.
    endif.
    else.
    Raise NO_DATA.
    endif.
    else.
    Raise NO_DATA.
    endif.
    else.
    RAISE no_data.
    endif.
    ENDFUNCTION.
    reward  points if it is usefull ......
    Girish

  • Plz help i need urgent support on issue of my subs...

    I have been a paid skype user for over 12 Months and i have my Europe Extra for which i pay each month it says that i can have a free online number but before i signed up for this service i already had purchased an online number for 12 Months, which is now due to expire in a day.
    Please skype admin team tell me how can i use my online number offer for keeping this number, rather then paying extra money once more

    Use the web chat:
    Contact Customer Care
    Mylenium

  • My subscription not renewed. plz help

    My subscription renewal date was yesterday. but till now it has not been renewed. plz help. i need to make calls. . ..

    metty3 wrote:
    My subscription renewal date was yesterday. but till now it has not been renewed. plz help. i need to make calls. . ..
    I think you may need to contact customer service regarding that matter. 
    https://support.skype.com/en/faq/FA1170/how-can-i-contact-skype-customer-service
    IF YOU FOUND OUR POST USEFUL THEN PLEASE GIVE "KUDOS". IF IT HELPED TO FIX YOUR ISSUE PLEASE MARK IT AS A "SOLUTION" TO HELP OTHERS. THANKS!
    ALTERNATIVE SKYPE DOWNLOAD LINKS | HOW TO RECORD SKYPE VIDEO CALLS | HOW TO HANDLE SUSPICIOS CALLS AND MESSAGES

  • TS2326 my ios is 5.1.1 but still im facing to this issue, this is very annoying... plz help me

    my ios is 5.1.1 but still im facing to this issue, this is very annoying... plz help me

    You need to tell us what "this issue" is if you want help.

  • Abap code.........Plz help me

    Hi all,
    My requirement is
    1. Users will be using the file upload Tcode in BW ( This TCode access will be authorized to specifi users)
    2. ABAP Program need to place the file in the specified folder. Use the Z_FLATFILE_UPLOAD as a start. Copy to New program and work witht he New program
    3. The ABAP program should be able to sent Trigger event after placingt he file to start the Process Chain, in which The flat file should be able to load to the ODS.
    4. On Successful completion of the Process chain, the specific user group should be able to recive the email Message that the uploaded file has been loaded and avaible for reporting.
    The ABAP program should be able to handle the follwing:
    1. If the File Format is not correct the user should get an error message that the file is not in the expected format.
    2. Once the File upload complete, user should see the message that the file uploaded correctly.
    3. on Successful completion of the FileUpload, The program should trigger event.
    and the program Z_FLATFILE_UPLOAD is given below
    REPORT Z_FLATFILE_UPLOAD message-id zx .
    PARAMETERS: FILE_NM LIKE RLGRAP-FILENAME obligatory.
    PARAMETERS: P2 LIKE RLGRAP-FILENAME
    DEFAULT '/Userdata/IFIN/0557'.
    DATA: INRECORD_COUNT TYPE i,
    OUTRECORD_COUNT TYPE i.
    DATA : MASK(20) TYPE C VALUE ',. ,..'.
    DATA: BEGIN OF ITAB OCCURS 0,
    RECORD(3000),
    END OF ITAB.
    AT selection screen help and F4 statements
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR FILE_NM.
    CALL FUNCTION 'WS_FILENAME_GET'
    EXPORTING
    DEF_FILENAME = ' '
    DEF_PATH = FILE_NM
    MASK = MASK
    MODE = 'O'
    TITLE = 'File Select'
    IMPORTING
    FILENAME = FILE_NM
    EXCEPTIONS
    INV_WINSYS = 04
    NO_BATCH = 08
    SELECTION_CANCEL = 12
    SELECTION_ERROR = 16.
    IF FILE_NM = ' ' AND SY-SUBRC = 12.
    SET CURSOR FIELD 'FILE_NM'.
    MESSAGE I000(ZX) with 'File Selection cancelled.'
    'Please select a valid file to proceed'.
    ELSEIF SY-SUBRC NE 0.
    MESSAGE E000(ZX) WITH FILE_NM.
    EXIT.
    ENDIF.
    START-OF-SELECTION.
    CALL FUNCTION 'UPLOAD'
    EXPORTING
    FILENAME = FILE_NM
    TABLES
    DATA_TAB = ITAB.
    if sy-subrc <> 0.
    message i000(ZX) with 'Upload Failed'.
    LEAVE LIST-PROCESSING.
    endif.
    *editor-call for input_rec.
    OPEN DATASET P2 FOR output IN text mode encoding default.
    IF SY-SUBRC <> 0.
    message i000(ZX) with 'COULD NOT OPEN THE FILE'.
    LEAVE LIST-PROCESSING.
    ENDIF.
    INRECORD_COUNT = 0.
    OUTRECORD_COUNT = 0.
    LOOP AT ITAB. .
    INRECORD_COUNT = INRECORD_COUNT + 1.
    TRANSFER ITAB-RECORD TO P2.
    OUTRECORD_COUNT = OUTRECORD_COUNT + 1.
    ENDLOOP. "itab
    END-OF-SELECTION.
    CLOSE DATASET P2.
    IF SY-SUBRC <> 0.
    message e000(ZX) with 'COULD NOT OPEN THE FILE'.
    ENDIF.
    WRITE: / '# of records read ', INRECORD_COUNT,
    / '# of records transfered', OUTRECORD_COUNT.
    WRITE:/ 'upload filename', FILE_NM.
    WRITE:/ ' aix filename', P2.
    after this code i need to trigger my event can any onle tell me the steps after this program and the code also please
    thanks in advance
    Sri
    points will be assigned

    Hey,
    This forum is used to get some ideas/tips when you stcuk at some point during the development. This is not a place to send your work & expecting somebody to do it for you.
    see similar funny thread
    plz help me

  • HT1414 C apple i need to know few things,first of all i shall tell my scenario. I got an iphone 3gs from my uncle in US. I m at india k. well , in that iphone it showing activation screen and trying to activate. not more than that..plz help!

    C Apple, i need to know few things,first of all i shall tell my scenario. I got an iphone 3gs from my uncle in US..after long waiting. I m from south india, living at God's country called Kerala k. well , in that iphone it showing activation screen and trying to activate. not more than that..plz help!
    means.. in simple words, it is trying to activate and all( searching wifi,, taking few minutes..again searching...if it couldnt find any wifi - telling .. try connect using itunes an all)...well any way. finally I try connect to a wifi network, with full speed...3mbps..from Ravi's internet cafe in downtown.
    All after Im getting the below message from that white candy box!( thats all I can use now, because, in my dreams iPhone is something great,  that mankind ever seen....but this really disappointed me......im simpling blinking!!(same with itunes too)
    ""Your iphone could not be activated because the activation server is temporarily unavailable. try connecting your iphone to itunes to activate it, or try again in a couple of minutes.
    If this problem persists, contact apple support at apple.com/support""
    EVERYDAY .EVERTIME.. I C this message and sleep....no use.....and i use to charge that 'white candy box' to c this message!
    I try searching internet and all for solutn...but no one knw about it..but there are...some one me abt method called jailbreaking ..rednw..white snw ..ultrasnw and all...I dnt knw why it is so complicated to troublesht...apple is suppose to be simple and friendly.
    C why u manufacturing these stuffz like this, if does'nt serve the any of its purpose ....or useable to any of its features atleast....C i wont be that disapppointed, if u put an option to playbck music or video during activation and all...
    If you are responsible for manfacturing such unuseable thing, then its ur responsible to destroy it too.....
    anyway now everyone knws that ..I have an apple iphone with me, but that doest make me proud at all...
    Finally I have only few questions to ask...
    1 will it work with my vodafone sim in kerala?
    2 is any way , i can hear any music out frm it?
    3 will i become a proud iPhone user?
    I am already fedup with asking questions..begging for an solution.....
    I hope so you can help to figure it out, without any complications....thank u!

    It was not legitimately unlocked by the carrier it was originally locked to. ONLY the carrier it is locked to can authorize unlocking it.
    In order to allow it to be used on a different carrier, the phone was hacked or jailbroken. An unauthorized modification was made to the phone. That modification has damaged the phone. You can not get support for it here or from Apple.

  • I was updating my iphone to ios 8 and it went into recovery mode. i went onto itunes to fix it and it said i needed to update my phone. when i clicked on it it said it would take 500  hrs and kept going on, then it would crash. plz help. :(

    yesterday i tried updating to Ios 8. i new there were going to be some problems but i decided to do it. i started the update and less than a half hour into it my phone completely crashed.it went into recovery mode so i connected it to iTunes. i hit restore and update . it gave me and estimated time that kept going up. finally when it got to 800 hours it stopped and said an error occurred. i tried it again and the same error occurred. i am very disappointed in this because i greatly need my phone for school and other important things. i wasn't gonna wait that time anyway. i would like to know if there is anyway i don't have to update, get out of this screen without waiting forever, speed up the time, or get my computer to not crash when it gets to so many hours. (i have windows) plz help me out asap!!!

    I have experienced a similar error with the iPhone 4S.  The new version of iTunes will not let me restore the phone, it must be updated and nothing appears to be happening.  Suffice it to say I am not amused.  Apple needs to work this out - I had trouble updating to 8.0.2 as well.

  • HT204382 music files that I'm trying to transfer from my external hard drive!!! i really need help! i am getting very frustrated. plz help me thank you

    hi. i am trying to transfer my old pictures and music files from my external drive into my new laptop.and first of all only a coupleof my foldersare coming up.and even those few files/folders wont play ....i am new to mac.i REALLY need help. my old pictures and music are real important to me.plz help me.

    IS the external HD from another Mac or a PC?

  • A i want to do sap abap certification plz help me what is process

    hi ,
         i am working with one MNC as an abap consultant, and i want to do certification ,and i want to know how exam and syllabus , fee , and model papers.if any one have info plz help.
    thanking u ,

    Hi Kumar,
    I wish al the best for you....have a look @ this link it will provide you smple details about certification.....
    http://www.sapprofessionals.org/files/ABAP%20CERTIFICATION%20QUESTIONS.doc
    please check the following site which offers some example questions.
    http://www.sapdomain.com/certification.php
    certification ..
    /message/213564#213564 [original link is broken]
    /message/514469#514469 [original link is broken]
    /message/1315746#1315746 [original link is broken]
    /message/1736299#1736299 [original link is broken]
    /message/1736299#1736299 [original link is broken]
    /message/257122#257122 [original link is broken]
    /message/130164#130164 [original link is broken]
    This is link from SAP about ABAP certification
    http://www50.sap.com/useducation/certification/curriculum.asp?rid=351
    http://www.sapteched.com/india/confactivities/certexam.htm
    http://www50.sap.com/useducation/certification/curriculum.asp?rid=351
    There is a pdf called ABAP certification.
    http://www.esnips.com/web/SAP-ABAP?
    You can try www.sapdoamin.com
    They provide Certification simulation questions which are very useful and a must try site.
    Some links which might help
    /message/213564#213564 [original link is broken]
    /message/514469#514469 [original link is broken]
    /message/1315746#1315746 [original link is broken]
    /message/1736299#1736299 [original link is broken]
    /message/1736299#1736299 [original link is broken]
    /message/257122#257122 [original link is broken]
    /message/130164#130164 [original link is broken]
    http://www.sapdomain.com/certification.php
    Hope these links will help you..
    Thanks'
    Sakthi.
    *Rewards if usefull*

Maybe you are looking for

  • SQL  LOADER CONTROL FILE

    hi, Can one call procedures and functions inside a control file in SQL Loader ...alternatively how can one use case inside a control file ... How to implement the the following code in a control file: SELECT CASE WHEN INSTR(UPPER(returnname),'SCHEDUL

  • Unable to install Adobe because yellow bar does not display

    When installing Adobe, both the installation process and Firefox Help say to look for a yellow bar at the top and an 'Edit Options' box. But no yellow bar appears so I can't proceed with installation. == URL of affected sites == http://www.adobe.com/

  • Oracle WebDB Queries

    Hi While using WebDB I have some queries.Can anyone help.The queries are : 1. Is there any way to know the IP address of the user (not in the listener host) from where the URL is executed. The table wwv_activity_log, wwv_activity_log1$, wwv_activity_

  • Aperture 2.0 won't use my "Aperture Trial Library"

    For some reason, Aperture 2.0 is suddenly now asking me each time I open it if I want to create a NEW trial library. I can't get it to open the Trial library I already made with it! At this point, I'm stuck. I've got an "Aperture Trial Library" that

  • Delete Existing request in Cube of two years before data using ABAP

    Hi, I want to automize the process of deleting cube data which is Two years old in the process chain. I know this could be done in process type of delete overlapping request . There we  Should write ABAP code to acheive the same. I have seen the edit