Need 3 column based on excel formulas, for Average cost of sales.

hii,,
i am using Oracle 10g...
select
pdate,
pcode,
pno,
pqty,
pprice,
trade_amt
     , qty_on_hand
     , total_cost
     , case when pqty < 0
       then
            lag (avg_price) over (order by pdate)
       else
         avg_price
       end avg_price
     , case when pqty < 0
       then
            lag (avg_price) over (order by pdate)*-pqty
       else
            avg_price*pqty
       end bal_cost
from (
select
pdate,
pcode,
pno,
pqty,
pprice,
pqty*pprice trade_amt,
sum (pqty) over (order by pdate) qty_on_hand,
sum (pqty*pprice) over (order by pdate) total_cost,
sum (pqty*pprice) over (order by pdate) /
            sum (pqty) over (order by pdate) avg_price
from
select to_date('12/01/2011','dd/mm/yyyy') pdate, 'PUR' pcode, 1 pno, 10 pqty, 37.425 pprice from dual union all
select to_date('13/01/2011','dd/mm/yyyy'), 'INV', 1, -5, 48.169 from dual union all
select to_date('14/01/2011','dd/mm/yyyy'), 'PUR', 3, 15, 21.628 from dual union all
select to_date('15/01/2011','dd/mm/yyyy'), 'INV', 4, -10, 32.6 from dual union all
select to_date('16/01/2011','dd/mm/yyyy'), 'PUR', 4, 20, 22.33 from dual union all
select to_date('16/01/2011','dd/mm/yyyy'), 'PUR', 5, 35, 19.55 from dual union all
select to_date('18/01/2011','dd/mm/yyyy'), 'INV', 5, -8, 28 from dual union all
select to_date('22/01/2011','dd/mm/yyyy'), 'INV', 6, -12, 32.6 from dual
order BY 1,2,3
this is what the above query returns....( total_cost and avg.price are wrong...so as the bal_cost)
PDATE     PCO           PNO          PQTY        PPRICE     TRADE_AMT   QTY_ON_HAND    TOTAL_COST     AVG_PRICE      BAL_COST
12-JAN-11 PUR         1.000        10.000        37.425       374.250        10.000       374.250        37.425       374.25
13-JAN-11 INV         1.000        -5.000        48.169      -240.845         5.000       133.405        37.425       187.125
14-JAN-11 PUR         3.000        15.000        21.628       324.420        20.000       457.825        22.891       343.373
15-JAN-11 INV         4.000       -10.000        32.600      -326.000        10.000       131.825        22.891       228.915
16-JAN-11 PUR         4.000        20.000        22.330       446.600        65.000      1262.675        19.426       388.517
16-JAN-11 PUR         5.000        35.000        19.550       684.250        65.000      1262.675        19.426       679.905
18-JAN-11 INV         5.000        -8.000        28.000      -224.000        57.000      1038.675        19.426       155.407
22-JAN-11 INV         6.000       -12.000        32.600      -391.200        45.000       647.475        18.222       218.669
8 rows selected.
i expect the result to be like this...
PDATE     PCO           PNO          PQTY        PPRICE     TRADE_AMT   QTY_ON_HAND    TOTAL_COST     AVG_PRICE      BAL_COST
12-JAN-11 PUR         1.000        10.000        37.425       374.250        10.000       374.250        37.425       374.25
13-JAN-11 INV         1.000        -5.000        48.169      -240.845         5.000       133.405        37.425       187.125
14-JAN-11 PUR         3.000        15.000        21.628       324.420        20.000       457.825        25.577       511.545
15-JAN-11 INV         4.000       -10.000        32.600      -326.000        10.000       131.825        25.577       255.773
16-JAN-11 PUR         4.000        20.000        22.330       446.600        65.000      1262.675        23.412       702.373
16-JAN-11 PUR         5.000        35.000        19.550       684.250        65.000      1262.675        21.333       1386.623
18-JAN-11 INV         5.000        -8.000        28.000      -224.000        57.000      1038.675        21.333       1215.961
22-JAN-11 INV         6.000       -12.000        32.600      -391.200        45.000       647.475        21.333       959.969
8 rows selected.to arrive at bal_cost and avg.price, i need 1 more calculation for 'cost_of_sal' which is where i am stuck how to create it first and make use of that..
1) qty_on_hand running balance is OK..
2) cost_of_sale = when qty is -nve (i.e. pcode = 'INV') then take (1 row)previous value of Avg.Price and multiply by sold qty of current row.
3) bal_cost = when qty is +ve (i.e. pcode = 'PUR') then take (1 row)previous value bal_cost and add the trade_amt of current_row OR
when qty is -nve (i.e. pcode='INV') then take (1 row)previous vaue bal_cost and add the cost_of_sale of current_row
finally
4) avg.price = bal_cost / qty_on_hand
just a link showing excel forumlas...http://www.flickr.com/photos/58335021@N07/5356642176/
thank you..

hii Etbin..thanks for your effort..but still the result is not as i want, above...
select pdate,pcode,pno,pqty,pprice,trade_amt,qty_on_hand,total_cost,avg_price,bal_cost,
       case when pqty < 0
            then lag(avg_price) over (order by pdate) * (- pqty)
       end cost_of_sale,  /* shown as an intermediate result - included in next case */
       case when pqty < 0
            then lag(bal_cost) over (order by pdate) + lag(avg_price) over (order by pdate) * (- pqty)
            else lag(bal_cost) over (order by pdate) + trade_amt
       end bal_cost_new,  /* shown as an intermediate result - used in next case */
       case when pqty < 0
            then lag(bal_cost) over (order by pdate) + lag(avg_price) over (order by pdate) * (- pqty)
            else lag(bal_cost) over (order by pdate) + trade_amt
       end / qty_on_hand avg_price_new
  from (select pdate,pcode,pno,pqty,pprice,trade_amt,qty_on_hand,total_cost,
               case when pqty < 0
                    then lag(avg_price) over (order by pdate)
                    else avg_price
               end avg_price,
               case when pqty < 0
                    then lag(avg_price) over (order by pdate) * (- pqty)
                    else avg_price * pqty
               end bal_cost
          from (select pdate,pcode,pno,pqty,pprice,
                       pqty * pprice trade_amt,
                       sum(pqty) over (order by pdate) qty_on_hand,
                       sum(pqty * pprice) over (order by pdate) total_cost,
                       sum (pqty * pprice) over (order by pdate) / sum(pqty) over (order by pdate) avg_price
                from
select to_date('12/01/2011','dd/mm/yyyy') pdate, 'PUR' pcode, 1 pno, 10 pqty, 37.425 pprice from dual union all
select to_date('13/01/2011','dd/mm/yyyy'), 'INV', 1, -5, 48.169 from dual union all
select to_date('14/01/2011','dd/mm/yyyy'), 'PUR', 3, 15, 21.628 from dual union all
select to_date('15/01/2011','dd/mm/yyyy'), 'INV', 4, -10, 32.6 from dual union all
select to_date('16/01/2011','dd/mm/yyyy'), 'PUR', 4, 20, 22.33 from dual union all
select to_date('16/01/2011','dd/mm/yyyy'), 'PUR', 5, 35, 19.55 from dual union all
select to_date('18/01/2011','dd/mm/yyyy'), 'INV', 5, -8, 28 from dual union all
select to_date('22/01/2011','dd/mm/yyyy'), 'INV', 6, -12, 32.6 from dual
order by 1,2,3
PDATE      PCO           PNO          PQTY        PPRICE     TRADE_AMT   QTY_ON_HAND    TOTAL_COST     AVG_PRICE      BAL_COST  COST_OF_SALE  BAL_COST_NEW AVG_PRICE_NEW
12/01/2011 PUR         1.000        10.000        37.425       374.250        10.000       374.250        37.425       374.250
13/01/2011 INV         1.000        -5.000        48.169      -240.845         5.000       133.405        37.425       187.125       187.125       561.375       112.275
14/01/2011 PUR         3.000        15.000        21.628       324.420        20.000       457.825        22.891       343.369                     511.545        25.577
15/01/2011 INV         4.000       -10.000        32.600      -326.000        10.000       131.825        22.891       228.913       228.913       572.281        57.228
16/01/2011 PUR         4.000        20.000        22.330       446.600        65.000      1262.675        19.426       388.515                     675.513        10.393
16/01/2011 PUR         5.000        35.000        19.550       684.250        65.000      1262.675        19.426       679.902                    1072.765        16.504
18/01/2011 INV         5.000        -8.000        28.000      -224.000        57.000      1038.675        19.426       155.406       155.406       835.308        14.655
22/01/2011 INV         6.000       -12.000        32.600      -391.200        45.000       647.475        18.222       218.668       233.109       388.515         8.634
8 rows selected.any other thought..
TY

Similar Messages

  • ADDDITIVE COST FOR PRODUCT COST BY SALES ORDER SCENARIO.

    Dear friends,
    We are using costing for sales order & we have maintained the costing variant under the path IMG> Controlling> Product Cost Controlling> cost object controlling> Product cost by sales order >premliminary costing & order based costing>product costing for sales order costing>Costing variant for Product costing >Check costing variant for product costing.
    Under this we have maintained the Costing variant, Now we need to have Additive cost. But didnt found the tab in the costing variant where as when we check in T.code OKKN which is a part of Product cost planning we can find the Additive cost tab.
    How to run addtive costing run for Product cost by sales order scenario & please guide me with one example.
    Or else is there any configuration where we can assign standard costing variant PPC1 instead of Costing variant SOC1 ( which is a costing variant of Product cost by sales order.
    Please guide me
    regards,
    Sandeep

    Hi Sandeep,
    You may please try using Unit Costing for Sale Order.
    It is over an above the sale order costing you have done. So in case you want to post any additional known cost, you may do the unit costing for the sale order after the sale order costing.
    Trust this helps

  • I need help converting an excel formula to javascript for a fillable form.

    Here is the scenario,
    If a person travels for 1 or 2 days we pay out a mealsrate of 75% per day. If 3 or more days we pay # days less 2 days * 25%. I hope that makes sense.
    V7 = Days, F14 = Mealsrate
    Formula in Excel
    =IF($V$7 = 1,$F$14*0.75,($V$7*$F$14)-(($F$14*0.25)*2))  and it works.
    I am VERY NEW to javascript (like yesterday) so don't laugh. I really have no idea what I am doing, but I was trying. Here is what i got. (by the way, It doesn't work)
    if(this.getField( ("Days").value=="1")){
    var f =this.getField("Mealsrate");
    event.value= f.value * .75;
    }else event.value = (Days * f.value)- (f.value *.25)*2;
    I appreciate all the help i can get.
    Tracie
    I'll be back on Monday, I hope I can find my post.

    OK, that Excel formula can be reduced a bit. The following custom Calculate scipt will do what the formula does:
    // Custom Calculate script
    (function () {
        // Get the inputs
        var days = getField("Days").value;
        var rate = getField("Mealsrate").value;
        // Set this field value
        if (days == 1) {
            event.value = 0.75 * rate;
        } else {
            event.value = (days - 0.5) * rate;
    It would make sense to add additional code to deal with negative numbers in either of the input fields.
    Edit: corrected a typo

  • Numbers Equivalent of Excel Formula for Converting HH:MM:SS to DD:HH:MM:SS

    I am not sure if this has been asked before.
    What would be the Numbers formula for converting HH:MM:SS to DD:HH:MM:SS?  The Excel formula is entering 396:59:45 into a cell and then in another cell is the following =TEXT(A2,"dd:hh:mm:ss").  The A2 is the example cell.

    There is no formula to actually do the conversion. It is a matter setting the cell format. After that all you need to do is add a simple =<cell> formula to get the value in (i.e. - see my previous post), or a formula to add the two values (=A2+A5). Use Duration rather then Time for the cell formats.
    A duration in Numbers for iOS will not appear 10:16:25:03, it will display as 10d 16h 25m 03s. If it is the actual display punctuation you are trying to change, it may be possible using a combination of a Duration and TEXT functions but would be quite lengthy, convoluted, and more trouble than it is worth.

  • Formula for Average

    Post Author: kbrinton
    CA Forum: Formula
    Good Morning,
    I have a ticket number field that is a string so all I can do is a count on the field.  But I need to do an average.  Does anyone know a formula for this?

    Post Author: V361
    CA Forum: Formula
    What does the sting look like ?, is it just numbers, or numbers and characters 888-888-8888, depending on the string, you should be able to convert it to a number (using a formula) and then sum the formula.   Please provide an example of your strings if you can.

  • Need to write a custom formula for accrual plan in Leave

    Hi , I have also one problem related to leave.
    How to create fast formula for leave setup because i want to create fast formula accordingly If People will present 20 days in month then they will get 1 PL and If people will present 60 days then they will get 1 CL.So for this how to do leave setup and fast formula.Please help me out.
    I Waiting for your reply,

    Please refer following notes:
    How to create and use Oracle FastFormula functions [ID 214027.1]
    Fast Formula FAQ [ID 211422.1]

  • TCode for calculating cost by sales order number - EK02 condition value

    In our case we have order item based cost. For each order item we push the calculator button and calculate the cost. The system adds the EK02 condition by this way. But is there a transaction code where we enter the sales order number and the system calculates the cost and adds the EK02 condition?

    Hi,
    T-code is KVBI  and or explore sales order costing
    SAP Menu >> SD >> Sales >> Product cost by sales order 
    Kapil

  • Business Content for Product Cost by Sales Order

    Hi,
    We need to do reporting on costs associated to Sales Orders. The corresponding R/3 Area is "Product Cost by Sales Order" in Cost Object Controlling. We have looked at the standard cube for Cost Object Controlling (0PC_C01) but this cube only contain costs related to manufacturing orders, whereas we need to look at costs associated with sales orders after Result Analysis.
    Have you guys any ideas which content that might support this, if any?
    Many thanks!
    / David

    Hi Christian,
    please refer to SAP Note 584791: <a href="https://websmp208.sap-ag.de/~form/handler?_APP=01100107900000000342&_EVENT=REDIR&_NNUM=0000584791&nlang=E">BW-BCT-CO: Costs not extracted on sales orders</a>.
    Unfortunately there's no DataSource providing the data you need for your analysis scenario. A custom development is needed (<i>awful!!</i>)
    <b>Note 584791 - BW-BCT-CO: Costs not extracted on sales orders</b>
    <b>Symptom</b>
    In R/3, costs are posted directly to sales orders. The costs have to be analyzed in the BW system. In the standard system, however, this data is not extracted into the BW system.
    <b>Other terms</b>
    0CO_OM_OPA_1; 0CO_OM_OPA_6
    <b>Solution</b>
    1. There are currently no DataSources for costs on sales orders in the standard BW Business Content. Unfortunately, there are currently no resources scheduled for a new development in this area either.
    2. Therefore, the DataSources and the Business Content must be created in the customer project within the framework of consulting as a customer solution concerning the generic extraction options of the BW Service APIs or function modules you have programmed yourself for extracting data.
    3. Technical background information about costs on sales orders:
    The transaction data is available in the following R/3 tables
    COSS and COSP - Totals records or COEP - Line items.
    This concerns records for the VB* object numbers.
    The master data of the sales orders is contained in the VBAK and VBAP tables.
    The 0CO_OM_OPA_1 and 0CO_OM_OPA_6 DataSources only extract costs for orders with master data in the AUFK table. These types of requests always have OR* object numbers. Therefore, these DataSources cannot be used for sales orders.
    However, you may be able to assign requests from the AUFK table (for example, maintenance orders or production orders) to a sales order through the AUFK-KDAUF table field.

  • Showing contents of a column based on a condition for another column.

    Hello,
    I am trying to create a report that lists all of the Opportunities within our database. I need a few details about this opportunity to appear. I need the account name that this opportunity belongs to, amongst other things- which I can do, however I also need to show the number of UNITS for this opportunity BUT I have a condition that needs to be met before I show the number of units.
    I only want to show the UNITS IF the PRODUCTTYPE that this opportunity belongs to is "GA". Then I also need another column with UNITS in it, but again I only want the UNITS to appear if the PRODUCTTYPE IS DA.
    Essentially I am trying to find out the number of units per product type and I need these to appear in separate columns. If the PRODUCTTYPE doesn't meet the condition, i.e. the PRODUCTTYPE is not GA then I would like the field to be blank.
    I know that I should write this formula in the "Edit Formula" of the UNITS field, but I do not know how to write this condition.
    I would very much appreciate some help as soon as possible.
    Kind Regards,

    Hi,
    You need to use a case statement, it looks like this:
    CASE
    WHEN opportunity.producttype = 'GA'
    THEN opportunity.units
    ELSE NULL
    END
    Ofcourse you need to use the correct column names.
    Regards, Tim

  • Conditional formating based on excel formula

    Hi experts!
    I have a problem with BPC formatting. Under my EVDRE expansion, I inserted a column to validate some data before sending it. The value of this formula can be TRUE or FALSE and it validates each row of the expansion.
    Now, if the value is false, the row or at least some fields of it must turn red so the user knows were are the mistakes.
    I have defined under the format range an entry for the heading to evaluate in rows and in format I create the next conditional formatting:: =$I38 = FALSE ---> background red.
    When I push the refresh button, the format applies to al heading under the expansion, but the conditional format formula changes to =$I1064034 = FALSE
    If I lock the row number, it won't iterate for each row and the format will be based just on one cell instead of one cell per row.
    ¿Any ideas? ¿Other ways to achieve this? I've also tried to format the cell inside the expand and eliminate the entry on the format range but it doesn't expand to the rest of the cells...
    Thanks in advance

    Hi Nilanjan!
    Thanks for the answer, the individual conditional formatting is working fine!
    The reason why it wasn't working the first time was because it's incompatible to do individual conditional formatting with conditional formatting on format range.
    I gues I'll have to do all the formatting on individual cells...
    Thanks agains!

  • Need help with creating a formula for percentages

    I am creating a fillable form for subcontractors to submit change requests. One of the sections on the form is for materials. Most subs will charge a markup which is a small percentage of the actual cost. Obviously, both amounts are variables. I want the subs to be able to enter the material cost in field 1, the markup percentage in field two, and then have field three calculate the dollar amount for them. Is this possible? Btw, I'm clueless on this, it's my first attempt at an adobe form. Thanks!!!

    A more standard way is to use something like the following as the third field's custom Calculate script:
    // Custom calculate script
    (function () {
        // Get the field values, as numbers
        var v1 = +getField("price").value;
        var v2 = +getField("markup_percentage").value;
        // Calculate the value of this field
        event.value = v1 * (1 + v2 / 100);
    This is assuming that a percentage of 20% is entered by the user as 20, as opposed to 0.2 or something else. Change the field values to match the actual fields in your form.
    If the markup field is blank or zero, the total will simply be the same as the price value.

  • Report for Average Cost of Inventory?

    Is there a report which can be run to see the average price of all inventory? Or even for inventory which in considered historical (already sold a few months ago).
    thanks,
    Mike

    anyone know the answer?

  • Assembly cost rollup wrong for averag cost org

    HI,
    For two of the assembly items , when we complete wip jobs cost is coming as very less.
    When i see the item cost for these 2 assembly items , it seems cost rollup is not correct.
    Cost elements unit cost and material are showing up same value :X$
    Remaining fileds material overhead,Resource, Outside processing and resource overhead are blank with no cost.
    Include in rollup is already enabled and it is make item.
    So Cost rollup is not done properly for these 2 assembly items , but need a way how can we correct them.
    Please let me know the way to correct them.
    Thanks
    Vasudha.

    Hi,
    1. are all the 4 lines for same job? -- Yes
    please provide details of accounts on each of the 4 lines.
    For first 2 lines -- I00195-050002001-0-0-WB02-0-0-0 -- Inv valuation
    for 2nsd 2 lines -- I00195-052000000-0-0-WB02-0-0-0 -- WIP valuation
    2. have you setup any overheads?
    My guess is that the 4 lines corresponds to
    16625.29 WIP Assy Completion 30 => Inv Valuation Debit
    5689.43 WIP Assy Completion 30 => Inv Valuation Debit
    -16625.29 WIP Assy Completion -30 => WIP Material Account Credit
    -5689.43 WIP Assy Completion -30 => WIP Resource Account Credit
    Can you confirm? --Yes
    3. Go thru item cost history of finished good item and see if there is any change in cost on transaction date of WIP Completion Transaction.
    Check the details of cost elements.
    Distribution 4 lines are with date 02-FEB-2012 14:07:26
    If I look at record history of item costs form for this item last update date is -- 10-MAY-2012 15:19:03 and cost elements also of same date (costs button in item costs window)
    Here I can see costs as below
    Cost element basis rate or amount unit cost
    Material item 17.88 17.88
    Material item 0 0
    OSP item 0 0
    OSP item 0 0
    Please let me know if anything is required from my side to analyse the issue .
    Thanks for your response
    Vasudha.

  • MDX Query for Average customer first sale amount for each year

    Hello,
    I new to MDX, and I am looking to build a query that would get all the first sale amount for the customes and average that.  The intent is to use find an average each year.   I am looking to use this against the adventure works database.   
    I am not sure exatcly how to start this .  Any help is much appreciated.
    J

    Hi,
    I'll do it in several stages.
    let's first define an ordered set of date/sale to one customer over all periods:
    SELECT
    {[Measures].[Internet Sales Amount]} ON 0
    NonEmpty
    [Date].[Calendar].[Date]
    [Customer].[Customer].&[15561]
    ,[Measures].[Internet Sales Amount]
    ,[Customer].[Customter].&[15561]
    ) ON 1
    FROM [Adventure Works];
    we retain the first line of the result set  with item(0):
    SELECT
    {[Measures].[Internet Sales Amount]} ON 0
    NonEmpty
    [Date].[Calendar].[Date]
    [Customer].[Customer].&[15561]
    ,[Measures].[Internet Sales Amount]
    ,[Customer].[Customer].&[15561]
    ).Item(0) ON 1
    FROM [Adventure Works];
    next, for each year we define a measure that will retain the first sale for each customer
    (I  limit the customer set to the first 2000)
    WITH
    MEMBER [Measures].[Mymeasure 2006] AS
    NonEmpty
    Exists
    [Date].[Calendar].[Date].MEMBERS
    ,[Date].[Calendar].[Calendar Year].&[2006]
    [Customer].[Customer].CurrentMember
    ,[Measures].[Internet Sales Amount]
    ,[Customer].[Customer].CurrentMember
    ).Item(0)
    ,[Measures].[Internet Sales Amount]
    MEMBER [Measures].[Mymeasure 2007] AS
    NonEmpty
    Exists
    [Date].[Calendar].[Date].MEMBERS
    ,[Date].[Calendar].[Calendar Year].&[2007]
    [Customer].[Customer].CurrentMember
    ,[Measures].[Internet Sales Amount]
    ,[Customer].[Customer].CurrentMember
    ).Item(0)
    ,[Measures].[Internet Sales Amount]
    SELECT
    [Measures].[Mymeasure 2006]
    ,[Measures].[Mymeasure 2007]
    } ON 0
    ,NON EMPTY
    Head
    [Customer].[Customer].[Customer]
    ,2000
    ) ON 1
    FROM [Adventure Works];
    We then take the average for each year:
    WITH
    MEMBER [Measures].[AVG cust first sale 2006] AS
    Avg
    Head
    [Customer].[Customer].[Customer]
    ,2000
    NonEmpty
    Exists
    [Date].[Calendar].[Date].MEMBERS
    ,[Date].[Calendar].[Calendar Year].&[2006]
    [Customer].[Customer].CurrentMember
    ,[Measures].[Internet Sales Amount]
    ,[Customer].[Customer].CurrentMember
    ).Item(0)
    ,[Measures].[Internet Sales Amount]
    MEMBER [Measures].[AVG cust first sale 2007] AS
    Avg
    Head
    [Customer].[Customer].[Customer]
    ,2000
    NonEmpty
    Exists
    [Date].[Calendar].[Date].MEMBERS
    ,[Date].[Calendar].[Calendar Year].&[2007]
    [Customer].[Customer].CurrentMember
    ,[Measures].[Internet Sales Amount]
    ,[Customer].[Customer].CurrentMember
    ).Item(0)
    ,[Measures].[Internet Sales Amount]
    SELECT
    [Measures].[AVG cust first sale 2006]
    ,[Measures].[AVG cust first sale 2007]
    } ON 0
    FROM [Adventure Works];
    Philip,

  • Do we need IPC in CRM B2B Webshop for creation of ERP Sales order

    Hi Experts,
    can you pls guide in following scenario in CRM 7.0
    We  are using CRM B2B WEBSHOP, We are creating ERP SALES ORDER .
    We have requirement to display price break up like base price, different discounts, taxes, freights while creation of Sales order on the webshop.
    I would like to understand,
    1) whether we need IPC to show price breakup in SALES ORDER in CRM WEBSHOP.
    2) if yes, do we need enhancement at IPC to display complex discount types on webshop ?
    3) do we need to download entire pricing ( customizing +condition records ) from backend ECC to CRM.
    If anybody has worked on similer scenario ,requesting to help.
    Any points , documents ,step by step guide will be highly appreciated.
    thanks in advance,
    regards,
    PD

    Hi,
    ipc is inbuilt in Kernel to CRM 7.0
    BR,
    Darshan

Maybe you are looking for

  • Purchase order emails are sent from SAP without attachment.

    In SAP Business One, the user goes to Purchase order > clicks on the email icon >"Would you like to attach an edited report to the email?' > Yes > Send > Email is sent to the vendor. If the connection to the B1SHR(mapped to network drive under genera

  • Screen Flicker (Flashing)

    Hi there, I am having a trouble with a screen flicker or flashing frequently. Its HP Pavilion X2 10.1-inch Detachable 2 in 1 Laptop. It usually repeats when i get connect it to the internet or watch a video or the battery is lower then 40% or so? Hel

  • Upgrade to Solaris 9

    Hello Experts, I have a Sun Enterprise 420R system with Solaris 8 OS installed.I want to know wheather we can upgrade the Solaris 8 to Solaris 9 for the above mentioned Hardware. Is there any issues faced while upgrading the OS on the particular hard

  • BCB/ICI Version Upgrade from 3.00 to 3.02 on CRM

    Dear Sir/ Ma'am, Presently our DEV CRM J2EE engine is on BCB/ICI version 3.00.64507 and we would like to upgrade to version BCB/ICI 3.02 for Free Seating  Functionality in CRM Server. Can you please provide the information for upgrading of this ICI v

  • Consolidation deletes values with the Flow_Type property "OPENING"

    Hello all, We have set up journals to populate a DataSrc dimension value with the following properties: COPYOPENING - BLANK DATASRC_TYPE - M IS_CONSOL - BLANK IS_CONVERTED - BLANK In other words, we do not do not want values in this data source to be