How to bring VRGNG field in BI

Hello All,
I am trying to extract Cost Center Actual data using 0CO_OM_CCA_9 datasource.
I need to have VRGNG (CO Business Transaction) field shown in my report.The above standard extractor doesn't bring this field directly.
Can anyone tell me how do solve this?As the VRGNG field is present in the source table of this extractor, do I have to write any code to bring this value to BI or not necessary ?
I have read some links and got to know that there are some BI characteristics (Info objects)like 0METYPE,0VTYPE,0VTDETL,0VTSTAT . With these four characters , i can fulfill my requirement.
Please tell me how to take VRGNG in BI
Thanks

Hello All,
I am trying to extract Cost Center Actual data using 0CO_OM_CCA_9 datasource.
I need to have VRGNG (CO Business Transaction) field shown in my report.The above standard extractor doesn't bring this field directly.
Can anyone tell me how do solve this?As the VRGNG field is present in the source table of this extractor, do I have to write any code to bring this value to BI or not necessary ?
I have read some links and got to know that there are some BI characteristics (Info objects)like 0METYPE,0VTYPE,0VTDETL,0VTSTAT . With these four characters , i can fulfill my requirement.
Please tell me how to take VRGNG in BI
Thanks
1) Create a append Structure in the Extract Structure of the Data Source 0CO_OM_CCA_9.
2) Add Field "VRGNG" to the append structure and Activate.
3) Create a User Exit for your Datasource.
Function Module: EXIT_SAPLRSAP_001
Main Include: ZXRSAU01
case i_datasource.
  when  '0CO_OM_CCA_9'.
    perform 0co_om_cca_9_exit tables i_t_data.
4) FORM 0co_om_cca_9_exit tables  i_t_data structure <EXTRACT STRUCTURE>
Here you write the code to populate the field "VRGNG" based on where you want to fetch the value of this field.
Example: Table COEP
I am assuming this is where you want to extract the value
types:
begin of typ_coep_key,
  kokrs type coep-kokrs,
  belnr type coep-belnr,
  buzei type coep-buzei ,
  vrgng type coep-vrgng,
end of typ_coep_key.
data:
t_coep type typ_coep_key occurs 0 with header line,
th_coep type hashed table of typ_coep_key
             with unique key kokrs belnr buzei
             initial size 0  with header line.
data: l_count type i.
describe table i_t_data lines l_count.
check l_count > 0.  "If there are no records - EXIT!!!
loop at i_t_data.
  move:
        i_t_data-kokrs to t_coep-kokrs,
        i_t_data-belnr to t_coep-belnr,
        i_t_data-buzei to t_coep-buzei.
  collect t_coep.
endloop.
sort t_coep.
select kokrs belnr buzei vrgng
       from  coep
       into  table th_coep
       for   all entries in t_coep
       where kokrs = t_coep-kokrs and
                belnr = t_coep-belnr   and
                buzei = t_coep-buzei.
free: t_coep.
loop at i_t_data.
  read table th_coep with table key kokrs = i_t_data-kokrs
                                    belnr = i_t_data-belnr
                                    buzei = i_t_data-buzei.
  if sy-subrc  = 0.
    move th_coep-vrgng to i_t_data-vrgng.
    modify i_t_data.
  endif.
endloop.
free: th_coep.
5) This will populate the Field Value you need into the BW extract structure.
6) Create a custom InfoObject in BW if you cannot find a SAP Delivered Object.
Possible SAP Delivered Objects you can use are
0FI_RACTIV - Business Transaction
0BUS_TRXN - Business Transaction
7) Create a TEXT DataSource for VRGNG based on TABLE TJ01T
TJ01T - Business Transaction Texts
That should do it.
Cheers!
Vasu

Similar Messages

  • BI 7.0: How to bring DataSource fields to InfoSource in design

    We've replicated the generic datasource from R3 to BW and we have created an InfoSource with blank fields.   We remember on BW 3.x version that we could bring Datasource fields to InfoSource by clicking somewhere, but on BI 7.0, we are trying to do the same thing, but can't find some function to do this.  Then we try to right click the InfoSource and then select 'Create Transformation', and then to select the source system and the datasource, but of course we would get the error msg like "There are no fields in target TRCS InfoSource_Technical_Name".  Any idea on how to bring Datasource fields into the blank InfoSource on BI 7.0?
    Thanks!

    Hi,
    Instead of bringing the DS fields into a blank infosource, ideally, what you can do
    is, you can create a new infosource based on your generic data source, which would make your process easy..
    cheers,
    Pattan.

  • How to Bring "Division" field into PCA form to create Report?

    Hi,
    I need to create Balance sheet reports -Division wise in profit center accounting.Kindly advise me how to bring Division field in to FORM of PCA.Once i get the Division field in to FORM of PCA then i can full fill the requirement.
    Kindly advise me as i am not able to bring it either through Key figures or Characterstics.how do i bring into KE84 form
    Please help me
    Supriya

    Hello,
    I do not think division wise balance sheet is possible.
    Regards,
    Ravi

  • How to bring WRTTP field in BI

    Hello All,
    I am trying to extract Cost Center Actual data using 0CO_OM_CCA_9 datasource.
    I need to have WRTTP (Value Type) field shown in my report which is in the source tables. The above standard extractor doesn't bring this field directly.
    Can anyone tell me how do solve this? As the WRTTP field is present in the source table of this extractor, do I have to write any code to bring this value to BI or not necessary ?
    I have read some links and got to know that there are some BI characteristics (Info objects)like 0METYPE,0VTYPE,0VTDETL,0VTSTAT . With these four characters , i can fulfill my requirement.
    Thanks

    Hello James,
    There may be several levels of solutions to your enquiry.
    1. First, please refer to OSSN Note 523742 u2013 u201CBCT-CO: BW key figure model and R/3 tables for trans. Datau201D where the combinations of values for the following key figure-specific info objects are defined using the ROMI_GET_VTYPE_AND_DETAIL function module from several conversion tables on the ECC6 or R/3 side.
    Combo Output:
    0METYPE Key figure type
    0VTYPE Value type for reporting
    --> 0VTDETL Details of the value type
    --> 0VTSTAT Statistics indicator for the value type.
    Else you will need to debug D/S 0CO_OM_CCA_9 when the line item selection is performed in the BWOMR_OM_READ_COVP_DATA function module (via the COVP view).
    Then find the conversion output to records only related to your desired WRTTP value=4 (04-actual).
    2. At the simplest level, using the usual 0CCA_C11 (Delta) Costs and Allocations Infocube,  since this InfoCube contains all costs and quantities on cost centers (plan and actual using delta-extraction) that were transferred from the source system via D/S 0CO_OM_CCA_9, you may find that your desired WRTTP value=4 (04-actual) converted output is just BW value type 10 Actual and then use the  relevant Detail for ValueType combo.
    http://help.sap.com/saphelp_nw70ehp1/helpdata/en/21/f0963e6dad4d9d87dfedc10c6a9c1c/frameset.htm
    You then just need to only use or change your  queries involving 0CCA_C11 (Delta) Costs and Allocations Infocube to use the Restricted Key Figures (RKF) for your desired BW value type  (for example) 10 Actual and the relevant Detail for ValueType combo.
    Creating relevant RKFs within queries using involving 0CCA_C11 (Delta) Costs and Allocations Infocube is kindly suggested to be another forum thread question ☺
    3. At the next alternate level of solution, you can use the same D/S 0CO_OM_CCA_9 to create or activate the line item DSO where SAP recommends that you use the following InfoObjects as key fields for the corresponding DSO object u201CCO-OM-CCA: Actual - Line Itemsu201D 0CCA_O09:
    0CO_DOC_NO CO document number
    0CO_ITEM_NO CO document line item
    0CURTYPE Currency type
    0METYPE Key figure type
    0VTYPE Value type
    0VALUATION Valuation view
    0CO_AREA Controlling area.
    http://help.sap.com/saphelp_nw70ehp1/helpdata/en/21/f0963e6dad4d9d87dfedc10c6a9c1c/frameset.htm
    Please refer to details in OSSN 553561 u201CBCT-CO-OM: Current data for the CO delta DataSourcesu201D
    Hope this helps.
    Thanks and Regards,
    Lee

  • How to bring text field to live

    hi everyone here,
    Actually I need help in how to bring the textfield in fireworks to live when I putted inside a rectangle. because when I exported to "CSS and Images" I can't see the textfields at all so only the Text and rounded rectangle found that returned back to rectangle but when I sliced the whole rectangle I found that it shows up completely but I can't write inside textfields so which is not effective. Also when I use the "HTML and images" same thing.
    I hope anyone can help me to solve this problem and tell me step by step what should I do.  Thank you very much for the help
    I'm putting my files at this site so you can have a look at it
    http://www.4shared.com/file/8DOub3vQ/New.html

    AlkingX wrote:
    ... Actually I'm new to fireworks and I usually use only dreamweaver but now I want to change by using fireworks. ...
    Fireworks is not a replacement for Dreamweaver. Dreamweaver is the coding environment; Fireworks is for creating graphics. They are complementary tools. Fireworks can produce HTML (or HTML/CSS), but the purpose of this export ability is for you to create prototypes to show people. The code from FW is not production-quality code. A best-practice scenario would go something like this... Use Fireworks to design your layout. In Fireworks, add slices to export those portions of your layout that will need to be images. Then, move to Dreamweaver and develop the HTML. You can't write HTML and CSS in Fireworks, it isn't made for that, just as Dreamweaver isn't made for image editing.
    As for your other question, there is no perfect size for browsers. The question is related to the screen resolution of your target audience. You need to understand your audience: if they're using lower screen resolutions or higher. (For example, I have a 20" widescreen monitor, so my resolution is 1600x1050 pixels. I rarely run browsers at full-screen width, though, because 1600 pixels wide is much wider than most designs.) I usually design for 800 pixels and center that design on a background of some sort. I expect that most users will have a 1024x768 resolution screen or better, and and 800 pixels will fit within a 1024 screen, even with browser borders and scrollbars.
    A common way to create a centered design is to use a div for all your content and center that div.

  • How to bring search field back in Mountain Lion?

    To the third-party developers reading here: Is it possible to bring back the separate search field in the upcoming Safari in Mountain Lion? The websearch from the addressbar is THE killer feature: to kill Safari from my favourite software list. I do a lot of research and it is somewhat awkward to re-type the search queries in the addressbar instead of just click on the snapback button. If there is a terminal hack or plugin to bring back the separate search field, please, please let me know!

    Thanks, David. I know this workaround. And one more with creating right-click Service. That's why I've used "uncomfortable" instead of "impossible". In my opinion, Apple should leave ability to choose OS's behavior, and I hoped somebody knew where to find it .

  • How to bring Profit center field in to asset master

    HI,
    We are having new GL Profit center scenario active. My question is
    1.How to bring Profit center field in to Asset Master?
    I am not finding the field"Profit Center" under the configurations step Asset Accounting>Intergration with GL Accounting>Additional Account Assignment objects>>Activate Account assignment objects.
    I know how to do it if it the Profit center field appears in the above step.HOW TO INCLUDE in the above step??Is there any prior activity I need to do?
    2.If I could see the Profit Center field in the above step,then I can add it in T Code ACSET and select the field in Asset Screen Layout,so that it can come up in Asset Master.
    If question#1 can be answered it will be great.
    thanjs
    hinfi

    Hi,
    Until some years ago Profit Center did not exist in FI-AA master data. The Profit Center was derived from other objects (like the cost center) during posting, but there was no way to enter a Profit Center directly in the asset.
    Asset master data has been enhanced with EHP 5 to contain also fields for Profit Center and Segment. To make use of that functionality you need to activate the Business Function for "Segment Reporting" as explained in the Link posted by Jayj before.
    Once Business Function "Segment Reporting" is active, you will be able to make ACSET settings for the Profit Center like for the other account assignment objects. Without the Business Function the field does not exist in asset accounting and therefore you cannot find it in customizing.
    Regards, Michael

  • How do I bring form fields to the front or back?

    I have a document with many form fields/push-buttons in order to create pup-up effects in an info graphic.
    So I use fields to create a mouse-over hot spot, and others that pop up. Now, of course, the hot spot must be in front (or on top), otherwise it gets distracted in it's mouse-over function by the popped-up object (image) that lays over it. (The result would look like a flashing effect, as you roll over the hot spot.)
    Now how do I arrange the fields?? Ich can arrange images and texts to come to the front or hide behind other objects. But in the form field editing mode there is no such option. Also it doesn't work to just cut and paste them, they re-appear in their former position, often behind the other fields.
    Please, help! Thanks, Peder

    Thanks, I will give it a try. To "recieve the focus" means being activated / hovered?
    Am 22.04.2015 um 18:49 schrieb George_Johnson:
    How do I bring form fields to the front or back?
    created by George_Johnson in PDF Forms - View the full discussion
    The tab order effectively sets the z-order, but if a field is not read-only it will be set to the front if it receives the focus.
    If the reply above answers your question, please take a moment to mark this answer as correct by visiting: https://forums.adobe.com/message/7465780#7465780 and clicking ‘Correct’ below the answer
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page:
    Please note that the Adobe Forums do not accept email attachments. If you want to embed an image in your message please visit the thread in the forum and click the camera icon: https://forums.adobe.com/message/7465780#7465780
    To unsubscribe from this thread, please visit the message page at , click "Following" at the top right, & "Stop Following"
    Start a new discussion in PDF Forms by email or at Adobe Community
    For more information about maintaining your forum email notifications please go to https://forums.adobe.com/thread/1516624.
    ···)····•  Blixen
    werbliche Kommunikation
    Peder Iblher  .  Wichertstraße 16/17  .  10439 Berlin
    Telefon 030 - 250 400 401  .  Fax -409  .  Mobil 0160 - 93 81 58 60
    [email protected]  .  www.blixen.eu  .  www.facebook.com/blixen.eu

  • How to bring the Header value to the row ?

    Dear All,
    I am a starter in learning SDK. have developed a form having 2 tables a header and a row detailed one.
    Now i need to update a field in all the row with a header value when the header value is added. it should be like the SE name getting updated when the SE name is selected in header level in std doc.
    how to arrive it?
    kindly help me to achieve this.
    Thanks,
    Sam.

    Dear Gordon,
    May the customer enters a value to the header which they want it to be unique value for all the row detail.
    If there exists more than 50 rows they cant enter it for each and every row, for in case if the value needed to be changed for a particular row or for particular few rows they will change it manually to that row alone.
    I just want to achieve this scenario in my form.
    Do you know how to bring in ?
    As this is being a normal functionality in Std forms.
    Thank you...

  • How to create new field while upgrading from CRM 4.0 to 7.0

    Hi ,
    How do we create new field on UI and store data into existing field in database?
    Is there any option in AET to skip the creation of new field in the database table ?
    Custom field is already created in GUI and database table while using CRM 4.0
    Now, after upgrading to 7.0 EHP3 , I need to bring this field on the UI .
    Using AET may create new field again in the database table.Please suggest.
    New filed needed to be created in Marketing Campaign Element Header data.
    Thanks
    Jayasri

    Hi Jayasri,
    As a custom fields are already there in crm 4.0. You don't need to use AET again to add field.
    These enhancements still exist after the upgrade. Dependent on the enhancement object and type some manual steps are necessary.
    For example regarding a single field enhancement for the BP the whole framework is enhanced after the upgrade. There is only one manual step to bring the field on the relevant view(s) via the UI Configuration Tool. For whole BP tables some more manual steps are necessary, these steps are described in the note 1069791 - CRM WebClient UI for EEW enhancements (reference to more notes regarding the EEW after the upgrade).
    For set types, we need to generate UI With the help of the UI configuration tool the settypes could become visible in the Web UI.
    I didn't understood your scenario, can add little more information why you want to add field by AET if available in DB?
    Refer
    FAQ - SAP CRM Upgrade from release 4.0 to 7.0 
    Regards,
    Arjun

  • How to bring cursor in Table control??

    Hi to all
    How to bring cursor in Table control when entering into screen
    can anyone tell me??? pls explain with example..
    thanks
    senthil

    Hi,
    Check the below code
    data l_tc_name             like feld-name.
    data l_tc_field_name       like feld-name.
    get actual tc and column                            
      get cursor field l_tc_field_name
                 area  l_tc_name.
    Regards,
    Vind

  • How to discover which field was clicked in when-new-record-instance

    Suppose: a multi-record block. The user is positioned on an existing record on field A
    Action: user clicks on empty (new) record on field B
    Question: how can I discoverer that the user clicked on field B in the when-new-record-instance? Already tried :system.current_item and :system.trigger_item. They both contain 'field A'.
    Edited by: user473811 on 26-aug-2010 4:56

    That should work. What version of forms are you running?
    I tested it out on Forms 9.0.4 just to make sure and :system.current_field, :system.current_item, :system.cursor_field, and :system.cursor_item all bring back field B when I run the form in debug mode. Is there logic in your when-new-record-instance trigger that is taking you back to field A before you look at the :system variables?
    I would run the form in debug mode if I was you and break on the first thing in the WNRI trigger and just step through it looking at those system variables so you can see what it happening, but it should work unless you have some bugged up version of forms or are doing a go_item in the trigger back to field A.

  • How to bring Alternative a/c number (ALTKT) into costing reports

    Hi,
    We are using Country chart of accounts, as a result we are using Alternative account number in GL master data. I could able to access alternative a/c field in GL line item report (FBL3N) by activating special fields in that report itself.
    Now I would like to bring this field into controlling reports such as KSB1 - Actual Cost Centre Items; KOB1 - Actual Internal Order line items. I'm not quite sure how this can be achieved. Any help in this regard is much appreciated guys.
    Thanks,
    Harika.

    hi
    you have to copy and create your own custom developed report only

  • How to Bing the Field of G/L A/c in the Reptative area of Outgoing Payment

    Hi, All Experts,
    I have a issue on PLD that I cant able to bring the field of G/L A/c in the rep area of Outgoing invoice... However I had tried it from the table Outgoing Invoice row but it is not coming Properly...
    The mail issue is that to make a PLD for the On A/c and Agst. Invoice together  for out going Invoice........
    Thanks
    Binod Sharma.

    Hi,
       I am preaparing PLD of Outgoing Payment (Account) for my Clint. He wants to display all the G/L A/c agints which the cash is paid Now, If he Pay for one G.L Account thent is can bring from the VPM4 Table. But when he make the Outgoing Invoice for 2 or more G/L Account then the Error massage is comming " the request acction is not supported for this object massage [131-171].
       Becouse the reason is the docment number that is genarated fropm the outgoing Invoice is   saved in Outgoing Payment- Account table[ VPM4] in two rows like row 0 and row 1...
    Now the Qustion is How I can bring the twon row from the VPM4 table to my PLD for Otgoing payment Account.
    Please Reply this it will great healp for me...

  • How to bring to front created message dialog?

    Hello,
    I don't know if this is correct way to open popup window in JSF, but I do it like that:
    if (!((String)passwordField.getText()).equals(
    (String)confirmPasswordField.getText())) {
    javax.swing.JOptionPane infoDialog = new javax.swing.JOptionPane();
    infoDialog.grabFocus();
    infoDialog.showMessageDialog(new javax.swing.JFrame(),
    "Password and Confirm Password fields must be equal",
    "Information", javax.swing.JOptionPane.OK_OPTION);
    return null;
    Window is opening, but is covered under other windows, how to bring it to front?

    you mean I have to write a code in paintComponent()
    for painting the other one first, I write a seperate
    method to implement this functionNo, I mean just that. It's like drawing on a piece of paper. Paint one thing first, and the one that gets "on top" last. Save all your shapes in an array, paint them sequentially, and reorder the array as needed, if one should move from the background to the foreground.

Maybe you are looking for

  • Calling a report from forms

    Hello i have a problem with calling a report from a form. i use the following statement in the when-button-pressed trigger: Run_Product(REPORTS, report.rdf',ASYNCHRONOUS, RUNTIME,FILESYSTEM, '', null); in the reports background engine i get the error

  • Issue while loading Master Data through Process Chain in Production

    Hi All, We are getting an error in Process chain while loading Master Data Non-updated Idocs found in Source System Diagnosis IDocs were found in the ALE inbox for Source System that are not updated. Processing is overdue. Error correction: Attempt t

  • Trackpad not sending mouseUp on tap?

    I have a problem with the trackpad on my 17" MBP (2009, unibody). It's not consistent, but it is happening with increasing frequency. I normally have my trackpad set for click on tap (I hate how the whole pad moves for a physical button-click, plus t

  • Querry: Output Types

    Hi All.... Where in spro can I maintain Output types , pls msg the path and the output determination procedure.... Regards

  • How to integrate with another dam to the asset finder

    We have to use an external dam and I hope that I can write a connector to pull the dam images to show up in the asset finder (left pane in page design).   This a designer can drag and drop the images just like the images were in CQ DAM.  Is there any