How to find current demand qty wise

Hi Gurus,
How to find each material have how much demand  for qty wise currently (free stock, Project stock and sales order stocks) ? and it's there any standard report available? or  how can i do it use with SQVI transaction code?
Thanks and regards,
Deethya.B

Hi,
demand for the material can be found from the stock requirement list.MD04.
Run an mrp for the material then the system will calculate the demand and the available qty and the differrance.
Regards,

Similar Messages

  • How to find current user name on a LAN machine....

    how to find current user name in a remote machine in LAN .
    how to find current user name on a local machine in LAN .

    how to find current user name in a remote machine in
    LAN .Many users may be logged on concurrently on the remote machine.
    how to find current user name on a local machine in
    LAN .The user who is running the code in the process would be obtainable via:
    System.getProperty("some property goes here");
    I leave it to you to look at the API documentation for System.getProperties() to see what property name you would retrieve.

  • How to find current ocfs verison in wondows 2003

    Hi
    how to find current ocfs verison in wondows 2003

    Hello,
    See the Metalink note 749006.1
    You can use ocfscollect
    The output file will show u the information like Volume was formatted with OCFS 9.2.0.6 format
    Cheers,
    Rodrigo Mufalani
    http://mufalani.blogspot.com

  • How to find current database name i am using

    what is the command to find current database name i am using

    Dear user!
    SELECT name
    FROM   v$database;Yours sincerely
    Florian W.

  • How to find current init.ora file

    I have 2 issues:
    Issue 1:--
    I have some 4-5 init.ora file which are created by some other user and facing difficulties to find exact init.ora which is used by my oracle 9.2 database. same thing for spfile.
    Is there any way so that i can find the currently use init.ora file?
    Issue 2:
    I want to change init.ora file parameters for the oracle9.2(siebel).
    Presently default it is showing optimizer_mode=CHOOSE
    I have tried to change to RULE but not refelecting after database restart.
    at session level i can modify but i want permanent change and for thius i tried with
    user SYS as SYSDBA with
    ALTER SYSTEM SET optimizer_mode=RULE;
    but getting following Oracle erroe message
    ORA-02096 specified initialization parameter is not modifiable with this option
    Cause: Though the initialization parameter is modifiable, it cannot be modified using the specified command.
    Action: Check the Oracle9i Database Administrator's Guide for information about under what scope the parameter may be modified
    How we can make changes in init.ora file?
    Regards
    Junu

    As far as I know, there's no possible way to find out which parameter file was used to start instance. And, even if it was, I don't really see much sense in it because parameter file is a client-side file, and usually it required to start up Oracle instance remotely.
    In principle, parameter files are obsolete beasts, consider using server parameter file (SPFILE) instead. And, for SPFILE, it's pretty easy to find out its location:
    SQL> show parameter pfile
    NAME                                 TYPE        VALUE
    spfile                               string      %ORACLE_HOME%\DATABASE\SPFILE%
                                                     ORACLE_SID%.ORAAs for your ORA-02096 error, you have two opportunities to resolve it.
    If you decided to use SPFILE, create one (for example, using CREATE SPFILE FROM PFILE command), start your instance with SPFILE then issue:
    ALTER SYSTEM SET optimizer_mode=RULE  SCOPE = SPFILE;and bounce your instance.
    If you still wish to use old-style parameter file, you have to add corresponding setting into that file manually (it's a plain text file in fact) and restart instance.
    Regards.
    P.S.: Why do you want to enforce rule-based optimizer by the way?...

  • How to find out T code wise BADI and userexits

    Hi,
    Is there any standard way of finding out the BADIs and User exits Tcode wise.
    regards,
    Kannan.

    Hi,
    Use the following program to get the T code wise BADI and user exits.
    *& Report  ZSD_FINDEXIT_BADI                                           *
    REPORT  ZUSEREXIT                      .
    TABLES : TSTC,
    TADIR,
    MODSAPT,
    MODACT,
    TRDIR,
    TFDIR,
    ENLFDIR,
    SXS_ATTRT ,
    TSTCT.
    DATA : JTAB LIKE TADIR OCCURS 0 WITH HEADER LINE.
    DATA : FIELD1(30).
    DATA : V_DEVCLASS LIKE TADIR-DEVCLASS.
    PARAMETERS : P_TCODE LIKE TSTC-TCODE,
    P_PGMNA LIKE TSTC-PGMNA .
    DATA wa_tadir type tadir.
    START-OF-SELECTION.
    IF NOT P_TCODE IS INITIAL.
    SELECT SINGLE * FROM TSTC WHERE TCODE EQ P_TCODE.
    ELSEIF NOT P_PGMNA IS INITIAL.
    TSTC-PGMNA = P_PGMNA.
    ENDIF.
    IF SY-SUBRC EQ 0.
    SELECT SINGLE * FROM TADIR
    WHERE PGMID = 'R3TR'
    AND OBJECT = 'PROG'
    AND OBJ_NAME = TSTC-PGMNA.
    MOVE : TADIR-DEVCLASS TO V_DEVCLASS.
    IF SY-SUBRC NE 0.
    SELECT SINGLE * FROM TRDIR
    WHERE NAME = TSTC-PGMNA.
    IF TRDIR-SUBC EQ 'F'.
    SELECT SINGLE * FROM TFDIR
    WHERE PNAME = TSTC-PGMNA.
    SELECT SINGLE * FROM ENLFDIR
    WHERE FUNCNAME = TFDIR-FUNCNAME.
    SELECT SINGLE * FROM TADIR
    WHERE PGMID = 'R3TR'
    AND OBJECT = 'FUGR'
    AND OBJ_NAME EQ ENLFDIR-AREA.
    MOVE : TADIR-DEVCLASS TO V_DEVCLASS.
    ENDIF.
    ENDIF.
    SELECT * FROM TADIR INTO TABLE JTAB
    WHERE PGMID = 'R3TR'
    AND OBJECT in ('SMOD', 'SXSD')
    AND DEVCLASS = V_DEVCLASS.
    SELECT SINGLE * FROM TSTCT
    WHERE SPRSL EQ SY-LANGU
    AND TCODE EQ P_TCODE.
    FORMAT COLOR COL_POSITIVE INTENSIFIED OFF.
    WRITE:/(19) 'Transaction Code - ',
    20(20) P_TCODE,
    45(50) TSTCT-TTEXT.
    SKIP.
    IF NOT JTAB[] IS INITIAL.
    WRITE:/(105) SY-ULINE.
    FORMAT COLOR COL_HEADING INTENSIFIED ON.
    Sorting the internal Table
    sort jtab by OBJECT.
    data : wf_txt(60) type c,
    wf_smod type i ,
    wf_badi type i ,
    wf_object2(30) type C.
    clear : wf_smod, wf_badi , wf_object2.
    Get the total SMOD.
    LOOP AT JTAB into wa_tadir.
    at first.
    FORMAT COLOR COL_HEADING INTENSIFIED ON.
    WRITE:/1 SY-VLINE,
    2 'Enhancement/ Business Add-in',
    41 SY-VLINE ,
    42 'Description',
    105 SY-VLINE.
    WRITE:/(105) SY-ULINE.
    endat.
    clear wf_txt.
    at new object.
    if wa_tadir-object = 'SMOD'.
    wf_object2 = 'Enhancement' .
    elseif wa_tadir-object = 'SXSD'.
    wf_object2 = ' Business Add-in'.
    endif.
    FORMAT COLOR COL_GROUP INTENSIFIED ON.
    WRITE:/1 SY-VLINE,
    2 wf_object2,
    105 SY-VLINE.
    endat.
    case wa_tadir-object.
    when 'SMOD'.
    wf_smod = wf_smod + 1.
    SELECT SINGLE MODTEXT into wf_txt
    FROM MODSAPT
    WHERE SPRSL = SY-LANGU
    AND NAME = wa_tadir-OBJ_NAME.
    FORMAT COLOR COL_NORMAL INTENSIFIED OFF.
    when 'SXSD'.
    For BADis
    wf_badi = wf_badi + 1 .
    select single TEXT into wf_txt
    from SXS_ATTRT
    where sprsl = sy-langu
    and EXIT_NAME = wa_tadir-OBJ_NAME.
    FORMAT COLOR COL_NORMAL INTENSIFIED ON.
    endcase.
    WRITE:/1 SY-VLINE,
    2 wa_tadir-OBJ_NAME hotspot on,
    41 SY-VLINE ,
    42 wf_txt,
    105 SY-VLINE.
    AT END OF object.
    write : /(105) sy-ULINE.
    ENDAT.
    ENDLOOP.
    WRITE:/(105) SY-ULINE.
    SKIP.
    FORMAT COLOR COL_TOTAL INTENSIFIED ON.
    WRITE:/ 'No.of Exits:' , wf_smod.
    WRITE:/ 'No.of BADis:' , wf_badi.
    ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(105) 'No userexits or BADis exist'.
    ENDIF.
    ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(105) 'Transaction does not exist'.
    ENDIF.
    AT LINE-SELECTION.
    data : wf_object type tadir-object.
    clear wf_object.
    GET CURSOR FIELD FIELD1.
    CHECK FIELD1(8) EQ 'WA_TADIR'.
    read table jtab with key obj_name = sy-lisel+1(20).
    move jtab-object to wf_object.
    case wf_object.
    when 'SMOD'.
    SET PARAMETER ID 'MON' FIELD SY-LISEL+1(10).
    CALL TRANSACTION 'SMOD' AND SKIP FIRST SCREEN.
    when 'SXSD'.
    SET PARAMETER ID 'EXN' FIELD SY-LISEL+1(20).
    CALL TRANSACTION 'SE18' AND SKIP FIRST SCREEN.
    endcase.
    Hope this will help u.
    regards,
    Naidu
    Edited by: KANNAN on Apr 13, 2009 1:44 PM

  • How to find current SCN?

    What's the easiest way to find the current SCN?

    The OP performed recover until cancel which is an incomplete media recovery and an incomplete media recovery must be followed by an open reset logs.
    From the Concepts and SQL manuals (10gR2 ver)
    [Concepts]
    Incomplete Media Recovery Options
    Because you are not completely recovering the database to the most current time, you must tell Oracle when to terminate recovery. You can perform the following types of media recovery.
    Type of Recovery Function
    Time-based recovery Recovers the data up to a specified point in time.
    Cancel-based recovery Recovers until you issue the CANCEL statement (not available when using Recovery Manager).
    Change-based recovery Recovers until the specified SCN.
    Log sequence recovery Recovers until the specified log sequence number (only available when using Recovery Manager).
    [SQL]
    RESETLOGS | NORESETLOGS
    This clause determines whether Oracle Database resets the current log sequence number to 1, archives any unarchived logs (including the current log), and discards any redo information that was not applied during recovery, ensuring that it will never be applied. Oracle Database uses NORESETLOGS automatically except in the following specific situations, which require a setting for this clause:
    •You must specify RESETLOGS:
    ◦After performing incomplete media recovery or media recovery using a backup controlfile
    ◦After a previous OPEN RESETLOGS operation that did not complete
    ◦After a FLASHBACK DATABASE operation
    •If a created controlfile is mounted, then you must specify RESETLOGS if the online logs are lost, or you must specify NORESETLOGS if they are not lost.
    OP, your best solution since the source db is apparently in noarchive log mode si to go back to your DBA and have him make you a new copy of the database when it is shutdown. You may also consider using a consistent export and loading the copy db via import.
    HTH -- Mark D Powell --

  • How to find current Event Execution

    Hi,
        i have a perform which is called in all events like
    AT start of selection.
    End of selection.
    etc..
    So do we have any variable in SYST of any FM using which i can find out in which EVENT that perform is called.
    it is a standard code so i have only possibility to change that FORM . i cannot make any other changes.

    If you can add code into the form you can try this.
    data: l_count type i.
    import l_count from memory.
    if not sy-subrc is inital.
            l_count = 1.
    else.
            add 1 to l_count.
    endif.
    export l_count to memory.
    then depending on the l_count value you will be able to know how much time the form has been called.

  • How to find current desktop pic

    Hello all,
    I have had the same desktop pic on my MacBook pro for quite some time, and am in the process of backing everything up on my laptop so that I can install Snow Leopard.
    I cannot find my current desktop wallpaper (image) on my drive. I have went to system preferences and desktop/screensaver and it doesn't appear to be in with any of the previous or standard desktop images. Is there a way to find this image?? I do not know the file name but I would really like to save this pic.
    Thanks,
    Norm

    While there may be a way to capture the image you still can see on
    the desktop, most of the methods I can think of won't save it as an
    equally high resolution as an original; and perhaps not as large.
    Depending on what source the image was brought into the computer
    from, and if it was via a User account or put into a system file, an
    image could be hard to locate; if the original is still in the computer.
    And I have (out of curiosity) looked into my system stuff for an image
    I've added to the Desktop as a background; while knowing a duplicate
    or an original was available in another location, or a source folder.
    I've noticed at different times, usually after performing some levels
    of maintenance where certain caches and other items throughout
    the System are affected, that a personally selected folder or image
    file that had been accessed and available from the System Prefs
    Desktop & Screensaver control panel, is no longer found. However
    since I usually bring images into my computer by Date, from my
    digital cameras, I can go back to locate them in at least one place.
    And have not been successful in finding a System location for a
    lead on where to look for the image, apparently so orphaned.
    You could try to get a screen shot, for later sight comparison in
    your other user folders. And also if you happen to make a clone
    of your complete system for later access, since it may save the
    image as a desktop background so long as it was present at a
    point in time when the Clone was made.
    I've made clones and found the same screen background to be
    very distracting when booted into a familiar scene. So I change
    them eventually (for reference that I've booted from a clone.)
    Perhaps someone who has gone searching their folders & files
    for the source of a Desktop image currently presented may be
    of help in re-tracing steps to find where your latent image is in
    hiding; since you can't find the source image you first loaded.
    Sorry to be of little/no help.
    Good luck & happy computing!

  • How to find current month, previous month Net Sales by means of formula?

    Hello Gurus,
    I need my crystal report to display data as below:-
                                            Net Sales
    PG1         Current month      Previous Month     Prior year-month    %Variance
    Panels      $                          $                          $
    Frames
    Can anyone kindly suggest formula for generating these values?
    I have already formulated current, previous, prior year months' start dates and end dates.
    Further details:-
    Data filters are requested for Company-->Region-->Customergroup-->All Product group
    Datasource is Universe
    Reporting for 2 years data
    Your suggestions and help will be much appreciate.
    Thanks,
    Prarthana

    hi Prarthana,
    there are a couple of different ways of doing this...one way is to create formulae similar to below...
    1) formula for current month sales
    if month({your date field}) = month(currentdate)
    and year({your date field}) = year({your date field})
    then {your sales field}
    2)  formula for previous month sales
    if month({your date field}) = month(dateadd("m", -1, currentdate))
    and year({your date field}) = year(dateadd("m", -1, currentdate))
    then {your sales field}
    3) formula for 2 months ago
    if month({your date field}) = month(dateadd("m", -2, currentdate))
    and year({your date field}) = year(dateadd("m", -2, currentdate))
    then {your sales field}
    put those formulas on your details sections and then right click on them and choose Insert > Summary and choose Sum as the summary type and change the Summary Location to match the appropriate groups.
    cheers,
    jamie

  • How to find current process ID?

    Does anyone know of a simple way to find the PID of a java program, from inside that java program?
    I think it can be done with JNI but it surprises me if it cannot be done with a simple java call.
    thanks

    2) No, there is no pure Java APIThis is really strange. I wonder why java hasn't
    provided this.Because then it would limit Java to platforms that have a "PID" of whatever form the designers chose. If they had chosen, let's say, a long integer value, that would be inconvenient for a system like the IBM iSeries, whose "PID" equivalent is a 16-byte internal code.

  • How to find currently editing transaction code details using ABAP code

    Hi,
      if some user is using VA02 tcode.i want to know for which sales order(i.e Sales order number)he is making changes.
    i want ABAP code sample for this scenario.
    Cheers,
    Jag

    Hi,
                  For this you need to create Lock Object from se11 .It will automatically crate Two Function modules for enque and deque.
    In you case If you want to see the Details for Va02 use.
        CALL FUNCTION 'ENQUEUE_EVVBAKE'
             EXPORTING
                  VBELN          = VBELN
             EXCEPTIONS
                  FOREIGN_LOCK   = 1
                  SYSTEM_FAILURE = 2.
        CASE SY-SUBRC.
          WHEN 1.
            MESSAGE E042(V1) WITH vbeln RAISING ERROR_IN_COPY.
        ENDCASE.
    Regds,

  • How to find the inspection Operation wise status ?

    Hi
    There are two operation in result recording
    two different persons are entering the result in different operation....
    there is no sequence in entering the results...
    any one can enter at any time....
    but user requirement ...is
    they want to know whether they entered the results or not without going into result recording screen...
    Suppose if results entered they want to know which operation is completed  (Because system status showing INSP , if any one operation is completed)
    Is there any work around...(Like User status........?)
    R Karthikeyan

    Hi,
    Do result recording  in transaction QE51N, here if you expand the  operation you can see Red,green or gray  indicators. Red indicates recorsing completed but some rejection, green indicates completed and accepted and gray indicates not valuated.
    Please check.
    Best Regards,
    Shekhar

  • Labeling current controlled voltage source/finding currents

    Im studying Thevinen Equivelent circuits,and just got introduced into Multisim.The book briefly tells us how to find currents for components such as resistors by adding a DC Source w/ 0Volts.But when trying to add the dependent current controlled voltage source I dont know what to type in to show its relationship to the current called "Io".Im and ultimatly trying to find the Thev. Equiv. circuit with Voc and Isc.Any help would be great.
    Attachments:
    Thev Concept 3.png ‏6 KB

    Hi Milas,
    I think this is what the question wants you to do.
    Tien P.
    National Instruments

  • How to find count of records based on batch wise.

    Hi All,
    We are working on OWB10gr2. I would like share one requirement. Any one can suggest me how to do it and which is the best way to get accurate information.
    We have 2 schemas’ like nia_src and nia_tgt. currently we are moving data from nia_src to nia_tgt for that reason we implemented some mappings based on requirement. In my source schema (nia_src) having 100 tables with data and similar structure replicated in target schema (nia_tgt).
    In source schema every table having one date field for which record is inserted and based on that field we can find how may records are inserted on particular table ,particular time.
    Same like target also maintaining date fields for tracking purposes.
    We have done some mappings and scheduled also. Every day we are into the target with incremental data. All are working fine not any issues.
    I wanted to know how many records inserted, updated, merged for particular batch
    How can we find?
    Can we find exact information in OWB_REP_OWNER schema on WB_RT_AUDIT?.
    For tracking purposes I need to find those values how many records are available in
    Source table and how many records are populated to the target schema?
    How to find schedule batch count of records table wise for batch wise?
    Please suggest me any one on this.
    thanks and regards,
    venkat.

    RE: based on pre operator can we find count of records. if yes how to do it.
    No, you cannot tell from the pre- operator how many records will be inserted or updated into a mapping. How could you? The mapping hasn't run yet!
    At best (if you have simple mappings with single targets) you could come up with a strategy to have the pre-mapping procedure aware of it's package name, then select from user_source for that package body until you find that first cursor used for the row-based processing, copy the cursor into a local variable, and then execute immediate select count(*) from that cursor definition. But still, all that would get you is the number of rows selected - not inserted / updated / errored etc.
    A post-mapping procedure that is aware of the package name will, however, run prior to package exit so that the package spec is still in memory so you can access the public variables in the package spec. We do that in our standard post-mapping procedure
    CREATE OR REPLACE procedure erscntrl_finalize_prc(
                           p_process_id     in  number,
                           p_process_name   in  varchar2)
    as
          l_numread      number         := 0;
          l_numInserted  number         := 0;
          l_numUpdated   number         := 0;
          l_numMerged    number         := 0;
          l_owb_audit_id number         := 0;
          l_owb_status   number         := 0;
          sqlStmt        varchar2(2000) :=
                               'begin '||
                               '  :1 := '||p_process_name||'.get_selected; '||
                               '  :2 := '||p_process_name||'.get_inserted; '||
                               '  :3 := '||p_process_name||'.get_updated; '||
                               '  :4 := '||p_process_name||'.get_merged; '||
                               '  :5 := '||p_process_name||'.get_audit_id; '||
                               '  :6 := '||p_process_name||'.get_status; '||
                               ' end;';
    begin
          -- we use dynamic SQL to return required audit field values.
          --  This allows us to alter which values we need at a later date
          --  without impacting the deployed mappings.
        execute immediate sqlStmt
        using   out l_numread,   out l_numInserted,  out l_numUpdated,
                out l_numMerged, out l_owb_audit_id, out l_owb_status;
      -- then execute our own logging package.
       owb_mapping_log_pkg.finalize(
                           p_process_id,
                           p_process_name,
                           l_numread,
                           l_numInserted,
                           l_numUpdated,
                           l_numMerged,
                           l_owb_audit_id,
                           l_owb_status
    end;
    /However, even in this case bear in mind that if you run the mapping in set-base mode, all Oracle returns is the number merged which does not give values for the inserted and updated counts. If you really need those values you need to either a) run in row-based mode or row-based-target-only, or come up with some custom queries. For example, in your pre-mapping do a select count(*) from your_target_table, then run the mapping, then get the number merged, then do another select count(*) from your_target_table. With these values and basic math you could tell the number inserted by the growth in the table, and the rest of the number merged must have been updates.
    That being said, if you are playing with dimensions as large as most of the ones I am - there is no bloody way that you want to do two select count(*) statements on each run without a really, really good reason.....
    Cheers,
    Mike

Maybe you are looking for

  • Solution (sort of) to "Load Indicator not supported by OS" problem

    During database creation, even if you choose "Dedicated Server Mode" instead of "Shared Server Mode" (for MTS), you will actually be using dedicated server processes for Net8 BUT you will still use MTS for IIOP connections. That's why you have those

  • How to combine two 8 bit numbers to make a 16 bit number??

    Hi My electronics ADC ouputs the result of the conversion over two bytes because it is a 10 bit number. This is then fed into Labview via the serial port. I have the two bytes stored in the various elements of an unbundle block diagram. My current vi

  • Where clause gives me correct result

    hi all, My doubt is when i give where clause with service call id , i am getting correct order of results for the specific order id . But when i give parameter instead of service call id , startdate and end date , such that it will give me all servic

  • Upload HR master data - Infotype 0005 error!

    Hi all, I want to upload HR master data with FM HR_MAINTAIN_MASTERDATA. I pass the right values and several infotypes are processed correctly. the only infotype which is giving me problems is infotype 0005. Every field in this infotype is filled exce

  • I logged 3 times wrong security question. please help me

    I logged 3 times wrong security question. please help me