PUP differ from period to period

Dear Experts,
we have material ledger actual costing active, we run CKMLCP at end of the period when analyse the material master we found the PUP price differ from period to period in accounting view of material master,
Exp- run CKMLCP for period "7" PUP is 1000 the same value should show in period "8" also, bcoz CKMLCP is not run for period "8"
but system is showing 1200 fer period 8.
please help to resolve the issue.
Thanks & Regards,

Hi,
If the periodic unit price is just statistical then in this case it is updated every time when the material is moved. This is a side-effect of the activation of the actual moving average price posting logic in the material ledger. This logic is described in the note 1253944.
Nevertheless, for a material with price control 'S' and price determination '3', the periodic unit price is not relevant until the
single level price determination has been run.
The periodic unit price for V-price materials is still updated when the 'X' in the field MLNEW of table TCURM is removed. However, the posting logic is different.
MLNEW = ' ': The logic is the one described in note 689189.
MLNEW = 'X': the logic is the one described in note 1253944.
For S-price materials with price determination '3', the update logic for the periodic unit price is as follows:
MLNEW = ' ': The periodic unit price is only updated in the single and multi level price determination and when posting the closing entry.
MLNEW = 'X': Additionally, the periodic unit price is also updated in every movement.
regards
Waman

Similar Messages

  • Fetch the netprice from the validity period which always matches with the

    Let me describe the same.
    Suppose the PO creation date is 04.07.2007
    The conditions for an item in a contract for the PO are as follows;
    1. Validity from 04.07.2007 validity to 04.07.2007 Netprice = 100.00
    2. Validity from 05.07.2007 validity to 31.12.9999 Netprice = 200.00
    We need to always fetch the netprice from the validity period which always matches with the PO creation date. here the value 100.00 should be the correct netpr as the PO creation date matches with the first validity period.
    But the program is fetching the netprice 200.000 which belongs to the second validity period. That is beacuse the select statement which fetches the data for contracts collects on the basis of EKKO-kdate and ekko-kdtab.the fields kdate and kdtab retrieves the validity period of the contract which is from 04.07.2007 to 31.072007. This data is then used to retrieve the netpr data from EKPO and it fetched 200.00 as it retrives the netprice of current data in contract validity and h not with respect to PO creation date.
    This data is then used to fetch the get the netpr data from EKPO.
    what we need is the netprice for that validity period of item(Conditions) that matches with the PO creation date..
    Below is the code where I'm selecting the data from ekko and ekpo for the contracts data..Can you please add the code snippet to the below attachesd subroutine to get the required data from KONV and KONP so that we can retrieve the correct Netprice.
    FORM select_contracts USING p_s_cebeln LIKE s_cebeln[]
    p_c_k_bstyp TYPE ebstyp
    p_p_bukrs TYPE bukrs
    p_p_ekorg TYPE ekorg
    p_p_ekgrp TYPE bkgrp
    *Begin of Mod-004
    fp_p_cernam type ty_r_ernam
    p_p_cernam TYPE ernam
    *End of Mod-004
    p_s_werks LIKE s_werks[]
    p_s_matnr LIKE s_matnr[]
    p_s_lifnr LIKE s_lifnr[]
    p_s_val_dt LIKE s_val_dt[].
    *mod-002
    data : l_amount type BAPICURR_D, " Net price
    l_waers TYPE waers, " Currency Key
    l_eff_amount type BAPICURR_D. " Effective value
    data: l_v_netpr type bprei.
    *mod-002
    SELECT ebeln
    bukrs
    bstyp
    aedat
    ernam
    lifnr
    zterm
    ekorg
    ekgrp
    waers
    wkurs
    kdatb
    kdate
    inco1
    INTO TABLE i_ekko
    FROM ekko
    WHERE ebeln IN p_s_cebeln
    AND bstyp EQ p_c_k_bstyp
    AND bukrs EQ p_p_bukrs
    AND ekorg EQ p_p_ekorg
    AND ekgrp EQ p_p_ekgrp
    *Begin of Mod-004
    AND ernam EQ p_p_cernam
    AND ernam IN fp_p_cernam
    *End of Mod-004
    AND lifnr IN p_s_lifnr
    AND ( kdatb IN p_s_val_dt OR kdate IN p_s_val_dt ).
    IF sy-subrc EQ 0.
    Populates internal table i_ekpo using EKPO table.
    SELECT ebeln
    ebelp
    loekz
    txz01
    matnr
    werks
    ktmng
    menge
    meins
    bprme
    netpr
    peinh
    webaz
    mwskz
    uebto
    untto
    erekz
    pstyp
    knttp
    repos
    webre
    konnr
    ktpnr
    ean11
    effwr
    xersy
    aedat
    prdat
    INTO TABLE i_ekpo
    FROM ekpo
    FOR ALL ENTRIES IN i_ekko
    WHERE ebeln = i_ekko-ebeln
    and aedat = i_ekko-aedat
    AND werks IN p_s_werks
    AND matnr IN p_s_matnr.
    LOOP AT i_ekpo INTO rec_ekpo.
    MOVE rec_ekpo-ebeln TO rec_contr-ebeln.
    MOVE rec_ekpo-ebelp TO rec_contr-ebelp.
    MOVE rec_ekpo-loekz TO rec_contr-loekz.
    MOVE rec_ekpo-txz01 TO rec_contr-txz01.
    MOVE rec_ekpo-matnr TO rec_contr-matnr.
    MOVE rec_ekpo-werks TO rec_contr-werks.
    MOVE rec_ekpo-ktmng TO rec_contr-ktmng.
    MOVE rec_ekpo-menge TO rec_contr-menge.
    MOVE rec_ekpo-meins TO rec_contr-meins.
    MOVE rec_ekpo-bprme TO rec_contr-bprme.
    MOVE rec_ekpo-netpr TO rec_contr-netpr.
    move l_v_netpr TO rec_contr-netpr.
    mod-002
    read table i_ekko into rec_ekko with key
    ebeln = rec_ekpo-ebeln.
    l_waers = rec_ekko-waers.
    CALL FUNCTION 'BAPI_CURRENCY_CONV_TO_EXTERNAL'
    EXPORTING
    currency = l_waers
    amount_internal = rec_contr-netpr
    IMPORTING
    AMOUNT_EXTERNAL = l_amount.
    rec_contr-netpr = l_amount.
    mod-002
    MOVE rec_ekpo-peinh TO rec_contr-peinh.
    MOVE rec_ekpo-webaz TO rec_contr-webaz.
    MOVE rec_ekpo-mwskz TO rec_contr-mwskz.
    MOVE rec_ekpo-uebto TO rec_contr-uebto.
    MOVE rec_ekpo-untto TO rec_contr-untto.
    MOVE rec_ekpo-erekz TO rec_contr-erekz.
    MOVE rec_ekpo-pstyp TO rec_contr-pstyp.
    MOVE rec_ekpo-knttp TO rec_contr-knttp.
    MOVE rec_ekpo-repos TO rec_contr-repos.
    MOVE rec_ekpo-webre TO rec_contr-webre.
    MOVE rec_ekpo-konnr TO rec_contr-konnr.
    MOVE rec_ekpo-ktpnr TO rec_contr-ktpnr.
    MOVE rec_ekpo-ean11 TO rec_contr-ean11.
    MOVE rec_ekpo-effwr TO rec_contr-effwr.
    mod-002
    CALL FUNCTION 'BAPI_CURRENCY_CONV_TO_EXTERNAL'
    EXPORTING
    currency = l_waers
    amount_internal = rec_contr-effwr
    IMPORTING
    AMOUNT_EXTERNAL = l_eff_amount.
    rec_contr-effwr = l_eff_amount.
    *mod-002
    MOVE rec_ekpo-xersy TO rec_contr-xersy.
    APPEND rec_contr TO i_contr.
    CLEAR: rec_ekpo,rec_contr.
    mod-002
    CLEAR : rec_ekko,l_amount, l_eff_amount,l_waers.
    mod-002
    ENDLOOP.
    Modifying i_contr using i_ekko.
    SORT i_ekko BY ebeln.
    LOOP AT i_contr INTO rec_contr.
    READ TABLE i_ekko INTO rec_ekko WITH KEY
    ebeln = rec_contr-ebeln
    BINARY SEARCH.
    MOVE rec_ekko-bukrs TO rec_contr-bukrs.
    MOVE rec_ekko-bstyp TO rec_contr-bstyp.
    MOVE rec_ekko-aedat TO rec_contr-aedat.
    MOVE rec_ekko-ernam TO rec_contr-ernam.
    MOVE rec_ekko-lifnr TO rec_contr-lifnr.
    MOVE rec_ekko-zterm TO rec_contr-zterm.
    MOVE rec_ekko-ekorg TO rec_contr-ekorg.
    MOVE rec_ekko-ekgrp TO rec_contr-ekgrp.
    MOVE rec_ekko-waers TO rec_contr-waers.
    MOVE rec_ekko-wkurs TO rec_contr-wkurs.
    MOVE rec_ekko-kdatb TO rec_contr-kdatb.
    MOVE rec_ekko-kdate TO rec_contr-kdate.
    MOVE rec_ekko-inco1 TO rec_contr-inco1.
    MODIFY i_contr FROM rec_contr.
    ENDLOOP.
    ENDIF.
    REFRESH: i_ekko,
    i_ekpo.
    CLEAR : rec_ekko,
    rec_ekpo,
    rec_contr.
    ENDFORM. "select_contracts
    Thanks.

    Hi,
    Please get the valid condition ( based on date ) from A016 (MK & LPA). With the appropriate KNUMH read the Condition header. You can access the different condition items viz., PB00, RA00 etc., for the values from table KONP. Further if you have Value scales / Quantity scales, you can read the data from KONM, KONW.
    An additional tips: in KONP, if you have a condition like RA00 - Rebate, the value will be multiplied by 10 and saven in database to accomodate the discount to the third decimal.
    I could not completely understand your requirements like nature of development ( Is it a Report / SAP Script ??) you are working etc., so that I could help you precisely.
    Hope this helps,
    Best Regards, Murugesh AS
    Message was edited by:
            Murugesh Arcot

  • Problems when waking from long sleep periods

    Suddenly this morning my iMac developed a problem when recovering from a long period of sleep. I'm having trouble finding a solution.
    I have my iMac set to ask for password when it recovers from sleep or screen saver. When I woke my iMac this morning the password dialog box appeared at the top of the screen as a garbled mess. If I put my iMac back to sleep and then wake it again it usually solves the problem.
    I don't want to turn password verification off. Has anyone seen this problem before? Any suggestions on what might be cause?

    funkyblue:
    I usually leave my Pismo on and allow it to sleep. I find that waking from sleep and general functioning of the computer works a lot better if from time to time (I do it at least weekly) I shut down the computer, start up in Safe Mode, log in, empty Trash and reboot normally. The emptying Trash part clears the font caches.
    You should consider doing other maintenance procedures, if you don't already. Gulliver's Mac OS X System Maintenance has good ideas with linked resources.
    Please do not hesitate to post back with further questions or comments.
    Good luck.
    cornelius

  • 2nd Previous Period from the current period

    Hi MM Gurus,
    Is it possible in MM to open a 2nd previous from the current period?
    Please advise,
    Thanks,
    Themba

    hi,
    > Check the OSS NOTE 487381
    You can only open the last period via using the MMPI..using indicator allow back posting...
    Other than this you can open pervious periods for sandbox techniques. as well ....but SAP don't recommend it...
    check few posted threads on SDN...
    Regards
    Priyanka.P
    Edited by: Priyanka Paltanwale on Jun 2, 2009 9:52 AM

  • Copy from one period to period range in Integrated Planning

    Hi ,
    Looking for help:
    Scenario:
    Copy the planned data  from one period to period range:
    From,
    Calendar Year (Varaible)=2010
    Caledar Month (Variable)=01
    Version (Variable)=XYZ
    To
    Calendar Year (Varaible)=2010
    Caledar Month (Variable)=02 to 12 (Created multi single value variable, **Interval  variable is not available in Planning Function)
    Version (Variable)=XYZ
    Used Copy in Planning Function: created 3 variables for From and 3 variables for To, created planning sequence tried to insert in the Workbook.
    VAR_NAME_1 -1 - Caledar Year variable from
    VAR_VALUE_1 - 1 - 2010
    VAR_NAME_2 - 1 - Calendar Month From
    VAR_VALUE_2 - 1 - 01
    VAR_NAME_3 - 1 - Vesion Variable From
    VAR_VALUE_3 - 1 - XYX
    VAR_NAME_4 - 1 - Caledar Year variable To
    VAR_VALUE_4 - 1 - 2010
    VAR_NAME_5 - 1 - Calendar Month To
    VAR_OPERATOR_5 - 1 - BT
    VAR_VALUE_LOW_EXT_5 - 1 - 02
    VAR_VALUE_HIGH_EXT_5 - 1 - 12
    VAR_SIGN_5 - 1 - I
    VAR_NAME_6 - 1 - Vesion Variable To
    VAR_VALUE_6 - 1 - XYZ
    Getting error message:
    Parameter VAR_Value(_EXT)_5 is missing for variable "Caledar Month To"  -
    Reading the records in period 01 but failed to generate/ write to period 02 to 12
    Please advise.
    Thanks

    Hi Deepti,
    Great.... thank you very much for your help. FOX code is working perfect,  I eliminated only  FOREACH S_KFNAM (I have only one KF in the Cube)
    Now the req. changed a little bit:
    User want to select the Cost Center- to copy data with above scenario. (CalYear, calendar month and version)
    I created a Filter - with Cost center and Controlling Area (Compounding), restricted Controlling area with Hierarchy and created Multiple single value Hierarchy Node variable for cost center.
    Created a planning sequence with the Filter and PF.
    I created a Work book for User to use this copy function (by Planning Sequence)
    SCENARIO;
    USER want to copy data in COSTCENTER:CC100000
    From: caledar year=2010, calendar month=01 and version=ABC
    To: calendar year=2010, calendar month = 02 to 12 and version=ABC
    VAR_NAME_1 1 FROM CAL YEAR
    VAR_VALUE_1 2010
    VAR_NAME_2 1 FROM CAL MONTH
    VAR_VALUE_2 1 01
    VAR_NAME_3 1 FROM VERSION
    VAR_VALUE_3 1 ABC
    VAR_NAME_4 1 TO CALYEAR
    VAR_VALUE_4 2010
    VAR_NAME_5 1 TO CALMONTH
    VAR_VALUE_LOW_EXT_5 1 02
    VAR_VALUE_HIGH_EXT_5 1 12
    VAR_NAME_6 1  TO VERSION
    VAR_VALUE_6  1 ABC
    VAR_NAME_7 1 HIERARCHY NODE VARIABLE
    VAR_VALUE_EXT_7 1 CC100000
    VAR_NODE_IOBJNM_7 1 0COSTCENTER
    Got Error:
    Please enter a valid value for 0COSTCENTER 
    Check the value"CC100000"(parameter: VAR_VALUE_EXT_7, variable ZMSV_CC)
    But reading the data and generating the data for all the cost centers.
    Issue:
    How to pass the variable values  to the Filter. Is my definition is wrong in the workbook?
    VAR_NAME_7 1 HIERARCHY NODE VARIABLE
    VAR_VALUE_EXT_7 1 CC100000
    VAR_NODE_IOBJNM_7 1 0COSTCENTER
    Thanks

  • FB for converting inputed period into period format of the user

    Hi All,
    my concern is to convert from to another period format.
    For example:
    in my user-profile is setted the following format:  DD/MM/YYYY
    what i do input is a period with format: DD.MM.YYYY
    Does a FB exists in BW that can help with this task?

    hi,
    do like this.
    code]DATA: V_DATE_IN(10) TYPE C,
    V_DATE_SAP TYPE SY-DATUM.
    V_DATE_IN = '01.01.2005.'.----------------------> ur input
    CONCATENATE V_DATE_IN+6(4) "<--for Year
    V_DATE_IN+3(2) "<--for month
    V_DATE_IN+0(2) "<--for Day
    INTO V_DATE_SAP.
    now V_DATE_SAP will have value like 20060101.
    pass the above to this FM.
    data:date_form type CHAR10.
    call function 'HRGPBS_HESA_DATE_FORMAT'
    exporting
    P_DATE = V_DATE_SAP   -
    > input date
    importing
    DATESTRING = date_form
    exceptions
    others = 1.[/code]
    date_from -
    >  DD/MM/YYYY fomat
    rgds
    Anver
    if hlped pls mark points

  • Net price in R/3 PO differ from the actual local PO net price Urgent

    Hi,
    I  am working on extended classic scenario
    I created a local PO, in which the net price of the material is 100 Euro later on I changed the payment terms and when I checked the backend PO which is the copy of the local PO, I found that the net price has been changed from 100 Euro to 212 Euro and when I checked the PO in SRM I could see the same value i.e. 100 Euro.I checked the change document in backend system and found that the net price has been changed by the SRM_RFC user.
    This has happened for quite a few number of local PO
    I am not able to understand how the backend PO net price can differ from the local PO net price.
    Please provide me useful input
    Regards,
    Yatendra

    Hi Yatendra,
    I think this is due to R/3.
    Can you check the source of supply in R/3 PO ?
    especially if a PIR or contract has been assigned ?
    Look at price conditions in R/3 PO item, to see the execution plan of pricing.
    I think that during ECS PO creation in R/3, the SRM price is correctly passed, but during the change the price is overwritten by R/3.
    What are your SRM & R/3 releases ?
    Check OSS arround BAPI_PO_CREATE, BAPI_PO_CREATE1 and BAPI_PO_CHANGE.
    Rgds
    Christophe
    PS: please reward points for helpfull answers

  • Error : Period dimension 'Period' is missing a Base Time Period member 'Jun' that has been deleted since the last deployment. Base Time Period members cannot be deleted once the dimension is deployed

    HI,
    I am using V11.1.2.2 Hyperion Planning. I am currently getting an error:
    Error : Period dimension 'Period' is missing a Base Time Period member 'Jun' that has been deleted since the last deployment. Base Time Period members cannot be deleted once the dimension is deployed
    This is what i got when i tried to add alternate hierarchy to my shared dimension. I tried to delete it and it messed up.
    NOw it wont deploy my application.
    Can any one suggest.
    Thanks in advance
    Cheers,
    XXX

    EPMA!!!!! EPMA!!!!
    I'm playing around with it to write a blog post and it is crazy. Only possible workaround (till now i'm not able to figure out a solution to it) is to copy the application and deploy it as a new one. Take copy of all objects (forms, tasklist etc). Delete the corrupted application and rename the new one to old.
    Regards
    Celvin
    http://www.orahyplabs.com

  • How does Adobe ExportPDF differ from the export feature in Adobe Acrobat Pro 9.0?

    How does Adobe ExportPDF differ from the export feature in Adobe Acrobat Pro 9.0?

    ExportPDF is based on a newer conversion engine than the one found in Acrobat 9.0.  They're similar in some respects, but ExportPDF is more advanced.
    -David

  • CK11N_STD of profit center valuation differ from legal & group valuation

    Dear Experts,
    Standard price for profit center valuation differ from company code & group valuation, due to some lower level mat. get different cost in costing run. But, all three valuation currency are TWD.
    ex: Mat. A in lower level
    legal/group valuation:    $ 282,872
    Profit center valuation:  $ 282,871
    We didn't mark up any price between plants.
    The STD price for lower level mat. are all the same.
    Why do we still get differnt results?
    How do we change it to the same STD, because currency are all the same.(TWD)
    Thanks in advance.

    Just those SD conditions with condition category equal to 'b' or 'c'  or 'h'  are passed into CO-PA profit center valuation.  SAP Note 135288 explains it more.  Note 364449 is also relevant.  Should you seek to correct past postings, please consider notes 418080 and 206888.
    Thanks and best regards,
    [Jeffrey Holdeman|http://wiki.sdn.sap.com/wiki/display/profile/Jeffrey+Holdeman]
    SAP Labs, LLC
    BusinessObjects Division
    Americas Applications Regional Implementation Group (RIG)

  • Cost centre wise expenses comperative with period to period

    hi all,
                     pls tell me is there any standard report for cost centre wise expenses comperative with period to period.
                  if not pls help me how i can prepare it and also tell me table name.
    regards
    vikas

    Hi,
    check tcode KSBT
    KSBL
    S_ALR_87013611
    S_ALR_87013612
    S_ALR_87013613
    S_ALR_87013614
    S_ALR_87013623
    S_ALR_87013624
    S_ALR_87013625
    S_ALR_87013626
    Regards,
    V.Balaji
    Reward if Usefull...
    Edited by: Balaji V on Apr 1, 2008 6:40 AM

  • Keyboard shortcuts CS5 differ from CS4.

    Hello all,
    Im used to work on a mac, but in my new job i have to use both the PC and MAC. Now im used to CS4 and i just migrated to CS5. Now most shortcuts im used to dont work, wich is a real pain. I completely rely on them for i sometimes dont even know where to find them in the menus.
    Any advice?
    Thanks

    I have begun working in a school, helping students with shop illu and indy. They gave me a Dell, it will have to do. The students work on dell pc's or brand new macs, or on there own laptops. Most problems are solved, so i will remap the functions that need fixing. I would like to reply in the thread but im at home now and although im signed in, i cant respond, can only report abuse. I shall wander over to the photoshop section and ask there about my other questions.
    Thanks again all, for the quick response.
    Date: Thu, 27 Jan 2011 16:43:28 -0700
    From: [email protected]
    To: [email protected]
    Subject: Keyboard shortcuts CS5 differ from CS4.
    What brand of Laptop?
    This certainly does sound like the mapping problem I mentioned. You can fix all the shorcuts that use the enter key by making a new set and adding the numpad enter as a second option, but that isn't going to help with other shortcuts that use numpad keys (though the only ones that likely would affect are style shortcuts, for which the numlock must be on -- others you can use the regular keys for those functions and just change the habits you may have developed about the numpad keys).
    I'm not sure what's going on in Photoshop. You should probably ask over there if anyone knows of similar issues related to keyboard mappings. And just maybe you should try a different brand of laptop...
    >

  • For Period & In Period

    Hi Gurus
    Can anybody tell me what is the "FOR PERIOD" & "IN PERIOD". what is the purpose?
    what steps we need to do to get them in Payroll Results?
    Thanks & Regards

    Hi LB,
    For period means that for the period the payroll run and In Period means in which that payroll record of for period getsd created.
    So lets take an eg. too make it more clear
    I have executed regular payroll for 01 2009
    then the for period and in period value will be same, which will be 01 2009 and 01 2009
    Now when I executes payroll for 2nd period of 2009 then it retroed back to 1 st period. So one A record created for 01 2009
    so now the entries will be:
    Status     For Period    In Period
    P            01 2009        01 2009
    A            01 2009        02 2009
    A            02 2009        02 2009
    So it also one of the check to find out that the pay result you are viewing was the actual run or retor.
    Also in few cases in In Period or For Period instead of pay period you will find four digit number so that means the for period or in period is off-cycle run
    They get created by themselves in the payroll run through payroll driver and is governed thru control record values.
    Hope this will provide you the clatrity you are looking for and would be of help
    Regards
    Guds

  • Logical joins differ from Physical layer joins

    Can please answer to my Question?
    1.How does Logical joins differ from Physical layer joins?
    2.What is NQSConfig.INI file and what does it contain?
    Thanks
    Chi
    [email protected]

    2) The NQSConfig.INI file contains configuration and tuning parameters for the Oracle BI Server. There are parameters to configure disk space for temporary storage, set sort memory buffer sizes, set cache memory buffers, set virtual table page sizes, and a number of other configuration settings that allow you to take full advantage of your hardware's capabilities.
    For more information about the NQSConfig.INI file parameters, refer to Oracle Business Intelligence Infrastructure Installation and Configuration Guide.
    1) Logical joins are used in Business Model, Physical joins are used in physical layer. A key property of a logical join is cardinality. Cardinality expresses how rows in one table are related to rows in the table to which it is joined. Logical joins supports outer joins. so many else to mention... just go through RPD help file.
    - Madan

  • How Web intelligence is differ from Crystal reports

    How Web intelligence is differ from Crystal reports

    it depends on what's the business requirement that will influence what kind of reporting format you want to use.
    to list few differences:
    1. CR more suitable for complex reports webi used more for general adhoc tor quick reporting.
    2. CR can be published to enterprise or can be saved to the disk and can be accessed using crystal reports SDK: CRJ or CR.NET. Where as webi is strictly accesses only via Enterprise. There are no webi SDKs for accessing webi reports in unmanaged ( not published to enterprise) mode.
    3. CR SDK\ RAS more powerful than Report Engine SDK( used for webi)
    4. To view a CR you can use page server and cache server. To view a webi report, you use only webi processing server, no cache server available in BO framework. Similar for scheduling webi reports its the webi processing server that does it all.
    5.  CR offers more options to connect to database than for webi.
    6. CR has mutliple 3rd party exporting formats. Webi has fewer.
    7. CR can be designed from CR designer desktop tool, or CR.com or on demand or using RAS SDK ( at runtime). Webi report can be designed in webi rich client desktop tool or java reporting panel( JRP) available in Infoview or any app that can load this JRP applet. in 3.1 you can use Java Report Engine SDK to create webi report from scratch at runtime ( like RAS for CR).
    So not that 1 is better than other, it really depends on your business requirements are.

Maybe you are looking for

  • How to identify the field value has been changed to new value?

    Hi, I am adding a custom field through CI include for 171 info type. But I need to identify that whenever user enters into change mode and changes the value(Custom field) then I have to populate an error message(i.e Manitain date type in 41.). I know

  • Creating a Photo Album through the Fireworks CS3

    I'm trying to create myself a photo album in dreamweaver and it says I need Fireworkds 4 or GREATER, so I click the download trial button and I downloaded thhe Fireworks CS3, but dreamweaver doesn't recognize it and keeps saying "I need a fireworks 4

  • Changing Date format yyyy-mm-dd to dd-mm-yyyy in title view

    Hi I have some reports and in the title view I am using the dates..But it is in teh format yyyy-mm-dd.I am trying to change into mm-dd-yyyy in the title view I am using presenatation variables and so the format I am giving is @{PV1}['MM-DD-YYYY'] but

  • Archive sequence number from standby does not match primary

    I have two unix servers configured, one as primary and one as standby, both in 11.2.0.2. When I run the verification scripts, I noticed that my standby's archive log sequence does not match the primary. From standby: select database_role, open_mode f

  • Trigger Automator action upon re-login from fast user switch?

    I normally leave my account logged in on my Mac, and via fast user switching, return to the login window when I'm away from my Mac. (So my account stays logged in, but OS X remains at the user login window.) When I re-login, (how) can I trigger an Au