Where to check UPDATE TYPE in Transformation in BI

Hi All
In BI , Where to check UPDATE TYPE( Like whether the filed/infoobject is overwrite or Addition ) in Transformation in BI.
In BW 3.5 we can check this in UPdate Rule Maintanenance,but in BI where do we check the same.
Shankar

Hi,
you can check Update type in transformation :-
-->in target, double click on first Column (Rule Type)
-->Aggregation
-->you can see both Option (Overwrite, Summation)
but when target is DSO. in case of Cube, you will have only Summation
you can check the Update Type in DSO Update Rule as well:-
-->in Update Rule, Single Click on Key Fig (Amount, Qty....)
-->Update Rule :Details will come
-->in that you can see, the Update Type Section has three option (Addition, Overwrite, no update)
in case of cube you only have ( Addition, no update)
Best Regards
Obaid

Similar Messages

  • How/ where to  check output type while saving sales order for confirmation

    Hi All,
    Could you anyone pls let me know How/ where to  check output type while saving sales order for confirmation.
    Present scenario : when the Sales Order is created the Order confirmation is sent irrespective of credit block of the sales order.
    Requirement : Order confirmation “ZA00” sent to the partner only for those Sales orders which does not have credit block and ZCLE sent to the partner if the order has credit block.
    Now i want to know where exactly to check the output types "ZA00" and 'ZCLE' based on the credit block to send the confirmation to partener.
    Quick help highly appreciated......
    Preetham

    Hi Santosh,
    Thanks for the info. But here in this case I have to send the confiramation based on credit limit check. If credit limit check exceeds "ZCLE' should go as confirmation else 'ZA00' should go as confirmation.
    Where can we check the credit limit whether it exceeded or not. My doubt is whether it is config issue or do we need to write code user exit or routine to send the specific output type for confirmation.
    Thanks & Regards,
    Preetham

  • TS3899 After updating to ISO6, my email sending get extremely slow or dispeard. on the botton line of mail page always indicate "sending # of 9", however I do not know where to check or delete these unsent items. Please help! It has consumed lots of data.

    After updating to ISO6, my email sending get extremely slow or dispeard. on the botton line of mail page always indicate "sending # of 9", however I do not know where to check or delete these unsent items. Please help! It has consumed lots of data.
    I use @me.com and @hotmail.com

    Hi,
    >>A CHAR datatype and VARCHAR2 datatype are stored identically (eg: the word 'WORD' stored in a CHAR(4) and a varchar2(4) consume exactly the same amount of space on disk, both have leading byte counts).
    Ok, but on the other hands:
    SGMS@ORACLE10> create table x (name char(10), name2 varchar2(10));
    Table created.
    SGMS@ORACLE10> insert into  x values ('hello','hello');
    1 row created.
    SGMS@ORACLE10> commit;
    Commit complete.
    SGMS@ORACLE10> select vsize(name),vsize(name2) from x;
    VSIZE(NAME) VSIZE(NAME2)
             10            5
    SGMS@ORACLE10> select dump(name),dump(name2) from x;
    DUMP(NAME)                                         DUMP(NAME2)
    Typ=96 Len=10: 104,101,108,108,111,32,32,32,32,32  Typ=1 Len=5: 104,101,108,108,111Cheers

  • Posting log for source flow type/update type

    we have run fix and post derived business transaction in last friday for transaction ID: 3309, this is FX transaction, and it is posted, but in the posting log, it only shows update type ZDB_0012 is posted with 2300 USD, how and where is it derived, it doesn't show, so how can I view the source flow type and derivation steps (instead of going to SPRO derivation or position management procedure, I prefered analyze it in front end transaction)
    now if we go to posting journal list, we also can't find such info. any way to find out, is this update type ZDB_0012 assigned in position management procedure also? which tab?

    Check the BizTalk Administrator Group has the read permissions.
    Refer: Cannot open log for source 'BizTalk
    ESB Toolkit 2.1'. You may not have write access. ---> System.ComponentModel.Win32Exception: Access is denied
    Alternatively, you should also refer the
    below post.
    Production Installation of the Toolkit
    Cannot open log for source ‘BizTalk ESB Toolkit 2.1′
    Rachit
    Please mark as answer or vote as helpful if my reply does

  • Hi all, I upgraded my MBP to Lion , but on the screen where i need to type my password, click  on my photo and it does not appear the place for me to type my password and it stay stuck there. Can anyone solve this problem for me?

    Hi all, I upgraded my MBP to Lion , but on the screen where i need to type my password, click  on my photo and it does not appear the place for me to type my password and it stay stuck there. Can anyone solve this problem for me?

    Reboot the machine holding Command and r keys down, you'll boot into Lion Recovery Partition
    In there will be Disk Utility, use that to select your Lion OS X Partition and Repair Permissions.
    After that is done reboot the machine and see if you can log in.
    If not repeat the above steps to get into Lion Recovery, get online and reinstall Lion again, it will overwrite the installed version and hopefully after that it wil work.
    Reboot and try again.
    If not follow my steps to create a Snow Leopard Data Recovery drive, then option boot from it and grab a copy of your files off the machine.
    Then reinstall all your programs onto the external drive like setting up a new machine, then use Disk Utility to erase the entire internal boot drive (select the drive media on the far left, not the partiton slightly indented) format Option: GUID , 1 partition OS X Extended and then use Carbon Copy Cloner to clone the external to the newly formatted internal drive. Once that is finished reboot and disconnect the external drive.
    Once you go that, boot into Snow Leopard and update to 10.6.8, use the AppStore and option click on Purchases and download Lion again and install.
    Lots of work, but there is no Lion disks.
    https://discussions.apple.com/message/16276201#16276201

  • Convert ABAP code in start routine/update rule to transform. start routine

    Dear BW ABAPers,
    I have created a custom purchasing info cube (YCP_PURC1) based on 0CP_PURC1 standard cube. I would like to convert this new data flow to BI7 (from 3.x), and convert the standard update rule to transformation. I would need to rewrite the below start routine from the standard update rule to a start routine ABAP code in the newly created  transformation / start routine. My ABAP knowledge is limited. Will you please help?
    *this is the start routine from the update rule. As a side note, the data source is 2LIS_02_SCL.
    LOOP AT SOURCE_PACKAGE.
        IF (     SOURCE_PACKAGE-cppvlc  EQ 0
             AND SOURCE_PACKAGE-cppvoc  EQ 0
             AND SOURCE_PACKAGE-cpquaou EQ 0 ).
          DELETE SOURCE_PACKAGE.
          CONTINUE.
        ENDIF.
    no_scl is initial ( e.g. for good receipts, billing)
    value has to be set depending on storno
        IF SOURCE_PACKAGE-no_scl IS INITIAL.
          IF SOURCE_PACKAGE-storno = 'X'.
            SOURCE_PACKAGE-no_scl = -1.
          ELSE.
            SOURCE_PACKAGE-no_scl = 1.
          ENDIF.
          MODIFY SOURCE_PACKAGE.
        ENDIF.
      ENDLOOP.
    if abort is not equal zero, the update process will be canceled
      ABORT = 0.
    Many thanks and look forward to your kind feedback.
    Kind regards,
    Csaba

    Dear All, Durgesh,
    thanks to you all for your valuable input. Mainly the ABAP part was more interesting for me.
    Durgesh, thanks for your input, it was useful. I just had to change the info objects to data source fields and add the lines before the loop:
    DATA: I_PACKAGE TYPE TYT_SC_1.
        FIELD-SYMBOLS <i_package> TYPE tys_sc_1.
        I_PACKAGE[] = SOURCE_PACKAGE[].
        LOOP AT SOURCE_PACKAGE assigning <i_package>.
          IF ( <i_package>-BWGEO EQ 0
          AND <i_package>-BWGEOO EQ 0
          AND <i_package>-BWMNG EQ 0 ).
            DELETE SOURCE_PACKAGE index sy-tabix.
            CONTINUE.
          ENDIF.
    no_scl is initial ( e.g. for good receipts, billing)
    value has to be set depending on storno
          IF <i_package>-NOSCL IS INITIAL.
            IF <i_package>-ROCANCEL = 'X'.
              <i_package>-NOSCL = -1.
            ELSE.
              <i_package>-NOSCL = 1.
            ENDIF.
          ENDIF.
        ENDLOOP.
    Points have been assigned accordingly.
    Thanks,
    Csaba

  • Where to maintain storage type in SAP

    Hello guys do you have any idea of where exacly the storage type in MM01 or 02 is maintained. I need complete detail in which view and where to maintain storage type in that view also the database table to check the Storage type for any material

    Hi,
    It depends with your material type set- up and if you have selected tabs warehouse management 1,2  to default during material creation and then during creation  you can maintain it in your warehouse managment tabs.
    Thanks
    Silas

  • Migration of update rules to transformations

    Hi Experts,
    We are in process of migrating update rules to Transformations.
    We have following data flow for one info cube.
    *Existing*
    Data source -
    >transfer Rules--->info source->update rules--
    >cube
    New
    Data source -
    >transformations----
    >cube
    When I am trying to create transformations, I am not able to read master data properties for all info objects.
    It gives error that No info object is available.
    Now my question is
    it is not possible to read mster data in one transformation?
    If I change my new scenario to this then it workes.
    Data source -
    >transformations----->info source(new BI7)--
    >transformations -
    >cube
    But then I need to convert All existing info source to new one in BI7 then only I can use read from master data functionality.
    Please advice.
    <removed by moderator>
    Edited by: Siegfried Szameitat on Nov 25, 2008 9:05 AM

    In the Transformation maintenance, open the rule details.
    Here you see the source fields of the rule.
    Update 'IOAssgnmnt' with the InfoObject corresponding to the field from the source system.
    Example
    Field PERNR
    Description Personnel No.
    Type NUMC
    Length 8               
    Conversion
    IOAssgnmnt 0EMPLOYEE  <-- Entered manually
    Then you should be able to use the 'Read master data' functionality.
    Regards,
    Lars

  • GRC10 Access control-how/where to check if an approval request email was sent?

    Hi experts
    Please could you let me know how/where to check if an approval request email was sent?
    I some approvers complaining that they havent received the approval request email from GRC.
    Please advise.
    Thanks
    Ran

    Hi Ranjit
    I tested it as well by stripping the access back and then used STAUTHTRACE (much nicer than ST01). You are right - it is asking for S_DEVELOP 02 DEBUG
    METHOD check_admin_auth .
       DATA: lo_message_manager TYPE REF TO if_wd_message_manager,
           lo_api_controller TYPE REF TO if_wd_controller,
           lr_auth_node TYPE REF TO if_wd_context_node.
       lo_api_controller ?= wd_this->wd_get_api( ).
       lo_message_manager = lo_api_controller->get_message_manager( ).
       lr_auth_node = wd_context->get_child_node( name = 'AUTH' ).
       TRY.
           cl_grfn_msmp_authorizations=>check_sap_debug_authorization( ).
           lr_auth_node->set_attribute(
              EXPORTING
                value =     'X'
                name  =     'CAN_RUN'
         CATCH cx_grfn_msmp.
           MESSAGE e197(grfnmw) INTO cx_grfn_msmp=>m_msg_str. ----> E197 (GRFNMW) matches the error msg
           lo_message_manager->report_t100_message(
        METHOD check_sap_debug_authorization.
       AUTHORITY-CHECK OBJECT 'S_DEVELOP'
                 ID 'DEVCLASS' DUMMY
                 ID 'OBJTYPE'  FIELD 'DEBUG'
                 ID 'OBJNAME'  DUMMY
                 ID 'P_GROUP'  DUMMY
                 ID 'ACTVT'    FIELD '02'.
       IF sy-subrc NE 0.
         MESSAGE e219(grfnmw) WITH sy-uname INTO cx_grfn_msmp=>m_msg_str.
         grfnw_msmp_raise_msg: cx_grfn_msmp_no_authorization.
       ENDIF.
    ENDMETHOD.
    I recommend raising a customer incident with SAP to get their input as I don't think DEBUG should be necessary for MSMP Instance Runtime - and then let us all know the outcome
    Regards
    Colleen

  • HT1752 I recently purchased an old iMac G3 Macintosh. I was wondering, is there a way where I can update it without using an external disc? I've seen the newer Apple products with the dock, if I update my iMac G3, will it have that, and if so, how can I d

    I recently purchased an old iMac G3 Macintosh. I was wondering, is there a way where I can update it without using an external disc? I've seen the newer Apple products with the dock, if I update my iMac G3, will it have that, and if so, how can I do that?

    I was wondering, is there a way where I can update it without using an external disc?
    If you mean the iMac does not have an internal optical drive capable of reading DVDs, the only option requires another Mac with a DVD-capable drive and FireWire ports. Your iMac G3 will also require FireWire ports. Not all G3 iMacs have Firewire. FW started with the Summer 2000 models with 400mHz and faster processors.
    With FireWire, you can use FireWire Target Disk mode to install from a retail OS install DVD in another Mac. If you supplemental info info tells us if you have another Mac with a DVD reader and the FW ports, we can walk you through the process.
    If the iMac has a tray-loading drive, I'd forget it. They are very limited not only in the OS max (10.3.9) but also in RAM capability. Starting with the slot-loading iMac G3s, the max RAM increased to 1 GB (2 X 512MB modlules). Tiger likes 1GB RAM.
    Understand that pre-Intel Macs are getting harder to use. Even with 10.4.11, your choice of browsers is limited (TenFourFox is the most viable option) and the G3s  rudimentary video hardware means web browsing will be choppy at best.
    If you are in the USA, you can try calling the Apple Store (1-800-MY-APPLE) for an OS disk. As recently as Jan 20, someone posted here that they were able to buy Tiger by calling. It was not clear whether the disks were replacement system install/restore disks or full retail install, but it's a free call.
    When you do "About this Mac" to check teh OS verion, also look at the processor speed and tell us what that says. That can help with recommendations for an upgrade path.

  • Checking data type compatibility

    Hi,
    Is there a method to check if two data types are compatible with each other? I need to perform this check without any value at hand. With a value it works if I create data references and assign them to field symbols. How do I make the same more generic with just the data type and length given.
    Any help would be greatly appreciated. Thanks.
    regards,
    nithya

    I have extracted the below info from a document that i have with me. Do provide your mail-id if you need the document. I dont mind sharing...:)
    Please check this for more understanding...
    <b>Type Checks and Type Compatibility</b>
    For historical reasons, the types of field symbols and parameters in subroutines or function modules can be defined with the STRUCTURE addition.
      If the types of field symbols are defined with FIELD-SYMBOLS <f> STRUCTURE s DEFAULT wa and they are later assigned a data object wa with ASSIGN wa TO <f> ... , in a NUP both statements are checked to see if wa is at least as long as s and wa satisfies the alignment requirements of s at runtime.
    16
    If parameter types in function modules or subroutines are defined with FORM form1 USING/CHANGING arg STRUCTURE s ... or FORM form2 TABLES itab_a STRUCTURE s ... and the parameters are passed actual parameters with PERFORM form1 USING/CHANGING wa or PERFORM form2 USING/CHANGING itab_b, the NUP also only checks if wa or the line type of itab_b is at least as long as s and wa or the line type of itab_b satisfies the alignment requirements of s. The same is true for function module parameters whose types are defined with STRUCTURE.
    The following extra rules are checked in a UP after defining the type with STRUCTURE when assigning data objects, that is for the DEFAULT addition in the FIELD-SYMBOLS statement, for ASSIGN, and when passing actual parameters.
    1. If wa or the line type of itab_b is a flat or deep structure, the length of s must be the same for the Unicode fragment views of wa or of itab_b and s.
    2. If wa is a single field, only the character-types C, N, D or T are allowed and the structure s must be purely character-type.
    Checking both these rules requires additional runtime. It is therefore recommended that, if possible, you type the parameters using TYPE, since the test for actual compatibility is much faster.
      If the type of an argument in a function module was defined with ... LIKE struc, where struc is a flat structure, the NUP only checks if the argument is a flat structure with the same length when the parameters are passed. In the UP, it also checks that the fragment views of the current and formal parameters are the same. For performance reasons, it is again recommended that you use TYPE to assign types.
      Furthermore, two structures of which one or both contain Includes, are only compatible if the alignment gaps caused by the Include are the same on all platforms. In the following example, struc1 and struc2 are not compatible because a further alignment gap occurs in the US before the INCLUDE:
    BEGIN OF struc1, BEGIN OF struc2, BEGIN OF struc3,
    a(1) TYPE X, a(1) TYPE X. b(1) TYPE X,
    b(1) TYPE X, INCUDE struc3. c(1) TYPE C,
    c(1) TYPE C, END OF struc2. END OF struc3.
    END OF struc1.
    Since the type compatibility can differ in a UP and an NUP, the type compatibility rules of the calling program are valid in an NUS for checking the parameters. This means that if an NUP calls a UP, the type compatibility is defined as in the NUP. Conversely, the Unicode check is activated if a UP calls an NUP.
    Kind Regards
    Eswar

  • Where is the chat/type progress notification in BBM 10? Has it been removed....

    When in conversation with someone through BBM with my new Q10, I no longer see the notification that they are typing as in previous versions of BBM. Has it been removed? Thanks.

    Mistahman, please don't create duplicate threads on issues you already have on-going threads. Thanks.
    http://supportforums.blackberry.com/t5/BBM-for-BlackBerry/Where-is-the-chat-type-progress-notificati...
    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

  • Where is Check number stored in Fusion Payroll

    Hello All,
    I am working on an Positive Pay file that is sent to the Bank after the payroll process and I need the check number details, but not sue where it is stored.
    Can some one let me know where is the Check Number stored in the HCM tables.
    In EBS
    Check Numbers are in the field SERIAL_NUMBER on the PAY_ASSIGNMENT_ACTIONS table.
    Serial Number in Pay_Assignment_Actions is where the check numbers are held. When Check Writer is run, the process requests STARTING and ENDING Check Numbers (Ending Check Number can be left blank).
    But I am able to find the serial number in PAY_PAYROLL_REL_ACTIONS which is the payment reference and doesn't match the Check numbers that are generated.
    Can any one please let me know where to find this information.
    Appreciate all your inputs

    >
    Edward wrote:
    > Dear All exprt,
    >
    > In Payroll , for basic pay there is a Indicator for indirect valuation. If this indicator is marked as 'I', the amount of basic pay will not be stored in table pa0008. But when we use PA20 , We can see the amount.Is there any table which store this kind of data?
    >
    > BR
    I'm not sure if this gets stored in some database tables, I believe that this information is evaluated in the runtime(i.e., when accessed from 'PA20') using the wage type characteristics(v_t511).
    The function module 'RP_FILL_WAGE_TYPE_TABLE' returns the values of indirectly evaluated wage types also.
    The  (indirect)evaluations of the wage types take place in the subroutine 'EVALUATE_INDEV_TAB' of the function group 'RPIB'. (Include program : LRPIBFXX)
    Refer this thread
    Re: Indirect Valuation Error Message in IT 0008
    Regards
    Rajesh.
    Edited by: Rajesh on May 31, 2009 2:03 PM
    reference thread added

  • UPDATE  TYPE  IN  ODS...

    Dear all experts,
    I know update types available for ODS are.. addition, Minimum, Maximum, and Overwrite.
    Can anybody please tell, where do we do this setting, for update type in ODS.
    As per my knowledge, for Cube, we are having updation for key figures, from that respective, key figure will get updated.
    Your help will be rewarded, surely.
    Waiting
    Regards
    Vinay.

    Hi Vinay,
    Creating update rules:  Right click on ODS -> create UR.
    Select the Infosource Radio Button (u can use datatargets also).  In the next screen keep the cursor on any datafield and click on Details button just above  that table.  there u can specify which update type u want.
    http://help.sap.com/saphelp_nw04/helpdata/en/80/1a64c6e07211d2acb80000e829fbfe/content.htm
    Regards,
    ARK
    null

  • Addition and Overwrite update types for ODS

    Hello BW Experts ,
    I have an issue.
    For a particular Order and Cost element on R/3 side I have Four cost Figures .
    When I do full upload from the related standard data source to ODS with update type Overwritten I am getting only the last cost figure of the same order and Cost elemet.
    I am loadind data from this ODS to infocube further.
    Now the problem is I want the sum of all the cost figures for the same order and same cost element.
    But as the last cost figure is overwritten in ODS I am not getting the correct sum.
    So i have made changes to the update type from Overwrite to Addition.
    Now I am getting the addition of all cost figures correctly .
    Now I am doubtful that If I add further data to ODS by full upload then all cost figures will get doubled.
    Please explain me what to do in such a case.
    Thanks in Advance,
    Amol .

    Hello Amol,
    check if the datasource supports delta!! you can see it in the rsa6 datasource display. check for the delta checkbox. also from the roosource table this can be found out.
    if yes, shift to init-delta loads from full loads.
    only the init may take some time but the deltas on daily basis should not take much time.
    also one more thing to add to the earlier responses is you can automate the deletion of similar request in infopakcage setting so that u need not manually delete the full upload request daily( if u are working on full uploads on daily basis).
    hope it helps..
    regards,

Maybe you are looking for

  • C#/SharePoint -View State related issue while exporting data to excel

    We have web application based on SharePoint. We have a list view to display data based on Search Criteria. We have total of around 16000 data. When we try to export all data to excel it gives an error. The cause of the issue is: View State is used to

  • Why do I have to sign in every time use ibooks

    Since the ios7 update, almost every time I use iBooks it prompts me to sign into my appstore account.  This is new behavior and is aggrevating.  Why is it necessary?  Am I missing something?

  • Standlone weblogic server error

    Use jdev 11.1.1.3 My application runs well in embedded server. But when deployed in a standalone server, I get this error. This happens after I click a checkbox / save and then scroll through the rest of the rows. This does not happen in the embedded

  • Upgrade file pattern error

    Model BEFW11S4 Version 3 Firmware 1.2. I have connected my Win XP laptop with cable directly to the router, and I am trying to update firmware to version 1.45.10 which should be the correct update for my model, but the upgrade is interrupted with "Up

  • MacBook Pro C2D Wireless issues after 10.4.10 -  issue pin pointed !

    I have a MacBook Pro C2D which has started to do random disconnects from my WLAN. I am running the latest Tiger 10.4.10 No matter if I use the network connection actively by surfing, chatting, listening to netradio, downloading or if it is just idle,