Steps for adding a new attribute

Please let me know if the below steps are correct
=================================================
I have an Infoobject called 0XXXX in BW and want to add another attribute called XXX_TYPE.
This infoobject is used in 2 Info Cubes and a Multiprovider. Also in 3 queries.
In R/3 the info I need is stored in a Table(XYZ). Please let me know if the below steps are correct and all I need
1) Create a generic extractor to pull the data from XYZ table (Like an ABAP program) .. This is the part which I am not clear !!!
2) Modify 0XXXX in BW to add this new navigational attribute
3) Load Master data using process chain
4) Re activate all update rules
5) Change Infoprovider's for the new attribute (How to do that ??)
6) Change query (What changes will I need to make .. Just select this attribute field into the required query)
Please help

Hello,
As you said, either enhance the extract structure by adding this new InfoObject and then write the code in the user-exit.
Or if the SAP table has the Key fields of the InfoObject, then create a generic extractor. Create a view by including the key fields of the InfoObject and the new attribute InfoOBject for which data has to be derived from this. Use this view or the table itself for the extractor.
Create new InfoSOurce for the InfoObject which will only update the new InfoObject. Keep only transfer rules for the Key InfoObjects and the new InfoObject.
GSM.

Similar Messages

  • What are the steps for adding a new field to the ST for CRM 2007?.

    Yeah, I know it's a basic question. I'm fairly familiar with CRM 5.0 but 2007 is new to me and there a good few changes.
    If I need to add a new field (probably with some processing to set its value) to the Service ticket what would be the steps I need to take to achieve this in CRM  2007?.
    Your help would be much appreciated.
    Jas.

    Are we talking about the EEW Business objects displayed in the EEWB as there is no business object called 'CRM OPPORTUNITY', but there is one called 'OPPORTUNITY'. Just wanted to make sure I was on the right track.
    So, as I need to change the service ticket it would mean that my transaction type will be service request,or whatever the shorted value is, is that correct?.
    I can see the transaction types in table CRMC_PROC_TYPE_T, although it looks like I need to pick SRVO (Service order) at a guess, and if this is right I'm looking for the EEW Business object to match. But it feels like guesswork to me. For example, I could choose EEW Business object 'SERVICE_TRANSACTION' which has an Extension type of 'CUSTOMER_H', or I could choose EEW Business object 'SERVICE_CONTRACT' or 'SERVICE_CONFIRMATION', although the last is unlikely. But, my point is there is so much open to interpreatation, and I'm expecting it to be more exact. Perhaps I'm just missing something.
    Jas.
    Edited by: Jason Stratham on Sep 4, 2009 2:30 PM
    Edited by: Jason Stratham on Sep 4, 2009 2:39 PM

  • Steps for adding a new field in the sapscript

    pls give me the step by step procedure to insert a new field in the sap script.
    like wat i need to to do in the form layout/line editor
    and wat n how i need to change in the print program like subroutine, etc..
    where should i use the itcsy structure?

    Hi,
    This will give you a step to step procedure for SAPScript.
    <a href="http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCSRVSCRPROG/BCSRVSCRPROG.pdf">SAPScript</a>
    regards,
    Amit
    Reward all helpful replies.

  • Steps for creating a new BAPI function module

    Hello experts,
    Can any one send me steps for creating a new BAPI function module , I got a requirement to do like this,but I dont have any clue about how to create.
    Please help !!!

    BAPI stands for Business Application Programming Interface.
    There are 5 different steps in BAPI.
    - Create BAPI Structure  
    - Create BAPI Function Module or API Method.  
    - Create BAPI object  
    - Release BAPI Function Module.  
    - Release BAPI object.
    Step1. Creating BAPI Structure:  
    - Go to <SE11>. 
    - Select Data Type & Enter a name. 
    - Click on Create.
    - Note: Always BAPI should be in a development class with request number (Not Local Object).
    - Select Structure & hit ENTER.
    - Enter the fields from your database. Make sure that the first field is the Primary Key Field.
    - Then SAVE & ACTIVATE.
    Step 2. Creating BAPI module: 
    - Enter TR.CODE <SE37>.
    - Before entering any thing, from the present screen that you are in, select the menu
       Goto -> Function Groups -> Create Group.
       Enter a name (Note: This name Must start with ZBAPI)
       Let this screen be as it is and open another window and there, enter TR.CODE <SE80).
       Click on the Third ICON that says Inactive Objects. 
       Select the group that you just created and click on Activate. 
       Notice that the group you created will disappear from the list of inactive objects.
    - Go back to <SE37> screen and enter a name and hit <ENTER>. Then enter the group name that you just created and activated.
    NOTE: When you release a function module the respective group will be attached to that particular application. It cannot be used for any other application. NEVER include an already existing group that is attached to another module.
    Now click on the first Tab that says [ATTRIBUTES] and select the radio button that says remote-enabled module since we will be accessing this from any external system.
    Then click on the second tab that says [IMPORT].
    Enter a PARAMETER NAME, TYPE and the structure you created in the first step. Also select the check box ‘Pa’. All remotely enabled functional modules MUST be Pa enabled, where Pa means ‘Passed by Value’ and if you don’t select ‘Pa’, then that means it will be passed by reference..
    Then click on tab that says [EXPORT].
    Enter the following as is in the first three fields 
      RETURN        TYPE        BAPIRETURN (These 3 field values are always same)
      Here also select ‘Pa’ meaning Pass by value.
    Note: BAPIRETURN contains structure with message fields.
    Then SAVE and ACTIVATE.
    Step 3. Creating BAPI object: 
    - Enter Tr.Code <SWO1>   (Note. It is letter ‘O’ and not Zero).
    - Enter a name and then click on create. Enter details. 
    NOTE: Make sure that that Object Type and Program name are SAME.   
    - Enter Application ‘M’, if you are using standard table Mara. If you are using your own database then select ‘Z’ at the bottom. 
    - Then hit <ENTER>. 
    - Now we have to add ‘Methods’. High light METHODS and then select the following from the menu: 
    Goto Utilities -> API Methods -> Add Methods.
    - Enter function Module name and hit <ENTER>.
    - Select the second FORWARD ARROW button (>)to go to next step. 
    - Check if every thing looks ok and again click on FORWARD ARROW button (>).
    - Then select ‘YES’ and click on <SAVE>.
    -  Now on a different screen goto TR.CODE <SE37>.  Enter Function Module name and select from the top menu  Function Module -> Release -> Release.
    - Goback to TR.CODE <SWO1>.
    Here select the menu combination shown below in the same order.
    - Edit -> Change Release Status -> Object Type Component -> To Implemented.
    - Edit -> Change Release Status -> Object Type Component -> To Released.
    - Edit -> Change Release Status -> Object Type -> To Implemented.
    - Edit -> Change Release Status -> Object Type -> To Released.
    - Then click on <SAVE>.
    - Then click on Generate Button (4th button from left hand side looks like spinning wheel).
    - Then Click on the button that says ‘PROGRAM’ to see the source code.
    To check if this is present in work flow goto TR.CODE <BAPI>. 
    Here it shows business object repository.
    - First click on the middle button and then select “ALL” and hit ENTER.
    - Goto tab [ALPHABETICAL] and look for the object that you created. This shows that the BAPI object has been created successfully.
    regards,
    aswin

  • Hi, my name is Laith I'm from Iraq I just want to know what are the steps for buying a new iphone 5 from apple store and how to ship it to Iraq ???? and I would be grateful for you

    hi, my name is Laith I'm from Iraq I just want to know what are the steps for buying a new iphone 5 from apple store and how to ship it to Iraq ???? and I would be grateful for you

    Legality aside (I'm not a lawyer and have no opinion on the matter) in order to make a purchase of an iPhone 5 you would need to travel to a country where they are for sale and purchase it there. Be sure to get one that is officially unlocked or you would not be able to use it with your cell carrier. Be sure that your carrier supports use of the iPhone before you buy. Also note that the warranty of the iPhone is only valid in the country of purchase.
    Appe does not ship outside of the countries where it sells the phones.

  • Step for Adding new condition in Pricing procedure

    Hi,
      We have different pricing procedure  with different condition ,  in this procerdure i want to add one new  condition at 2 position and the requirement is that  if system found the value with this condition it should skip the 3 step and directly go to 4 step  can u give the step for this  how to add new condition to this procedure.
    regards,
    zafar

    I think you need to use condition exclusion so if the condition at step 2 is found then step 3 becomes inactive if it  is also found.
    Depnding on your pricing keys, you might be able to add a step in the access sequence on step 3 and only use a single condition (V/07) and marking that step exclusive if a record is found.

  • For Adding up New Line in existing PO

    Hi,
    I have created PO through Import Standard Purchase Order and now client requires to add more line into existing approved PO which has been migrated through interface table.So,I wanted to know what necessary steps I need to follow for adding lines into existing purachse order.I tried to update action column as 'ADD' in po_headers_interface table but everytime records is being rejectd.
    Please help me if anybody knows the solution.
    Regards
    DS

    hi,
    you want to do change PO, if it is the case, oracle has provided public APIs to do the changes. for details you can refer manufacturing api's and po interface tables pdf docs.
    sen

  • Help / Suggestions for Adding a New Computer

    My question is really more of an "organization / how should I do this" question.
    I currently have a home desktop Mac and various other Apple related products (ipad, iPhone, daughter's Macbook etc.). The Mac is the main home computer and I use it to store all all of my home movies (organized in iMovie) and pictures (organized in iPhoto) as well as my music (iTunes). I back up through Time Machine to a USB hard drive connected to the Mac and I also have a 1TB NAS sitting in the basement which has the music duplicated and which I use for my Sonos.
    Here is my question. I am considering getting a new laptop / Macbook and I am starting to get low on space on my desktop Mac. I like having all of my pictures / videos in one place, and I don't want to start adding pictures to my new Macbook  (which I don't have yet) and end up with pictures up to a certain point in time on my desktop, and then new pictures / videos on the Macbook.
    I am looking for suggestions on how to deal with this. Is there a way of moving all the pictures and video library to the NAS, forcing iPhoto and iMovie on the desktop Mac to access the NAS for the library instead of its hard drive, and then doing the same thing on the new Macbook so that all of my photos and videos sit on the NAS, and both the desktop and the laptop access the NAS for the iMovie / iPhoto library? Any other suggestions to keeping it consolidated and organized?
    Thanx in advance

    Hi @draicous, 
    I understand the printer is already setup on the network, but the new computer isn't configuring the printer over the network. I can help you today.
    I have provided a document for setting up the printer on the new computer over the network.
    Installing the Printer Software for a Wireless Network Connection.
    Select your operating system and go to Step one: Prepare for installation, number 4.
    What operating system are you using? How to Find the Windows Edition and Version on Your Computer.
    If you need further assistance, just let me know.
    Have a nice day!
    Thank You.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Gemini02
    I work on behalf of HP

  • Better approach for adding a new assignment block in a standard component

    Hi
    I need to add a new assignment block in the standard component bt116h_srvo. There are two approaches :
    1. create a new view in the component bt116h_srvo
    2. create a custom component and embed it into bt116h_srvo using component usage.
    Please tell which one is a better approach and why ??
    Thanks,
    Swati.

    Thanks for the quick reply lakshmi. However I am sure there is no possibility of reuse . My  main concern here is tat will patch upgradation in future would have any impact on the views added directly in standard component  or any other risk in adding view directly.
    Rgds,
    Swati

  • ADF Popup for adding a new Row in  table

    Hi All,
    I have VO which is rendering as table on my jsff.I created a button of createInsert to add a new row and after commit it saves the values in Table in DB.
    Works abst fine.
    Now i want to change this feature to that when a New Row should be Added, a pop up should appear in the format of a form, and at the click of OK it should save the data and on Cancel go back to Page.
    What i did was i added a pop up, in the pop up body i again dropped my VO as a form and added a dialoglistener to the pop up which commits on click of OK and Rollback on click of Cancel.
    I am not getting any exception but The Db is not modified with my entries.
    So its simple that i am commiting but nothing is changed till that time.
    How can i get the Task done?????
    Regards
    User

    http://www.oracle.com/technetwork/developer-tools/adf/learnmore/77-ok-cancel-support-in-dialog-351871.pdf
    insert operation using popup
    http://andrejusb.blogspot.com/2009/11/crud-operations-in-oracle-adf-11g-table.html
    Edited by: Erp on Oct 20, 2011 6:47 AM

  • User Exit for sale order for adding a new partner

    Hi
    i am having the Scenario to add a new partner in  sales order in both VA01 / va02 transaction .
    i am using the exit named MV45AFZZ .   (USEREXIT_MOVE_FIELD_TO_VBAP) for this scenario.
    Its perfectly working for VA01 , but not VA02 .. why ..
    can any1  explain me ..

    Hi Irfan,
    You want to add partners in Sales order, the partners data will be saved in VBPA table.
    The USEREXIT_MOVE_FIELD_TO_VBAP is used for values for fields at sales document item level.
    For you its working for VA01 because , you have modified the strucure XVBPA for partners
    data and it is not saved yet to the database table so it is available in VA01 and in VA02
    it is checking the VBPA table there this data will not have been saved please check VBPA
    for your sales order.
    Please check below things.
    1) Check whether you have passed UPDKZ in XVBPA UPDKZ has below values INSERT (I),DELETE (D),UPDATE(U) etc nad
    if it doent works
    2) Please check the SAVE_DOCUMENT_PREPARE form and check XVBPA here whether it contains the
    entries you modified if not use the same code as you used in USEREXIT_MOVE_FIELD_TO_VBAP
    then these changes will be saved to database and hopefully you will get it in VA02 as well
    also pleaseuse the flag UPDKZ whenever you modifying this tables for your case
    XVBPA-UPDKZ.
    Regards,
    Pawan

  • ECC6.0 upgrade and BW steps for mapping the new ECC6.0 source system

    Hello gurus
    We are upgrading from R3 4.6C to ECC6.0. We use BW 7.0 SP 18. We will create the new ECC6.0 source system in BW, replicate metadata and everything. The question is how do we copy or reassign the existing objects pointing to our current 4.6c dev system (transfer rules, transformations, infopackages, process chains) to point to the new ECC6.0 dev system ? As a note,  we also need to keep the current 4.6c source system objects until go-live o ECC6.0.
    What is the common practice in such a case ? I am sure we are not unique...
    A prompt response would be appreciated.
    Thank you all.

    So the plan is to copy dev R3 and upgrade that - then Q r3 copied and upgrade that - then upgrade directly prod R3?
    If so - then if it were me - I would firstly prove all this in a sandbox environment where BW dev points at an upgraded sandbox R3 ecc
    ie same logical system
    Then once that is proved I would organise downtime of BW development for a few months whilst the d-q-p ecc happens
    Then when they copy dev r43 to ecc r3 i would then just point BW dev at the new ecc box and go from there (ie clear the deltas - change the logical system name to the new ecc box - replicate meta data - transtru all the datasources - run the process chains nothign to worry about)
    However if you cant afford the down time - you may have to have an alternative transport route - ie copy dev BW to a another dev bw box and have an alternative path to production for issues
    Then once everything is upgraded redo the changes through d-q-p to get the transports back in line (thats what we did)

  • Transaction for adding a new storage location?

    Hi All
    What is the trx for setting up a new storage location?
    Thanks in advance
    Darren

    hi
    OX01                 Company Code -> Purchasing Org.
    OX02                 Customizing: Company Code Setup
    OX03                 Customizing: Business Area Setup
    OX06                 Controlling Area: Basic Data
    OX08                 Define Purchasing Organization
    OX09                 Customize storage locations
    OX10                 Customize plant
    OX14                 C MM-IV Valuation area - val. level
    OX15                 Define internal trading partner
    OX16                 Assignment co.code->Internl.trad.ptr
    OX17                 Plants -> Purchasing organization
    OX18                 Plants->company code
    OX19                 Controlling Area: Assgn. to CCode

  • Does we need new CALs for adding a new domain for existing users?

    Hi, 
    Our company has setup a new company with domain.  We want to add the new email account to existing mail box.  Do we need new CALs?
    Thanks
    Wilson

    Hi Wilson,
    For license related questions, it will be more professional to inquiry Microsoft Customer Service:
    http://support.microsoft.com/gp/customer-service-phone-numbers/en-gb
    Thanks,
    Simon Wu
    TechNet Community Support

  • Steps for creation of new risk in AC 5.3

    Hi,
    We have uploaded SAP delivered rules and risks, We are now in the process of creating our own risk.
    We have created functions but when we assign them to the risk that we are trying to create, we are getting the error message :
    Path not found.
    We get this error when we save the risk.
    I guess this is a work flow issue. Let me know if you have any solution.
    Thanks and Regards,
    Rajesh

    Hi Rajesh,
    I assuming you are in the risk recognition/rule building phase for RAR.
    Then you can unplug the workflow by setting Risk Maintenace = NO (configuration >> workflow >> Risk Maintenance)

Maybe you are looking for