Getting the Price details in demantra

Hi all,
Using demantra version 7.3.1
In demantra data model I haven't configured my price details( from flat file),Besides I had done build model successfully.
Now I have the requirement to show the series like Price ,revenue forecast etc in my worksheet ,So for that I guess we need to update the price in sales_data table field item_price!!!
work around I had tried but not successful,
1.Tried to get the data in biio_price staging table Updated my price in (i_price table ,against sales_date) still not able to get it in worksheets.
2.tried integration interface getting the file file from csv file in local machine and selected the series price ,revenue in data profile import still the data is null.
Please all suggest a work around that I need to get the price data in my worksheet/how to update the base table of demantra sales_data table item_price inorder to make my series work

Hi Sudeep,
1.I had checked the err tables they were clean..
Price_Overide is custom series developed by me to get the price data in,since the price base series is non editable so that I believe we cant bring the data successfully.
2.item_group and location_hq(which is head quarters).
3.When I import my data through list of series (in my case I am trying to use Price_override series) in work sheet for seeing the data but still no data is reflecting.
fyi the export integration profile for data and level profile are working fine!!!
Please do suggest me some options!!
Moreover I have another client requirement( to calculate sales% contribution percentage) I am Having trouble to point summary of total sales inorder to construct my client exp (sales/total sales ) *100 gives the percentage,here I was not able to refer the total sales(summary)
Is there any work around for this,I appreciate your response for this
thanks

Similar Messages

  • How to get the recruitment details in a customised report.

    Dear Experts,
    We are into developing a report which has to fetch the below.
    1.vendor name
    2.No. of positions
    3.Dept.name
    4.amount
    5.cost of recruitment
    6.Number of advertise ments.
    Experts,from where we have to get the above details.
    Please advice
    V Sai.

    Thread is closed.
    v sai

  • When syncing iPod the PC lost power. once power restored synced iPod but the sleeve detail has been blanked. Also when syncing a 'miss-match' message is reported on iTunes. how do I get the sleeve detail back onto iPod?

    When syncing iPod the PC lost power. once power restored synced iPod but the sleeve detail has been blanked. Also when syncing a 'miss-match' message is reported on iTunes. how do I get the sleeve detail back onto iPod?

    http://ww2.cs.fsu.edu/~rosentha/linux/2.6.26.5/docs/DocBook/libata/ch07.html#excatATAbusErr wrote:
    ATA bus error means that data corruption occurred during transmission over ATA bus (SATA or PATA). This type of errors can be indicated by
    ICRC or ABRT error as described in the section called “ATA/ATAPI device error (non-NCQ / non-CHECK CONDITION)”.
    Controller-specific error completion with error information indicating transmission error.
    On some controllers, command timeout. In this case, there may be a mechanism to determine that the timeout is due to transmission error.
    Unknown/random errors, timeouts and all sorts of weirdities.
    As described above, transmission errors can cause wide variety of symptoms ranging from device ICRC error to random device lockup, and, for many cases, there is no way to tell if an error condition is due to transmission error or not; therefore, it's necessary to employ some kind of heuristic when dealing with errors and timeouts. For example, encountering repetitive ABRT errors for known supported command is likely to indicate ATA bus error.
    Once it's determined that ATA bus errors have possibly occurred, lowering ATA bus transmission speed is one of actions which may alleviate the problem.
    I'd also add; make sure you have good backups when ATA errors are frequent

  • How to get the network details in flex4.5 web application

    How to get the network details in flex 4.5 web application
    similar to the nativeinterface in air application

    checkout this document for secure web application
    http://help.adobe.com/en_US/flex/using/WS2db454920e96a9e51e63e3d11c0bf6167e-7fff.html    

  • Function module to get the payment details for PO

    Hi,
    Is there any standard function modlue to get the payment details for specific purchase order  or is there any table where we can get the payment details till date.
    My requirement is purchase order wise how much already paid to vendor  and what is the balance amount  to be paid vendor.
    thanks in advance....
    Regards,
    Sree

    Hello
    BAPI_PO_GETDETAIL will help you.
    Look at structures PO_ITEM_HISTORY and PO_ITEM_HISTORY_TOTALS
    Also you may use table EKBE

  • Function module for getting the partner details and Classifications

    Hi,
    Can any one tell me FMs for getting the Partner Details and for getting the characteristics associated with an equipment??
    Thanks

    Hi Anu,
    are you talking about the SAP Business Partner???
    Well, if yes, then just check the FM 'BAPI_BUPA_CENTRAL_GETDETAIL'.
    Or just search for oher FMs with BAPI_BUPA*.
    Hope this helps...
    Ciao Bernhard

  • How can I get the attributes details like user name, mail , from sAMAccount csv or notepad file through powershell or any other command in AD?

    How can I get the attributes details like user name, mail , from sAMAccount csv or notepad file through powershell or any other command in AD?

    Ok what about If i need to get all important attributes by comparing Email addresses from excel file and get all required answers
    currently I am trying to verify how many users Lines are missing , Emp numbers , Phones  from AD with HR list available to me.
    I am trying to Scan all the AD matching HR Excel sheet and want to search quickly how many accounts are active , Line Managers names , Phone numbers , locations , title , AD ID .
    these are fields I am interested to get in output file after scanning Excel file and geting reply from AD in another Excel or CSV file
    Name’tAccountName’tDescri ption’tEma I IAddress’tLastLogonoate’tManager’tTitle’tDepartmenttComp
    any’twhenCreatedtAcctEnabled’tGroups
    Name,SamAccountName,Description,EmailAddress,LastLogonDate,Manager,Title,Department,Company,whenCreated,Enabled,MemberOf | Sort-Object -Property Name
    Can you modify this script to help me out :)
    Hi,
    Depending on what attributes you want.
    Import-Module ActiveDirectory
    #From a txt file
    $USERS = Get-Content C:\Temp\USER-LIST.txt
    $USERS|Foreach{Get-ADUser $_ -Properties * |Select SAMAccountName, mail, XXXXX}|Export-CSV -Path C:\Temp\USERS-ATTRIBUTES.csv
    #or from a csv file
    $USERS = Import-CSV C:\Temp\USER-LIST.csv
    $USERS|Foreach{Get-ADUser $_.SAMAccountName -Properties * |Select SAMAccountName, mail, XXXXX}|Export-CSV -Path C:\Temp\USERS-ATTRIBUTES.csv
    Regards,
    Dear
    Gautam Ji<abbr class="affil"></abbr>
    Thanks for replying I tried both but it did not work for me instead this command which i extended generated nice results
    Get-ADUser -Filter * -Property * | Select-Object Name,Created,createTimeStamp,DistinguishedName,DisplayName,
    EmployeeID,EmployeeNumber,Enabled,HomeDirectory,LastBadPasswordAttempt,LastLogonDate,LogonWorkstations,City,Manager,MemberOf,MobilePhone,PasswordLastSet,BadLogonCount,pwdLastSet,SamAccountName,UserPrincipalName,whenCreated,whenChanged
    | Export-CSV Allusers.csv -NoTypeInformation -Encoding UTF8
    only one problem is that Manager column is generating this outcome rather showing exact name of the line Manager .
    CN=Mr XYZ ,OU=Users,OU=IT,OU=Departments,OU=Company ,DC=organization,DC=com,DC=tk

  • How can i get the price by joining StockIn and StockOut inventory (FIFO)

    I have 2 example table 
    First StockIn table
    declare @StockIn table (StockID int ,qty decimal(16,2),Price decimal(16,2), tranDate Date , running int)
    insert into @StockIn(StockID , qty ,  Price, tranDate  , running) values
    (1 , 5 , 430 , '2014-10-09' , 1),
    (1 , 10 , 431 , '2014-12-09' , 2),
    (1 , 15 , 432 , '2015-02-02' , 3),
    (2 , 8 , 450 , '2014-08-05' , 1),
    (2 , 6 , 451 , '2014-10-09' , 2),
    (2 , 15 , 452 , '2015-02-02' , 3)
    Represent item which go into the stock order by date (running column is , run number in stockID  order by date )
    Second StockOut table
    declare @StockOut table (StockID int ,qty decimal(16,2), lineid int)
    insert into @StockOut(StockID  ,qty , lineid ) values
    (1 , 10 , 2),
    (1 , 10 , 4),
    (2 , 12 , 8),
    Represent item which go out the stock . But this table doesn't have price of each item , I want to join this 2 table (join stockID) for getting the price from
    @StockIn table  by FIFO  , into @StockOut table  row by row .
    I can do this if I dont care about  lineid  but  i need to get the total price (qty * price) of any lineid .
    How Can i do this ?
    Thanks
    This is the  Result i expect 

    Thanks Jason
    A Long
    >>  https://www.simple-talk.com/sql/performance/set-based-speed-phreakery-the-fifo-stock-inventory-sql-problem/
    I have try this links but the result give me total stock left in inventory .
    But I want a price of each out transaction . So i have no idea to do with this.
    Could you give me some example of this logic
    >>  https://www.simple-talk.com/sql/performance/set-based-speed-phreakery-the-fifo-stock-inventory-sql-problem/ relate
    to this example .
    IF OBJECT_ID('tempdb..#StockIn') IS NOT NULL
    DROP TABLE #StockIn
    GO
    CREATE TABLE #StockIn (
    InID INT,
    StockID INT,
    InQty INT,
    Price DECIMAL(16, 2),
    tranDate DATE,
    running INT
    IF OBJECT_ID('tempdb..#StockOut') IS NOT NULL
    DROP TABLE #StockOut
    GO
    CREATE TABLE #StockOut (
    OutID INT,
    StockID INT,
    OutQty INT,
    lineid INT,
    tranDate DATE
    INSERT #StockIn ( InID, StockID, InQty, Price, tranDate, running )
    VALUES ( 1, 1, 15, 430, '2014-10-09', 1 ),
    ( 2, 1, 10, 431, '2014-10-10', 2 ),
    ( 3, 1, 15, 432, '2015-02-02', 3 ),
    ( 4, 2, 15, 450, '2014-08-05', 1 ),
    ( 5, 2, 6, 450, '2014-10-01', 2 ),
    ( 6, 2, 15, 452, '2015-10-02', 3 )
    INSERT #StockOut ( OutID, StockID, OutQty, lineid, tranDate )
    VALUES ( 1, 1, 20, 2, '2014-10-11' ),
    ( 2, 1, 10, 4, '2014-10-12' ),
    ( 3, 2, 12, 8, '2014-11-01' ),
    ( 4, 2, 3, 8, '2014-11-02' );

  • HT4059 i have an american iPad2 (set to the UK), iOS version 6.1.2,  & iBooks version1.3.2 & can't get the price box to be selectable to purchase the book I want to buy from the iBookstore. What am I missing?????

    i have an american iPad2 (set to the UK), iOS version 6.1.2,  & iBooks version1.3.2 & can't get the price box to be selectable to purchase the book I want to buy from the iBookstore. What am I missing?????

    Backup with iTunes. If iTunes is asking you if you want to backup, say yes to that and it will backup your iPad. Have you ever synced with this computer before?
    My boilerplate response for anyone that wants to update the iOS.
    What you should do anytime that you update the device is to transfer purchases from the iPad into iTunes - File>Transfer Purchases - and you should backup the iPad as well. When you update the update the device, if something goes wrong, you can restore from the backup.
    However, iTunes should ask if you want to backup before you update, but just in case create the backup yourself before you update. The backup contains your app data and settings - along with other items - so make sure you backup first.
    If you have any other important files, you may want to transfer them to your computer as well, prior to the update.
    How to transfer purchases into your iTunes library
    http://support.apple.com/kb/HT1848
    How to backup and restore from a backup
    http://support.apple.com/kb/HT1766

  • Function module to get the BOM details for a material-plant combination

    hi
    Is there any function module to get the BOM details such as
            BOM Usage       -STLAN
            Alternative BOM -STLAL
            Items                -POSNR
            Required Quantity-EMENG
            Resulting Quantity-MENGE
            Unit of measure    -BMEIN
            Base unit of measure-MEINS
    for a given material-plant combination
    if so please suggest me some FMs.................
    Awaiting for ur reply..............

    try the below fm it may be useful for you
    DATA : BEGIN OF I_BOM OCCURS 0.
            INCLUDE STRUCTURE STPOX.
    DATA : END OF I_BOM.
    CALL FUNCTION 'CS_BOM_EXPL_MAT_V2'
        EXPORTING
          CAPID                 = 'PP01'
          DATUV                 = SY-DATUM
          MEHRS                 = 'X'
          MTNRV                 = P_MATNR
          WERKS                 = P_WERKS
        TABLES
          STB                   = I_BOM
        EXCEPTIONS
          ALT_NOT_FOUND         = 1
          CALL_INVALID          = 2
          MATERIAL_NOT_FOUND    = 3
          MISSING_AUTHORIZATION = 4
          NO_BOM_FOUND          = 5
          NO_PLANT_DATA         = 6
          NO_SUITABLE_BOM_FOUND = 7
          CONVERSION_ERROR      = 8
          OTHERS                = 9.
      IF SY-SUBRC <> 0.
        MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    just befor use it check your application area.for my case it is PP01. you can find it in CS12 when you are exploding the bom the value you are giving in BOM application that is the value for CAPID.
    Just go to se37 and checkout the fm it has lot of options here I am using the minimum things.
    regards
    shiba dutta

  • Getting the terminal Details of the user

    Hi there all,
    I have one requirement. I have a application (forms 6i, oracle 9i) which is used by 25 odd users concurrently on Windows OS.
    I need to know the terminal details of each user.
    If we have different oracle users, we can get the terminal ID's. Given that back end user id is same and only front end login ID's differ, how can one get the terminal details of every user.Looking forward for suggestions.
    Thanks in Advance.
    Regards,
    Ajeet

    If you are web deployed you can use the webutil package to do this.
    Regards
    Grant Ronald
    Forms Product Management

  • How to get the input details on the output screen in T code KCR0

    Hi All,
    How to get the input details on the output screen in T code KCR0, the issue is that we need to get the input details like Company code and payment date on the output screen while executing the report painter via t code KCR0.
    I tried to chane the settings via t code KCR6 but still didn't get the required output details.
    Regards,
    Ajay

    This is the asset accounting forum.  You should post your question in the proper forum.

  • Get the Price

    Hi Experts,
          I'm an ABAP consultant, new to SD.
          Please let me know if there are any Standard Function modules to get the price of a product and its associated Tax or how I can do it.
    The scenario: When we create Sales Orders in Va01, for a given material it gets only the Base price. Instead of that i'm supposed get Total Price = Base price + associated tax.
    Even if there are any Fm to get just the price or just the tax, it'll help..
    Thanks a lot.

    Thank you very much all of you for the help.. I have used SALES_PRICE_READ to get the Net Price as well as the Tax applicable.
    I have one more doubt:
    While using SALES_PRICE_READ I have to pass the WERKS (plant). What is the procedure to get that field.
    As far as I know, the default plant is maintained in the Customer Master. I have to get it from the KNVV table for the given customer.
    But some said there are different conditions for it. Like getting it from the Sales data and so on...
    So can some one please help me out on this..tell me how this is done?
    (When we create a Sales order using the Transaction VA01, it takes the Plant. I want to know how to get that.)
    Thanks a lot.
    Ashish

  • What can be the reason behind getting the Dialer Detail

    what can be the reason behind getting the Dialer Detail
    CallResult = 2 "Error condition while dialing"

    Sorry buddies, for bothering you, without providing enough details.
    We are running Java based ERP for our client, with Oracle Application Server 10.1.3.1.
    OS is Sun Solaris 10
    Database is Oracle 11g
    We found the following errors in /product/10.1.3.1/OracleAS_1/Apache/Apache/logs/error_log file.
    [Mon Jun  8 11:01:41 2009] [error] [client <ipaddr>] [ecid: 1244439100:<server ip>:17034:0:70,0] mod_oc4j: request to OC4J iisapp:8890 failed: AJP error: bad header
    [Mon Jun  8 11:11:36 2009] [error] [client <ipaddr>] [ecid: 1244439685:<server ip>:16312:0:2255,0] request failed: error reading the headers
    [Mon Jun  8 13:25:52 2009] [warn] [client <ipaddr>] oc4j_socket_recvfull timed out
    We have done the following changes recently
    => KeepAlive TImout changed to 5 secs from default 15
    => Changed the MaxPermSize to 512M in opmn.xml
    => Our Max Clients setting changed to 350 from default 150.
    Can someone help us by providing the possible reasons for the occurence of said errors.
    Regards,

  • Not getting the child details

    Hi Friends,
    Iam implementing a master detail page.
    Here I have taken two sequences...one(emp id sequence)  for emp  custom table and  one (dependent id) for family details.
    empid is common column for them. Based on this empid I should get child details (family details)
    In my search page,create/update page  Iam getting the master details , but Iam not able to get child details for the  selected employee.
    I have created a ASSOCIATION  say EmpFamAO  between two EO's (emp table    and   family details table)...................Based on empid column
    AND
    I have created a VIEW LINK  between this EO's  from master (EmpFamAO) left side  and child(EmpFamAO) right side of the view link editor
    But the issue is Iam not getting this common column (emp id) in my child table when querying  therfore Iam not getting related child details...when Iam clicking on details icon or update icon .
    Let me know for any clarifications.
    Thank you.
    Aravinda.

    Hi Aravind just you have to fallow these methods.
    public void createEmployee()
            EmpHeadersEOVOImpl hVo = getEmpHeadersEOVO();
            OADBTransaction tr = getOADBTransaction();
            if(!hVo.isPreparedForExecution())
                hVo.executeQuery();
            Row row = hVo.createRow();
            hVo.insertRow(row);
            row.setNewRowState(Row.STATUS_INITIALIZED);
            Number empId= tr.getSequenceValue("KSK_EMP_ID_SEQ");
            hVo.getCurrentRow().setAttribute("EmpId", empId);
        public void createEmpFamily()
            EmpFamilyEOVOImpl sfVo = getEmpFamilyEOVO();
            EmpHeadersEOVOImpl ehVo = get EmpHeadersEOVO();
            OADBTransaction tr = getOADBTransaction();
            sfVo.setMaxFetchSize(0);
            Row row = sTVo.createRow();
            sfVo.first();
            sfVo.insertRow(row);
            row.setNewRowState(Row.STATUS_INITIALIZED);
            Number familyId= tr.getSequenceValue("KSK_FAMILY_ID_SEQ");
            String empId = ehVo.getCurrentRow().getAttribute("StudentId").toString();
            sfVo.getCurrentRow().setAttribute("FamilyId", familyId);
            sfVo.getCurrentRow().setAttribute("EmpId", empId);
    now above first method show for master table and
    second one show Child Creation methos
    so in that method we are inserting empid into Child table and inserting child id also.
    So now your requirement will fullfill.
    Let me know if required any details.
    Thanks
    San
        public void save()
            OADBTransaction tr = getOADBTransaction();
            tr.commit();

Maybe you are looking for