HI I have an written in tcs in abap plz any one send me questons wht they ?

Hi
I have a written in tcs for abap, Plz any one can help by sending that question
THis is very help ful in my life,,,
thanking U

<b>Hiii Here are some
CERTIFIED Questions...</b>
<b>ABAP CERTIFICATION QUESTIONS</b>
1. If a table does not have MANDT as part of the primary key, it is ____.
A: A structure
B: Invalid
C: Client-independent
D: Not mandatory
2. In regard to CALL, which of the following is NOT a valid statement?
A: CALL FUNCTION
B: CALL SCREEN
C: CALL TRANSACTION
D: CALL PROGRAM
3. Name the type of ABAP Dictionary table that has these characteristics:
Same number of fields as the database table
Same name as database table
Maps 1:1 to database table
A: Pooled
B: Cluster
C: Transparent
D: View
4. An event starts with an event keyword and ends with:
A: Program execution.
B: END-OF-EVENT.
C: Another event keyword.
D: END-EVENT.
5. What is the system field for the current date?
A: SY-DATUM
B: SY-DATE
C: SY-DATID
D: SY-SDATE
6. The following code indicates:
SELECT fld1 fld2 FROM tab1 APPENDING TABLE itab
WHERE fld1 IN sfld1.
A: Add rows to the existing rows of itab.
B: Add rows to itab after first deleting any existing rows of itab.
C: Select rows from tab1 for matching itab entries.
D: Nothing, this is a syntax error.
7. You may change the following data object as shown below so that it equals 3.14.
CONSTANTS: PI type P decimals 2 value '3.1'.
PI = '3.14'.
A: True
B: False
8. The SAP service that ensures data integrity by handling locking is called:
A: Update
B: Dialog
C: Enqueue/Dequeue
D: Spool
9. Which of these sentences most accurately describes the GET VBAK LATE. event?
A: This event is processed before the second time the GET VBAK event is processed.
B: This event is processed after all occurrences of the GET VBAK event are completed.
C: This event will only be processed after the user has selected a basic list row.
D: This event is only processed if no records are selected from table VBAK.
10. Which of the following is not a true statement in regard to a hashed internal table type?
A: Its key must always be UNIQUE.
B: May only be accessed by its key.
C: Response time for accessing a row depends on the number of entries in the table.
D: Declared using internal table type HASHED TABLE.
11. TO include database-specific SQL statements within an ABAP program, code them between:
A: NATIVE SQL_ENDNATIVE.
B: DB SQL_ENDDB.
C: SELECT_ENDSELECT.
D: EXEC SQL_ENDEXEC.
12. To measure how long a block of code runs, use the ABAP statement:
A: GET TIME .
B: SET TIME FIELD .
C: GET RUN TIME FIELD .
D: SET CURSOR FIELD .
13. When a secondary list is being processed, the data of the basic list is available by default.
A: True
B: False
14. Given:
DATA: BEGIN OF itab OCCURS 10,
qty type I,
END OF itab.
DO 25 TIMES. itab-qty = sy-index. APPEND itab. ENDDO.
LOOP AT itab WHERE qty > 10.
WRITE: /1 itab-qty.
ENDLOOP.
This will result in:
A: Output of only those itab rows with a qty field less than 10
B: Output of the first 10 itab rows with a qty field greater than 10
C: A syntax error
D: None of the above
15. After a DESCRIBE TABLE statement SY-TFILL will contain
A: The number of rows in the internal table.
B: The current OCCURS value.
C: Zero, if the table contains one or more rows.
D: The length of the internal table row structure.
16. You may declare your own internal table type using the TYPES keyword.
A: True
B: False
17. After adding rows to an internal table with COLLECT, you should avoid adding more rows with APPEND.
A: True
B: False
18. Which of the following is not a component of control break processing when looping at an internal table?
A: AT START OF
B: AT FIRST
C: AT LAST
D: AT NEW
19. A dictionary table is made available for use within an ABAP program via the TABLES statement.
A: True
B: False
20. Which of the following would be best for hiding further selection criteria until a function is chosen?
A: AT NEW SELECTION-SCREEN
B: SELECTION-SCREEN AT LINE-SELECTION
C: SUBMIT SELECTION-SCREEN
D: CALL SELECTION-SCREEN
21. What must you code in the flow logic to prevent a module from being called unless a field contains a non-initial value (as determined by its data type)?
A: ON INPUT
B: CHAIN
C: FIELD
D: ON REQUEST
22. The AT USER-COMMAND event is triggered by functions defined in the ____.
A: screen painter
B: ABAP report
C: menu painter status
D: ABAP Dictionary
23. In regard to a function group, which of the following is NOT a true statement?
A: Combines similar function modules.
B: Shares global data with all its function modules.
C: Exists within the ABAP workbench as an include program.
D: Shares subroutines with all its function modules.
24. In regard to SET PF-STATUS, you can deactivate unwanted function codes by using ____.
A: EXCLUDING
B: IMMEDIATELY
C: WITHOUT
D: HIDE
25. In regard to data transported in PAI when the FIELD statement is used, which of the following is NOT a true statement?
A: Fields in PBO are transported directly from PAI.
B: Fields with identical names are transported to the ABAP side.
C: Fields not defined in FIELD statements are transported first.
D: Fields that are defined in FIELD statements are transported when their corresponding module is called.
26. The order in which an event appears in the ABAP code determines when the event is processed.
A: True
B: False
27. A field declared as type T has the following internal representation:
A: SSMMHH
B: HHMMSS
C: MMHHSS
D: HHSSMM
28. Which of the following is NOT a component of the default standard ABAP report header?
A: Date and Time
B: List title
C: Page number
D: Underline
29. Assuming a pushbutton with function code 'FUNC' is available in the toolbar of a list report, what event is processed when the button is clicked?
A: AT USER-COMMAND.
B: AT PFn.
C: AT SELECTION-SCREEN.
D: END-OF-SELECTION.
30. In regard to field selection, what option of the SELECT statement is required?
A: FOR ALL ENTRIES
B: WHERE
C: INTO
D: MOVE-CORRESPONDING
31. The following program outputs what?
report zjgtest1
write: /1 'Ready_'.
PARAMETER: test.
INITIALIZATION.
write: /1 'Set_'.
START-OF-SELECTION.
write: /1 'GO!!'.
A: Set_ GO!! (each on its own line)
B: Set_ Ready_ GO!! (all on their own lines)
C: Ready_ GO!! (each on its own line)
D: Ready_ Set_ GO!! (all on their own lines)
32. To declare a selection criterion that does not appear on the selection screen, use:
A: NO-DISPLAY
B: INVISIBLE
C: MODIF ID
D: OBLIGATORY
33. An internal table that is nested within another internal table should not contain a header line.
A: True
B: False
34. What is output by the following code?
DATA: BEGIN OF itab OCCURS 0, letter type c, END OF itab.
itab-letter = 'A'. APPEND itab. itab-letter = 'B'. APPEND itab.
itab-letter = 'C'. APPEND itab. itab-letter = 'D'. APPEND itab.
LOOP AT itab.
SY-TABIX = 2.
WRITE itab-letter.
EXIT.
ENDLOOP.
A: A
B: A B C D
C: B
D: B C D
35. To select all database entries for a certain WHERE clause into an internal table in one step, use
A: SELECT_INTO TABLE itab_
B: SELECT_INTO itab_
C: SELECT_APPENDING itab
D: SELECT_itab_
36. After a successful SELECT statement, what does SY-SUBRC equal?
A: 0
B: 4
C: 8
D: Null
37. This selection screen syntax forces the user to input a value:
A: REQUIRED-ENTRY
B: OBLIGATORY
C: DEFAULT
D: SELECTION-SCREEN EXCLUDE
38. If the following code results in a syntax error, the remedy is:
DATA: itab TYPE SORTED TABLE OF rec_type WITH UNIQUE KEY field1
WITH HEADER LINE.
itab-field1 = 'Company'. itab-field2 = '1234'. INSERT TABLE itab.
itab-field1 = 'Bank'. itab-field2 = 'ABC'. INSERT TABLE itab.
SORT itab.
LOOP AT itab.
write: /1 itab-field1, itab-field2.
ENDLOOP.
A: There is no syntax error here
B: Remove the SORT statement
C: Change INSERT to APPEND
D: Add a WHERE clause to the loop
39. If this code results in an error, the remedy is:
SELECT fld1 fld2 FROM tab1 WHERE fld3 = pfld3.
WRITE: /1 tab1-fld1, tab1-fld2.
ENDSELECT.
A: Add a SY-SUBRC check.
B: Change the WHERE clause to use fld1 or fld2.
C: Remove the /1 from the WRITE statement.
D: Add INTO (tab1-fld1, tab1-fld2).
40. When modifying an internal table within LOOP AT itab. _ ENDLOOP. you must include an index number.
A: True
B: False
41. To allow the user to enter values on the screen for a list field, use:
A: OPEN LINE.
B: SET CURSOR FIELD.
C: WRITE fld AS INPUT FIELD.
D: FORMAT INPUT ON.
42. Before a function module may be tested, it must first be:
A: Linked
B: Authorized
C: Released
D: Active
43. To include a field on your screen that is not in the ABAP Dictionary, which include program should contain the data declaration for the field?
A: PBO module include program
B: TOP include program
C: PAI module include program
D: Subroutine include program
44. If a table contains many duplicate values for a field, minimize the number of records returned by using this SELECT statement addition.
A: MIN
B: ORDER BY
C: DISTINCT
D: DELETE
45. The system internal table used for dynamic screen modification is named:
A: ITAB
B: SCREEN
C: MODTAB
D: SMOD
46. Within the source code of a function module, errors are handled via the keyword:
A: EXCEPTION
B: RAISE
C: STOP
D: ABEND
47. Which system field contains the contents of a selected line?
A: SY-CUCOL
B: SY-LILLI
C: SY-CUROW
D: SY-LISEL
48. The following statement writes what type of data object?
WRITE: /1 'Total Amount:'.
A: Text literal
B: Text variable
C: In-code comment
D: Text integer
49. For the code below, second_field is of what data type?
DATA: first_field type P, second_field like first_field.
A: P
B: C
C: N
D: D
50. Which of the following describes the internal representation of a type D data object?
A: DDMMYYYY
B: YYYYDDMM
C: MMDDYYYY
D: YYYYMMDD
51. A BDC program is used for all of the following except:
A: Downloading data to a local file
B: Data interfaces between SAP and external systems
C: Initial data transfer
D: Entering a large amount of data
52. In regard to PERFORM, which of the following is NOT a true statement?
A: May be used within a subroutine.
B: Requires actual parameters.
C: Recursive calls are allowed in ABAP.
D: Can call a subroutine in another program.
53. What is the transaction code for the ABAP Editor?
A: SE11
B: SE38
C: SE36
D: SE16
54. In regard to HIDE, which of the following is NOT a true statement?
A: Saves the contents of variables in relation to a list line's row number.
B: The hidden variables must be output on a list line.
C: The HIDE area is retrieved when using the READ LINE statement.
D: The HIDE area is retrieved when an interactive event is triggered.
55. Database locks are sufficient in a multi-user environment.
A: True
B: False
56. The complete technical definition of a table field is determined by the field's:
A: Domain
B: Field name
C: Data type
D: Data element
57. In regard to LEAVE, which of the following is NOT a true statement?
A: May be used to return immediately to a calling program.
B: May be used to stop the current loop pass and get the next.
C: May be used to start a new transaction.
D: May be used to go to the next screen.
58. The following code indicates:
SELECT fld6 fld3 fld2 fld1 FROM tab1 INTO CORRESPONDING FIELDS OF TABLE itab
WHERE fld3 = pfld3.
A: The order of the fields in itab does not matter.
B: Fill the header line of itab, but not the body.
C: Table itab can only contain fields also in table tab1.
D: None of the above.
59. The ABAP statement below indicates that the program should continue with the next line of code if the internal table itab:
CHECK NOT itab[] IS INITIAL.
A: Contains no rows
B: Contains at least one row
C: Has a header line
D: Has an empty header line
60. What will be output by the following code?
DATA: BEGIN OF itab OCCURS 0, fval type i, END OF itab.
itab-fval = 1. APPEND itab.
itab-fval = 2. APPEND itab.
FREE itab.
WRITE: /1 itab-fval.
A: 2
B: 0
C: blank
D: 1
61. To allow the user to enter a range of values on a selection screen, use the ABAP keyword:
A: DATA.
B: RANGES.
C: PARAMETERS.
D: SELECT-OPTIONS.
62. If an internal table is declared without a header line, what else must you declare to work with the table's rows?
A: Another internal table with a header line.
B: A work area with the same structure as the internal table.
C: An internal table type using the TYPES statement.
D: A PARAMETER.
63. Assuming an internal table contains 2000 entries, how many entries will it have after the following line of code is executed?
DELETE itab FROM 1500 TO 1700.
A: This is a syntax error.
B: 1801
C: 1800
D: 1799
64. To remove lines from a database table, use ____.
A: UPDATE
B: MODIFY
C: ERASE
D: DELETE
65. All of the following may be performed using SET CURSOR except:
A: Move the cursor to a specific field on a list.
B: Move the cursor to a specific list line.
C: Move the cursor to a specific pushbutton, activating that function.
D: Move the cursor to a specific row and column on a list.
66. When is it optional to pass an actual parameter to a required formal parameter of a function module?
A: The actual parameter is type C.
B: The formal parameter contains a default value.
C: The formal parameter's \"Reference\" attribute is turned on.
D: It is never optional.
67. Coding two INITIALIZATION events will cause a syntax error.
A: True
B: False
68. Adding a COMMIT WORK statement between SELECT_ENDSELECT is a good method for improving performance.
A: True
B: False
69. To save information on a list line for use after the line is selected, use this keyword.
A: APPEND
B: EXPORT
C: WRITE
D: HIDE
70. To bypass automatic field input checks, include this in PAI.
A: AT EXIT-COMMAND
B: ON INPUT
C: ON REQUEST
D: LEAVE TO SCREEN 0.
71. Within a function module's source code, if the MESSAGE_RAISING statement is executed, all of the following system fields are filled automatically except:
A: SY-MSGTY
B: SY-MSGNO
C: SY-MSGV1
D: SY-MSGWA
72. The following code indicates:
REPORT ZLISTTST.
START-OF-SELECTION.
WRITE: text-001.
FORMAT HOTSPOT ON.
WRITE: text-002.
FORMAT HOTSPOT OFF.
AT LINE-SELECTION.
WRITE / text-003.
A: Text-002 may not be selected.
B: The value of text-002 is stored in a special memory area.
C: Text-002 may be clicked once to trigger the output of text-003.
D: None of the above.
73. The ____ type of ABAP Dictionary view consists of one or more transparent tables and may be accessed by an ABAP program using Open SQL.
A: Database view
B: Projection view
C: Help view
D: Entity view
74. A concrete field is associated with a field-symbol via ABAP keyword
A: MOVE
B: WRITE
C: ASSIGN
D: VALUE
75. The output for the following code will be:
report zabaprg.
DATA: char_field type C.
char_field = 'ABAP data'.
WRITE char_field.
A: ABAP data
B: A
C: Nothing, there is a syntax error
D: None of the above
76. Page footers are coded in the event:
A: TOP-OF-PAGE.
B: END-OF-SELECTION.
C: NEW-PAGE.
D: END-OF-PAGE.
77. The event AT SELECTION-SCREEN OUTPUT. occurs before the selection screen is displayed and is the best event for assigning default values to selection criteria.
A: True
B: False
78. The TABLES statement declares a data object.
A: True
B: False
79. Assuming tab1-fld7 is not a key field, how can you prevent reading all the table rows?
SELECT fld1 fld2 fld3 FROM tab1 INTO (fld4, fld5, fld6)
WHERE fld7 = pfld7.
WRITE: /1 fld4, fld5, fld6.
ENDSELECT.
A: Take fld7 out of the WHERE clause.
B: Create an index in the ABAP Dictionary for tab1-fld7.
C: Use INTO TABLE instead of just INTO.
D: Take the WRITE statement out of the SELECT_ENDSELECT.
80. Which of the following is NOT a required attribute when creating an ABAP program?
A: Application
B: Title
C: Status
D: Type
81. When creating a transparent table in the ABAP Dictionary, which step automatically creates the table in the underlying database?
A: Adding technical settings to the table
B: Checking the table syntax
C: Saving the table
D: Activating the table
82. Within the ABAP program attributes, Type = 1 represents:
A: INCLUDE program
B: Online program
C: Module pool
D: Function group
E: Subroutine pool
83. If this code results in an error, the remedy is:
SELECT fld1 SUM( fld1 ) FROM tab1 INTO_
A: Remove the spaces from SUM( fld1 ).
B: Move SUM( fld1 ) before fld1.
C: Add GROUP BY f1.
D: Change to SUM( DISTINCT f1 ).
84. Which keyword adds rows to an internal table while accumulating numeric values?
A: INSERT
B: APPEND
C: COLLECT
D: GROUP
85. Assuming itab has a header line, what will be output by the following code?
READ TABLE itab INDEX 3 TRANSPORTING field1.
WRITE: /1 itab-field1, itab-field2.
A: The contents of the third row's itab-field1.
B: The contents of the third row's itab-field1 and itab-field2.
C: The contents of the third row's itab-field2.
D: Nothing.
86. The following code indicates:
SELECTION-SCREEN BEGIN OF BLOCK B1.
PARAMETERS: myparam(10) type C,
Myparam2(10) type N,
SELECTION-SCREEN END OF BLOCK.
A: Draw a box around myparam and myparam2 on the selection screen.
B: Allow myparam and myparam2 to be ready for input during an error dialog.
C: Do not display myparam and myparam2 on the selection screen.
D: Display myparam and myparam2 only if both fields have default values.
87. Which statement will sort the data of an internal table with fields FRUIT, QTY, and PRICE so that it appears as follows?
FRUIT QTY PRICE
Apples 12 22.50
Apples 9 18.25
Oranges 15 17.35
Bananas 20 10.20
Bananas 15 6.89
Bananas 5 2.75
A: SORT itab DESCENDING BY QTY PRICE.
B: SORT itab BY PRICE FRUIT.
C: SORT itab.
D: SORT itab BY PRICE DESCENDING.
88. Which keyword adds a line anywhere within an internal table?
A: APPEND
B: MODIFY
C: ADD
D: INSERT
89. To read a single line of an internal table, use the following:
A: LOOP AT itab. _ ENDLOOP.
B: READ itab.
C: SELECT SINGLE * FROM itab.
D: READ TABLE itab.
90. Which Open SQL statement should not be used with cluster databases?
A: UPDATE
B: MODIFY
C: DELETE
D: INSERT
91. To include a field on your screen that is not in the ABAP Dictionary, which include program should contain the data declaration for the field?
A: PBO module include program
B: TOP include program
C: PAI module include program
D: Subroutine include program
92. This flow logic statement is used to make multiple fields open for input after an error or warning message.
A: GROUP
B: FIELD-GROUP
C: CHAIN
D: LOOP AT SCREEN
93. Given:
PERFORM subroutine USING var.
The var field is known as what type of parameter?
A: Formal
B: Actual
C: Static
D: Value
<b><u>Here are some answers...</u></b>
1 - C
2-D
3-
4-C
5-A
6-A
7-B
8-C
9-
10-C
11-D
13-B
14-D
15-A
16-A
17-
18-A
19-A
20-
21-
22-
23-D
24-A
25-
26-B
27-B
28-A
29-A
30-C
31-C
32-A
33-A
34-A
35-A
36-A
37-A
38-
39-D
40-
41-D
42-
43-A
44-C
45-B
46-B
47-D
48-A
49-A
50-D
51-A
52-B
93rd is ACTUAL parameters
<b>
Reward points if helpful...
sai ramesh</b>

Similar Messages

  • HI I have an written in tcs in abap plz any one send me model papers ?

    Hi I Having a tcs writen exams in abap so plz any one send me tcs model paper of sap abap

    You can have a look at:
    http://www.****************/InterviewQ/interviewQ.htm
    There are over 300+ questions available here.
    Also, you can use the search option in the forums for more information regarding this.

  • Hei. I updated my iphone 4 to the new IOs 6, seems like I have lost all my contacts... Any one who knows what I can do? Please ;-)

    Hei. I updated my iphone 4 to the new IOs 6, seems like I have lost all my contacts... Any one who knows what I can do? Please ;-)

    Everything is Sorted!
    The release of iTunes 11.0.2 and iOS 6.1.2 for my iPhone 4, seems to have sorted everything. I can now sync music, films and photos between my MacBook and my phone.
    I was dubious about blindly doing the updates but decided they couldn't really mess up any further functionality so I went for it and it's sorted now.
    Look in to, and take the gamble, it's up to you.

  • You but should be when I have scurrty cood can not close the I phone should be when I need close phone I but scurty cood for can I close my phone it is biter for can't any one close phone directly  When I have program for fined my I phone when any one clo

    you but should be when I have scurrty cood can not close the I phone should be when I need close phone I but scurty cood for can I close my phone it is biter for can't any one close phone directly
    When I have program for fined my I phone when any one close phone no have internet can't find my phone agine

    It is biter for any thief take my phone can't close my phone when he close my phone can't found agine because I open 3G when thife close my phone it is finsh can't yousing program for find my I phone
    Plz back to think my point it is biter for can't lose phone
    Should be when I need close the iPhone when I have scurty cood should be when I close I but scurty cood agine
    Thank  you very mutsh

  • I have used Final Cut Pro 7 for about a year. Two weeks ago when I tried to open it, it opened for 15 seconds and then the icon disappeared. I have tried to reinstall and it didnt help. any one has similar case or can help?

    I have used Final Cut Pro 7 for about a year. Two weeks ago when I tried to open it, it opened for 15 seconds and then the icon disappeared. I have tried to reinstall and it didnt help. any one has similar case or can help?

    Please post your problem in the Final Cut Studio (Final Cut Pro 7) forum:
    https://discussions.apple.com/community/professional_applications/final_cut_stud io?view=discussions
    You'll get the help you need in that forum.

  • HT204053 my 2 sons have iPods and I have them connected to my apple id but everytime I send a text or they download an app, we all get it on all 3 devices.  How do I separate their stuff from mine?

    I got my 2 sons ipod touches for christmas and used my apple Id thinking I could have more control over what they download, but what happens is that everytime I do something on my iphone or they do something on thier ipods, we all get it on all 3 devices.  That includes my text messages and the many apps that they download.  How do I separate thier activity and mine while still having the ability to control what they do on thier ipods???

    For Messages they will each need their own iCloud accounts. You should also enable Restrictions in Settings > General > Restrictions and disable auto-download on the other devices.

  • I am looking for a doc station to place in the back of my computer so I don't have to keep moving my computer.  Does any one know where I can find one?

    I am looking for a usb/station (I don't know what they officaly call it) to plug into the back of my computer so that I don't have to continually move my computer in order to plug in my devices.  Don't know where to locate this device in order to buy, any help would be appreciated.

    Google for a USB Hub, there are thousands.

  • HT3180 I Have No Power or no red light, has any one else had this problem.

    I have no power or no red light, has anyone else had this problem?

    I have noted in several posts as have a few of the others here,, Bob Timmons being one who has tested it, that the new one was no better than the old ones. I bought a new AEBS 5th Gen to test against all my old TC's up to Gen 3.. IMHO they are all about the same.. and my old Thomson G wireless router beats them handsomely at the other end of the house. ie the range is to be frank, pathetic. I don't have a Mac laptop to test with.. so just concluded it needs the exact match to get results like anandtech article..
    I would do the following.
    1. Download and use 5.6 utility.. you are lucky you are still on Lion as ML no longer can use v5 utility.
    http://support.apple.com/kb/DL1482
    2. Set wireless names to short, no spaces, pure alphanumeric. Set a different name to 5ghz. Its range is always short.. so don't expect too much. Make sure the output is set to 100%.. and the region is correct.
    3. Lock the wireless channel for 2.4ghz.. test the available channels.. in Nepal I have no idea what is allowed.. but 1, 6, 11 are the main non-overlapping channels for most of the world. Power output maybe different though and the TP-Link might be set to higher output country.. apple do not allow that. Check what country the tp-link is set to.
    4. The location of the TC must be as good as possible.. The antennas are around the 3 sides but the most important is in front.. try to place the TC so the laptop is facing the front of the TC, with nothing in between.
    I am pretty sure you are never going to get the output any higher than it is now.. I still use the old wireless G Thomson signal in the other end of the house. And even running 3 TC at once (when I am repairing power supplies.. makes no difference.. they are all invisible).
    Either return the TC as unsuitable.. or simply use it as a backup.
    The TP-Link can be used in wan bypass to provide wireless.. just turn off the TC wireless.

  • I have a children's book on iBook but no one can see it when they look for children's books  How can I get it to the iBook reader easier

    What is the best way to promote my book in iBooks?

    Open your iTunes Connect  > Deliver your Content and  download the relevant PDF seen top right.
    To find your book among the millions already in the store, seach the iBook Store for Author, title of book in the catagories you opted for.
    If you want to help your freinds or family,  you can use this - https://linkmaker.itunes.apple.com/us/   copy the text link and email it around.  Change  the US to your own country if needed.
    Paid books should allow you 50 token codes to allow a free download of your book. Useful if you want  magazines, local newspapers etc,. to review your book.
    Good Luck with your book... Hope it sells in millions....

  • I have 3 email addresses with my ISP.  How do I set up my iPhone to receive emails addressed from any one of these addresses

    I have 3 email addresses with my ISP.  How do I set up my iPhone to receive emails addressed from any one of these addresses

    Even though they share the same incoming and outgoing server settings, each is a distinct account, so you just need to set up 3 accounts on your iPhone, one for each email address.
    Or, since these are all from the same ISP, do they have online account management tools to let you forward two of those to the one account you want to be the "master" account?  You still may want separate accounts on your iPhone though, as an account can only have one address associated with it for the "reply" field when responding to emails.

  • After updating to ios5 my phone no longer notifies me when i have recieved e mail, any one having this happen to them?

    After updating to ios5 my phone no longer indicates when i have unread e mails, is this happening to any one else?

    I am back with an update. I turned off Match on both the ipad and the iphone 5. By doing so I was able to sync my Iphone and ipad to itunes and store the music on my devices rather than the slow streaming.  So far this has fixed my problems with the iphone I have all my music, playlist, most of the album art and so on.  But the ipad is a different story.  I have the music and artist but not one playlist  I am sure Apple will have an upgrade soon that will address these issues they are usually very good about this. 
    Now have any of you experienced another problem that has existed as long as I have used faces in Aperture.
    I have over 200 faces and they are organized a-z problem is I have this going on A-Z folowed by a few that start over A-Z followed by another few A-Z and again a 4th time A-Z.  Imagine how difficult it is while I am showing someone the great features of my iphone, ipad and imac.  Which I do talk highly of all the time.  But how do I explain that even though their name starts with a or b or what ever they are not important enough to me to be in the first list of A-Z or even the 2nd or 3rd list of A-Z someohow they are in the 4th section of the list!!!!
    I have managed to get the Imac to fix this but for some reason the IOS devices do not.   Any ideas?
    Thanks Al

  • Any one have information abt SM-Certification

    Hi
    Can any one send me detail abt SM certification i have the serial number SMI310
    but i need Material Number& course version?
    Please help me
    Thankyou

    Dear Swaroop,
    Here is a list of courses offered by SAP Education Services :
    SM010_62      Solution Manager Concept
    SM100                      Admin. & Sup. SAP Solution Manager 
    SMI210_53                SAP Solution Manager Impl.Meth
    SMI410                     SAP Solution Manager Admin 4.0 
    There are many more... You can find them on the following URL:
    <u>https://service.education.sap.com/sap(bD1lbiZjPTAwMSZkPW1pbg==)/bc/bsp/sap/hcm_learning/search.htm?searchstring=<SearchTerm>&viewstate=COLLAPSED&headersearch=X&ext_param_lang=EN</u>
    Regards
    Amit

  • IS that SAP SD have market... any one kindly suggest whether i need to learn this module or not?

    Hi Guys..
    I Did my MBA in Tourism and Hospitality and i have an 3 years exp in Travel field... now i want to change my field for that reason i am willing to learn SAP but i have an confusion to learn which course.
    i approached one institute regarding the same they suggested to go with SAP SD...and also which Institute is Good for learning SAP...
    one of my friend suggested to join at Vayuputhra Communications Ltd
    Kindly advice....

    If you access the Crucial website, they have a program that will scan your MBP and let you know the RAM options that you have.
    Best places to order RAM is Crucial and OWC.
    Ciao.

  • Programs that have been written in java

    I am trying to figure out what i can and cant make in java??
    What (big or important) programs have been written in java??

    You can do many things!!! You can really do just about anything with java that you can with other programming languages.
    PS-Use the robot class for screen capture, use multiple screen captures in delayed succesion to get a list of images that can be animated.

  • I know exactly what my restrictions passcode is meant to be (I have even written it down) but it has strangely changed itself. I cannot delete apps anymore.

    I know exactly what my restrictions passcode is meant to be (I have even written it down) but it has strangely changed itself. I cannot delete apps anymore and it has been getting on my nerves. I am worried that I will lose my purchased films and books and my pages documents if I perform a factory restore. What do I do?

    To remove the Restrictions passcode you will need to either...
    Restore the Device as New...
    http://support.apple.com/kb/HT4137
    OR...
    from a Backup created Before the Restrictions Code was set....
    Restore from Backup
    http://support.apple.com/kb/ht1766

Maybe you are looking for

  • Restricting Follow Up Activities on Lead Transaction

    Hello All, I need to restrict certain follow up activities on the lead transaction, I have gone through the forum and found out that the same can be restricted using authorizations Following are the posts Limit the transaction types by role Restrict

  • Posting of retirement/transfer not possible(error in asset)

    Hi All, this is regarding intra company asset transfer through transaction code ABUMN. The issue is like below : Let's say asset code is 764 in 111 asset class & i am transferring this asset to 3615 in 112 asset class through ABUMN. Actaully in 2004,

  • Anyone else having trouble with Verizon Webmail?

    Yesterday morning I found that I could not log into Verizon Webmail using Safari. I called Verizon FIOS Tech Support and they said there was  a system-wide e-mail problem which would take 4-10 hours to fix. I noted that I was able to access Webmail u

  • Can I run Safari 6  on an older version of OSX?

    My wife needs to have a Safari version of 6 or above.  Here current version of 5 will not allow her to take part in an on-line discussion which she wants to join. When Software Update is run it says all the software is up to date. Can I download a ne

  • Illustrator CS5 - Export to PDF no longer uses Artboard as page boundary

    We are running into an issue where Illustrator files saved as PDFs (with editing capabilities) are having their page sizes cropped when re-opened in Acrobat. If the PDF file is re-opened in Illustrator then re-saved using Save As (overwriting the ori