VL02n : Tables for cost and value column

Hi Gurus,
I need the values of cost and value columns(coming  in smartform output of VL02n tcode) in my customized ALV report. Please tell from which tables these values are coming?
Regards,
Pankaj

Hi Pankaj,
Please try to check  VL02N Tcode value from table LIKP and LIPS.
you can also check table VBFA-Sales document flow .
check all required field in inside table.
Regards,
Prasenjit

Similar Messages

  • What is the key column name and value column name in JDBC Adapter parameter

    Hi
    Can any one please tell me what is the Key Column Name and Key Column Value in JDBC adatper parameters. If i dont mention those parameters i am getting the following error
    <b> Value missing for mandatory configuration attribute tableEOColumnNameId</b>
    Please help me
    Best Regards
    Ravi Shankar B

    Hi
    I am doing DataBase Lookup in XI
    First i have created a  Table in Database( CheckUser) which has two fields UserName and PhoneNumber and then i have created
    I have created one Communication Channel For Reciever Adapter .
    I have given the parameters like this
    JDBC Driver : com.microsoft.jdbc.sqlserver.SQLServerDriver
    Connection : jdbc:microsoft:sqlserver://10.7.1.43:1433;DatabaseName=Ravi;
    UserName.... sa
    password.... sa
    persistence : Database
    Database Table Name : CheckUser
    Key column name and Value column name i left blank and activated
    and then
    I have created
    Data Types : Source ...... UserName
                      Destination.... PhoneNumber
    Message Types
    Message Interfaces
    In Message Mapping
                  I have created one User Defined function DBProcessing_SpecialAPI().This method will get the data from the database....
    In this function i have written the following code
       //write your code here
    String query = " ";
    Channel channel = null;
    DataBaseAccessor accessor = null;
    DataBaseResult resultSet = null;
    query = "select Password from CheckUser where UserName = ' " +UserName[0]+ " '  ";
    try {
         channel = LookupService.getChannel("Ravi","CC_JDBC");
         accessor = LookupService.getDataBaseAccessor(channel);
         resultSet = accessor.execute(query);
         for(Iterator rows = resultSet.getRows();rows.hasNext();){
              Map  rowMap = (Map)rows.next();
              result.addValue((String)rowMap.get("Password"));
    catch(Exception e){
         result.addValue(e.getMessage());
    finally{
         try{
              if(accessor != null)
                   accessor.close();
         }catch(Exception e){
              result.addValue(e.getMessage());
    And the i have mapped like this
    UserName -
    > DBProcessing_SpecialAPI----
    >PhoneNumber
    when i am testing this mapping i am getting the following error
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:Dest_JDBC_MT xmlns:ns0="http://filetofilescenario.com/ilg"><phoneNumber>Plain exception:Problem when calling an adapter by using communication channel CC_JDBC (Party: , Service: Ravi, Object ID: c360bc139a403293afbc49d5c46e4478) Check whether the communication channel exists in the Integration Directory; also check the cache notifications for the instance Integration Server (central Adapter-Engine) Channel object with Id Channel:c360bc139a403293afbc49d5c46e4478 not available in CPA Cache.
    com.sap.aii.mapping.lookup.LookupException: Problem when calling an adapter by using communication channel CC_JDBC (Party: , Service: Ravi, Object ID: c360bc139a403293afbc49d5c46e4478) Check whether the communication channel exists in the Integration Directory; also check the cache notifications for the instance Integration Server (central Adapter-Engine) Channel object with Id Channel:c360bc139a403293afbc49d5c46e4478 not available in CPA Cache.
         at com.sap.aii.ibrun.server.lookup.AdapterProxyLocal.<init>(AdapterProxyLocal.java:61)
         at com.sap.aii.ibrun.server.lookup.SystemAccessorInternal.getProxy(SystemAccessorInternal.java:98)
         at com.sap.aii.ibrun.server.lookup.SystemAccessorInternal.<init>(SystemAccessorInternal.java:38)
         at com.sap.aii.ibrun.server.lookup.SystemAccessorHmiServer.getConnection(SystemAccessorHmiServer.java:270)
         at com.sap.aii.ibrun.server.lookup.SystemAccessorHmiServer.process(SystemAccessorHmiServer.java:70)
         at com.sap.aii.utilxi.hmis.server.HmisServiceImpl.invokeMethod(HmisServiceImpl.java:169)
         at com.sap.aii.utilxi.hmis.server.HmisServer.process(HmisServer.java:178)
         at com.sap.aii.utilxi.hmis.web.HmisServletImpl.processRequestByHmiServer(HmisServletImpl.java:296)
         at com.sap.aii.utilxi.hmis.web.HmisServletImpl.processRequestByHmiServer(HmisServletImpl.java:211)
         at com.sap.aii.utilxi.hmis.web.workers.HmisInternalClient.doWork(HmisInternalClient.java:70)
         at com.sap.aii.utilxi.hmis.web.HmisServletImpl.doWork(HmisServletImpl.java:496)
         at com.sap.aii.utilxi.hmis.web.HmisServletImpl.doPost(HmisServletImpl.java:634)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:390)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:264)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:347)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:325)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:887)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:241)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:148)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    </phoneNumber></ns0:Dest_JDBC_MT>
    In RWB i have checked the status of JDBC driver its showing the following error
    <b>Value missing for mandatory configuration attribute tableEOColumnNameId</b>
    Best Regards
    Ravi Shankar B
    Message was edited by:
            RaviShankar B

  • Source tables for forms and tabular forms must have a primary key.

    Why does HTML DB 2.0 return the message
    "Source tables for forms and tabular forms must have a primary key."
    when trying to generate a "Report and Form" page based on a view defined like "create view <applicationschema>.a as select * from <sourceschema>.b" ?
    It should be possible for HTML DB to "see" that the table "<sourceschema>.b" already has a primary key.
    bw - Christian

    Christian,
    In the create application wizard, when creating form or tabular form pages, you can only use tables with primary keys, and not views, because that wizard is automatically deriving the primary key from the table definition. If you want to build forms on views or tables without a primary key, you need to use one of the create form wizards while working on an existing application. Those wizards allow you to pick your own column as a primary key column.
    Regards,
    Marc

  • Table for po effective value

    Hi,
    I need to develop a purchase order report, so I need the following
    gross price  : 100
    fright        : 10
    insurance : 10
    my net value is : 100 rs
    Effective value : 120 rs
    Where can I find ( table) for this effective value
    fright and insurance I can find from KONV table, But I need effective value or total value
    Thanks
    Srinivas

    PO Header: EKKO
               field: EKKO-KNUMV (number of condition document)
    PO Item: EKPO
               field: EKPO-NETWR (net value in PO currency)
    Conditions: KONV
               field: KONV-KNUMV = EKKO-KNUMV
               for PO item conditions, item number of condition document = item number of PO
               for PO header conditions, item number of condition document = 0000
    Subtotals in the pricing procedure are calculated and not stored in any KONV.
    PO header Net Price = sum of all EKPO-NETWR for all the items.
    Hope this helps.

  • Table for Customer and vendor open balance on a key date

    Dear All,
    Can anyone please let me know Table for Customer and vendor open balance on a key date. We are developing one customized report.
    I have checked with the below table :
    Customer-KNC1, KNC3,BSID, BSAD
    Vendor-LFC1, LFC3, BSIK, BSAK.
    But these are not working properly for all customers and vedors. Also, in open items, there are items with clearing documents.
    Plesae let me know, how to go for it.
    Please suggest.

    Hi
    Use BSID and BSIK for open items
    And pass company code, year and from date and to date range in Posting date selection option
    Reg
    Vishnu

  • Need table for customer and vendor carry forward balance

    Hi,
    I need to fetch the carry forward(opening) balance for GL, customer and vendor account for my report.
    I have table which contains c/f balance for GL accounts which is "GLT0" and now looking for a table for customer and vendor accounts.
    Please let me know if anyone have idea in which table i can get the c/f balance for customer and vendor accounts.
    Thanks in advance.
    Regards,
    Swati

    Hi Gurus
    The requirement from the client side in my case is to have opening balance in Tr code ZFBL1n, ZFBL3N and ZFBL5N.
    Now, from the above thread i got the Tables where i could find the Vendor and Customer Opening Balance but i also want Opening Balance for GL.
    and my 2nd query is how to get these opening balance in Z report, at Header Level.
    Thanks and Regards
    Dnyanesh

  • How to find R/3 table  for FI and PS Datasources

    Hi,
    Can anyone tell me that how can we find SAP tables for FI and PS datasources in BI. Please provide information as it is urgent. Points will be assigned
    Thanks
    Shanthi

    Hi,
    To find DS assigned to a table.
    How to find the Datasources for the given table names ?
    How to find the Datasources for the given table names ?
    To find Tables assigned to a DS.
    USe Extractor Checker RSA3. Execute ST05 (activating SQL Trace), switch on the trace and execute the extractor checker. Once the extractor checker presents the results
    switch off trace. The clcik on Display trace and you will see all the tables that were hit by the extractor checker to
    retrieve data and present it to you.
    Note: Set the break point in the Extractor Function module.
    View the ST05 Extended Trace list. The Object name shows the Tables accessed.
    Thanks,
    JituK

  • Taking long time filling the setup tables for sales and shipment

    Hi ,
    I am trying to fill the setup tables for sales and shipment and it is taking lot of time .
    It took 16 hours just to bring 6 months of  sales history  data in the test environment .
    Cn anybody help on this issue why it is taking that much of time ...
    I am trying to  load the sales data from R/3 into APO-BW from 2005 to 2007 .......
    It is taking 16 hours to fill the data for only 6 months .

    Hi,
    1. delete data and refill the setuptables again by spliting to several small pieces.
    2. compare the data. wht is the last Document numner in RSA3(Maximum one). Start from Maximum one. may be bit complex approch.
    you need to check with PSA and base tables.
    keep one thing in your mind you need to check againest MSEG and BSEG only. noy BKPF and MKPF.
    correct if i'm wrong.
    either refill or create a user exit to avoid duplicae records(you should have very good understanding of data, it will lead to inconsitent data for delta records).
    User exit not a good solution. it's one possibility.
    ****Assign Points If Helpful****
    Regards,
    Ravikanth

  • Table for terms and conditions

    what is table for terms and conditiions??
    regards
    jyoti

    Hi Jyoti,
      If u are looking for the payment terms then the table T052 and T052U.
    Regards
    Kiran Sure

  • Base tables for aggragates and Multiproviders

    Is  RSDICMULTIIOBJ the base table for Multiproviders?
    What is the base table for Aggragates and units?

    Multiproviders
    RSDCUBEMULTI 
    RSDICMULTIIOBJ
    Aggregates
    RSDDAGGREF
    RSDDAGGRT
    RSDDCVERREPAGGR
    RSDDAGGR    
    RSDDAGGRCOMP
    RSDDAGGRDIR 
    RSDDAGGRDIR_M

  • How to fill up set up tables for 2lis_03_UM and BF?

    Hi,
    I am working on Material movements, and i have a How to do document. According to that, its showing me to fill up set up table for 2Lis_03_bf by using TCode OLI1BW, and in the very next step its again telling me to fill up set up table for UM, by using the same TCODE ( OLI1BW ) .
    Now, if i do that, how would the system know that it has to fill up set up table for BF and then UM ? , no where in the screen its asking to fill up the Data source.
    OR i just have to fill up set up table ONCE, and it will fill up for both the DS ?
    please help.
    thanks

    Hi,
    I think you can follow the same procedure.  After completion of setup table filling you can check the result in RSA3.
    In case of UM, you will have the provision to load data based on specific Company codes, but if you don't have any such requirement then you can simply fill setup tables.
    Regards,
    Durgesh.
    Edited by: Durgesh Gandewar on Aug 30, 2011 10:29 AM

  • Table for shipping and billing documents ?

    hi experts,
    how can we come to know that what shipping (VL01n), and billing(VF01) documents has been created for any particular date.
    actually the problem is that i want to modify some documents that i have created a few days ago, plz help me?
    thanks in advance.

    Hi Vishal,
    Some of the tables for Delivery and Billing are LIKP, LIPS, VBRK, VBRP, ...
    If you want to modify document, modify at transaction level and it is not recommended to go and do the changes in the tables, as it is difficult to understand the impact of the same. if it is done at table level.
    Assuming that you want to amend the quantity in Delivery and billing of the same, some of the recommended options are:
    1. Cancel the Billing Document >> Reverse Post goods Issue >> make necessary changes in the quantity >> again do PGI >> Billing.
    2. Create a return document to for necessary quantity >> Return delivery >> Post Goods receipt >> Credit Note (optional)
    In the case of Price difference, follow the path of Debit Memo, Credit Memo or Invoice correction.
    Identify Standard solution, so that it will update all the tables and records necessary.
    Regards,
    Rajesh Banka

  • Table for preceding and Susequent documents  .

    hi experts,
    Please tell me the name of table which contains all preceding and subsequent documents of  purchase order or  sales order.
    Answer will be rewarded by Max points.
    regards,
    Sandeep

    Hi Vishal,
    Some of the tables for Delivery and Billing are LIKP, LIPS, VBRK, VBRP, ...
    If you want to modify document, modify at transaction level and it is not recommended to go and do the changes in the tables, as it is difficult to understand the impact of the same. if it is done at table level.
    Assuming that you want to amend the quantity in Delivery and billing of the same, some of the recommended options are:
    1. Cancel the Billing Document >> Reverse Post goods Issue >> make necessary changes in the quantity >> again do PGI >> Billing.
    2. Create a return document to for necessary quantity >> Return delivery >> Post Goods receipt >> Credit Note (optional)
    In the case of Price difference, follow the path of Debit Memo, Credit Memo or Invoice correction.
    Identify Standard solution, so that it will update all the tables and records necessary.
    Regards,
    Rajesh Banka

  • Table for Material and Inspecton lot together?

    Dear SAPIENTS,
    Please tell me table for Material and Inspecton lot together.
    Regards,
    Kaushal Rai

    Hi Kaushal,
    - Run trx QA08.
    - Select the option Activate inspection type. (This tab should be green)
    - Enter material type at least to not have a junk of data at a single execution. You can set other fields as per your requirement.
    - Check the Box "Assign Inspection type", Don't check/activate any of the rest three
    - Enter the inspection type, here is an limitation you can know the status inspection type by type.
    - Execute.
    - The system will give you the list of the materials that are note activated for the inspection type you feed in the selection screen.
    Hope it satisfy you. at the other way me and you both will search for the better option.
    Regards,
    Shyamal

  • Tables for Costing values in Sales

    Dear SAP experts ,
    I have values in trasaction KKAC and CN41N that I need to capture in a report.
    Do you guys know what tables I can access these values the fastest ?
    In KKAC , I would like to see the total Cost and Revenue, so going thru COEP would be a pain . Any other suggestion ?
    IN CN41N I need to look at the Total Cost and Total Revenue as well based on the WBS. - Any suggestions ?
    Thanks a million
    regards
    Moon

    Hi ,
    Thanks for your reply but this is not what I want.
    I know the transaction codes, but I need SAP tables now because I am creating my own customised report.
    My reports need to look something like what I see in KKAC and CN41N, hence I need SAP tables that I can use to extract this same data.
    KKAC - to look at cost and revenue as a whole ( not line item ) anything else besides COEP  ?
    CN41N -  to look at the cost and revenue at WBS level - what table can I use ?
    rgds
    Moon

Maybe you are looking for

  • Retro entires in HR Forms are not printed when using device type ZHPP3005

    Hi All, We are doing a HCM implementation. We are using HP P3005n printer and ZHPP3005 device type to print our HR forms. We are using ZCalibri font.These are smartforms. Everything was printing perfectly. Then there were retro calculations made to t

  • No sound while playing video in iTunes in Windows 8. Help?

    I'm running Windows 8.1 and every time I go to watch video in iTunes, it'll have sound for a little bit (30 seconds, tops) and then it'll skip a little and the audio's gone. I'd like to get this fixed before my fiance gets back from his trip so we ca

  • NEED CODE FOR RADIOBUTTON SELECTION

    Hi, I have a requirement that I need to display 5 Radiobuttons on output, when I select 1st Radiobutton it should show the message that "Button 1 is selected". like that if I select remaining Buttons they should display individually like 2,3,4,5 are

  • UI element for interactive Form

    HI Experts, My view has one input field and interactive form also have one input field when i button click ,the view input field value transferred to interactive form(adobe pdf form) input field ... Please Help me.... Thanks & Regards Mani R

  • Firefox not remembering last pages

    FF is set to open windows & tabs from last time but instead it opens my Home page set of tabs. This only happens on my iMac version of Firefox (I also use it on Windows at work & a Linux netbook; no problem on them). I think I found a response on thi