Trace semi finished good which used for Finished good

Hello All
According to our system setup ; after we complete the finished goods system is consuming the semifinished goods and direct materilas which we have at the lowest level..
So I can trace the consumed semifinished goods via MB51...But in the MB51 Screnn , its not possible to see highest level finished good number..Imean we would like to see that which semifinished good was used for which finished goods..
So is there any standart report for that or which table may I use for this report..
tahnk you for your support

Hi,
Extend the material to next stage of production plant and do transfer posting or stock transfer.
Hope helpful.
Regards,
Biju K.

Similar Messages

  • Which Event Classes i should use for finding good indexs and statistics for queries in SP.

    Dear all,
    I am trying to use pro filer to create a trace,so that it can be used as workload in
    "Database Engine Tuning Advisor" for optimization of one stored procedure.
    Please tel me about the Event classes which i  should use in trace.
    The stored proc contains three insert queries which insert data into a table variable,
    Finally a select query is used on same table variable with one union of the same table variable, to generate a sequence for records based on certain condition of few columns.
    There are three cases where i am using the above structure of the SP, so there are three SPS out of three , i will chose one based on their performance.
    1) There is only one table with three inserts which gets  into a table variable with a final sequence creation block.
    2) There are 15 tables with 45 inserts , which gets into a tabel variable with a final
    sequence creation block.
    3)
    There are 3 tables with 9 inserts , which gets into a table variable with a final
    sequence creation block.
    In all the above case number of record will be around 5 lacks.
    Purpose is optimization of queries in SP
    like which Event Classes i should use for finding good indexs and statistics for queries in SP.
    yours sincerely

    "Database Engine Tuning Advisor" for optimization of one stored procedure.
    Please tel me about the Event classes which i  should use in trace.
    You can use the "Tuning" template to capture the workload to a trace file that can be used by the DETA.  See
    http://technet.microsoft.com/en-us/library/ms190957(v=sql.105).aspx
    If you are capturing the workload of a production server, I suggest you not do that directly from Profiler as that can impact server performance.  Instead, start/stop the Profiler Tuning template against a test server and then script the trace
    definition (File-->Export-->Script Trace Definition).  You can then customize the script (e.g. file name) and run the script against the prod server to capture the workload to the specified file.  Stop and remove the trace after the workload
    is captured with sp_trace_setstatus:
    DECLARE @TraceID int = <trace id returned by the trace create script>
    EXEC sp_trace_setstatus @TraceID, 0; --stop trace
    EXEC sp_trace_setstatus @TraceID, 2; --remove trace definition
    Dan Guzman, SQL Server MVP, http://www.dbdelta.com

  • HT1222 iOS 6 is good to use for iPad?

    iOS 6 is good to use for iPad?

    Why would it not be?
    By the way, you cannot install iOS 6.1.4 into an iPad.

  • Purchase requisition generate for alternative bom use for finished product

    i hav alternative BOM for finished product in which different raw material component in both BOM of same finished product.But when i RUN MRP that time only one raw material requisition generate another alternative bom raw material requision not generate.
       Is there any option when i RUN MRP that time we select one of the alternative bom component of  raw material for generation purchase requisition.
    Thnaks in Advance

    Dear ,
    MRP will select the BOM based on the MRP4-BOM Explosion tab -Selection Indicator .It can eitehr of these ways :
    1.Maintain Production Version with  different Alternative BOM  and keep Selection Indicator -3 .So sysetm will look into only the Valaidty  and lot size of the Production version and select the correct BOM to explode  and generate PR for depednts based on stock situation
    2.If you maintain Blank -then it will look into order qty and select the BOM according ly
    As in your case , selection methods 3 will fit  and you need to maintain PV with correct validity and lot size in MMR-MRP4-PV option .
    Try in sand box with different lot size and validity with indicator-3 .Create Order and run MRP-MD02-1,,3,3,3,2
    Check and revert
    Regards
    JH

  • How to get the exact sql developer which used for data migration?

    Hi all,
    Hope doing well,
    Sir i seen a link for data migration that is : http://www.oracle.com/technetwork/developer-tools/sql-developer/sql-server-connection-viewlet-swf-089886.html
    in this link when they are connecting to sql database so after clicking on new connection four tab is showing that is oracle, access, my sql, sql server.
    i downloaded latest version of sql developer which version is: 3.02.09.30 when i opened this i am not getting those option.
    and one more thing i am not getting miragation menu name in menu items.
    please help me.
    thanks and regards

    Hi,
    To connect to non-Oracle databases from SQL*Developer youneed to download the relevant JDBC driver.
    This is detailed in the documentation in the User Guide -
    http://docs.oracle.com/cd/E35137_01/appdev.32/e35117.pdf
    in the section -
    Database: Third Party JDBC Drivers
    The Third Party JDBC Drivers pane specifies drivers to be used for connections to third-party (non-Oracle) databases, such as IBM DB2, MySQL, Microsoft SQL Server, or Sybase Adaptive Server. (You do not need to add a driver for connections to Microsoft Access databases.) To add a driver, click Add Entry and select the path for the driver:
    ■For IBM DB2: the db2jcc.jar and db2jcc_license_cu.jar files, which are available from IBM
    ■For MySQL: a file with a name similar to mysql-connector-java-5.0.4-bin.jar, in a directory under the one into which you unzipped the download for the MySQL driver
    ■For Microsoft SQL Server or Sybase Adaptive Server: jtds-1.2.jar, which is included in the jtds-1.2-dist.zip download
    ■For Teradata: tdgssconfig.jar and terajdbc4.jar, which are included (along with a readme.txt file) in the TeraJDBC__indep_indep.12.00.00.110.zip or TeraJDBC__indep_indep.12.00.00.110.tar download
    To find a specific third-party JDBC driver, see the appropriate website (for example, http://www.mysql.com for the MySQL Connector/J JDBC driver for MySQL, http://jtds.sourceforge.net/ for the jTDS driver for Microsoft SQL Server and Sybase Adaptive Server, or search at http://www.teradata.com/ for the JDBC driver for Teradata). For MySQL, use the MySQL 5.0 driver, not 5.1 or later, with SQL Developer release 1.5.
    You must specify a third-party JDBC driver or install a driver using the Check for Updates feature before you can create a database connection to a third-party database of that associated type. (See the tabs for creating connections to third-party databases in the Create/Edit/Select Database Connection dialog box.)
    Regards,
    Mike

  • Is it good to use For implicit cursors to fetch only one row ?

    I mean is it good to use something below.
    function isThereAny (inCompany) return boolean is
    begin
            for x in ( select 'x' from company_relation
                        where  company=inCompany
                          and nvl(europe_yn,'N')='Y' ) loop
              return true;
            end loop;
            return false;
    end isThereAny;  Thanks

    This construction seems to be approximately 10% faster than a regular select into on 9.2.0.7.0. But I think the code is less clear for maintenance than a regular select into. When I look at the code, my first thought is it is going to loop through some records, and on second thought it is not. I don't like that, but it is a matter of personal taste.
    When you don't have problems with that or when you really need that 10% on the function, it is perfectly ok.
    SQL> create function isThereAny_for (p_deptno in dept.deptno%type) return boolean
      2  is
      3  begin
      4    for x in
      5    ( select 'x'
      6        from emp
      7       where deptno = p_deptno
      8         and nvl(comm,0) > 0
      9    )
    10    loop
    11      return true;
    12    end loop
    13    ;
    14    return false
    15    ;
    16  end isThereAny_for;
    17  /
    Functie is aangemaakt.
    SQL> create function isThereAny_into (p_deptno in dept.deptno%type) return boolean
      2  is
      3    l_x varchar2(1);
      4  begin
      5    select 'x'
      6      into l_x
      7      from emp
      8     where deptno = p_deptno
      9       and nvl(comm,0) > 0
    10    ;
    11    return true;
    12  exception
    13  when no_data_found then
    14    return false;
    15  when too_many_rows then
    16    return true;
    17  end isThereAny_into;
    18  /
    Functie is aangemaakt.
    SQL> begin
      2    -- Warming up
      3    for i in 1..4
      4    loop
      5      if isThereAny_for(i*10)
      6      then
      7        null;
      8      end if;
      9    end loop;
    10    for i in 1..4
    11    loop
    12      if isThereAny_into(i*10)
    13      then
    14        null;
    15      end if;
    16    end loop;
    17    -- Start test
    18    runstats_pkg.rs_start;
    19    for i in 1..10000
    20    loop
    21      if isThereAny_for((mod(i,4)+1)*10)
    22      then
    23        null;
    24      end if;
    25    end loop;
    26    runstats_pkg.rs_middle;
    27    for i in 1..10000
    28    loop
    29      if isThereAny_into((mod(i,4)+1)*10)
    30      then
    31        null;
    32      end if;
    33    end loop;
    34    runstats_pkg.rs_stop(100);
    35  end;
    36  /
    Run1 draaide in 200 hsecs
    Run2 draaide in 216 hsecs
    Run1 draaide in 92,59% van de tijd
    Naam                                                    Run1      Run2  Verschil
    LATCH.simulator hash latch                               154       439       285
    LATCH.redo allocation                                  2,530     2,817       287
    LATCH.row cache enqueue latch                            140       494       354
    LATCH.sequence cache                                   3,614     4,006       392
    LATCH.row cache objects                                  384       791       407
    LATCH.library cache pin                               34,415    36,019     1,604
    LATCH.shared pool                                     17,207    18,929     1,722
    LATCH.library cache                                   35,591    37,587     1,996
    STAT.table scan rows gotten                          110,000   112,500     2,500
    STAT.db block gets                                        12     5,015     5,003
    STAT.session logical reads                            30,017    35,023     5,006
    STAT.recursive calls                                  12,501    20,001     7,500
    LATCH.cache buffers chains                           113,839   134,592    20,753
    Run1 latches totaal versus run2 -- verschil en percentage
          Run1      Run2  Verschil     Pct
       208,826   236,934    28,108  88.14%
    PL/SQL-procedure is geslaagd.Regards,
    Rob.

  • Reconcillation with goods issue using 351 and goods receipt using 101

    my clients create sto to a supplying plant and goods issue is done from the supplying plant against the sto using mvt 351 to the receiving plant and the receiving plant does migo using 101 to receive the material.The issue is that they want to be able to reconcile in the sense that to actually know the 101 that has been done against the 351.

    As we know the 351 and 101 both movement types are happened against purchase order,
    And when 351 and 101 movement type happens against the Purchase order, the all information are stored in table EKBE. You can look up in EKBE table to compare movement type 351 and 101 movement type for the purchase order number.
    Regards
    Dev

  • Mutiple Goods Issue happening for Asset Goods Receipt.

    Hi all
    I have created an asset PO for 1 computer by assigning A as a Account assignment Category.
    I have given the asset number and order number(single assignement) in accout assigment tab to which 1 computer is to be issued.
    I made GR for 1 computer in MIGO with 101 mvmt type also captured excise invoice.
    When I tried to post the excise invoice, I checked for Part 1 updation under part 1tab here I found that 1 computer Receipt is happened in 1st line, the same is issued in 2nd line AND THE PROBLEM IS AGAIN THE SAME 1 COMPUTER IS ISSUED IN 3RD AND 4TH LINE.
    IN TOTAL
    GR - 1 NO
    GI  - 3 NOS
    SHORTAGE - 2 NOS
    I posted it and while I see the updated RG23C regiter for part 1
    I found 1 receipt qty, then 3 issue qty and finally in Total quantity in Stock i found 2.000- (that is -2).  How it is happening and how to rectify this.
    Pls help.
    INFO: Only one material document is generated for the receipt and all issues.  Also unable to track it in MM stock report as it is non-valuated material.
    Regards
    Srini

    Awaiting replies from the experts.

  • Urgent need for Free Goods configuration

    Hi,
         i need a document which have steps to configure free goods.
    i created a condition record using VBN3 using condition NA00 but free goods doesn't come.
    Requirement is
    Customer buys 10 items whose item catg is TAN and 1 item is free.  so cust pays only for 9 items.
    free good is not coming as sub item. i got stuck. please help .
    anybody plz send document which have steps to configure.
    my email id is [email protected]
    Thanks
    Afsar

    Free Goods Determination in Sales Order
    Free goods has the following limitations:
    - Free goods can only be supported on a 1:1 ratio. This means that an order item can lead to a free goods item. Agreements in the following form are not supported: ‘With material 1, material 2 and material 3 are free of charge‘ or ‘If material 1 and material 2 are ordered at the same time, then material 3 is free of charge‘.
    - Free goods are not supported in combinations with material structures (for example, product selection, BOM, variants with BOM explosion).
    - Free goods are only supported for sales orders with document category C (for example, not quotations).
    - Free goods are not supported for deliveries without reference to a sales order.
    - Free goods cannot be used in make-to-order production, third-party order processing and scheduling agreements.
    - If you defined a free goods for variants in a generic article (only SAP Retail), you can only process the variants in the purchase order and goods receipt individually (as single articles). In other words, you cannot process them using the generic article matrix.
    4.6x
    Not all Sales Order can be used for free goods determination.  You have to check the SD document category if it does not work.  Only category 'C' are supported.  Check transaction VOV8.
    Assume that you want to configure an inclusive FREE goods routine.  Customers must order a minumum quantity of 5 before any free goods can be assign.  For every quantity of 3, the customer will be given 1 free goods.
    WC07 - Maintain Number Range Intervals
    e.g.
    No   From number       To number
    01    0000010000         0000099999
    IMG -> Sales and Distribution -> Basic Functions -> Free Goods ->
    Maintain Access Sequences
    New Entries
    Acsq
    NA00
    Save
    Maintain Condition Types
    New Entries
    Ctyp   Name             AcSq
    FREE  Free Goods    NA00
    Save
    Maintain Pricing Procedures
    Procedures
    New Entries
    Procedure   Description
    FREE           Free Goods
    Select Procedure FREE then click Control data
    Step   Cntr   Ctyp
    10       10      FREE
    V/N6 - Activate Free Goods Determination
    Assign Order Type OR with Document Procedure A with Procedure FREE
    VBN1 - Create free goods determination
    e.g.  FREE inclusive
    Material  Min qty   From   are free good   Calc Rule   Free Goods
                           5           3                1                      1                1
    In this example, if you create a Sales Order for a quantity of 10, SAP will prompt you 7 as the customer order qty and 3 will be free.  Customer only pay for the 7 quantity.
    Free goods –
    Free goods play a large role in price negotiations with your customers. As a result, free goods are determined to be placed in sales document automatically. In retail, chemical industry or consumer goods industry, it is common to provide discounts in the form of free goods.
    Inclusive Bonus Quantities – Free goods can be part of order quantity not included in the invoice (billing). This is called inclusive bonus quantity. The ordered goods and the free goods both involve the same material. The quantity units of the free goods and the ordered goods must be the same.
    Exclusive Bonus Quantities – Free goods that take the form of extra goods that are free of charge are called exclusive bonus quantities. In this case, the extra bonus quantities are not typically included in the invoice (billing). This can either be an additional quantity of the goods ordered or it can be another article. The exclusive free of goods appear in the SD document as an individual ‘free of charge’ item.
    Both types of free goods are treated in the same way in the sales order. The material that has been ordered is entered as a main item (TAN) and the free item (TANN) is automatically displayed as a sub item. The item category determines how the item is controlled later in the business process.
    The system re-reads the free goods master record in the sales order if the quantities in the main item change or if the pricing date changes. The system then deletes the sub items and re-creates them. Any manual changes to the free goods quantity are lost.
    Note: If pricing is re-run in the sales order, it does not affect the free goods determination.
    The condition technique is used for free goods. Free goods are generally regarded as a supplement to the pricing agreement for a material. You can define master records for free goods at any level such as material, customer/material, price list category/currency/material or customer hierarchy/material. The transaction code is VBN1 and condition type – NA00 which automatically gets converted into R100 during sales document processing.
    You can restrict a free goods condition master record for one level in many ways –
    a. Validity period: the condition is only valid within this period
    b. Lowest quantity: the condition comes into affect when this quantity has been exceeded.
    c. Delivery control:
    d. Calculation type:
    e. Scales
    You can process different master data with the same key for inclusive and exclusive bonus quantities at the same time. You only need to press a button to switch between two types of discount. When you enter an exclusive bonus quantity, an extra entry line appears where you can enter the free material if it is not the same as the ordered material.
    When you specify a calculation rule, you decide how the system determines the free goods quantity in the sales order from the additional and document quantities.
    a. The free goods quantity is the quantity that is calculated from the discount quantity (not the minimum quantity)
    b. Additional quantity is the quantity delivered free of charge
    c. Document quantity is the quantity entered by the person creating the sales order.
    Three calculation rules are provided by the system i.e.
    Prorated – the system calculates the free goods in right proportion to document the quantity. For example – if 20 units are offered for free for 100 units in the condition record and the customer orders 162 units, then the system calculates 162 * 20/100 (rounded off) as free goods.
    Related to units – 20 units are given for free for every 100 units ordered. In the above case the customer would only get 20 units free as he placed an order for 162 units.
    Whole units – the customer would not get any free goods if he doesn’t match the exact quantity proposed. That is, in the above case, the customer doesn’t get any free goods as the ordered quantity did not match 100 units. Anything below or over the mark will not be qualified for a free good.
    Calculation rules are stored in the system in the form of ABAP/4 code. You can also define your own rules by using transaction code VOFM (system modifications).
    The free goods determination procedure contains a list of condition types for the free goods. One access sequence is assigned to each condition type and each access sequence contains one ore more accesses and each access contains exactly one table. This represents the search key that the system uses to search for valid condition records.
    The free goods determination procedure is assigned to sales area + document pricing procedure + customer pricing procedure just as in the case of pricing procedure assignment as free goods are generally regarded as a supplement to the pricing agreement for a material.
    If the search is successful, the system generates a sub item for free goods in the document. The item category is assigned with the item category usage FREE.
    You can activate an analysis of the free goods determination in the sales document. The system then displays detailed information on how the free goods were determined.
    Reward points if useful
    Message was edited by:
            SHESAGIRI GEDILA

  • Process code used for DELFOR inbound idoc

    I have to create one interface in that i have to capture the transfer orders from that i have create the DELFOR idoc which used for posting the scheduling agreements.
    These agreements will pos teh requirement to the forecast tab.
    Please let me know the process code used for this inbound DELFOR idoc.
    Regards,
    Uday

    Hi Uday,
    Firstly: Yes. Delins function module can be used for Delfor. Either case you will make the sytem update the forecast tab of scheduling agreement.
    Secondly: Make sure you have one valid sales scheduling agreement maintained for that sold to, customer-material, ship to partner description.
    Let me know if you have further concerns;
    Regards,
    Syed Nasir

  • Goods Issue value transfer to goods receipt

    Hi experts,
    does anybody know, if there exists an user exit, to take the value from the goods issues also for the goods receipt.
    So I change my component list and want the sum of this weights as default value in the goods receipt.
    Is this possible over an exit or something else?
    Thanks a lot in advance.
    Best regards,
    Marc

    There is a user exit COPC005 - USER-EXIT for the material valuation (pricing strategy U).
    You need to set your material master price control to V (moving avg).  Then you configure the valuation variant for Goods receipt in config. path Controlling->Product Cost Controlling->Cost Obj Controlling->Product Cost by Order -> Define Goods receipt valuation for Order Delivery.
    In valuation variant, you set the value of Strategy Sequence to U (User Exit) in tab Material Val.
    I never tried this before, and strongly recommend you to reconsider using standard costs against this method.  My reason is that, it is quite difficult to ensure the Goods Issue is completed before Goods Receipt.  If it is not complete, therefore, you will have the wrong value of moving average.
    Another issue is that sometimes moving average can be erroneous in calculation esp. during settlement.
    Hope it helps.

  • MAP for Finished and Semi Finished goods

    Dear Friends,
    Please let me know;
    1. If Finished and Semi finsihed goods are maintained with price indicator 'S' and all are inhouse production then SAP updata moving average price or these material or not ?
    2. If SAP updata MAP for finished and semi-finished,  later can we change map manually or not ? if yes How ?
    3. Is there any way to stop updata of map by sap in case of finsihed and semifinished goods.
    Actually according to my product costing variant, I dont need any price in map of FG and SFG. Kindly give me your expert openion on this issue.
    Thanks
    Ravi

    Hi
    1. If you maintain price control S for inhouse produced finished product also, system updates moving average price with resepect stock and value of production (may be period wise production cost may be varying). But this is statistical.
    2. You can change price control from S to V if you require. You need to change first in material type and then change in material master.
    3. If the value is getting updated also it will have no impact. In case of product cost variant also it will get updated.
    Thanks

  • Uploading Production Requirements For Finished Goods From External System To Run MRP For Components in SAP.

    Hello Production Planning experts,
    I'm looking to solve the current business problem:
    The company bought a third party software (JD Edwards) to calculate production requirements instead of using SAP's standard Production Planning or a tool like SAP's APO. They run a batch job to query Sales Orders, Deliveries, available stock, stock in transit, etc. from sap and feed/upload it to the third party software so it can calculate the Finished Goods Production Requirements for them. They love the third party software, so replacing it is not an option. Since the third party software is already taking into account Sales Orders, Deliveries, available stock, stock in transit, etc. from SAP, it just outputs a "Finished Goods Production Schedule" by week.
    My questions are:
    1) What's the best way to upload something like that in SAP in the form of Planned Orders or something of that nature?
    After i get that schedule in SAP:
    2) Is there any way to calculate components' requirements for that "Finished Goods Production Schedule" alone? The company would like to IGNORE existing stock AND expected-goods-issues in the future (sales orders, deliveries, etc) for Finished Goods ONLY. The components calculations would work the standard MRP way, taking into account existing stock and AND expected-goods-issues in the future (sales orders, deliveries, etc)
    I started looking into Master Production Schedule (MPS), but I don't know if that's the right approach since I'm not very familiar with it.
    Thanks in Advance! I will gladly reward points for helpful/correct answers.

    Hello Oscar
    I suggest you to upload your production plan in the for of "Planned Independent Requirements" using BAPI BAPI_REQUIREMENTS_CREATE. Later, MRP will create planned orders to cover the PIRs.
    If you don't want to consider the existing stock of the finished product, you should use the planning strategy 11 to create your PIRs. Take a look on the following link for more details about this planning strategy:
    Gross Requirements Planning (11) - Demand Management (PP-MP-DEM) - SAP Library
    Here you will find the following information:
    The make-to-stock strategy gross requirements planning is particularly useful in mass production environments; it is often combined with repetitive manufacturing. This strategy is particularly useful if you need to produce, regardless of whether you have stock or not. For instance, steel or cement producers might want to use this strategy because they cannot shut down production; a blast furnace or a cement factory must continue to produce, even if this means having to produce to stock.
    This strategy is also frequently used if there is a Material Requirements Planning system in a legacy system that needs to be linked to an SAP system which serves as a production execution system. The legacy system calculates a specific production plan, which has to be executed, regardless of the stock situation in the SAP system
    It looks like this planning strategy is exactly what you are looking for.
    BR
    Caetano

  • Moving average price for finished goods produced inhouse

    Hi All
    How does system caliculate moving average price for a finished product which has BOM, Routing when we do goods receipt for the production order...does MAP change for every goods receipt based on the goods isuues or confirmations to the production order.
    Thanks in advance

    Hi,
    The price will not change during the goods receipt, but when you settle the production oder and there is some danger in it.
    Take the contents of that note into account [ Note 81682 - Pr.contr.V for semi-finished and finished products|https://service.sap.com/sap/support/notes/81682]
    best regards, Udo

  • MATERIAL TO MATERIAL TRANSFER  FOR  FINISHED GOOD

    In case of material to material transer for Finished Good Which TCode and Movement Type is used?

    go to the transaction MB1B WITH THE mvmt 309
    for material to material tranfer.
    else go to MIGO and give the option transfer mode and mvmt for 309.

Maybe you are looking for

  • Is it possible to only allow HD content when HDCP is present, otherwise fall back to SD?

    For any of the proposed ideas here, you will have to package your content twice, where each stream would require its own license: 1 package for SD bitrates 1 package for HD bitrates [ Try to play & react if necessary ] When the user wants to play HD

  • Add PDF to iTunes not showing up in print PDF pop up menu

    Add PDF to iTunes not showing up in print PDF pop up menu. I lost the print PDF to iTunes option. its no longer there. I still have web reciets and mail. also when i add in "edit menu" they don't get added.all this used to work fine

  • Translating ADOBE form

    Hi, I want to translate certain texts of my PDF form from English to french. I tried using transaction SE63->Long texts->PDF based forms, but after I do my changes in the target language to the XML, when I save the translation, I'm not able to see th

  • Is this macbook pro MD101B/A good for £670

    i have been offered this macbook pro but not retina display, good for £670 specs 2.5GHZ dual core Intel Core i5 with 3mb l3 cache (turbo boost to 3.1ghz) 4gb 1600mhz ddr3 sdram 500gb 5400 rpm hard drive 13.3 inch led-backlit glossy widescreen display

  • Name of  souce file report

    Userrunning a report per below navigation. View->Request->Submit A Request->New request- anme :'inv master info' When click 'Submit' this report is running and getting out put. NOw how do i know what is the source file name for ths report - Thanks