How to track Hold GRN

Hello,
How to track Hold GRN?
Please provide solution for tracking the Hold GRN.
Is there any standard or customized report in the system?
Can we fetch the data from any standard table ?
Regards,
Milind Dumbre

Hi Milind,
To retrieve this data, in TCode MIGO at menu bar choose "Goods receipt -> Held data". When retrieving the data, the held data is deleted from the overview tree
for more information refer below thread
How to activate hold button in MIGO ?
we can fetch the data from hold data saves in the table :MMIM_PREDOC_ORG (Parked Material Documents, Organizational Data)
Regards,
Pramod

Similar Messages

  • Instructions on how to track mm price movements

    Instructions on how to track mm price movements

    Hi
    I think you will not find detailed instructions how to disassemble a Portege M800. All what you can download is the user manual and technical manuals are not for public, I think they are only available for ASPs.
    Anyway, as far as I know you have to remove the keyboard holder and two screws they are securing the keyboard. Then you can remove it.
    But to be honest I would recommend contacting a notebook technician for help. Notebook disassembling isnt easy, its a little bit tricky and you have to remove a lot of screws. So you are on the safely side because M800 is pretty new notebook. ;)

  • How to track the flow of Sharepoint SSRS report requests to troubleshoot slowness

    How to track the flow of requests of Integrated SSRS report links in Sharepoint.
    We are using SSRS with Sharepoint for reporting purpose. The issue is some of the reports get generated fast and some other reports generation is very slow. When the sql query of these reports RDL file is executed, the records are shown fast.
    Also even on clicking the "Add Subscription" link of "Manage Subscriptions" of a report is very slow for some reports, while it is fast for other reports.
    I tried enabling SQL profiler to track the requests.  I have checked profiler log for the SQL statements with exec sp_executesql. But they are not helpful.
    Pls advice on how to track the request of flow of SSRS report request in sharepoint and how to troubleshoot the slowness in  "Add Subscription" link, response of some reports.

    Hi Pradeesh,
    According to your description, my understanding is that you want to track SharePoint SSRS report requests to troubleshoot the performance.
    Developer dashboard is very help full while troubleshooting the issues related to performance in SharePoint 2013.  You can have a try.
    About Developer dashboard, you can refer to the links:
    http://www.sharepoint-journey.com/developer-dashboard-in-sharepoint-2013.html
    http://msdn.microsoft.com/en-us/library/office/ff512745(v=office.14).aspx
    Best Regards,
    Wendy
    Wendy Li
    TechNet Community Support

  • How to track return message in file to proxy interface

    I am using file to proxy scenerio, where i will get my file from FTP and updating it into a table , after updating i am calling a program to Run BDC, in my method for proxy, after that i dont how to track return message , anyone please tell me suggestion regarding for this
    thanking you
    Sridhar

    Hi Sridhar,
    What exactly you want to track????
    my assumtion is the call will be of asyn mode, once the data reach the proxy method the XI job done and u can easly track that using monitoring.
    Regards,
    Phani

  • How to track Service Item in Install Base

    Hi,
    How to track a Service Item in Install Base. If I'm right, when we define the item as Service Item in Inventory, Install Base Trackable cannot be enableed...
    Scenario:
    Customer is doing some services to its customer which has a contract for 1 Year. So we are creating service as Service Item in Inventory and then we create a contract for this service item.
    How do we track this in Install Base?
    Please help
    Thanks & Regards,
    Pavithara R.

    Hi,
    A service item by definition need not be tracked in IB. The service may be provided on a machine or asset which will be tracked in IB. Since service item is not a tangiable item, it is not IB trackable.
    Kindly explain the business scenario to track the service item in IB.
    Regards

  • Start Routine to load flat file - how to track filename in transformation

    Hi,
    Could you please help me to write a start routine to bring data from a flat file with a file name week45_c1_pri_2006, where the wekk name week-- changes per week. how to track the filename in the routine and how in data transfer process knows to load data from each flat file.
    Message was edited by:
            Anima M

    PROGRAM trans_routine.
          CLASS routine DEFINITION
    CLASS lcl_transform DEFINITION.
      PUBLIC SECTION.
    Attributs
        DATA:
          p_check_master_data_exist
                TYPE RSODSOCHECKONLY READ-ONLY,
    *-    Instance for getting request runtime attributs;
        Available information: Refer to methods of
        interface 'if_rsbk_request_admintab_view'
          <b>p_r_request
                TYPE REF TO if_rsbk_request_admintab_view READ-ONLY.</b>
    <i>The bold area above where you get the requestid, here I am stuck.
    The below code does not bring the correct requestid of PSA</i>
    CALL METHOD P_R_REQUEST->GET_REQUID30
          RECEIVING
            R_REQUID30 = IREQUID.
        CALL METHOD P_R_REQUEST->GET_REQUID
          RECEIVING
            R_REQUID = IREQUID.
        SELECT FILENAME INTO IFILENAME FROM rsseldone WHERE rnr =  IREQUID  AND lnr = '        1'.
    Hope this can give a better picture where I am currently stuck not able to get the PSA request id in the <b>start routine of transformation</b> to read the data and filename from there.
    Thanks alot
    Anima

  • How can I hold values in a variable

    I am looking for someone to point me in the right direction - I'm somewhat new to Java, but am a dinosaur from the mainframe, and sometimes get frustrated at the amount of effort I need to go through to do something that would have been simple on the mainframe...
    I have a Swing based GUI application that I am trying to write - it uses Swing components to build a GUI interface and present data to the user. This data comes from a flat file that is XML based. The structure is as follows:
    "Main" class (establishes the GUI, etc.)
    |
    Specific class (establishes a specific page in the GUI; there are many of these)
    |
    XML Reader class - uses parsing functions to read the file; stores data into an array
    The problem is that I make an initial call to the method that parses the XML file and builds the data in the array. I can see this through my debugging tool; it is confirmed in tracing messages I have built into the program.
    I then return to the specific class, and it wants to do specific things to build the GUI pages, based on customer input. So for example, I may want to go and get information on the third record in the XML file - I pass back an index value, and it should return information. Unfortunately, the array is now empty when I return to extract the values.
    How can I hold the values in the array so that I can return and extract (and ultimately update) the values when I need them. There are initially about 25 different arrays - some Integer, Some Strings, and some String buffers. I have seen an indication that I could implmenet Serializable to do this, but it seems that this is a lot of I/O - parsing the data, then serializing it back to disk, and then reading it back every time I want to access it. I have thought about doing it through a data base, but I don't have a DBMS available currently, and this is possibly beyond my level at the moment.
    I appreciate any suggestions that you might have.
    Jerry

    The xml file that I have is something that I
    established my self. It follows the standard xml
    conventions, just straight <tag field="xyz" /> stuff.
    About as fancy as it gets is to have free form text
    t lines where I need to capture the information in a
    String buffer out of the parser. The format of the
    tag is like this:
    <comments>
    multiple lines of text
    follow...
    </comments>In that case, depending on your utilization of the data(if this is not intended to carry data around different systems) you can just serialize it to the file and after retrieve it using XMLEncoder and XMLDecoder from java.bean package.(Have a look on the javadocs for J2SE)
    If your XML is intended to be passed around different systems, you can use JAXB to bind the document to a object model, instead of parsing it yourself.
    I sem to be having issues with passing control
    between classes - As I understand it, values that you
    establish in one class must be passed along to the
    caller - there doesn't seem to be a conceopt like a
    "data section" where data can be stored for access by
    all classes that need access to it. Gosling fobid it!!!!!
    Or is there, and
    I just haven't discovered it yet.No you won't, happily there is no such a thing, once you got the hang of OO principles and design, you will see that this is not only dangerous as it adds too much complexity to the system for those mantainig the code.
    If you want data to be acessed througout the system, uniquely, there are means to do that, like Singleton pattern(GoF, 127) and Common Object Registry pattern(Software Architeture Design Patterns in Java, 423)
    But I think this is not the solution to tyour problem, as far as I understand, you get data from your XML file, that seems to have a structure repeating over the file, and you want to display it to your user.
    The firsting I would advise is to not use arrays as carriers for your data. Instead use objects that represent your data stored in collections, for example, if you have a xml file like this:
    <people>
       <person>
             <name>Jeff</name>
             <age>6</age>
       </person>
       <person>
             <name>Rage</name>
             <age>36</age>
       </person>
       <person>
             <name>Rene</name>
             <age>666</age>
       </person>
    </people>Then, have a class that hold the data for person:
    * @(#)Person.java     v1.0     02/03/2005
    import java.io.Serializable;
    * Class that stands for a person data.
    * @author Notivago     02/03/2005
    * @version 1.0
    public class Person implements Serializable {
         * The class implements java.io.Serializable, as it is
         * required for the class to be a java bean.
         * The proper way to have classes offering its data
         * to the external world is by having get/set methods
         * that handle acess to internal fields.
         * Never make the class fields public.
         * The age of the person this class represents
        private int age;
         * The name of the person this class stands for.
        private String name;
         * Vanilla constructor for the class, as required for classes to be
         * java beans. Initializes the class with age 0 and a empty name.
        public Person() {
            super();
            age = 0;
            name = "";
         * Convenience constructor that allows your bean to be created
         * with age and name set.
         * @param age
         * @param name
        public Person(int age, String name) {
            this.age = age;
            this.name = name;
         * Acessor for the age of the person.
         * @return
         *           The age.
        int getAge() {
            return age;
         * Mutator for the age of the person.
         * @param age
         *           The age to set.
        void setAge(int age) {
            this.age = age;
         * Acessor for the name of the person. 
         * @return
         *           The name of the person.
        String getName() {
            return name;
         * Mutator for the name of the person.
         * @param name
         *           The name of the person.
        void setName(String name) {
            this.name = name;
    }Get the data from the XML document, with JAXB for example, and for each person found, create and populate a bean with the data, store the bean in the colection and pass it to the user interface to be displayed. (Look at the java.util documentation)
    If you are into doing GUI, you will want to have a look in the MVC pattern, Model 2 pattern and the Swing "Separable Model" Architeture, so you learn how to make reusable decoupled GUIs. (search for MVC and Model 2 and look at the "How to use Swing Components" Documentation)
    On using swing, you can get the collection of beans and bind it to lists, tables or any other presentation form you would want. Look at the swing tutorial on how to use data model to boost your GUI.(Look at "how to use swing documentation")
    http://java.sun.com/docs/books/tutorial/uiswing/components/index.html
    But here goes 2 cents of opinion, start by the basic tutorials:
    http://java.sun.com/docs/books/tutorial/
    especially the ones on Object Orientation:
    the way things are done in Mainframe if very different as they are done on a OO language, before learning the language, you will have to learn a new mindset, so after reading the basic tutorials, it would be good you search for some good books that focus on OO thinking, a good one that does that and teaches java at the same time is:
    Head First Java
    It is a good and funny reading.
    Head First Design Patterns
    Also have a lot of good insights on OO and it comes with some patterns as a bonus.
    I understand you see this all as overcomplicated, bu once you get the hang of it, you will see that there this only another way to see things and the stability and reusability attained is worth of the effort.
    May the code be with you.

  • How to Track changes of Detail and header at purchase document

    Hi
    I have one problem while issueing the output type i created new output type created new output routine and i have to track the header changes and issue proper output and prevent to issue wrong output type
    example : zne1 for header changes and zneu for detail level but i cannot track the header level changes becoz cdhdr and cdpos tables are updated after output routines (800 and 801 newly created and assigned)
    can u please tell me how to track the po level changes so i can solve this problem ASAP
    it is urgent !!! please help me in this !!
    thanks in Advance !!!

    Hi Mr. Modi,
                       Can you clarify your scenario properly that I can analyse it to give you proper solution....I am confuse with your requirement and  example which you have given...
    Cheers,
    Sagun Desai....

  • How to track changes

    Hi friends,
        I am a XI consultant. My query is regarding how to track the chages.I heard that CDHDR and CDPOS tables are used to store the information regarding the changes made to the objects/tables in SAP.My scenario is i have a table having few fields related to P.o and a flag indiacating Insert/Update/Delete, so upon the creation/upadate/deletion of a P.O(related to perticular WBS Element) i want the data to be  transfered into my table automatically.
       Is there any standard transaction available to do that....means i want to track all the P.Os under a perticular WBS element..
    If not Do we have to write a Abap program and use CHANGEDOCUMENT_READ_HEADERS,CHANGEDOCUMENT_READ_POSITIONS functions to store the data into internal tables ?????
    Regards,
    Gowtham K.

    HI gowtham,
    Yes, u are right,
    we have to right some abap code.
    "CHANGE DOCUMENTS" in SAP Terminology
    1 The same thing which u are asking
    we had developed here. For Eg : Any change
    in the material master will be detected
    and a mail will be sent to the concerned
    employee.
    THIS WILL ALSO DETECT WHICH FILEDS HAVE CHANGED.
    IT CAN ALSO GIVE, The Old Value, And The New Value.
    2. This Mechanism is called CHANGE DOCUMENTS in
    SAP Terminology
    3. 2 Fuction Modules are Required.
    (They will fetch necessary data from CDHDR,CDPOS)
    CHANGEDOCUMENT_READ_HEADERS
    CHANGEDOCUMENT_READ_POSITIONS
    4. The First FM gives list of all
    records ( with change no) which have changed.
    5. Loop at the above and the second FM will
    provide the details (old-val, new-val) for
    each record.
    6. While using 1st Fm, i used docclass as 'MATERIAL'.
    BCOS
    the concept of change documents is applicable
    to other type of documents also (depends upon
    customization)
    regards,
    amit m.

  • How to track changes on Infoprovider?

    Hi Gurus,
    Could you please provide the steps of how to track changes on Infoprovider? I had 4 Infocubes (belonging to the same info area) that contains compressed data - but now when I tried to display the data, all the cube are empty - no data were aechived.
    I would like to track any actions that were made on those cubes.
    Thanks

    thanks Kumar for helping me out here
    I tried RSD_CUBE_LOG_DELE function module - It came out "no logs found in the database"
    I tried tables RSDRDLOGHEADER and RSDDSTATDELE which provide me deletion informations like user name... but since we have partially archived those specific infoproviders in the same period of time where I think eveything was gone from cube, I am not able to related when and who the data that were not archived were deleted from Infocube
    Under manage Infocube --> archiving tab, all the created archiving request are only for certain dates (below 2006). I know that we had data above 2006.
    Kindly provide additional inputs.
    Thanks

  • How to track changes for the config done directly in quality client-Reg

    Hi,
    In our system the landscape is Dev,Quality,Production.
    For some transactions we will do the config in dev and transport to other clients or maintain in each client manually.Eg QS41,CI41.
    In my case ,I have did the config in CI41 and transported to other clients.But someone user get in to CI41 in Quality client and did some changes. Now how to track the user Id through which the changes has been performed  in QA directly.
    Regards
    SB

    hi
    you can use SE09 for displaying the transport no where you can see all the request nos ,from there you can check
    also use the same transaction Cl41 do some changes like description ,then press the save button ,system will prompt you the previous saved Request No and make a note of it .cancel the request generation ,then you can trace them in SE09
    also check whether you can find any change documents is available
    regards
    thyagarajan

  • How to track Changes done in planning book....by whom.....in DP planning

    Hi All,
    I want to track the changes done in Key figures in planning book ..........mostly by whom .......let me know how to track the same in APO DP planning book...........any std..........way..........like R/3...........pl reply.............your expert guidence will be  appreciated..........by rewarding the same..............Thanks...........
    Best Regards
    Sharad

    Hi,
    You would be able to tackle this partially by adding a new hidden key figure.
    Refer the example below;
    Kfig1. Stat forecast: Calculated using stat forecasting
    Kfig2. Adjusted forecast: user normally changes this
    Kfig3. Hidden copy of Adjusted forecast:
    Using macros copy 1st snap shot of stat forecast to Adjusted and Hidden. once adjustments are done, use Macro to compare Adjustments and Hidden copy of original values, or this can be a overnight batch job to generate alerts
    Hope this helps.
    Pradeep

  • How to track signon in a query? XMLP-Doku?

    Hello,
    can anyone give me a brief example how to track signon in a query to limit data in the standalone version of XMLP? Unfortunatly the user manual (PDF) doesn't describe that. The threads in this forum which tell this quit short didn't work to me.
    Is there any other important manual or book about XMLP except the PDF user manual?
    Thanks in advance
    Ralf Kanis

    We wanted to trap the sign-on but oracle has the following response. I heard you can modify the xdo file but this solution is not a long term solution.
    Following is the reply from the development:
    There is a bug in XMLP 5.6.2 which prevents dynamically passing username in sql, and would be fixed in the next release. Also it req
    uires editing report file manually as the UI does not support this username bind
    ing in 5.6.2.

  • How to track changes in a hyperion application for SOX control?

    Hello all,
    We have been working on identifying the best way on how to track changes in a hyperion application in regards to the SOX control.
    The following areas have been identified as the main areas of an application where the changes are to be tracked:
    Monthly data load from ODI
    Calculation of data
    Metadats change
    Formula edit
    Changes to reports
    Changes to security
    Can anybody please suggest the best ways to do this? Has anyone experienced this issue before?
    Somebody suggested that there is hyperion auditing available.
    Is there any other software that is available that can do this or just documenting the changes would be the best option?
    Please suggest. Toyr response would be appreciated.
    Thanks.

    Shared Services allows the auditing of provisioning and life-cycle management activities to track changes to security objects and the artifacts that are exported or imported using Lifecycle Management Utility.
    For Shared Services auditing, refer Page 129 of http://download.oracle.com/docs/cd/E12825_01/epm.111/epm_security.pdf
    Planning Administrators can select aspects of the application for change tracking. For example, you can track changes to metadata, such as when users change a member property or add a currency. You can also track changes in data forms, business rules, workflow, users, access permissions, and so on.
    For Planning auditing, refer Page 56 of http://download.oracle.com/docs/cd/E12825_01/epm.111/hp_admin.pdf
    HTH-
    Jasmine.

  • How to track changes in name who are enrolled in a benifit plan

    hi,
    can any1 help me
    how to track changes in name for an employee enrolled in a benifit plan.this report is to run monthly.
    should use change pointers or should use aedtm field..
    can any1 help..
    thanx in advance

    Pl take a look at the Std Report RPUAUD00 used for Infotype Logging. The Report Documnentation details the steps needed to turn the logging for the PA infotypes, which in your case could be 0167,0168,0169 etc..
    ~Suresh

Maybe you are looking for

  • Error when downloading itunes 7 to laptop, somthing about win 32

    I have an error that is not letting me download itunes. Can someone help. It says something about valid win 32.

  • Scheduling problem in planned order.

    Hi all, I have a problem in scheduling of planned orders. I had mentioned the following parameters. 1. Available capacity in the work center as 06:00:00 to 12:00:00 2.Set up time is 10mins in the routing. 3. The planned order qty is 100 nos. While do

  • RFC and Idoc scenarios

    Hi all,    I need couple of links which explaing me how to do RFC to File(or vice versa) and also Idoc to File scenarios( or vice versa).

  • Garageband 10.0.2 freezing up

    garageband (10.0.2)  freezing. i cant do anything in the edit window without the pinwheel freeze up for 50 to 90 seconds. in multiple older sessions. i am using no third party gear. just my macbook pro 2.6 GHz Intel Core i7, 8GB RAM, version 10.9.4,

  • Current fiscal year period in BEx

    Hi, I have a requirment. i have a BEx query, that query is a source of APD and data is store in direct DSO. i need to run this query every month and load current fiscal yer period data into the DSO. i need BEx variable to filter the data for current