Can anybody help me urgently

hi everybody in the group have to attend the Accenture  walk in this Saturday on abap.
pls anybody can tellme
how will be the interview?
what will be the possible questions may raised by them?

Hi Sridhar,
MAY BE THIS WILL HELP YOU
ABAP / 4 INTERVIEW QUESTIONS WITH ANSWERS
1)         What is SAP R/3?
Ans      SAP R/3 refers to Systems Application and Product for data processing Real-time having a 3 tier architecture i.e. Presentation layer, Application layer and Database layer.
2)         What are the programming standards followed?
3)         What are the contents in technical specifications?
Ans      There are five contents in Technical Settings: Data Class, Size Category, Buffering Permission, Buffering Type and Logging.
4)         What is an instance?
Ans      When you call a function module, an instance of its function group plus its data, is loaded into the memory area of the internal session. An ABAP program can load several instances by calling function modules from different function groups.
5)         How to take care of performance in ABAP Development?
6)         What is Function group? Difference between function group and function module?
Ans      Function Groups act as containers for Function Modules that logically belong together.
            Function Groups                                  
1)      These cannot be defined in a Function Module.
2)      It cannot be called.
3)      They are containers for Function Module.
Function Modules
1)      These must be defined in a Function Group.
2)      It can be called from any program.
3)      They are not containers for Function Group.           
7)         What is the difference between 'Select single * ' and 'Select upto 1 rows'?
Ans      ‘Select single *’ – The result of the selection should be a single entry. If it is not possible to identify a unique entry, the system uses the first line of the selection. For e.g. 
            DATA : ITAB TYPE ZREKHA_EMP.
            SELECT SINGLE * FROM ZREKHA_EMP INTO ITAB
WHERE EMPNO = ‘00101’ AND DEPTNO = ‘0010’.
            WRITE : / ITAB-EMPNO, ITAB-EMPNAME,ITAB-DEPTNO.
            Select upto 1 rows -
8)         What Function does data dictionary perform?
Ans      Central information repository for application and system data. The ABAP Dictionary contains data definitions (metadata) that allow you to describe all of the data structures in the system (like tables, views, and data types) in one place. This eliminates redundancy.
9)         Difference between domain and data element? What are aggregate object?
Ans      Domain - Specifies the technical attributes of a data element - its data type, length, possible values, and appearance on the screen. Each data element has an underlying domain. A single domain can be the basis for several data elements. Domains are objects in the ABAP Dictionary.
            Data Element - Describes the business function of a table field. Its technical attributes are based on a domain, and its business function is described by its field labels and documentation.
            Aggregate Object – Views, Match Code and Lock objects are called aggregate objects because they are formed from several related table.
10)       What is view? Different types of view. Explain?
Ans      View - A view is a virtual table containing fields from one or more tables. A virtual table that does not contain any data, but instead provides an application-oriented view of one or more ABAP Dictionary tables.
             Different Types of View:
1)      Maintenance
2)      Database – It is on more than two tables.
3)      Projection – It is only on one table.
4)      Help
11)       Can u print decimals in type N? What is difference between float and packed data type?
Ans      No, we cannot print decimals in type N because decimal places are not permitted with N
data type.
             Float Data Type: It cannot be declared in Parameters.
             Packed Number: It can be declared in Parameters. For e.g.
             PARAMETERS : A(4) TYPE P DECIMALS 2,
                                          B(4) TYPE P DECIMALS 2.
             DATA : C(4) TYPE P DECIMALS 2.
           C = A + B.
            WRITE : / ‘THE SUM IS’ , C.
12)       What is step-loop? Explain all the steps?
Ans      A step loop is a repeated series of field-blocks in a screen. Each block can contain one or more fields, and can extend over more than one line on the screen.
Step loops as structures in a screen do not have individual names. The screen can contain more than one step-loop, but if so, you must program the LOOP...ENDLOOPs in the flow logic accordingly. The ordering of the LOOP...ENDLOOPs must exactly parallel the order of the step loops in the screen. The ordering tells the system which loop processing to apply to which loop. Step loops in a screen are ordered primarily by screen row, and secondarily by screen column.
Transaction TZ61 (development class SDWA) implements a step loop version of the table you saw in transaction TZ60.
Static and Dynamic Step Loops
Step loops fall into two classes: static and dynamic. Static step loops have a fixed size that cannot be changed at runtime. Dynamic step loops are variable in size. If the user re-sizes the window, the system automatically increases or decreases the number of step loop blocks displayed. In any given screen, you can define any number of static step loops, but only a single dynamic one.
You specify the class for a step loop in the Screen Painter. Each loop in a screen has the attributes Looptype (fixed=static, variable=dynamic) and Loopcount. If a loop is fixed, the Loopcount tells the number of loop-blocks displayed for the loop. This number can never change.
Programming with static and dynamic step loops is essentially the same. You can use both the LOOP and LOOP AT statements for both types.
Looping in a Step Loop
When you use LOOP AT <internal-table> with a step loop, the system automatically displays the step loop with vertical scroll bars. The scroll bars, and the updated (scrolled) table display, are managed by the system.
Use the following additional parameters if desired:
•     FROM <line1> and TO <line2>
•     CURSOR <scroll-var>
13)       What is the initial value and maximum length of all data type?
Ans     
Data Type     Initial field length     Valid field length     Initial value     Meaning
Numeric types
I     4     4     0     Integer (whole number)
F     8     8     0     Floating point number
P     8     1 – 16     0     Packed number
Character types
C     1     1 – 65535     '   …   '     Text field (alphanumeric characters)
D     8     8     '00000000'     Date field (Format: YYYYMMDD)
N     1     1 – 65535     '0 … 0'     Numeric text field (numeric characters)
T     6     6     '000000'     Time field (format: HHMMSS)
Hexadecimal type
X     1     1 – 65535     X'0 … 0'     Hexadecimal field
14)       What are the ways to find out the tables used in the program?
Ans     
15)       Can you have two detail lists from the basic list at the same time?
If yes how and if no why?
Ans     
16)       What are the different functions used in sap script? What are the parameters used in each Function?
Ans      There are three different functions used in SAP Script:
1)      OPEN_FORM
2)      WRITE_FORM
3)      CLOSE_FORM
Parameters in Each Function:
1)      OPEN_FORM –
Exporting
Form
Language
2)      WRITE_FORM –
Exporting
Element
Window
3)   CLOSE_FORM
17)       What is sequence of event triggered in report?
Ans      There are 6 events in report:
1)      Initialization
2)      At Selection-Screen
3)      Start-of-Selection
4)      Get
5)      Get Late
6)      End-of-Selection
7)      Top-of-Page
8)      End-of-Page
9)      At Line Selection
10)  At User Command
11)  At PF (nn)
18)       What are standard layouts sets in the SAP Script?
Ans      There are four standard layouts in the SAP Script:
1)      Header
2)      Logo         
3)      Main Window
4)      Footer
19)       What function module upload data from application server?
Ans     
20)       What are the various types of selection screen event?
Ans      SELECTION-SCREEN BEGIN OF BLOCK ABC WITH FRAME TITLE T01.
SELECTION-SCREEN BEGIN OF SCREEN 500 AS WINDOW.
CALL SELECTION-SCREEN 500 STARTING AT 10 10.
21)       What do you know about a client?
Ans     
22)       What are the system fields? Explain?
Ans      The ABAP system fields are active in all ABAP programs. They are filled by the runtime environment, and you can query their values in a program to find out particular states of the system. Although they are variables, you should not assign your own values to them, since this may overwrite information that is important for the normal running of the program. However, there are some isolated cases in which you may need to overwrite a system variable. For example, by assigning a new value to the field SY-LSIND, you can control navigation within details lists.
23)       What is SAP Script? What is the purpose of SAP Script? Difference between
SAP Script and Report?
Ans      SAP Script – It is the integrated text management system of the SAP R/3 System. Two types – PC Editor & Line Editor.
Reports -  It is the way to display data fetched from database table onto screen or directly output it to a printer. Two types – Classical and Interactive.
24)       What is the use of occurs in internal table? Can u change occurs value in program?
Ans      Use of Occurs - If you use the OCCURS parameter, the value of the INITIAL SIZE of the table is returned to the variable <n>
                        Data :  Begin of ITAB occurs 0,
                        End of ITAB.
Occurs or Initial Size – to specify the initial amount of memory that should be assigned to the table.
            Yes, we can change the occurs value in program but output remains the same.
25)       Difference between SY-TABIX and SY-INDEX? Where it is used?
Can u check SY-SUBRC after perform?
Ans      SY-TABIX - Current line of an internal table. SY-TABIX is set by the statements below, but only for index tables. The field is either not set or is set to 0 for hashed tables.
•     APPEND sets SY-TABIX to the index of the last line of the table, that is, it contains the overall number of entries in the table.
•     COLLECT sets SY-TABIX to the index of the existing or inserted line in the table. If the table has the type HASHED TABLE, SY-TABIX is set to 0.
•     LOOP AT sets SY-TABIX to the index of the current line at the beginning of each loop lass. At the end of the loop, SY-TABIX is reset to the value that it had before entering the loop. It is set to 0 if the table has the type HASHED TABLE.
•     READ TABLE sets SY-TABIX to the index of the table line read. If you use a binary search, and the system does not find a line, SY-TABIX contains the total number of lines, or one more than the total number of lines. SY-INDEX is undefined if a linear search fails to return an entry.
•     SEARCH <itab> FOR sets SY-TABIX to the index of the table line in which the search string is found.
SY_INDEX - In a DO or WHILE loop, SY-INDEX contains the number of loop passes including the current pass.
26)       Difference between UPLOAD and WS_UPLOAD?
Ans      UPLOAD - File transfer with dialog from presentation server file to internal table. Data which is available in a file on the presentation server is transferred in an internal table. ASCII & Binary files can be transferred.
WS_UPLOAD - To read data from the presentation server into an internal table without a user dialog, use the function module WS_UPLOAD. The most important parameters are listed below.
Parameters     Function
CODEPAGE     Only for upload under DOS: Value IBM
FILENAME     Filename
FILETYPE     File type
27)       Why did u switch to SAP?
Ans     
28)       What is a Logical Database?
Ans      Logical Databases are special ABAP programs that retrieve data and make it available to application programs.
Use of LDB – is used to read data from database tables by linking them to executable ABAP programs.
29)       What are the events used for Logical Database?
Ans      Two Events –
1)         GET - This is the most important event for executable programs that use a logical database. It occurs when the logical database has read a line from the node <table> and made it available to the program in the work area declared using the statement NODES <table>. The depth to which the logical database is read is determined by the GET statements
2)        PUT - The PUT statement directs the program flow according to the structure of  
            the logical database.
30)       What is the difference between Get and Get Late?
Ans      GET - After the logical database has read an entry from the node <table>.
GET LATE - After all of the nodes of the logical database have been processed that are below <table> in the database hierarchy.
31)       What are the data types of Internal Tables?
Ans      There are three types:
1)      Line
2)      Key
3)      Table
32)       What are the events used in ABAP in the order of execution?
Ans      Events are:
1.      INITIALIZATION
2.      AT SELECTION-SCREEN
3.      AT SELECTION-SCREEN ON <field>
4.      START-OF-SELECTION
5.      TOP-OF-PAGE
6.      TOP-OF-PAGE DURING LINE SELECTION
7.      END-OF-PAGE
8.      END-OF-SELECTION
9.      AT USER-COMMAND
10.  AT LINE-SELECTION
11.  AT PF<NN>
12.  GET
13.  GET LATE.
14.  AT User Command
33)       What are Interactive Reports?
Ans      An output list which displays just the basic details & allow user to interact, so that a new list is populated based on user-selection. With interactive list, the user can actively control data retrieval and display during the session.
34)       What are the commands used for interactive reports?
Ans      Top-of-Page during line-selection
35)       What are the system fields u have worked with? Explain?
Ans      I had worked with the following (30) system fields:
1)      SY-DBSYS           -           Central Database
2)      SY-HOST             -           Server
3)      SY-OPSYS           -           Operating System
4)      SY-SAPRL            -           SAP Release
5)      SY-SYSID            -           System Name
6)      SY-LANGU          -           User Logon Language
7)      SY-MANDT         -           Client
8)      SY-UNAME         -           Logon User Name
9)      SY-DATLO           -           Local Date
10)  SY-DATUM          -           Server Date
11)  SY-TIMLO           -           Local Time
12)  SY-UZEIT             -           Server Time
13)  SY-DYNNR          -           Screen Number
14)  SY-REPID -           Current ABAP program
15)  SY-TCODE           -           Transaction Code
16)  SY-ULINE            -           Horizontal Line
17)  SY-VLINE            -           Vertical Line
18)  SY-INDEX            -           Number of current loop Pass
19)  SY-TABIX            -           Current line of internal table
20)  SY-DBCNT          -           Number of table entries processed
21)  SY-SUBRC           -           Return Code
22)  SY-UCOMM        -           Function Code
23)  SY-LINCT            -           Page Length of list
24)  SY-LINNO           -           Current Line
25)  SY-PAGNO          -           Current Page Number
26)  SY-LSIND            -           Index of List
27)  SY-MSGID           -           Message Class
28)  SY-MSGNO         -           Message Number
29)  SY-MSGTY          -           Message Type
30)  SY-SPONO          -           Spool number during printing
36)       What is the difference between Primary key and Unique Key?
Ans      Primary Key – It can accepts 0 value and cannot be NULL.
            Unique Key – It can be NULL. 
37)       What is the transaction code for Table maintenance?
Ans      SM30
38)       If u are using Logical Databases how will u modify the selection-screen elements?
Ans      Select-options  : dname for deptt-dname.
39)       What is an RFC?
Ans      Remote Function Call
40)       If u are using RFC and passing values to a remote system how does it work?
Ans
41)       What are the events in Screen Programming?
Ans      There are two events in Screen Programming:
1.     PBO (Process Before Output) – Before the screen is displayed, the PBO event is processed.
2.     PAI (Process After Input) – When the user interacts with the screen, the PAI event is processed.
3.     POH (Process On Help) - are triggered when the user requests field help (F1). You can program the appropriate coding in the corresponding event blocks. At the end of processing, the system carries on processing the current screen.
4.     POV (Process On Value) - are triggered when the user requests possible values help (F4). You can program the appropriate coding in the corresponding event blocks. At the end of processing, the system carries on processing the current screen.
42)       What is the significance of HIDE?
Ans      Its stores the click value and display the related record in the secondary list.
43)       Where do u code the HIDE statement?
Ans      In a LOOP statement
44)       Types of BDC's?
Ans      There are two types of BDC’s:
1)      Transaction Method
2)      Session Method
45)       Advantages & Disadvantages of different types of BDC's?
Ans      Transaction Method:
1)      It is faster than session method.
2)      While executing, it starts from starting.
Session Method:
1)      It is slower than transaction method.
2)      While executing, it does not start from starting.
46)       What are the events used in Interactive Reports.
Ans      There are three events of Interactive Reports:
                                I.      At PF(nn)
                             II.      At line-selection
                           III.      At user-command
47)       What is an RDBMS?
Ans      RDBMS – Relational Database Management System. It helps to create relationship between two or more table.
48)       What standards u use to follow while coding ABAP programs?
Ans     
49)       What will you code in START-OF-SELECTION & END-OF-SELECTON & why?
Ans      START-OF-SELECTION
SELECT * FROM DEPTT INTO CORRESPONDING FIELDS OF ITAB
WHERE DEPTNO IN DEPTNO.
            APPEND ITAB.
ENDSELECT.
            LOOP AT ITAB.
            WRITE : / 10 ITAB-DEPTNO.
            HIDE : ITAB-DEPTNO.
            ENDLOOP.
            END-OF-SELECTION
50)       What are joins and different types joins?
Ans      There are four types of Joins:
1)      Self Join
2)      Inner Join
3)      Outer Join
4)      Equi Join
51)       Which is the default join?
Ans
52)       How do u display a data in a Detail List?
Ans      By using two statements:
1)      Top-of-page during line-selection
2)      At line-selection
53)       What are the types of windows in SAP Script?
Ans      There are five Standard Layouts in SAP Script:
1)      Page
2)      Window
3)      Page Window
4)      Paragraph Format
5)      Character Format
54)       What are the function modules used in a SAP Script driver program?
Ans      There are three functions used in SAP Script:
1)      OPEN_FORM
2)      WRITE_FORM
3)      CLOSE_FORM
55)       What are Extracts?
Ans      Extracts are dynamic sequential datasets in which different lines can have different structures. We can access the individual records in an extract dataset using a LOOP.
56)       How would u go about improving the performance of a Program, which selects data from MSEG & MKPF?
Ans
57)       How does System work in case of an Interactive Report?
Ans
58)       What is LUW?
Ans      Logical Unit of Work
59)       Different types of LUWs. What r they?
Ans      Two types of LUW are:
1)      DB LUW - A database LUW is the mechanism used by the database to ensure that its data is always consistent. A database LUW is an inseparable sequence of database operations that ends with a database commit. The database LUW is either fully executed by the database system or not at all. Once a database LUW has been successfully executed, the database will be in a consistent state. If an error occurs within a database LUW, all of the database changes since the beginning of the database LUW are reversed. This leaves the database in the state it had before the transaction started.
2)      SAP LUW - A logical unit consisting of dialog steps, whose changes are written to the database in a single database LUW is called an SAP LUW. Unlike a database LUW, an SAP LUW can span several dialog steps, and be executed using a series of different work processes.
60)       What is First event triggered in program?
Ans
61)       What are various Joins? What is right outer join?
Ans
62)       How do u find out whether a file exits on the presentation server?
Ans      eps_get_directory_listing for directory
63)       Systems fields used for Interactive Lists AND Lists
Ans      Interactive System Fields:  SY-LSIND, SY-CPAGE, SY-LILLI, SY-LISEL, SY-LISTI,
            SY-LSTAT, SY-STACO, SY-STARO
            Lists: SY-COLNO, SY-LINCT, SY-LINNO, SY-LINSZ, SY-PAGNO,
SY-TVAR0…..SY-TVAR9, SY-WTITL
64)       Logo in SAP Script?
Ans      RSTXLDMC   OR
Steps for making and inserting Logo in SAP Script:
            First Procedure:
1)      Draw the picture
2)      Save it
3)      /nSE78
4)      Write name & Choose Color
5)      Click on Import
6)      Browse picture
7)      Enter
Second Procedure
1)      /nSE71
2)      Insert
3)      Graphics
4)      Click on stored on document server
5)      Execute
6)      Choose name of BMAP
65)       What are the difference between call screen and leave screen?  
Ans      Call Screen: Calling a single screen is a special case of embedding a screen sequence. If you want to prevent the called screen from covering the current screen completely, you can use the CALL SCREEN statement with the STARTING AT and ENDING AT
            CALL SCREEN 1000.
CALL SCREEN 1000 STARTING AT 10 10 ENDING AT 20 20.
            LEAVE SCREEN statement ends the current screen and calls the subsequent screen.
            LEAVE SCREEN.
LEAVE TO SCREEN 2000.
66)       If internal table used in for all entries in empty then what happens
Ans      No, records will be displayed.
67)       If I forgot some command in SAP Script e.g.: suppress zero display - How to do find it?
Ans      Suppressing of entire screens is possible with this command.  This command allows us to perform screen processing “in the background”. Suppressing screens is useful when we are branching to list-mode from a transaction dialog step.
68)       How to write a BDC - how do u go about it?
Ans      Steps for writing BDC
1)      /nSE38
2)      Declare Tables, Data (for ITAB) and Data (for BDCITAB)
3)      Call function ‘Upload’.
4)      Write code for the First Screen, Radio Button, Filename, Change Button, Second Screen, Utilities (Create Entries), Third Screen and Save.
5)      Call transaction ‘SE11’ using BDCITAB mode ‘A’.
6)      Save, Check Errors, Activate and Execute.
69)       What is Performance tuning?
Ans
70)       Define Documentation.
Ans
71)       Brief about Testing of programs.
Ans
72)       How do u move on to the next screen in interactive reporting?
Ans      Write code of the following:
1)      Top-of-Page during line-selection
2)      At line-selection
73)       Create any functions? How to go about it?
Ans      Steps for creating the Functions:
            First Procedure:
1)      /nSE37
2)      Goto
3)      Function Group (FG)
4)      Create Group
5)      Name of FG (ZREKHA_FG)
6)      Short Text
7)      Save
8)      Local Object
Second Procedure
1)      Environment
2)      Inactive Object
3)      Function Group (ZREKHA_FG)
4)      Activate
5)      Back
Third Procedure
1)      Name of Function Module (ZREKHA_FM)
2)      Create
3)      Write FG Name (ZREKHA_FG)
4)      Short Text
5)      Save
Fourth Step:
Call function ‘ZREKHA_FM’.
74)       Advanced topics?
Ans
75)       Function modules used in F4 help.
Ans      There are two types of function modules used in F4 help:
1)       F4IF_FIELD_VALUE_REQUEST
2)      F4IF_INT_TABLE_VALUE_REQUEST
76)       Work most on which module: Name a few tables.
Ans      Sales & Distribution Module
1)      Sales Document: Item Data                         –          VBAP
2)      Sales Document: Partner                             –          VBPA
3)      Sales Document: Header Data                    –          VBAK
4)      Sales Document Flow                                 –          VBFA
5)      Sales Document: Delivery Item Data           -           LIPS
6)      Customer Master                                        –          KNA1
7)      Material Data                                             –          MARA
8)      Conditions (Transaction Data)                     -           KONV
77)       System Table used
Ans                 
1)      Sales Document: Item Data                         –          VBAP
2)      Sales Document: Partner                             –          VBPA
3)      Sales Document: Header Data                    –          VBAK
4)      Sales Document Flow                                 –          VBFA
5)      Sales Document: Delivery Item Data           -           LIPS
6)      Customer Master                                        –          KNA1
7)      Material Data                                             –          MARA
8)      Conditions (Transaction Data)                     -           KONV
78)       From a table how do u find whether a material is used in another material BOM?
Ans
79)       What is read line?
Ans      READ LINE and READ CURRENT LINE – These statements are used to read data from the lines of existing list levels. These statements are closely connected to the HIDE technique.
80)       How u used logical database? How is data transferred to program? Corresponding statement in LDB.
Ans     
81)       How do u suppress fields on selection screen generated by LDB?
Ans
82)       Can there be more than 1 main window in SAP Script?
Ans      No, there cannot be more than 1 main window in SAP Script because in WRITE_FORM, it asks for the parameter Window that will create the problem.   
WRITE_FORM –
Exporting
Element
Window
83)       Global and local data in function modules.
Ans
84)       What are the differences between SAP memory and ABAP memory?
Ans      ABAP Memory is a memory area in the internal session (roll area) of an ABAP program. Data within this area is retained within a sequence of program calls, allowing you to pass data between programs that call one another. It is also possible to pass data between sessions using SAP Memory.
SAP Memory is a memory area to which all sessions within a SAPgui have access. You can use SAP memory either to pass data from one program to another within a session (as with ABAP memory) or to pass data from one session to another.
85)       What are differences between At selection-screen and At selection-screen output?
Ans      AT SELECTION-SCREEN event is triggered in the PAI of the selection screen once the ABAP runtime environment has passed all of the input data from the selection screen to the ABAP program.
AT SELECTION-SCREEN OUTPUT - This event block allows you to modify the selection screen directly before it is displayed.
86)       What are the events?
Ans     
87)       What is get cursor field?           
Ans      GET CURSOR statement transfers the name of the screen element on which the cursor is positioned during a user action into the variable <f>.
GET CURSOR FIELD <f> [OFFSET <off>] [LINE <lin>] [VALUE <val>] LENGTH <len>].
88)       What is the inside concept in select-options?    
Ans      Select-options specify are displayed on the selection screen for the user to enter values.
Different Properties of Select-options:
1)      Visible Length
2)      Matchcode Object
3)      Memory ID
4)      Lowercase
5)      Obligatory
6)      No Display
7)      Modify ID
89)       What is the difference between occurs 1 and occurs 2?
Ans     
90)       What is the difference between Free and Refresh?
Ans      Free - You can use FREE to initialize an internal table and release its memory space without first using the REFRESH or CLEAR statement. Like REFRESH, FREE works on the table body, not on the table work area. After a FREE statement, you can address the internal table again. It still occupies the amount of memory required for its header (currently 256 bytes). When you refill the table, the system has to allocate new memory space to the lines.
Refresh - This always applies to the body of the table. As with the CLEAR statement, the memory used by the table before you initialized it remains allocated. To release the memory space, use the statement
91)       What are elements?
Ans
92)       Can we have more than one selection-screen and how?
Ans      Yes, we can have more than one selection screen.
            Selection-screen begin of block honey with frame title text-101.
            Select-options : deptno for zrekha_deptt-deptno.
            Selection-screen end of block honey.
            Selection-screen begin of block honey1 with frame title text-102.
            Select-options : dname for zrekha_deptt-dname.
            Selection-screen end of block honey1.
93)       How to declare select-option as a parameter?
Ans      SELECT-OPTIONS: specify are displayed on the selection screen for the user to enter values.
            Parameters: dname like dept-dname.
            Select-options: dname for dept-dname.
94)       How can u write programmatically value help to a field without using search help and
match codes?
Ans      By using two types of function modules to be called in SAP Script:
1)      HELP_OBJECT_SHOW_FOR_FIELD
2)      HELP_OBJECT_SHOW
95)       What are the differences between SE01, SE09 and SE10?
Ans      SE01    -           Correction & Transport Organizer
            SE09    -           Workbench Organizer
            SE10    -           Customizing Organizer
96)       How to set destination?
Ans
97)       What are the function module types?
Ans
98)       What are tables?
Ans      Tables : ZREKHA_EMP.
It creates a structure – the table work area in a program for the database tables, views or structure ZREKHA_EMP. The table work area has the same name as the object for which we created it. ZREKHA_EMP must be declared in the ABAP dictionary. The name and sequence of fields in the table work area ZREKHA_EMP corresponds exactly to the sequence of fields in the database table, view definition in the ABAP dictionary.
99)       What are client-dependant tables and independent tables?
Ans
100)     How to distinguish client-dependant tables from independent tables?
Ans
101)     What is the use of Table maintenance allowed?
Ans      Mark the Table maintenance allowed flag if users with the corresponding authorization may change the data in the table using the Data Browser (Transaction SE16). If the data in the table should only be maintained with programs or with the table view maintenance transaction (Transaction SM30), you should not set the flag.
102)     How to define Selection Screen?
Ans      Parameters, Select-options & Selection-Screen
103)     What are the check tables and value tables?
Ans      Check Table: The ABAP Dictionary allows you to define relationships between tables using foreign keys . A dependent table is called a foreign key table, and the referenced table is called the check table. Each key field of the check table corresponds to a field in the foreign key table. These fields are called foreign key fields. One of the foreign key fields is designated as the check field for checking the validity of values. The key fields of the check table can serve as input help for the check field.
Value Table: Prior to Release 4.0, it was possible to use the value table of a domain to provide input help. This is no longer possible, primarily because unexpected results could occur if the value table had more than one key field. It was not possible to restrict the other key fields, which meant that the environment of the field was not considered, as is normal with check tables.
In cases where this kind of value help was appropriate, you can reconstruct it by creating a search help for the data elements that use the domain in question, and using the value table as the selection method.
Check table will be at field level checking.
Value table will be at domain level checking ex: scarr table is check table for carrid.
104)     What is the difference between tables and structures?
Ans      Tables:
1)      Data is permanently stored in tables in the database.
2)      Database tables are generated from them.
Structure:
1)      It contains data temporarily during program run-time.
2)      No Database tables are generated from it.          
105)     How to declare one internal table without header line without using structures?
Ans      No, we cannot declare internal table without header line and without structure because it gives error “ITAB cannot be a table, a reference, a string or contain any of these object”.
            Code with Header without Structure
            TABLES : ZREKHA_EMP.
            DATA : ITAB LIKE ZREKHA_EMP OCCURS 0 WITH HEADER LINE.
            SELECT * FROM ZREKHA_EMP INTO CORRESPONDING FIELDS OF ITAB.
            APPEND ITAB.
            ENDSELECT.
            LOOP AT ITAB.
            WRITE : / ITAB-EMPNO, ITAB-EMPNAME,ITAB-DEPTNO.
            ENDLOOP.
Code without Header with Structure
            TABLES : ZREKHA_EMP.
DATA : BEGIN OF ITAB OCCURS 0,
              EMPNO LIKE XREKHA_EMP-EMPNO,
                          EMPNAME LIKE XREKHA_EMP-EMPNAME,
                          DEPTNO LIKE XREKHA_EMP-DEPTNO,
                          END OF ITAB.
            SELECT * FROM ZREKHA_EMP INTO CORRESPONDING FIELDS OF ITAB.
            APPEND ITAB.
            ENDSELECT.
            LOOP AT ITAB.
            WRITE : / ITAB-EMPNO, ITAB-EMPNAME,ITAB-DEPTNO.
            ENDLOOP.
106)     What are lock objects?
Ans      Reason for Setting Lock: Suppose a travel agent want to book a flight. The customer wants to fly to a particular city with a certain airline on a certain day. The booking must only be possible if there are still free places on the flight. To avoid the possibility of overbooking, the database entry corresponding to the flight must be locked against access from other transactions. This ensures that one user can find out the number of free places, make the booking, and change the number of free places without the data being changed in the meantime by another transaction.
The R/3 System synchronizes simultaneous access of several users to the same data records with a lock mechanism. When interactive transactions are programmed, locks are set and released by calling function modules (see Function Modules for Lock Requests). These function modules are automatically generated from the definition of lock objects in the ABAP Dictionary.
            Two types of Lock: Shared and Exclusive
107)     What are datasets? What are the different syntaxes?
Ans      The sequential files (ON APPLICATION SERVER) are called datasets. They are used for file handling in SAP.
OPEN DATASET [DATASET NAME]          FOR [OUTPUT / INPUT / APPENDING]
                                                                        IN [BINARY / TEXT] MODE
                                                                        AT POSITION [POSITION]
                                                                        MESSAGE [FIELD]
READ DATASET [DATASET NAME] INTO [FIELD]
DELETE DATASET [DATASET NAME]
CLOSE DATASET [DATASET NAME]
TRANSFER [FIELD] TO [DATASET NAME]
108)     What are the events we use in dialog programming and explain them?
Ans      There are two events in Dialog Programming i.e. screen:
1.     PBO (Process Before Output) – Before the screen is displayed, the PBO event is processed.
2.     PAI (Process After Input) – When the user interacts with the screen, the PAI event is processed.
3.     POH (Process On Help) - are triggered when the user requests field help (F1). You can program the appropriate coding in the corresponding event blocks. At the end of processing, the system carries on processing the current screen.
4.     POV (Process On Value) - are triggered when the user requests possible values help (F4). You can program the appropriate coding in the corresponding event blocks. At the end of processing, the system carries on processing the current screen.
109)     What is the difference between OPEN_FORM and CLOSE_FORM?
Ans      OPEN_FORM – This module opens layout set printing. This function must be called up before we can work with other layout set function like WRITE_FORM.
WRITE_FORM – Output text element in form window. The specified element of the layout set window entered is output. The element must be defined in the layout set.
CLOSE_FORM – End layout set printing. Form printing started with OPEN_FORM is completed. Possible closing operations on the form last opened are carried out. Form printing must be completed by this function module. If this is not carried out, nothing is printed or displayed on the screen.
110)     What are the page windows? How many main windows will be there in a page window?
Ans      Page Window: In this window, we define the margins for left, width, upper and height for the layout of Header, Logo, Main, & Footer.
111)     What are control events in a loop?
Ans      Control level processing is allowed within a LOOP over an internal table. This means that we can divide sequences of entries into groups based on the contents of certain fields.
AT <level>.
<statement block>
ENDAT.
You can react to the following control level changes:
<level>     Meaning
FIRST     First line of the internal table
LAST     Last line of the internal table
NEW <f>     Beginning of a group of lines with the same contents in the field <f> and in the fields left of <f>
END Of <f>     End of a group of lines with the same contents in the field <f> and in the fields left of <f>
112)     How to debugg a script?
Ans      Go to SE71, give layout set name, go to utilities select debugger mode on.
113)     How many maximum sessions can be open in SAPgui?
Ans      There are maximum 6 sessions open in SAPgui.

Similar Messages

  • Can anybody help its urgent error :RPE-02018

    Can any body help me inthis error, actually i was executing the mappig on regular basis but today i found this error
    " RPE-02018: Oracle Workflow schema OWF_MGR on host ZAINBIDB cannot be accessed using service BIPROD through port 1521. Please check the location details and try again."
    Followed by :
    "Io exception: Got minus one from a read call."

    Hi, we have found this error when configuration parameters in database where not correct. Each time a process flow with a lot of process in parallel was executed, a process failed.
    I can't remember the exact parameter to change to correct this error (we had some other errors due to configuration parameters) but I think it was by changing the optimizer_mode to FIRST_ROWS. Ask your DBA to take a look to DB parameters and look for the error message in metalink, I think there's an entry for this error.
    Regards
    ANA GH

  • I urgently need a contact email for the sales team can anybody help me with this

    I urgently need a contact email for the sales team regarding an outstanding query, can anybody help me with this please? Thanks in advance.

    Hello 
    Welcome to the EE Community! I'm afraid there isn't an e-mail you can contact the EE Mobile Sales team on, but here's how you can get in touch with them:
    If you're on Twitter, you can tweet them @EE, however If you'd prefer to talk to someone, you can dial:
    150 from your EE mobile phone
    If you're ringing from another phone, it's 01707 315000
    For handy text codes & more, check out this page: http://ee.co.uk/help/get-in-touch Cheers,
    Titanium
    Was my post helpful? Please take 2 seconds to hit the 'Kudos' button below

  • Can anybody help me with the product costing report... URGENt!!!!!

    Hi,
    Can anybody help me with the logic. teh present logic is given below. But as per the new requirement in the Selection screen when I add Material as Select Options then Logic should "expecting to get the report either in Product Group or (single/multiple/range) Material" . Please reply ASAP.
    get the list of product groups based on the range entered by the user.
      SELECT KSTRG FROM CKPH INTO TABLE I_KSTRG
                   WHERE KSTRG IN SO_KSTRG.
    for each product explode the hierarchy get all sub product groups
      LOOP AT I_KSTRG.
        CLEAR I_CKPH. REFRESH I_CKPH.
        CALL FUNCTION 'K_CKPH_GET_HIERARCHY'
             EXPORTING
                  DATBI     = '99991231'
                  KSTRG     = I_KSTRG-KSTRG
             TABLES
                  CKPH_I    = I_CKPH
             EXCEPTIONS
                  NOT_FOUND = 1
                  OTHERS    = 2.
        IF SY-SUBRC EQ 0.
        save all unique product groups within the hierarchy.
          LOOP AT I_CKPH.
            MOVE 'EQ' TO F_KSTRG-OPTION.
            MOVE 'I' TO F_KSTRG-SIGN.
            MOVE I_CKPH-KSTRG TO F_KSTRG-LOW.
            COLLECT F_KSTRG.
            MOVE I_CKPH-KSTRG TO KSTRG-LEVEL2.
            MOVE I_CKPH-UEKTR TO KSTRG-LEVEL1.
            COLLECT KSTRG. CLEAR KSTRG.
          ENDLOOP.
        ENDIF.
      ENDLOOP.
    SORT KSTRG BY LEVEL2 LEVEL1.
    check if there are product groups extracted.
      CLEAR Z_LINES. DESCRIBE TABLE F_KSTRG LINES Z_LINES.
      IF Z_LINES GT 0.
    get the materials attached to each product group.
        SELECT KSTRG WERKS MATNR
          INTO CORRESPONDING FIELDS OF TABLE I_CKPE
          FROM CKPE
          WHERE KSTRG IN F_KSTRG
            AND WERKS = PA_WERKS.
      IF NOT I_CKPE[] IS INITIAL.
    get the order info order number & object number
          SELECT AFPOMATNR AUFKOBJNR
             INTO CORRESPONDING FIELDS OF TABLE I_AFPO
             FROM AFPO AS AFPO INNER JOIN AUFK AS AUFK
             ON AFPOAUFNR = AUFKAUFNR
             FOR ALL ENTRIES IN I_CKPE
           WHERE AFPO~MATNR = I_CKPE-MATNR.
        ENDIF.
        SORT I_AFPO BY MATNR.
        LOOP AT I_CKPE.
      get the division for the material.
          CLEAR: Z_SPART, MARA.
          SELECT SINGLE SPART
                   INTO Z_SPART
                   FROM MARA
                  WHERE MATNR = I_CKPE-MATNR
                    AND MTART = 'ZTFG'.
          MARA-SPART = Z_SPART.
        only proceed with processing if division is within users selection
          IF Z_SPART IN SO_SPART.
            LOOP AT I_AFPO WHERE MATNR = I_CKPE-MATNR.
              CLEAR: Z_MATERIAL_FLG, Z_EXPENSES_FLG, Z_SCRAP_FLG,
                     Z_OUTVAR_FLG, Z_ACTIVITY_FLG.
              LOOP AT I_COEP WHERE OBJNR = I_AFPO-OBJNR
                              AND  VRGNG NE 'KOAO'.   "changed by Kasturi
                PERFORM GET_DATA_FOR_REPORT TABLES I_DATA I_DATA_QTY.
                ENDLOOP.
              ENDLOOP.                       "afpo
            ENDIF.                           "division check
          ENDLOOP.                           "ckpe
        ELSE.
      no product groups extracted.
         MESSAGE i011.
      ENDIF.

    Has this been resolved?
    Your requirement is not clear. Could you please elaborate more about the output required?
    Thanks,
    F~Y

  • Can anybody help out in ALE?

    Hi friends,
                  Can anybody help me out by giving the navigation steps of configuring the ALE.......Please urgent
    Useful Answers will be definetly rewarded points.

    hi,
    1.     INTRODUCTION TO ALE DEVELOPMENT
    To develop a new custom ALE scenario, comprises 5 steps:
    1.     Design and develop the custom IDoc with it’s segments and a new message type
    2.     Configure the ALE environment with the new IDoc and message type (customer model, partner profiles and linking IDoc to message type)
    3.     Develop the outbound process which does the following:
    •     Populates the custom IDoc with control info and functional data
    •     Sends the IDoc to the ALE layer for distribution
    •     Updates status and handles errors
    4.     Configure the ALE inbound side (partner profiles with inbound process code)
    5.     Develop the inbound process which does the following:
    •     Reads the IDoc into a BDC table; selects other data that is required
    •     Runs transaction using call transaction or BDC session
    •     Updates status and handles errors
    2.1.     Create IDoc type (WE30) Client independent
    The IDoc type refers to the IDoc structure that you will require for your development
    To create the IDoc type, follow these next few steps:
    •     Enter transaction WE30 (ALE -> Extensions -> IDoc types -> Maintain IDoc type)
    •     Type in ZINVRV01 and click on Basic IDoc type, click the Create icon
    •     Click on Create new (we are creating an IDoc from scratch but you may want to copy another IDoc if it is similar to your requirements) and enter a description, and press enter
    •     Click on ZINVRV01 and then on the Create icon
    •     Enter Z1INVRV as the segment type (must start with Z1), check mandatory if the segment must exist (in this case check it), enter 1 in minimum number and 1 as maximum number. (Make the maximum number 9999999999 if there are going to be many of these segments in each IDoc. IE. When line items are passed via IDocs), click on Segment editor
    •     Enter a description for your segment type and create
    •     Enter a description for your segment, enter each field required in your IDoc, in our case type LIFNR across for Field name, DE structure and DE documentation, repeat for XBLNR and press enter to validate.
    •     Save and generate, press back
    •     To release the segment choose Goto, Release from the menu
    •     Check the box on the line of your new segment
    •     Save, back and enter
    •     Your IDoc type structure should be displayed with your new segment
    •     Save and back
    •     To release the IDoc type choose Extras, Release type from the menu and Yes
    Your IDoc is now ready for use. If you need to add fields or segments to your IDoc type, you will need to cancel the release of the IDoc type as well as the segment release using a similar
    procedure followed above (except now you uncheck the release box for the segment and you choose cancel release for the IDoc type).
    2.2.     Create message type (WE81) Client independent
    To create a new message type, follow these next few steps:
    •     Enter transaction WE81 (ALE -> Extensions -> IDoc types -> Maintain message type for intermed. Structure -> Create logical message type)
    •     Choose Create logical message type by double clicking on it
    •     Click on change icon to enter change mode
    •     Click on New entries to add a new type
    •     Enter the required message type, in our case it is ZINVRV and an appropriate description
    •     Save and exit.
    Your message type has now been created. The next step will be to link it to the IDoc.
    2.2.1.     Link message to IDoc type (WE82 & BD69) Client independent
    To link the message type to the IDoc type follow these next few steps:
    •     Enter transaction WE82 (ALE -> Extensions -> IDoc types -> Maintain message type for intermed. Structure -> EDI: Message Types and Assignment to IDoc Types)
    •     Click on change icon to enter change mode
    •     Click on New entries to create the link
    •     Enter the message type ZINVRV and the BasicIDoc type as ZINVRV01
    •     Save and exit
    •     Enter transaction BD69 (ALE -> Extensions -> IDoc types -> Maintain message type for intermed. Structure -> Assign message type to IDoc for ALE)
    •     Click on change icon to enter change mode
    •     Click on New entries to create the link
    •     Enter the message type ZINVRV and the BasicIDoc type as ZINVRV01
    •     Save and exit
    Your IDoc is now linked to your message type. We still need to link object types and add the message to the model before we can use the message.
    2.2.2.     Maintain object type for message type (BD59) Client independent
    The ALE objects are used to create links between IDocs and applications objects, to control the serialisation, to filter messages in the customer model and to use listings.
    For our own message type and IDoc you must maintain object types for the links.
    If you want to check the serialisation for the message type, then you must maintain object types for the serialisation. If no serialisation object has been maintained for a given message type, then the serialisation will not be checked for this message type.
    To add an object type to our message type, follow these next few steps:
    •     Enter transaction BD59 (ALE -> Extensions -> ALE object maintenance -> Maintain object types)
    •     Type in your message type ZINVRV and press enter
    •     Click on New entries
    •     Enter your object type, LIFNR (We need to use the vendor as a filter object), the segment name where LIFNR resides, Z1INVRV, a number 1 for the sequence followed by the actual field name LIFNR
    •     Save and exit.
    You have now created an object that we’ll use as a filter object in the customer model to direct the flow of messages to the various logical systems based on the vendors in the filter of the message type ZINVRV.
    We now need to add our new message type to the distribution model.
    2.3.     Configuring the Distribution Model
    This task is performed on your ALE reference client.
    2.3.1.     Manual Configuration (BD64) Client dependent
    To manually configure the customer distribution model, read the ALE configuration procedure, and follow these steps:
    •     Perform the Maintain customer distribution model directly function. (ALE -> Distribution customer model -> Maintain customer distribution model directly)
    •     Specify the customer model you want to maintain and the logical system that is to be the sender of the messages OR create a new model. (Create model ALE with logical system ALELS1C400)
    •     Choose the receiving systems to which the sending system must forward message type ZINVRV to.
    •     For each receiving logical system allocate the message type necessary for communication to the receiving systems as per ALE configuration procedure.
    •     Create filter objects (in our case LIFNR as the object type with the associated vendor number, 0000018001 with leading zeros, in the object area) for the message types.
    •     Save the entries.
    NOTES:
    You cannot maintain a message type between the same sender and receiver in more than one customer distribution model.
    Only the owner is authorised to modify the model.
    To change the owner of a model, choose the 'Maintain ownership of customer distribution model' function. Make sure that all changes will be distributed to all systems that know the corresponding model. To do so, you can use the correction and transport system.
    To transport the customer distribution model you should use the Distribute customer model function of the IMG as described below.
    2.3.2.     Distribute customer model (BD71) Client dependent
    After the customer model has been created centrally, it must be distributed to the other remote systems. This entails first of all setting up the communication for the distributed systems and then sending the model.
    2.3.2.1.     Distribute Model (BD71) Client dependent
    This task is performed on your ALE reference client. To distribute the customer distribution model, read the ALE configuration procedure and follow these steps:
    •     Make the settings for the communication with the other decentral systems, you have not set them yet.
    •     Define the RFC destination for R/3 connections whose names correspond to the name of the corresponding logical system.
    •     Create the output partner profile.
    •     Distribute the customer model
    •     Specify the name of the customer model.
    •     You must specify the target system to which you want to distribute the customer model.
    •     You must repeat this function for every distributed logical system.
    2.3.2.2.     Maintain sending system partner profile (WE20) Client dependent
    With this function, you define the partner profiles for all outbound and inbound messages on the basis of the customer distribution model.
    After you have defined and distributed the customer model, you will have to maintain the partner profiles locally. To do this read the ALE configuration procedure.
    •     Enter the output mode (background, immediately) and the package size for outbound processing.
    Requirements
    •     The customer model must be maintained.
    •     RFC destinations must be maintained.
    •     The customer model must be distributed.
    •     To ensure that the appropriate persons in charge are informed if a processing error occurs, you must make settings in: Error processing Maintain organisational units.
    2.4.     Populate & distribute IDoc using ABAP
    An IDoc consists of a control record with structure edidc and one or more data records with structure edidd. The control record contains the sender and recipient of the IDoc, as well as information on the type of message.
    To be able to pass an IDoc to the ALE layer, you must set up a field string with structure edidc and an internal table with structure edidd. They are used to call function module master_idoc_distribute, which performs the save to the database and triggers the dispatch if necessary.
    Hope this helps, Do reward.

  • I cannot open iCal because of a problem. Can anybody help me? The computer will not allow it to open and sends a message to apple each time. The icon has gone from the dock, but ical works on my iPad and I am afraid to sync it with my computer.?

    I cannot open iCal because of a problem. Can anybody help me? The computer will not allow it to open and sends a message to apple each time. The icon has gone from the dock, but ical works on my iPad and I am afraid to sync it with my computer in case it wipes everything .

    I have the exact same problem. I have not changed anything. This is probably a bug or something that has gone bad with Mac OS X (10.7.2). I have not found any solution for this on the web.
    MacBook Pro, Mac OS X (10.7.2).

  • I desperately to uninstall adobe reader from my Mac book air. I sent adobe reader to trash and afterwards look for internet plugs in in library but the folder is empty. Can anybody help me?

    I desperately need to uninstall adobe reader from my Mac book air. I sent adobe reader to trash and afterwards look for internet plugs in  library but this folder is empty in my library. Can anybody help me?

    I looked for plugs in in my library but the folder internet plugs in is empty

  • My ipad just won't let me enter my apple password on FaceTime or iMessage, it works fine on my iPhone, I have tried numerous things but nothing works, can anybody help please, will a bug fix sort this out when they finally make one

    My ipad just won't let me sign in with my apple password on FaceTime or iMessage since updating to ios7 it says check my network connection, even though my iPhone works fine with the same password, can anybody help please, I have tried numerous things but nothing  works.  Will I have to wait for a bug fix to sort this? I hear they are working on one a the minute, I hate ios7

    Try a Restart.
    Press and hold the Sleep/Wake button for a few seconds until the red "slide to power off" slider appears, and then slide the slider. Press and hold the Sleep/Wake button until the Apple logo appears.
    Resetting your settings
    You can also try resetting all settings. Settings>General>Reset>Reset All Settings. You will have to enter all of your device settings again.... All of the settings in the settings app will have to be re-entered. You won't lose any data, but it takes time to enter all of the settings again.
    Resetting your device
    Press and hold the Sleep/Wake button and the Home button together for at least ten seconds, until the Apple logo appears. Apple recommends this only if you are unable to restart it.
    Or if this doesn't work and nobody else on the blog doesn't have a better idea you can contact Apple.
    Here is a link to their contacts with most of the information below.
    http://www.apple.com/contact/

  • I have an iPhone 3gs and it used to show up on my computer, but now it shows up on my screen that it is charging however, does not appear in iTunes or My Computer so i can't sync it. Can anybody help? Thanks

    I have an iPhone 3gs and it used to show up on my computer, but now it shows up on my screen that it is charging however, does not appear in iTunes or My Computer so i can't sync it. Can anybody help? Thanks.

    Did you already make sure that Apple Mobile Device Service is installed and active on your computer?
    http://support.apple.com/kb/TS1567
    More troubleshooting about your device not recognized in Windows can be found here: http://support.apple.com/kb/TS1495

  • My Bluetooth USB wireless transmitter for my portable speakers has quit working.  Preferences says, "The selected device has no output controls", it used to work just fine.  Can anybody help?

    My Bluetooth USB wireless transmitter for my portable BT speakers has quit working.  Preferences says, "The selected device has no output controls", it used to work just fine.  The internal and a pair of wired external speakers work fine.  Can anybody help?

    Just tested something and it worked.
    If I put the headphones all the way in, the mac recognizes it as a digital output.
    But if i don't put it all the way in, it recognizes it as headphones and works perfectly.
    It's probably this crappy headphones.
    If anyone has the same problem, try this out.

  • I have been trying to put music I bought on I tunes on my Samsung Note 2 phone but it won't play.I try to convert them to mp3 format so I can play them on my phone but it won't let me convert them because it says they are protected. Can anybody help me?

    I have been trying to put music I bought on Itunes on my Samsung Note 2 but my media player won't play m4p files so I tried to convert the files to mp3 but I couldn't, because a message says they are protected files. I then tried downloading different media player apps to see if they would play them but had no success.Can anybody help with a solution to this problem?

    First quit iTunes and look in your iTunes folder.
    On Windows, the iTunes folder is in your My Music folder.
    On Mac, the iTunes folder is in your Music folder.
    Follow this path:    iTunes > iTunes Media > Music >
    Here there should be all your music folders. Open the folders containing the music that is not playing. Right click "get info" (mac) or right click "properties" (windows).
    This window will tell you the file type. iTunes will play music in AAC, MP3, and Lossless, etc.
    If the files are .wma you will need to convert them into ACC or MP3 format for it to play on an iPod. In iTunes, highlight the tracks that you want to convert, then on the menu bar, Advanced > Create AAC/MP3 version and the tracks will convert. Delete the old files.
    If the file extenstion is anything like .exe .txt .rar  then you don't have an audio file.

  • My ipod is 8gb and it wont let me download anymore songs, i currently have 1200 and i thought an 8gb ipod would hold at least 1700, can anybody help?

    I have an 8gb ipod which has only 1200 songs on it, no photo's, no apps and no video's and it's telling me that my storage is full, can anybody help/

    The number of songs that any iDevice will store depends on both the length/duration of songs and on the audio format(s) used.  The figure of "1700" is nothing more than an estimate ... probably based on 3-minute songs and low bit-rates.  There is no definitive number - your iPod's capacity is based on available memory (which, for an 8Gb iPod is actually around 7Gb).  Best way to manage the content of your iPod is to create one or more playlists that are then used as the basis for sync operations (set this up when your iPod is connected).

  • Hi all! I was updating the software on i pad to ios6, update was interrupted(apple update server is unavailable...). iTunes Diagnostics shows that "secure link to I tunes store failed". I use Windows 7 Home Premium 64 bit. Can anybody help please?

    Hi all! I was updating the software on i pad to ios6, update was interrupted(apple update server is unavailable...). iTunes Diagnostics shows that "secure link to I tunes store failed". I use Windows 7 Home Premium 64 bit. Can anybody help please?
    The following was done so far:
    1. Windows Firewall - new rule created for itunes.
    2. iTunes - latest version installed.
    3. LAN setting : automatic detection of proxy is enabled;
    4. iTunes diagnostics shows:
    Microsoft Windows 7 x64 Home Premium Edition (Build 7600)
    TOSHIBA Satellite L655
    iTunes 11.0.2.26
    QuickTime 7.7.3
    FairPlay 2.3.31
    Apple Application Support 2.3.3
    iPod Updater Library 10.0d2
    CD Driver 2.2.3.0
    CD Driver DLL 2.1.3.1
    Apple Mobile Device 6.1.0.13
    Apple Mobile Device Driver 1.64.0.0
    Bonjour 3.0.0.10 (333.10)
    Gracenote SDK 1.9.6.502
    Gracenote MusicID 1.9.6.115
    Gracenote Submit 1.9.6.143
    Gracenote DSP 1.9.6.45
    iTunes Serial Number 003FB880034B7720
    Current user is not an administrator.
    The current local date and time is 2013-04-23 11:01:14.
    iTunes is not running in safe mode.
    WebKit accelerated compositing is enabled.
    HDCP is supported.
    Core Media is supported.
    Video Display Information
    Intel Corporation, Intel(R) HD Graphics
    **** External Plug-ins Information ****
    No external plug-ins installed.
    iPodService 11.0.2.26 (x64) is currently running.
    iTunesHelper 11.0.2.26 is currently running.
    Apple Mobile Device service 3.3.0.0 is currently running.
    **** Network Connectivity Tests ****
    Network Adapter Information
    Adapter Name:          {1CB5BBC2-8124-4664-899A-CE0A4683E3B4}
    Description:          Realtek RTL8188CE Wireless LAN 802.11n PCI-E NIC
    IP Address:          0.0.0.0
    Subnet Mask:          0.0.0.0
    Default Gateway:          0.0.0.0
    DHCP Enabled:          Yes
    DHCP Server:
    Lease Obtained:          Thu Jan 01 08:00:00 1970
    Lease Expires:          Thu Jan 01 08:00:00 1970
    DNS Servers:
    Adapter Name:          {8140112A-43D0-41D6-8B36-BE146C811173}
    Description:          Atheros AR8152/8158 PCI-E Fast Ethernet Controller (NDIS 6.20)
    IP Address:          10.5.7.196
    Subnet Mask:          255.255.0.0
    Default Gateway:          10.5.0.1
    DHCP Enabled:          Yes
    DHCP Server:          172.18.255.2
    Lease Obtained:          Tue Apr 23 10:14:40 2013
    Lease Expires:          Tue Apr 23 22:14:40 2013
    DNS Servers:          121.97.59.7
                        121.97.59.2
                        121.97.59.3
    Active Connection:          LAN Connection
    Connected:          Yes
    Online:                    Yes
    Using Modem:          No
    Using LAN:          Yes
    Using Proxy:          No
    Firewall Information
    Windows Firewall is on.
    iTunes is NOT enabled in Windows Firewall.
    Connection attempt to Apple web site was successful.
    Connection attempt to browsing iTunes Store was unsuccessful.
    The network connection timed out.
    Connection attempt to purchasing from iTunes Store was successful.
    Connection attempt to iPhone activation server was successful.
    Connection attempt to firmware update server was unsuccessful.
    The network connection timed out.
    Connection attempt to Gracenote server was successful.
    The network connection timed out.
    Last successful iTunes Store access was 2013-03-22 10:05:31.
    @@@. iTunes IS ENABLED THROUGH THE FIREWALL , even though diagnostics says "NOT enabled"

    hours after the first post i somehow got this to work. dont know how, but i do tried the dns clear cache, the clear host file, oh and i did the check automatically detech dns AND THEN se-check it again before i got this to work.

  • I have purchased a ringtone in the iTunes Store for my iPad, and I cannot find the download together with my music. I have received the invoice but I have no product. I am working with iOS6, if that helps. Can anybody help me?

    I have purchased a ringtone in the iTunes Store for my iPad, and I cannot find the download together with my music. I have received the invoice but I have no product. I am working with iOS6, if that helps. Can anybody help me?

    I am confused. Do you mean you found the music, not the tones, or you can't find either?
    If the former, then this is normal. You can't redownload tones from the Cloud.

  • Please can anybody help me. My itunes will not open on my laptop desktop.I have not changed anything on the laptop of significance.What can I do?

    Please can anybody help me? For no apparent reason or significant changes to my laptop I cannot open itunes from my desktop icon.I have uninstalled the whole product and re-installed it. But to no avail. I am very frustrated and cannot access my library or add to my ipod.Any help would be really helpful. I am on Windows7 Pro. Thank you

    Uninstall and reinstall from scratch.
    Try the following steps:
    1. Go to Microsoft website to fix install and Unistall problems. Click "Run now" from Fix it to remove all iTunes & related installer files:
    http://support.microsoft.com/mats/Program_Install_and_Uninstall
    Be aware that Windows Installer CleanUp Utility will not remove the actual program from your computer. However, it will remove the installation files so that you can start the installation, upgrade, or uninstall over.
    2. You should remove all instances of iTunes and the rest of the components listed below:
    it may be necessary to remove all traces of iTunes, QuickTime, and related software components from your computer before reinstalling iTunes.
    Use the Control Panel to uninstall iTunes and related software components in the following order:
    iTunes
    QuickTime  
    Apple Software Update  
    Apple Mobile Device Support  
    Bonjour  
    Apple Application Support (iTunes 9 or later)
    Follow the instructions from Apple article listed here: http://support.apple.com/kb/HT1923 to remove all components
    3. Reboot your computer. Next, download iTunes from here:http://www.apple.com/itunes/download/ and install from scratch

Maybe you are looking for

  • Load files into stack (layers) in AI.

    I`d like to load a bunch of jpegs into AI each on their own layer (not separate document windows) and load them as placed images, how would I do this from bridge? Preferably in one go not one after another.

  • Selection-screen in module program

    Hi, I have created a module pool prog. Now the new regd. is that I want to create selection-screen before displying the actual screen. But when I m trying to use selection screen then I m getting the message that it is not possible in type 'M' as my

  • DMS help !!!

    Hi Experts, I am new to Document management system. 1)     Is the document management system (DMS) needs some extra installations or DMS is shipped with sap r/3? 2)     Can any one send me document on DMS!! I don’t know how and where to start learnin

  • Cannot start OWB Client

    My OWB Client was working fine earlier today. When I try to start now I get the OWB Logo screen but I never get to the login screen. When I run owbclient.bat i get the following: C:\oracle\ora92\owb\bin\win32>call setowbenv JVM LIMIT SET TO: 384M Exc

  • Basic pl/sql doubt

    Declare cursor curname is select * from employees where employee_id in (100,101); v_emp curname%rowtype; begin open curname;--this stage the query is executed and datas are available in Active set which is the area oracle allocated for this cursor lo