How to extract data for condition records with different valid periods

Dear Gurus,
  There was an error in the recent condition records price upload. Now, i want to extract the data into excel file depending on different valid dates. Please let me know how can i do this... in the extracted file i would like to have fields like, valid on and valid to dates, condition type, price list type, material, condition record no. , last changed date, last changed user id etc., please suggest...thanks in advance..
rgds
suri

hi suresh
create a quick query (SQVI) and extract to excel table KONP
only thing you need to take care is table join for fields datab ( valid from) and tatbi (valid to) you need to take from right table which are present A-table,
Anil

Similar Messages

  • I want to retrieve data for condition record during certain time period.

    Hi Experts,
    Please suggest me some T-Code for retrieving condition record date or Database Table where I can access the data with the  combination of Sales Organization, distribution channel, customer and plant.
    Looking for your expert comments....
    << Moderator message - Everyone's problem is important. But the answers in the forum are provided by volunteers. Please do not ask for help quickly. >>
    thanks in advance..
    With Best Regards,
    Bharat B
    Edited by: Rob Burbank on Jan 21, 2011 5:40 PM

    To search for data/all the relevant condition for a particular condition type(like for example PR00) for a particular date range you can got to VK13 and give that particular condition type for which you want the data for.After giving he condition type click on key combinations and choose for which condition you want the data for.
    Like for example I want to fetch the data for PR00 then I will go to VK13 ,give PR00 then choose the relevant combination and then take a F1 for the first field.by this I will be able to determine the table in which all the condition data is stored for the particular combination.Like for the combination of sales org./dist channel./customer/material we have the table A815.Now by going to SE16 and giving table as A815 i will be able to fetch all the relevant data.(in your case based upon the valid from and valid to date).You can also use table KONP for a particular condition record number details.

  • How to extract data from XML file with JavaScript

    HI All
    I am new to this group.
    Can anybody help me regarding XML.
    I want to know How to extract data from XML file with JavaScript.
    And also how to use API for XML
    regards
    Nagaraju

    This is a Java forum.
    JavaScript is something entirely different than Java, even though the names are similar.
    Try another website with forums about JavaScript.
    For example here: http://www.webdeveloper.com/forum/forumdisplay.php?s=&forumid=3

  • How to extract data for 0FI_GL_50

    hi guys,
    we need to use datasource 0FI_GL_50, delta is not supported for this datasource, how can we extract data from ecc?

    Hi Ester,
    If the datasource doesn't support delta load.....then you can't help this.
    For ODS it will not be a problem if you keep the aggregation type as "Overwritten"....
    But if you want Aggregation Type summation in the ODS level then you have to delete the content of the ODS before loading.....
    For Infocube level duplicate records will be there......but you can avoid duplicate records in the following way...........
    Use a Full DTP to load from ODS to cube and in the Process Chain you include the Process " Delete Overlapping Requests from infocube".....it will delete the previous request.......then there will be no duplication of records......
    Actually what I feel is......there shoukd be three stage of loading.....
    a) In the first level a ODS should be there with Aggregation Type Overwrite, so no need to delete the content..
    b) 2nd level ODS with Aggregation type Summation, deleteion of the content required...
    c) Then from ODS to cube.....include the step " Delete Overlapping Requests from infocube" at the end..
    Regards,
    Debjani.....

  • How to produce xsd for  multiple record with header

    Hi
    I tried with native format builder but that's of no use for me
    I have a flat file like this
    0+022+
    1+012+
    2+022+
    2+032+
    1+021+
    2+025+
    5+036+
    I need a schema for repeating records. My record starts for each 0 and ends for 5
    0=header 1=page 2=word 5=end
    Can somebody help me please.
    for now I have this schema but I get more number of xml elements than the data when I transform in bpel
    Also When i parse, as my records end with + {eol}, I get + at the end of the last element, how to get rid of that
    <?xml version="1.0" encoding="US-ASCII"?>
    <schema xmlns="http://www.w3.org/2001/XMLSchema"
    xmlns:nxsd="http://xmlns.oracle.com/pcbpel/nxsd"
    xmlns:tns="http://www.oracle.com/ias/processconnect"
    targetNamespace="http://www.oracle.com/ias/processconnect"
    elementFormDefault="qualified" attributeFormDefault="unqualified"
    nxsd:stream="chars" nxsd:version="NXSD" nxsd:validateNxsd="true">
    <element name="PFW16">
    <complexType>
    <sequence>
    <element ref="tns:Header" nxsd:conditionValue="0"/>
    <element ref="tns:Pager" nxsd:conditionValue="1" maxOccurs="unbounded"/>
    <element ref="tns:Tail" nxsd:conditionValue="5" />
    </sequence>
    </complexType>
    </element>
    <!--Header Record -->
    <element name="Header" type="tns:HeaderType"/>
    <complexType name="HeaderType">
    <sequence>
    <element name="RecordTypeIndicator" type="string"
    nxsd:style="terminated" nxsd:terminatedBy="+"/>
    <element name="VersionNumber" type="string"
    nxsd:style="terminated" nxsd:terminatedBy="${eol}"/>
    </sequence>
    </complexType>
    <!-- Pager Record -->
    <element name="Pager" type="tns:PagerRecordType"/>
    <complexType name="PagerRecordType">
    <sequence>
    <element name="RecordTypeIndicator" type="int"
    nxsd:style="terminated" nxsd:terminatedBy="+"/>
    <element name="VersionNumber" type="string"
    nxsd:style="terminated" nxsd:terminatedBy="${eol}"/>
    <element name="words">
    <complexType>
    <sequence>
    <element name="Detail-Item" minOccurs="1"
    maxOccurs="unbounded">
    <complexType>
    <group ref="tns:WordsRecord"
    nxsd:conditionValue="2"/>
    </complexType>
    </element>
    </sequence>
    </complexType>
    </element>
    </sequence>
    </complexType>
    <group name="WordsRecord">
    <sequence>
    <element name="RecordTypeIndicator" type="int"
    nxsd:style="terminated" nxsd:terminatedBy="+"/>
    <element name="VersionNumber" type="string"
    nxsd:style="terminated" nxsd:terminatedBy="${eol}"/>
    </sequence>
    </group>
         <element name="Tail" type="tns:EndType"/>
    <complexType name="EndType">
    <sequence>
    <element name="RecordTypeIndicator" type="string"
    nxsd:style="terminated" nxsd:terminatedBy="+"/>
    <element name="VersionNumber" type="string"
    nxsd:style="terminated" nxsd:terminatedBy="${eol}"/>
    </sequence>
    </complexType>
    </schema>

    You can get value into variable using a simple select sql line.
    Create a variable -> go to refreshing tab -> add sql code there with proper schema.
    Use variable in package in refresh variable mode.
    You are done . Enjoy.

  • How to Extract Data for a Maintenance View, Structure and Cluster Table

    I want to develop  3 Reports
    1) in First Report
    it consists only two Fields.
    Table name : V_001_B
    Field Name1: BUKRS
    Table name : V_001_B     
    Field Name2: BUTXT
    V_001_B is a Maintenance View
    For this one I don't Find any Datasource
    For this Maintenance View, How to Extract the Data.
    2)
    For the 2nd Report also it consists Two Fields
    Table name : CSKSZ
    Field Name1: KOSTL (cost center)
    Table name : CSKSZ
    Field Name2: KLTXT (Description)
    CSKSZ is a Structure
    For this one I don't Find any Datasource
    For this Structure How to Extract the Data
    3)
    For the 3rd Report
    in this Report all Fields are belonging to a Table BSEG
    BSEG  is a Cluster Table
    For this one also I can't Find any Datasource,
    I find very Few Objects in the Datasource.
    For this One, How to Extract the Data.
    Please provide me step by step procedure.
    Thanks
    Priya

    Hi sachin,
    I don't get your point can you Explain me Briefly.
    I have two Fields for the 1st Report
    BUKRS
    BUTXT
    In the 2nd Report
    KOSTL
    KLTXT
    If I use  0COSTCENTER_TEXT   Data Source
    I will get KOSTL Field only
    what about KLTXT
    Thanks
    Priya

  • How to extract data for particular two members of same dimension.

    As per the requirement i need to export data for certain members of a dimension. Lets say we need data for two account members A and B which is in in Account dimension only but is not a direct children. I need the data for all the available years too. Please suggest me how my DATAEXPORT command should look like.
    When i am using an AND statement it is not working accordingly. Say i am fixing for years 2007 and 2009 but the output file is coming for 2009 and 2010.
    Something other is happening when i am fixing OPEX_31 and OPEX_32. The values are coming not only for OPEX_31 and OPEX_32 but for many more accounts too.
    Here is my dataexport statement for your reference
    SET DATAEXPORTOPTIONS
    DataExportLevel "ALL";
    DataExportColFormat ON;
    DataExportDimHeader ON;
    DataExportOverwriteFile ON;
    FIX("LC","Total_Year","ESB1","2009","SIERRA","COSTCENTER_NA","CELLULAR_NA","OPEX_31",
    "January","February","March","April","May","June","July","August","September","October","November","December");
    DATAEXPORT "File" "     " "D:\exports\feb.txt";
    ENDFIX;
    I need data for OPEX_31 and OPEX_32 for all the available years starting from 2001 to 2025.
    Please suggest what are the modification needed to get the desired result.
    Thanks in advance

    Hi,
    There a few different options you can use for fixing on the months, years..
    e.g. FIX(January:December)
    or FIX(@CHILDREN(YearTotal)) < depends what the parent of the months is
    sames goes for years
    FIX(2009:2025)
    or
    FIX(@CHILDREN(Year)
    If your period dimension is dense you can always use that as the column header e.g. DataExportColHeader "Period" and then fix on the accounts you require.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Condition Record as per validity Period with variation of Qty.

    Hi, Experts
    I have a querry in pricing -
    Suppose i have contract of 30 tons of validity period is 3 months.For this i ahve maintained a condition record(Customer/material) Rs1000/1ton.
    That means customer has to give a order of 10 tons/month.
    If customer is ordering bellow 10ton/month, then i will charge as a price of Rs1100/1ton.
    Otherwise if customer is ordering morethan 10tons, then i will charge market price of exceeding qty.
    For example customer order 15ton/month ,for this i will charge 10tons for as usual our contract price i.e Rs1000/1 ton & rest
    5 tons i will charge for market price.
    which is having material specific condition record for normal scenario
    Kindly revert back if any clarification--
    Thanks'
    Soumya

    Hi ,
    Ifyour asking for any Scale Base Prices follow as required
    Maintain Condition records (VK11)----
    >   1 ton Rs1100 with Dates as per ur requirements
    Then Click on "Scales Icon"  Ther u can maintain  required scales
    1 ton Rs1100
    5Tons< Price is Rs1100
    10 tons> Price Rs 1000
    Regards,

  • How to extract data for this tcode

    Hello BW Experts,
    I have a transaction code in R/3. i observe that is a using a program P1 and structure S1 to generate the table display in the r/3 transaction.
    i go to se38 and display the code, it seems to be a module pool.
    Any suggestions for extraction of this data is highly appreciated.
    Thanks,
    BWer

    Hi,
       if you know ABAP, analyze the code, which tables are getting update with that. based on these tables either you can create generic extractor or you can search for business content.
    you can use SQL Tracer also to find the tables.
    go to ST05 --> SWITCH ON THE DEBUGGER(sql trace) > go to your custom transaction> create a entry> then come back to st05 deactivate the trace> then go with display trace.
    there you will see what are the tables used for this.
    Hope this helps.
    All the best.
    reagrds,
    Nagesh Ganisetti.

  • How to extract data for these fields from R/3 ?

    Hi frnds,
    My requirement is to extract the following fields which
    are related to MM: Condition type, condition
    value, Bill of lading, Qty in external delivery note,
    Different invoicing party, Invoicing document from R/3 to
    BI. But i found that they are not in any purchasing
    datasources or inventory datasources ( Except different
    invoicing party but the values are not picking up through
    standard extractors ).
    Anyone please tell me are there any standard datasources for extracting these fields ?
    If not, if i want to enhance datasources for these fields
    which datasource do i need to enhance i.e
    2lis_02_itm,2lis_02_scl,2lis_02_s012 or 2lis_03_bf,
    2lis_03_um ?
    Full points will be assigned.
    Regards,
    Bhadri M.

    Hi.......
    I think you have filled the set up table..........and you have replicate the datasource also.......and after replicating you have activated in the BI side........
    Then it should extract the data............
    Are you in BI 7.0...........
    You try one thing...............
    Replicate the datasource again............and then activate the transfer rules using program : RS_TRANSTRU_ACTIVATE_ALL...........
    Also check the selection tab of your Infopackage........may be you are giving some selection.........also check if it is coming till PSA..........if it is coming till PSA.....then check your transformation and DTP.......
    It may help you...........
    Regards,
    Debjani..........
    Edited by: Debjani  Mukherjee on Sep 21, 2008 11:18 AM

  • Mass change for  condition record

    I try to change the condition record for material with validity period of one year starting next year Jan 1st. Since that material is already exists in the system with validity period of current date to 12/31/9999, it is not saving my changes. When increase price by 5%, it is not giving any problem but when I display to see the changes "Environment-Changes-Per condition record", it is giving an popup box saying "Change documents for conditions not yet save are not possible"
    I try to delete material condition with longer period. It is deleting at that moment but when I come back and see still that material exists with longer period.
    how do I deal with this problem to solve?
    Fully rewarded for solution.
    Thanks,
    Manu.

    Hi Manu;
    At any given point in time you can have only one valid condition record with a validity period.
    1. Create a condition record with validity from today to 12/31/2007
    2. Create a condition record with validity from 01/01/2008 to ....
    You issue would be solved.
    Regards.

  • How to structure the DMA buffer for PXie 6341 DAQ card for analog output with different frequencies on each channel

    I'm using the MHDDK for analog out/in with the PXIe 6341 DAQ card.
    The examples, e.g. aoex5, show a single Timer  (outTimerHelper::loadUI method), but the example shows DMA data loaded with the same vector size.
    There is a comment in the outTimerHelper:rogramUpdateCount call which implies that different buffer sizes per channel can be used.
       (the comment is: Switching between different buffer sizes will not be used)
    Does anyone know what the format of the DMA buffer should be for data for multiple channels with different frequencies ?
    For example, say we want a0 with a 1Khz Sine wave and a1 with a 1.5Khz sine wave.  What does the DMA buffer look like ?
    With the same frequency for each channel, the data is interleaved, e.g.  (ao0#0, ao1#0; ao0#1, ao1#1, ...), but when the frequencies for each channel is different, what does the buffer look like ?

    Hello Kenstern,
    The data is always interleaved because each card only has a single timing engine for each subsystem.
    For AO you must specify the number of samples that AO will output. You also specify the number of channels. Because there is only one timing engine for AO, each AO will channel will get updated at the same time tick of the update clock. The data will be arranged interleaved exactly as the example shows because each AO channel needs data to output at each tick of the update clock. The data itself can change based on the frequency you want to output.
    kenstern wrote:
    For example, say we want a0 with a 1Khz Sine wave and a1 with a 1.5Khz sine wave.  What does the DMA buffer look like ?
    With the same frequency for each channel, the data is interleaved, e.g.  (ao0#0, ao1#0; ao0#1, ao1#1, ...), but when the frequencies for each channel is different, what does the buffer look like ?
    In your example, you need to come up with an update rate that works for both waveforms (1 KHz and 1.5 KHz sine waves). To get a good representation of a sine wave, you need to update more than 10x as fast as your fastest frequency...I would recommend 100x if possible.
    Update Frequency: 150 KHz
    Channels: 2
    Then you create buffers that include full cycles of each waveform you want to output based on the update frequency. These buffers must also be the same size.
    Buffer 1: Contains data for the 1 KHz sine wave, 300 points, 2 sine wave cycles
    Buffer 2: Contains data for the 1.5 KHz sine wave, 300 points, 3 sine wave cycles
    You then interleave them as before. When the data is run through the ADC, they are outputting different sine waves even though the AO channels are updating at the same rate.

  • Open Hub: How-to doc "How to Extract data with Open Hub to a Logical File"

    Hi all,
    We are using open hub to download transaction files from infocubes to application server, and would like to have filename which is dynamic based period and year, i.e. period and year of the transaction data to be downloaded. 
    I understand we could use logical file for this purpose.  However we are not sure how to have the period and year to be dynamically derived in filename.
    I have read in sdn a number of posted messages on a similar topic and many have suggested a 'How-to' paper titled "How to Extract data with Open Hub to a Logical Filename".  However i could not seem to be able to get document from the link given. 
    Just wonder if anyone has the correct or latest link to the document, or would appreciate if you could share the document with all in sdn if you have a copy.
    Many thanks and best regards,
    Victoria

    Hi,
    After creating open hub press F1 in Application server file name text box from the help window there u Click on Maintain 'Client independent file names and file paths'  then u will be taken to the Implementation guide screen > click on Cross client maintanance of file name > create a logical file path by clicking on new entiries > after creating logical file path now go to Logical file name definition there give your Logical file , name , physical file (ur file name followed by month or year what ever is applicable (press f1 for more info)) , data format (ASC) , application area (BW) and logical path (choose from F4 selection which u have created first), now goto Assignment of  physical path to logical path > give syntax group >physical path is the path u gave at logical file name definition.
    however we have created a logical path file name to identify the file by sys date but ur requirement seems to be of dynamic date of tranaction data...may u can achieve this by creating a variable. U can see the help from F1 that would be of much help to u. All the above steps i have explained will help u create a dynamic logical file.
    hope this helps u to some extent.
    Regards

  • How to extract data from CRM with Data Service?

    Hi all,
                 I'll try to explain briefly the main issue; We need to read or extract data from SAP CRM with Data Service tool, then we'll show the data with webi, but now I would like to know if there are some standard tool as a rapid mart (i mean that it doesn't exists) but if some one knows how it works and if it's possible, it could be very helpful for us.
    BW option doesn't ok because the client needs a lot of queries for a report and the standard tool in our project is Data Service.
    Thanks in advance, and ask all u need if it can be a help for answer the question.
    Best Regards.
    Edited by: Cantabria on Jun 7, 2011 1:14 PM

    Hi,
    Your very familiar with LO data source even though your getting doubts on it.
    LBWE/SM13 belongs to only LO Data sources.
    CRM data sources also have delta settings based on data source.
    You can search on google about CRM data sources by using data source names.You may get some useful information.
    Before using CRM Data sources, CRM functional team need to set proper configurations at CRM system. those also you can easily get form google.
    use search term as " CRM - BW Adapter settings".
    Like other standard data sources for crm also,
    we need to activate from RAS5 and do the modification at RSA6.
    test at RSA3 and replicate into BW. Do the rest of the flow at bw system.
    Thanks

  • Create id, update id with date for each record

    Hi,
    Please give me brief idea or document for this concept:
    I need create id, create date, update id, update date for each record inserted or updated in database (in few tables).
    1) how user id can be obtained?
    2) Is it better if i use views instead of tables for this?
    3) is it possible for each record?
    Please show me complete scenario. a piece of code can also be helpful.
    thanx in advance.

    only.ashish99 wrote:
    Hi,
    Please give me brief idea or document for this concept:
    I need create id, create date, update id, update date for each record inserted or updated in database (in few tables).
    1) how user id can be obtained?SELECT
    2) Is it better if i use views instead of tables for this?It depends.
    post EXPLAIN PLAN for both.
    3) is it possible for each record?yes
    How do I ask a question on the forums?
    SQL and PL/SQL FAQ

Maybe you are looking for

  • Using subdirectories in file sender

    Hi there Is is possible to search in all subdirectories in your file sender adapter's source directory? I know you can specify the different directories using the Advance Selection for Source File but i'd like to know if you can specify somehow to ha

  • Problem while bpel process run's

    After creating process and make jar with bpelc (v2.0.11) on linux i try to deploy it on oracle pm. All right! Let's run it! And now...it stoped on client reply! (3 activite from begin of process, but it's not end of bpel model and process!) What is i

  • Issue with Printing Payload

    i want to print payload in soa using printer. For that i am using following java code. Using this code i cant print the paylaod because i am not able to pass the bpel variable to the java. And after deploying this program soa server goes down. Please

  • Problem printing with flex

    Hi, how can I print a PDF from flex?, I mean, Ither's a PDF located on a server and I want to print it by clicking a buttom from my application, is it possible using flex? please give me code examples, sorry for my english.

  • CS6 master collection Cross OS compatibility

    Just bought the CS6 master collection (student edition). Problem is, I've got a Mac, and the box says windows (on only one side in small print ) Can you install/activate the Windows version of this software on a Mac with the disc from the Windows ver