Add new table in pricing report

Hello,
how is it possible to add a new pricing condition table to the pricing report? In transaction V/LB, the option ''Add table'' is not available.
Thanks.

you cannot add tables to the pricing report V/LB. you will have to delete the existing report and create a new one , and then you can add this new table.
Regards
Sai

Similar Messages

  • Add table to pricing report

    Hi all,
    Here is an issue how to add a table to an existing pricing report.
    Is there any function to re-generation or allow to add a table to pricing report? It seems that only to delete all table and re-create a new one to add this table to the pricing report.
    Thanks in advance for your help.
    Steven

    If you have generated a pricing report, then you cannot add some more fields to it. Please delete the pricing report and then recreate a new one with all the essential fields you need.
    Hope this helps you
    Pls reward if it helps.

  • Reg:HOw to add new charactersitics in standard report

    hi all
    HOw to add new charactersitics in standard report
    regards
    JK Rao

    You need to copy the std report and make necessary changes in the copied report. SAP does not allow changes to std report. The technical details of the report can be seen by selecting from the menu Extras - technical information. Select the library and Report name. Copy the same using t code GRR1. Carry out necessary changes and SAVE. Before execution, you will have to specify the report group in which report needs to be attached. You can choose and existing group or specify a new one.
    Regards
    Rakesh Pawaskar

  • Add New Column in ALV Report of Standard SAP ME28.

    Hi anybody,
    I want add new column in alv report of standard SAP Program ME28 Screen.
    Add Last PO Price column inside ALV Report ME28 Screen.
    Can u please anybody tell me how to add new column in ME28 Screen.
    Thanks
    S.Muthu.

    Try to find any BADI for the same
    Follow the below steps to find out what all BADI's are called when you press any button in any transaction.
    1) Goto se24 (Display class cl_exithandler)
    2) Double click on the method GET_INSTANCE.
    3) Put a break point at Line no.25 (CASE sy-subrc).
    Now
    4) Execute SAP standard transaction
    5) Press the required button for which you need to write an exit logic, the execution will stop at the break point.
    6) Check the values of variable 'exit_name', it will give you the BADI name called at that time.
    7) This way you will find all the BADIs called on click of any button in any transaction.
    OR
    Also one more option is to copy ME28 and, make modifications to the copied program.

  • How add new table in derby  travel database

    sir i use Sun Java Studio Creator with derby
    sir i want create new table in derby travel database but when i right click
    on table not that disable and not give and table create button
    please give me idea how i add new table in derby travel database
    thank's aamir

    Within JDeveloper the generation of entities (Persistent POJOs) from tables will overwrite exiting classes. If you have additional tables you wish to map without losing existing work you will need to create the new classes and map them manually. If you are using the native TopLink mappings there is auto-map support on individual descriptors in the structure pane to automate much of this. If you are using JPA mappings it is a bit more manual at present but the tooling is ntended to give you feedback on problems as you construct and configure your mappings.
    Doug

  • Add new column to System report

    Hi experts!
    Can i add new column  to System Report ( Ex: Inventory Status, Agent Report which new Column as "Test") by SDK.)
    Please give me ideas.
    Thanks!

    Tien,
    Using SDK its not possible to add a new column to the existing system reports. As a work around what u can do is use the PLD to design a layout with the new column.
    Hope it helps,
    Vasu Natari.

  • Get error when add new object in crystal report

    hi
    i have this error "You are attempting to use functionality that falls under the Crystal Decisions Report Creation API license. This system does not have a valid license, or the evaluation copy of the license has expired. Please contact Crystal Decisions to obtain a Report Creation API license."
    when i add new object in crystal report with vb.net
    ""CRReport.Sections.Item(ii).AddTextObject("new text", 1000, 0)
    i do same program for 3 months ago but i lost it work without error
    ihave a license key for crystal report
    use cr10 with vb.net 2005
    can help me
    thanks

    Also, check out the blog [Use of the Report Designer Component (RDC) in VS .NET|http://www.sdn.sap.com/irj/scn/weblogs;jsessionid=(J2EE3414700)ID0468837450DB00359707053703393347End?blog=/pub/wlg/15939].
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup

  • V/LB - Change Pricing Report, Add new table

    Hi Experts,
    I am trying to add a new pricing table value to a price report via transaction V/LB. When I select the report to change and hit Table SAP button, there is not new entry or change button available only the delete functionality!! Can you please advise how I can add a new table value in the price report V/LB?
    I have searched the database and a similar question has been asked previously but there is no reply per below link, can you please assist how add new condition value in the table of the report.
    New Condition Table in V/LB
    Thankyou

    Hi
    It is disabled in change mode (V/LB), only you would be able to select the tables in V/LA.
    thank you

  • Adding condition table into pricing report-reg

    Hi,
    We have a requirement to add additional  condition tables in an existing pricing report. Is there a way to include the condition tables  through V/LB or we have to delete the existing pricing report and create the new one with the required tables. Please suggest..
    Thanks in advance
    Tajudeen S.

    Hi Tajuddin,
    Unfortunately, there is no other way except to delete the report and create a new one by adding the table.
    Regards
    Nikhilesh

  • How to add new tables in Streams for Schema level replication ( 10.2.0.3 )

    Hi,
    I am in process of setting up Oracle Streams schema level replication on version 10.2.0.3. I am able to setup replication for one table properly. Now I want to add 10 more new tables for schema level replication. Few questions regarding this
    1. If I create new tables in source, shall I have to create tables in target database manually or I have to do export STREAMS_INSTANTIATION=Y
    2. Can you tell me metalink note id to read more on this topic ?
    thanks & regards
    parag

    The same capture and apply process can be used to replicate other tables. Following steps should suffice your need:
    Say table NEW is the new table to be added with owner SANTU
    downstr_cap is the capture process which is already running
    downstr_apply is the apply process which is already there
    1. Now stop the apply process
    2. Stop the capture process
    3. Add the new table in the capture process using +ve rule
    BEGIN
    DBMS_STREAMS_ADM.ADD_TABLE_RULES
    table_name      => 'SANTU.NEW',
    streams_type    => 'capture',
    streams_name    => 'downstr_cap',
    queue_name      => 'strmadmin.DOWNSTREAM_Q',
    include_dml     => true,
    include_ddl     => true,
    source_database =>  ' Name of the source database ',
    inclusion_rule  => true
    END;
    4. Take export of the new table with "OBJECT_CONSISTENT=Y" option
    5. Import the table at destination with "STREAMS_INSTANTIATION=Y' option
    6. Start the apply process
    7. Start the capture process

  • Incomplete Control Deliveries add new table-field for Incompleteness Proced

    Incompletion Control for Deliveries add a new table-field for Incompleteness Procedure G (Delivery header)
    Hello,
    I'm trying to add a new field for Incompleteness Procedure G (Delivery header), but  when I try to customize the procedure G with new fields, I donu2019t find the field that I need  ModeOfTrnsprt-Border (EIKP-EXPVZ).
    Foreign Trade/Customs tables are not included like an option for new entries in the customizing of Incompleteness Procedure G, and Iu2019ve to prevent that users save the outbound delivery without entry a valid value for  EIKP-EXPVZ (EIKP-EXPVZ= ModeOfTrnsprt-Border).
    Otherwise, when users are creating the SD Invoice there is an error for create the Accounting document because Foreign Trade/Customs information is incomplete.
    So Iu2019d like to know If is possible to add a new tables ( and fields)  to use in the customizing for Incompleteness Procedure for Outbound Deliveries (procedure G).
    Thanks!!
    Edited by: Ariana Serrano Aguila on Sep 2, 2010 5:19 PM

    Hello,
    I'm trying to add a new field for Incompleteness Procedure G (Delivery header)
    , but when I try to customize the procedure G with new fields, I donu2019t find the
    field that I need ModeOfTrnsprt-Border (EIKP-EXPVZ).
    See as far as the table is concerned, the basic reason why it is not getting populated as SAP stores the possible values at the domain level. So i think the right approach to add the table would be to get access key for the domain and then add the new table name at domain level. Please reach out for help from ABAPer in this matter.
    You can also use User exit to met this requirement and the appropriate user exit will be as below:
    1.MV50AFZL
    2. MV50AFZ1
    Regards,
    Sarthak

  • Add new column to the report

    how can I add a new column to a report ?

    this the code for the trigger
    function BeforePForm return boolean is
    begin
    --     insert into test_java values(:p_order_by);
    --      commit;     
    --return true;
    IF Check_Access_For_Token(:p_Token, :p_Appmod_Code) THEN
         return (TRUE);
    ELSE
         srw.message(1, 'You do not have access to the report!');
         return (FALSE);
    END IF;
    end;
    please help I need this for today

  • Add new Table Region Through Personalizations

    Dear all,
    I I want Add a new table region in seeded page Through Personalization . Not getting item style as table pls provide any documents for table personalization
    Thanks and Regards
    Aneesh
    Edited by: aneeshmathew on May 4, 2011 4:44 AM

    Hi ,
    Table can not be created through personalization ,but u can create a region where u can create the table and then add this region to the standard page through personalization,using below steps
    1.) create the stack layout bean through personalization .
    2.) in extend property of stack layout bean give the full pacth of your new custom region containing the custom table.
    3.) Of course u have to import the custom page to MDS.
    thanks
    Pratap

  • Add new tables to metadata

    Hello, I have added a new table in the mapping just to store some new data generated from a count function. Can you tell me how can I add this table to metadata?
    I added my source tables, which are under ODBC module, to metadata using the metadata wizard. But I don't know how to add this new table. If someone can help me. Thanks.

    Try right clicking on the table in your mapping and then choose 'Synchronize'. In the resulting interface make sure to choose "Outbound....." as your Direction of synchronization. This will create a table in your metadata.
    Kind Regards,
    Eric.
    Edited by: Eric Buddelmeijer on Apr 4, 2013 5:14 PM

  • How to add new table into running extract pump and replicat files

    Hi all, i am very much confused how we should add a new table for replication into extract pump and replicat parameter files without stopping them manually? Is there any way where we can add them without disturbing functionality of OGG?
    Experts help required on this
    Thanks in advance

    Hi,
    You can stop and restart the extract process after modifying the extract prm files. the current and last reading point details available checkpoint tables ,or it can get it from info command itself , so you can start the extract process at the point of particular RBA or SEQ no, but you make sure the retention period of your archive log files, because all the transactions are moved in to archive log location, so extract process will fetch the data from archive log also,
    Documentation states:
    If Extract abends when a long-running transaction is open, it can seem to take a long time
    to recover when it is started again. To recover its processing state, Extract must search
    back through the online and archived logs (if necessary) to find the first log record for that
    long-running transaction. The farther back in time that the transaction started, the longer
    the recovery takes, in general, and Extract can appear to be stalled.
    Why archive logs?
    GG reads online redo logs in default but when they are all switched, and for some reason in the meantime GG stopped (abended) it doesn't have the last transaction as transaction was in online log that switched. That is why you need archive logs, so that GG can reach this old transaction in archive log.
    E.g you have two online logs, your transaction is at the begining of the first log. Extract abends. Transactions keep coming to database first online log switches to second, second switches to first and first again to second. You start GG but transaction you finished processing on is no longer in first online log. But it is in archive log.
    What to do?
    1) Start Oracle in archive log mode
    2) Make sure you have available space for archive logs
    GG will look into Oracle default location for archive logs when it abends and transaction is no longer in online log.

Maybe you are looking for

  • I am still having trouble with Guided Edit mode in Photoshop. It doesn't work and I have been

    careful about the size of the files that I open or work on. Initializing doesn't run and I was wondering if not down-loading Revel was effecting the editing features in Photoshop 12. I have a IMAC with Snow Leopard and Mavericks. I am [email protecte

  • Adding new field at leasing contract using EEWB and using it for pricing

    Using the Easy enhancement workbench, I have created a new tab containing a new field at the item level of contract. Then in SPRO, in the field catalog, I added a new entry using the same field name and data element name. Created a new condition tabl

  • Is it possible to get user password stored in oid

    Hi all ? is it possible to get password value (in cleartext) for a certain user stored in oid ? using ldapsearch ? Best Regards Rui Madaleno

  • Kms keys

    Hello, We have a customer that has installed a kms host key on 6 servers, so now they have 6 KMS hosts running.  They have contacted us because they realize they have done something wrong.  I am new to kms and have been reading on technet for servera

  • Lightroom 4 multiple platforms???

    I want to buy Lightroom 4 and it's mentioned for multiple platforms. Can the downloaded file be used for both Mac and Windows 8??? I'm using Win8 now but want to change to Mac within 6 moths.