Query regarding patches - are they cumulative?

We are in process of upgrading the BI Servers (BIS) and Client Machines (WAS) from BI XI R4.1 SP04+Patch1 To Pach4.
Downloaded Patch4 from SAP Portal is having 3 components (Server, Client, Dashboard) whether all these 3 components are cumulative of Patch1 and intermediate patches released in SP4? If Yes, can we skip the Patch1 installation while upgrading to Patch4?

Hi,
Your question is:
Are Front End patches cumulative (FEP 600 contains 100 through 600) , or do we have to apply them in turn (100, then 200, 300, 400, 500, 600) to get the full effect ?
Yes. latest FEP 600 contain all FEP of previous version patches.
You can apply the FEP it should resolved your issue.
Still you have any issue please check the installation check file if you have any red signal please reinstall FEP then  check the issue is persist or not?
Regards,
Venkat

Similar Messages

  • Basic query regarding work-area and select query

    hi
    dear sdn members,
    thanks too all for solving all my query's up till now
    i am stuck in a problem need help
    1)  why basically work-area has been used ? the sole purpose
    2)  different types of select query ? only coding examples
    note: no links pls
    regards,
    virus

    hi,
    Work Area
    Description for a data object that is particularly useful when working with internal tables or database tables as a source for changing operations or a target for reading operations.
    WORKAREA is a structure that can hold only one record at a time. It is a collection of fields. We use workarea as we cannot directly read from a table. In order to interact with a table we need workarea. When a Select Statement is executed on a table then the first record is read and put into the header of the table and from there put into the header or the workarea(of the same structure as that of the table)of the internal table and then transferred top the body of the internal table or directly displayed from the workarea.
    Each row in a table is a record and each column is a field.
    While adding or retrieving records to / from internal table we have to keep the record temporarily.
    The area where this record is kept is called as work area for the internal table. The area must have the same structure as that of internal table. An internal table consists of a body and an optional header line.
    Header line is a implicit work area for the internal table. It depends on how the internal table is declared that the itab will have the header line or not.
    .g.
    data: begin of itab occurs 10,
    ab type c,
    cd type i,
    end of itab. " this table will have the header line.
    data: wa_itab like itab. " explicit work area for itab
    data: itab1 like itab occurs 10. " table is without header line.
    The header line is a field string with the same structure as a row of the body, but it can only hold a single row.
    It is a buffer used to hold each record before it is added or each record as it is retrieved from the internal table. It is the default work area for the internal table.
    With header line
    SELECT.
    Put the curson on that word and press F1 . You can see the whole documentation for select statements.
    select statements :
    SELECT result
    FROM source
    INTO|APPENDING target
    [[FOR ALL ENTRIES IN itab] WHERE sql_cond]
    Effect
    SELECT is an Open-SQL-statement for reading data from one or several database tables into data objects.
    The select statement reads a result set (whose structure is determined in result ) from the database tables specified in source, and assigns the data from the result set to the data objects specified in target. You can restrict the result set using the WHERE addition. The addition GROUP BY compresses several database rows into a single row of the result set. The addition HAVING restricts the compressed rows. The addition ORDER BY sorts the result set.
    The data objects specified in target must match the result set result. This means that the result set is either assigned to the data objects in one step, or by row, or by packets of rows. In the second and third case, the SELECT statement opens a loop, which which must be closed using ENDSELECT. For every loop pass, the SELECT-statement assigns a row or a packet of rows to the data objects specified in target. If the last row was assigned or if the result set is empty, then SELECT branches to ENDSELECT . A database cursor is opened implicitly to process a SELECT-loop, and is closed again when the loop is ended. You can end the loop using the statements from section leave loops.
    Up to the INTO resp. APPENDING addition, the entries in the SELECTstatement define which data should be read by the database in which form. This requirement is translated in the database interface for the database system´s programming interface and is then passed to the database system. The data are read in packets by the database and are transported to the application server by the database server. On the application server, the data are transferred to the ABAP program´s data objects in accordance with the data specified in the INTO and APPENDING additions.
    System Fields
    The SELECT statement sets the values of the system fields sy-subrc and sy-dbcnt.
    sy-subrc Relevance
    0 The SELECT statement sets sy-subrc to 0 for every pass by value to an ABAP data object. The ENDSELECT statement sets sy-subrc to 0 if at least one row was transferred in the SELECT loop.
    4 The SELECT statement sets sy-subrc to 4 if the result set is empty, that is, if no data was found in the database.
    8 The SELECT statement sets sy-subrc to 8 if the FOR UPDATE addition is used in result, without the primary key being specified fully after WHERE.
    After every value that is transferred to an ABAP data object, the SELECT statement sets sy-dbcnt to the number of rows that were transferred. If the result set is empty, sy-dbcnt is set to 0.
    Notes
    Outside classes, you do not need to specify the target area with INTO or APPENDING if a single database table or a single view is specified statically after FROM, and a table work area dbtab was declared with the TABLES statement for the corresponding database table or view. In this case, the system supplements the SELECT-statement implicitly with the addition INTO dbtab.
    Although the WHERE-condition is optional, you should always specify it for performance reasons, and the result set should not be restricted on the application server.
    SELECT-loops can be nested. For performance reasons, you should check whether a join or a sub-query would be more effective.
    Within a SELECT-loop you cannot execute any statements that lead to a database commit and consequently cause the corresponding database cursor to close.
    SELECT - result
    Syntax
    ... lines columns ... .
    Effect
    The data in result defines whether the resulting set consists of multiple rows (table-like structure) or a single row ( flat structure). It specifies the columns to be read and defines their names in the resulting set. Note that column names from the database table can be changed. For single columns, aggregate expressions can be used to specify aggregates. Identical rows in the resulting set can be excluded, and individual rows can be protected from parallel changes by another program.
    The data in result consists of data for the rows lines and for the columns columns.
    SELECT - lines
    Syntax
    ... { SINGLE }
    | { { } } ... .
    Alternatives:
    1. ... SINGLE
    2. ... { }
    Effect
    The data in lines specifies that the resulting set has either multiple lines or a single line.
    Alternative 1
    ... SINGLE
    Effect
    If SINGLE is specified, the resulting set has a single line. If the remaining additions to the SELECT command select more than one line from the database, the first line that is found is entered into the resulting set. The data objects specified after INTO may not be internal tables, and the APPENDING addition may not be used.
    An exclusive lock can be set for this line using the FOR UPDATE addition when a single line is being read with SINGLE. The SELECT command is used in this case only if all primary key fields in logical expressions linked by AND are checked to make sure they are the same in the WHERE condition. Otherwise, the resulting set is empty and sy-subrc is set to 8. If the lock causes a deadlock, an exception occurs. If the FOR UPDATE addition is used, the SELECT command circumvents SAP buffering.
    Note
    When SINGLE is being specified, the lines to be read should be clearly specified in the WHERE condition, for the sake of efficiency. When the data is read from a database table, the system does this by specifying comparison values for the primary key.
    Alternative 2
    Effect
    If SINGLE is not specified and if columns does not contain only aggregate expressions, the resulting set has multiple lines. All database lines that are selected by the remaining additions of the SELECT command are included in the resulting list. If the ORDER BY addition is not used, the order of the lines in the resulting list is not defined and, if the same SELECT command is executed multiple times, the order may be different each time. A data object specified after INTO can be an internal table and the APPENDING addition can be used. If no internal table is specified after INTO or APPENDING, the SELECT command triggers a loop that has to be closed using ENDSELECT.
    If multiple lines are read without SINGLE, the DISTINCT addition can be used to exclude duplicate lines from the resulting list. If DISTINCT is used, the SELECT command circumvents SAP buffering. DISTINCT cannot be used in the following situations:
    If a column specified in columns has the type STRING, RAWSTRING, LCHAR or LRAW
    If the system tries to access pool or cluster tables and single columns are specified in columns.
    Note
    When specifying DISTINCT, note that you have to carry out sort operations in the database system for this.
    SELECT - columns
    Syntax
    | { {col1|aggregate( col1 )}
    {col2|aggregate( col2 )} ... }
    | (column_syntax) ... .
    Alternatives:
    1. ... *
    2. ... {col1|aggregate( col1 )}
    {col2|aggregate( col2 )} ...
    3. ... (column_syntax)
    Effect
    The input in columns determines which columns are used to build the resulting set.
    Alternative 1
    Effect
    If * is specified, the resulting set is built based on all columns in the database tables or views specified after FROM, in the order given there. The columns in the resulting set take on the name and data type from the database tables or views. Only one data object can be specified after INTO.
    Note
    If multiple database tables are specified after FROM, you cannot prevent multiple columns from getting the same name when you specify *.
    Alternative 2
    ... {col1|aggregate( col1 )}
    {col2|aggregate( col2 )} ...
    Effect
    A list of column labels col1 col2 ... is specified in order to build the resulting list from individual columns. An individual column can be specified directly or as an argument of an aggregate function aggregate. The order in which the column labels are specified is up to you and defines the order of the columns in the resulting list. Only if a column of the type LCHAR or LRAW is listed does the corresponding length field also have to be specified directly before it. An individual column can be specified multiple times.
    The addition AS can be used to define an alternative column name a1 a2 ... with a maximum of fourteen digits in the resulting set for every column label col1 col2 .... The system uses the alternative column name in the additions INTO|APPENDING CORRESPONDING FIELDS and ORDER BY. .
    Column labels
    The following column labels are possible:
    If only a single database table or a single view is specified after FROM, the column labels in the database table - that is, the names of the components comp1 comp2... - can be specified directly for col1 col2 ... in the structure of the ABAP Dictionary.
    If the name of the component occurs in multiple database tables of the FROM addition, but the desired database table or the view dbtab is only specified once after FROM, the names dbtab~comp1 dbtab~comp2 ... have to be specified for col1 col2 .... comp1 comp2 ... are the names of the components in the structure of the ABAP Dictionary.
    If the desired database table or view occurs multiple times after FROM, the names tabalias~comp1 tabalias~comp2 ... have to be specified for col1 col2 .... tabalias is the alternative table name of the database table or view defined after FROM, and comp1 comp2 ... are the names of the components in the structure of the ABAP Dictionary.
    The data type of a single column in the resulting list is the datatype of the corresponding component in the ABAP Dictionary. The corresponding data object after INTO or APPENDING has to be selected accordingly.
    Note
    If multiple database tables are specified after FROM, you can use alternative names when specifying single columns to avoid having multiple columns with the same name.
    Example
    Read specific columns of a single row.
    DATA wa TYPE spfli.
    SELECT SINGLE carrid connid cityfrom cityto
    INTO CORRESPONDING FIELDS OF wa
    FROM spfli
    WHERE carrid EQ 'LH' AND connid EQ '0400'.
    IF sy-subrc EQ 0.
    WRITE: / wa-carrid, wa-connid, wa-cityfrom, wa-cityto.
    ENDIF.
    Alternative 3
    ... (column_syntax)
    Effect
    Instead of static data, a data object column_syntax in brackets can be specified, which, when the command is executed, either contains the syntax shown with the static data, or is initial. The data object column_syntax can be a character-type data object or an internal table with a character-type data type. The syntax in column_syntax, like in the ABAP editor, is not case-sensitive. When specifying an internal table, you can distribute the syntax over multiple rows.
    If column_syntax is initial when the command is executed, columns is implicitly set to * and all columns are read.
    If columns are specificied dynamically without the SINGLE addition, the resulting set is always regarded as having multiple rows.
    Notes
    Before Release 6.10, you could only specify an internal table with a flat character-type row type for column_syntax with a maximum of 72 characters. Also, before Release 6.10, if you used the DISTINCT addition for dynamic access to pool tables or cluster tables, this was ignored, but since release 6.10, this causes a known exception.
    If column_syntax is an internal table with header line, the table body and not the header line is evaluated.
    Example
    Read out how many flights go to and from a city. The SELECT command is implemented only once in a sub-program. The column data, including aggregate function and the data after GROUP BY, is dynamic. Instead of adding the column data to an internal l_columns table, you could just as easily concatenate it in a character-type l_columns field.
    PERFORM my_select USING `CITYFROM`.
    ULINE.
    PERFORM my_select USING `CITYTO`.
    FORM my_select USING l_group TYPE string.
    DATA: l_columns TYPE TABLE OF string,
    l_container TYPE string,
    l_count TYPE i.
    APPEND l_group TO l_columns.
    APPEND `count( * )` TO l_columns.
    SELECT (l_columns)
    FROM spfli
    INTO (l_container, l_count)
    GROUP BY (l_group).
    WRITE: / l_count, l_container.
    ENDSELECT.
    ENDFORM.
    SELECT - aggregate
    Syntax
    ... { MAX( col )
    | MIN( col )
    | AVG( col )
    | SUM( col )
    | COUNT( DISTINCT col )
    | COUNT( * )
    | count(*) } ... .
    Effect
    As many of the specified column labels as you like can be listed in the SELECT command as arguments of the above aggregate expression. In aggregate expressions, a single value is calculated from the values of multiple rows in a column as follows (note that the addition DISTINCT excludes double values from the calculation):
    MAX( col ) Determines the maximum value of the value in the column col in the resulting set or in the current group.
    MIN( col ) Determines the minimum value of the content of the column col in the resulting set or in the current group.
    AVG( col ) Determines the average value of the content of the column col in the resulting set or in the current group. The data type of the column has to be numerical.
    SUM( col ) Determines the sum of the content of the column col in the resulting set or in the current group. The data type of the column has to be numerical.
    COUNT( DISTINCT col ) Determines the number of different values in the column col in the resulting set or in the current group.
    COUNT( * ) (or count(*)) Determines the number of rows in the resulting set or in the current group. No column label is specified in this case.
    If you are using aggregate expressions, all column labels that are not listed as an argument of an aggregate function are listed after the addition GROUP BY. The aggregate functions evaluate the content of the groups defined by GROUP BY in the database system and transfer the result to the combined rows of the resulting set.
    The data type of aggregate expressions with the function MAX, MIN or SUM is the data type of the corresponding column in the ABAP Dictionary. Aggregate expressions with the function AVG have the data type FLTP, and those with COUNT have the data type INT4. The corresponding data object after INTO or APPENDING has to be selected accordingly.
    Note the following points when using aggregate expressions:
    If the addition FOR ALL ENTRIES is used in front of WHERE, or if cluster or pool tables are listed after FROM, no other aggregate expressions apart from COUNT( * ) can be used.
    Columns of the type STRING or RAWSTRING cannot be used with aggregate functions.
    When aggregate expressions are used, the SELECT command makes it unnecessary to use SAP buffering.
    Null values are not included in the calculation for the aggregate functions. The result is a null value only if all the rows in the column in question contain the null value.
    If only aggregate expressions are used after SELECT, the results set has one row and the addition GROUP BY is not necessary. If a non-table type target area is specified after INTO, the command ENDSELECT cannot be used together with the addition SINGLE. If the aggregate expression count( * ) is not being used, an internal table can be specified after INTO, and the first row of this table is filled.
    If aggregate functions are used without GROUP BY being specified at the same time, the resulting set also contains a row if no data is found in the database. If count( * ) is used, the column in question contains the value 0. The columns in the other aggregate functions contain initial values. This row is assigned to the data object specified after INTO, and unless count( * ) is being used exclusively, sy-subrc is set to 0 and sy-dbcnt is set to 1. If count( *) is used exclusively, the addition INTO can be omitted and if no data can be found in the database, sy-subrc is set to 4 and sy-dbcnt is set to 0.
    if helpful reward points

  • Query regarding patching

    OS Windows Server 2003
    DB Oracle 10.2.0.1
    I am installing patch set 6810189 to base version to upgrade this to 10.2.0.4.
    There are three task to be done as part of patch set installation.
    Step 1. Preinstallation tasks ( Stopping services of Oracle etc )
    Step 2. Patch installation
    Step 3. Post installation task ( Running DBUA )
    Step 1 & 2 I am able to run successfully, but step 3 is giving some problem.
    My query is :-
    1. what is the role of running DBUA?
    2. It looks like Patch set is installed in Oracle home with the completition of step 2, Is the only role of running DBUA is to upgrade alredy existing running databases under base installation?
    3. If we create new databases at this stage then it mean we only need to create new database, we need to run DBUA on top of these newly created database?
    In short if old database is unuseful ( Means we can drop old database ) then patchin is copletely successfull at this point & we can go ahead with newly created database after step 2 execution.
    Thanks in advance.

    DBUA upgrades currently running databases to the installed patch version (10.2.0.4 in your case). If you do not need these databases, you can drop them and create new ones - these will automatically be 10.2.0.4.
    HTH
    Srini

  • Query regarding patch 7461070

    Hi,
    We are in the process of upgrading from 11.5.10.2 to R12.1.3.
    As part of applying patch #7461070 the Readme.txt says customers who are on R12.AD.A version must apply patch 6767273:R12.AD.A.
    We have installed R12.1.1 with Upgrade option.
    Please let me know if patch 6767273 needs to be applied.
    I checked the 11i DB and this patch has not been applied.
    Regards,
    VN

    Please let me know if patch 6767273 needs to be applied.
    It needs to be applied unless you have (Patch 7305220, R12.AD.A.DELTA.6) applied since patch 6767273 is included in it.
    Thanks,
    Hussein

  • R12 upgradation :  query regarding patch 7461070

    I have to apply patch 7461070 as a part of upgradation. It's written in patch note that "must apply critical patch 6767273:R12.AD.A before applying the AD Mini pack". But how to check that instruction are not clear.
    FI :
    We only have izuprod.txt file under 11i APPL_TOP/admin
    $ ls -ltr *prod.txt
    -rwxr-xr-x 1 egapc2d appseeg 231650 Oct 30 2004 applprod.txt
    -rwx------ 1 egapc2d appseeg 4966 Oct 20 2006 izuprod.txt

    Run the query in (How to tell what your current AD patchlevel is. [ID 390671.1], under "Release 12 Single Tier" or "Release 12 Multiple Tiers" section), if you are on (Patch 4502962 - R12.AD.A) then you need to apply (Patch 6767273) before applying (Patch 7461070).
    Thanks,
    Hussein

  • Hi guys can someone help with a query regarding the 'podcast app' why do they not have all the episodes that relate to one show available why only half or a selected amount

    Hi guys can someone help with a query regarding the 'podcast app' why do they not have all the episodes that relate to one show available why only half or a selected amount

    THanks...but some days they have all the episodes right back to the very first show...ive downloaded a few but they are only available every now and then which makes no sense...why not have them available the whole time ??

  • SCCM report says 17 patches are needed, but they are not needed

    Another weird one. I've had this before with just 1 patch needed but never figured it out. But now I have a Server 2012 box (SCCM 2012 R2 CU4) that report "Compliance 5 - Specific computer" says need 17 patches. Software Center on the box says
    none are needed. Patches are downloaded and installing on other computers. In Windows Update\View Update History, it says all 17 patches successfully installed ON THE SAME DAY. So I think something happened with the patch run on that day and Software Center
    and Update History say they finished but somewhere in the db it thinks they haven't. Cache purges, reboots, and running all actions on the actions tab haven't helped.
    Patches that have come up as needed after that day install and report as completed just fine.
    Any ideas?
    Ben JohnsonWY

    why that works: what can happen is that occasionally, somewhere between a client and the MP, the MP processing, and processing into the database, statemessages might become corrupt or somehow else 'lost'.  normally not a big deal; but for software updates
    to get a client to re-report "current" state of all software updates currently known about at the client, that little snippet needs to be re-run.
    In my environment about 2x a year I have all my clients re-submit their software updates state (enable a deployment for a while, then disable it).  I don't know how many clients "might be" in a misreporting state, but it gives me the warm
    fuzzy that I'm doing my best to reduce the possibility that computers might be listing they are missing an update, when they aren't.
    Standardize. Simplify. Automate.

  • Can adobe patch files be deleted what are they whay do they take up so much space

    Can adobe patch files be deleted? What are they and why does it take up so much space?

    sweetboo5
    If you are using Premiere Elements 9 Mac, then the next thing to do is to get details on what you mean by "patch files".
    There are no "patch files" as you describe. There is a Premiere Elements 9.0.1 Update that needs to be used with the program. That you install and do not uninstall for best performance of the product.
    What I am wondering is this. Do you mean by patch files and the description that you give Scratch Files?
    If so, then you are looking at preview files and conformed audio and video files.
    I am strictly an Elements Windows person so you will have to help me translate my Premiere Elements 9.0/9.0.1 Windows instructions into meaningful ones for you as it relates to file location.
    Under Edit Menu/Preferences/Scratch Disk, where do you have Video Previews and Audio Previews directed. At that location, you should be able to delete these files. They are automatically generated when you render Timeline content. The consequence of deletion is that you will need to render again content in the project from which they came (if that project still exists). Go to the location shown and delete.
    Then look to see where the Media Cache is directed. Those are conformed audio and video files (cfa and pek). They can be deleted and will be regenerated by the program if and when needed. Go to the location shown and delete.
    Then look to Edit Menu/Preferences/Media and the Media Cache Database. That is targeting conformed video files (.mcdb file extension). They can be deleted and will be regenerated by the program if and when needed. You can click on the Clean button there to get rid of them instead of following the path to them as shown in the Media Cache Database area.
    Do not delete any source media that went into projects after they were saved closed.
    Please review the above and do not hesitate to ask if you need clarification on anything that I have written.
    If none of the above applies to your question, then please more details.
    Thanks.
    ATR

  • Query regarding CPU patches

    Hi,
    As per my understanding CPU patches are released every quarter for each version & realease of oracle database.
    I am using Oracle 10.2.0.3 on IBM-AIX 5.3 (64 bit).
    I checked on below link of metalink.
    Patches & Updates -> Oracle Server/Tools -> Latest Patchsets -> Latest Oracle Server/Tools Patchsets -> Then selected oracle database and OS version -> Patch Type selected as Any -> Classification selected as High/Security -> Go
    But the above gives me no CPU patch list!!!!
    So is it no mandatory that each & every quarted we will get a new CPU patch from oracle? Or am I doing any mistake in selection above?
    Thanks in advance.
    Best Regards,
    oratest

    Hi Srini,
    Thanks for your reply.
    As per the link doc, the primary support for 10.2 has been ended on July-2010, and the extended support will end on July-2013.
    And as you mentioned that CPU patches are released in extended support as well, so as of now I must see CPU patch in metalink for my database release (10.2.0.3). But I can not see any CPU patch for my version, release??
    One more thing: As per my understanding CPU patches comes under High/Security patch classification, am I right?
    Best Regards,
    oratest

  • Query regarding G/LAccounts in psoting

    Hi Experts,
    I have one query regarding PCP0.
    After executing PCP0,If We double click on the posting document we can see the number of G/L accounts in that posting Document.If we double click on each G/L Account it shows all the revision information indetail for all payments cumulated into that particular G/L Account.
    Some of the G/L's are appearing as single line in the posting document and if we double click for the revision information it is showing all the Wagetypes with personnel numbers and the total of each wagetype.
    Some of the G/L's we can see Multiple times for each individual.
    Can any one please explain where does we set up the the revision information for the G/L Accounts .
    Appreciate If anyone can help to know this information.
    Thanks & Regards,
    Sandhya.

    Hi Gopal,
    Counting class are assigned to the Periodic work Schedule 1 to 9 are just arbitart sequence numbers and have no meaning in general they are used for linking Pweriodic Work schedules with differences.
    You can use the class for absence and attendance counting to specify different methods of counting according to the period work schedule.
    They have no other meaning apart from that.
    Thanks and Regards
    Swati

  • Query regarding Opened/Closed GL periods

    Hello Gurus,
    ive got an issue, when using 0FIGL_C01 Cube.
    The query ive created balances on cumulative balance (as key figure) and GL account names (as hierarchy).
    Now i want to show the data of cumulative balance regarding closed periods.
    I.e. if we have current April month the balance should be 0, but all other in the past January, February, March should be displayed.
    How it is possible to do this?
    Ive tryed to create a calculated key figure, whith code something like:
    IF debit and credit == 0 then Cummulative balance=0 else Cumulative balance.
    It works fine but it shows also the postings of current period, which isnt realy closed.
    Tried to search the indicators of FI open/closed periods, but the only thing i found is S_ALR_87003642 - Open and Close Posting Periods transaction showing Company code, GL account ranges and from to period data.
    What could be the sollution for this? Should i create new DS for the mensioned TC and then to create a multicube or perhaps is a better and faster way in doing it?
    Thanks a lot in advice
    Laurynas Prikockis

    Hi Shrikant,
    >
    Shrikant Varma wrote:
    > Yes, I could consider using belnr selection to reduce the size of the selection. This will again be a selection more
    > based on knowledge of application(of course with fine tuning of packet size).
    >  But then this approach will not be as efficient and as easy as letting database take control of the iteration of this
    > huge dataset - as is intended by the use of cursors with the help of packet size.
    >
    I'm not sure what you mean here: "let the database contorl the iteration of this huge dataset - with cursors".
    Generally speaking you have 2 options when it comes to parallel processing:
    Parallelize processes in the ABAP stack. These processes access different, non-overlaping, parts of your restult set
    in parallel. Using the BELNR could be an approach to build different, non-overlapping paackages.
    Database side parallelization. This is possible for every action that uses multiblock I/O (full table scans and index fast full scans) and for partitioned segments. For non-partitioned segments and single block I/O database side parallelization is not possible.
    So, generally speaking, you have 3 options:
    1.) parallelize in ABAP and build idependent packages
    2.) force the DB to do multiblock I/O (full table scan, index fast full scan) in parallel
    3.) partition your table and indexes.
    I think (it's just my opinion) for an ERP (not BW / BI) system
    - option 3 is not a good option for OLTP systems (several reasons). I see it very, very, very rarely or close to never in OLTP systems
    - option 2 may read (much) more data then you would need to read, although a very efficient I/O method would be used (multibock I/O)
    - option 1 requires programming in ABAP but will read exactly the data you need to read and can be controlled very well in the ABAP stack (parallel single block I/O will be used)
    In alamost all cases (that are similar to your case) i have see option 1 was used.
    Kind regards,
    Hermann

  • Multiple Templates Selection When No languages patches are applied

    Hi All,
    I am looking for the best approach to translate the .rtf templates into different languages when no languages patches are applied.
    Regards,
    Nagesh Manda.

    there are both "Upload to Flickr" and "BlackMug" apps in App World, for both of those services, they should work.
    In your screenshots, the middle one, if you select one image, and then tap the second image, does it DE-select the first selection?
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Query regarding BOM

    Hello All,
         I need to know how are the values for component materials which are entered through transaction ME39 captured and also how are they linked with the purchasing document?
        I am writing a report for downloading the PO data in which i need to capture also the component items for the PO items(i.e child items).But when the BOM for that material is missing.when i check in transaction CS13,it says that the BOM for material does not exist.Also in transaction CS03,the message i get is "Logical system not defined".Maybe the BOM has got deleted or something like that,but i just need to know while entering the component materials manually,the values get stored in which tables and how is the linking to the purchasing document?
    Thanks & Regards,
    Deepti.

    Try this query:
    SELECT T1.[Father], T1.[Code], T1.[Quantity]
    FROM [dbo].[ITT1]  T1
    WHERE T1.[Code] =[%0]

  • Query regarding the variance calculation

    Hi all,
    Hope all are doing well. i have an query regarding the VARIANCE CALCULATION IN Production planning module.
    here i could see KKS1,KKS2,KKA1 etc,. codes they are using in sap. can any one kindly clarify these codes and uses. pls
    regs,
    siva-v

    Hi Siva,
    To understand the basics of variance calculation in SAP, read below threads which will provide detail information on the same,
    Basics of variance calculation-Understanding Period End activities, WIP and Variances
    Variance Calculation -KKS1
    How production order variance get calculated
    Regards,
    Narresh

  • Query regarding regx

    Hi,
    I have a query regarding regular expression.
    what regular expression should I use which matches the following urls
    http://www.abc.com/xyz
    http://www.abc.com/xyz/abc.htm
    http://www.abc.com/xyz/<any thing>
    but it should not match
    http://www.abc.com/xyz45d
    http://www.abc.com/xyz<anything> if(anything does not start with /)
    I wrote the regx as : (http://www.abc.com/xyz)(/\w)*
    but it also matches the last url.
    Thanks
    Edited by: JL.Nayak on Jun 26, 2008 9:36 AM

    prometheuzz wrote:
    kajbj wrote:
    No, that's also incorrect.I have always found it a bit odd that people continue to answer questions that already have been answered, and especially if they post an incorrect answer.Usually this can be explained by the fact that there are still some Dukes to be rewarded to the thread in question. That's not the case with this one: odd indeed.But does that mean that you shouldn't read the other replies before you post your reply?
    (There must be a rule that says that you aren't allowed to read the other replies if you are posting in a certification thread, another odd thing)

Maybe you are looking for

  • Hyperlink to PDF

    Hi We are planning on storing report information pdf documents in a unique folder defined under folder in the Central Management Console" Each report will have a unique report information pdf document. Is it possible to create a hyperlink from my web

  • How do i figure it out what app use the cellular data in standby mode?

    How do i figure it out what app use the cellular data in standby mode? I disabled the cellular data for 3 days, and my battery last longer. I don't use push notifications, neither location services. I'm not signed in in skype or any IM app.

  • Disabling Saving of Quicktime Movies In Compressor

    I'm creating a bunch of Quicktime Movies in compressor and I want to disable the save as option that the end user can see. (The drop down box on the lower right). I know I can do it through HTML by setting kioskmode to true, but that seems like an ex

  • No signal in Taunton Somerset TA2. Can't select EE on Network Selections.

    There is absolutely no EE signal on my Note 2 in Taunton TA2 today. I've tried searching for the network operator but not offered EE. Is this a service issue?

  • Need To Compare Metadata In Application And Copy it

    Hi I need to know how to compare data between two machine. I have application work with metadata. I mean screen and table will keep in the database and when I access to application, screen will popup the window like I have set in the database. Now I