Regarding Fucntion module for Labor and Machine times

Dear all,
Is there any fucntion module to get the labor and machine times when we give in material and plant.
thanks
J

check the function
SCOV_TIME_DIFF
Import parameters               Value
IM_DATE1                        2008-01-01
IM_DATE2                        2008-01-01
IM_TIME1                        10:00:00
IM_TIME2                        11:30:00
Export parameters               Value
EX_DAYS                         0
EX_TIME                         01:30:00

Similar Messages

  • Where do I change rates for labor and machine hours?

    Hi,
    I have fixed rates for labor and machine hours. Where can i change them? I can't find it anywhere.....

    Hi
    Please check if you can maintain with transaction KP26 per Costcenter / Activity type
    Cheers
    Tim

  • Setup, Labor and Machine time

    Hi experts,
    I am from BW and need to extract data from Production Order for Setup, Labor, Machine time and Control Key for a BW report. I found these details in talbe PLPO. My question is since these are all Standard Values, it should be Master Data? I am assuming they do not change from Production Order to prod order? If it is master data, what table should I find them in?
    Also, table PLPO does not have the field MATNR. How can I identify these values are for which Material in the table?
    Thanks in advance.

    Dear Kumar,
    This is master data But it changes for Production order as per the Order Qty. In Routing you give this std values for Base Qty & according to this base Qty it calculates for Production ord qty. You will get the Link of Material through MAPL & PLPO table. You have to pass PLLNR field of MAPL to PLPO
    For Production Order wise Confirmed values you can see in AFVV & AFVC table.
    It will be helpful for you if you take help of PP consultant to understand the PP cycle.

  • Report showing labor and machine time based on standard cost estimate

    Hi Friends,
    Ours is an Manufacturing organisation & we have a requirement of report showing machine and labor time as per part wise & cost center wise. We need to run the report before saving standard cost estimate [CK11N]  in order to see the part wise or cost center wise discrepancies in machine and labor time. If any one could help in creating such report in SAP  it will be of great help.
    Regards,
    Varsha

    Hi Varsha,
    you can jump from CK11N to a own report by
    Menu Function 'Costs -> User Exit Display'
         Cost Report 1 / 2 / 3
    The own report can be implemented via (SMOD) enhancement SAPLXCKA
    The report will be handed over the currently displayed in the program interface.
    some example coding is provided for the exit.
    compare SAP Note No. 71146
    best regards,   Udo

  • Function Modules for Data and Time

    Hi all,
              I need 2 function modules for date and time. when we pass current data(sy-datum) and current time (sy-uzeit) into function modules, shoud get date in <b>dd/mm/yyyy or dd.mm.yyyy</b> and time in<b> HH:MM:SS</b> formats.
    Thanks in advance

    Hi Ranjith,
    i think this will b usefull for you..
    SAP Bar Chart Function Modules and what they are used for
    Function module
    Used for
    BARC_GRAPHIC_PBO
    Starting bar chart at PBO time, using a graphic profile (parameter PROFILE)
    BARC_GRAPHIC_PAI
    Analyzing data returned by the graphic
    BARC_SET_TIME_AXIS
    Setting start and end of time axis
    BARC_SET_OPTIONS
    Setting options
    BARC_ADD_CHART
    Creating a chart
    BARC_SET_CHART_ATTRIB
    Setting chart attributes
    BARC_ADD_SECTION
    Creating a section on the time axis
    BARC_SET_SECTION_ATTRIB
    Setting section attributes
    BARC_ADD_RIBBON
    Adding a ribbon to the time axis
    BARC_SET_RIBBON_ATTRIB
    Setting attributes for ribbons in the chart
    BARC_ADD_GRID
    Adding a time grid
    BARC_SET_GRID_ATTRIB
    Setting grid attributes
    BARC_ADD_LAYER
    Adding a layer (graphic elements)
    BARC_SET_LAYER_ATTRIB
    Setting layer attributes
    BARC_ADD_LINE
    Adding a line
    BARC_ADD_CALENDAR
    Creating a calendar
    BARC_SET_CALENDAR_ATTRIB
    Setting attributes for a calendar
    BARC_ADD_TIME_PROFILE
    Creating time profiles
    BARC_SET_TIME_PROFILE_ATTRIB
    Setting attributes for time profile
    BARC_ADD_INTERVAL
    Adding a time interval
    BARC_SET_INTERVAL_ATTRIB
    Setting time interval attributes
    BARC_ADD_TIME_OBJECT
    Creating a time object
    BARC_CONVERT_DATE
    Creating a date string in bar chart format
    BARC_REVERT_DATE
    Converting a date string in bar chart format to date and time
    BARC_ADD_DATELINE
    Creating a date line
    BARC_SET_DATELINE_ATTRIB
    Setting dateline attributes
    BARC_GET_PROFILE_CONTENTS
    Obtaining profile contents for customizing a chart
    BARC_GET_COLUMN_WIDTH
    Selecting new column width
    BARC_SET_COLUMN_WIDTH
    Setting the column width
    BARC_GET_TEXTINDEX
    Obtaining the text index of a field
    BARC_SET_LABELS
    Positioning the chart display
    BARC_SET_COLUMN_ATTRIB
    Setting column attributes
    BARC_SET_ROW_ATTRIB
    Setting row attributes
    BARC_SET_ROW_HEIGHT
    Setting the line height
    BARC_SET_MAXCHARTS
    Setting the maximum number of charts sent
    <b>If its usefull reward points
    </b>

  • Regarding Function Module for Locking ( enque)

    Hi,
    I am facing a Problem that is when iam running Call transaction one popup is coming because some other user currently editing that Tcode at that time i need to lock tcode using enque specially for table . If suppose some other user editing at that time it will shoe that popup and it will exit from their with out doing any other process For that i need Function module for Lock and Delock.
    thanks in advance,
    murali krishna.

    So in this example, I am doing a loop and check for a lock, if I don't get one, I wait for 5 seconds, this loop continues untill 30 seconds, no lock then it quits and gives message.
    report zrich_0001.
    data: counter type i.
    parameters: p_equnr type equi-equnr.
    start-of-selection.
      clear counter.
      do.
    Exhausted,  no luch in getting a lock, get of of DO loop.
        if counter > 6.
          sy-subrc = 1.
          exit.
        endif.
    Try for lock
        call function 'ENQUEUE_EIEQUI'
          exporting
            mode_equi            = 'E'
            mandt                = sy-mandt
            equnr                = p_equnr
       _wait                = 'X'
          exceptions
            foreign_lock         = 1
            system_failure       = 2
            others               = 3.
    Got a lock, get out of DO loop.
       if sy-subrc  = 0.
          exit.
        endif.
    Still here?  Then wait another 5 seconds
        wait up to 5 seconds.
        counter = counter  + 1.
      enddo.
    Report status
      case sy-subrc.
        when  0.
          message s001(00) with 'Lock could not be established'.
        when  1.
          message i001(00) with 'Lock could not be established'.
      endcase.
    Regards,
    rewards point

  • Can I use my custom board with LPC2378 processor with ULINK2 on Embedded module for ARM and LV.

    Issues in ARM and LV
    Can I use my custom board with LPC2378 processor with ULINK2 on Embedded module for ARM and LV.How can I create my elemental I/O vis or I have to use the existing Keil board vis. Confused. Please help.
    I have LV8.6. Which ver of embedded module for ARM should I buy. Website shows combined price for ARM module and LV. But I already have LV8.6 so what is the cost of module.
    Regards
    Shradha

              If the processor of your development board  is the cortex-M3 core, I think you do not have to buy keil board. Now, there are a lot of OS and emulator suitable for Cortex-M3.
              Operating system I am referring to  is the real time operating system such as keil RTX,uCOS,FreeRTOS,CooCox CoOS and so on. CooCox CoOS is very new, you can get more information from http://coocox.org/ .
              Emulator or debugging tools such as ULINK2,st-link,Jlink,CooCox Colink and so on. CooCox Colink is also very new.  You can download the Colink Plugin from here Colink Plugin . 

  • Function modules for material and description

    Hi,
    Pls let me know the function module for material and description.
    Regards,
    Bala

    Hi,
    Please use FM: MD_MATERIAL_GET_TEXT
    Reagrds
    Raju

  • Flex Module for Apache and IIS for Flex3 Release

    All materials said that Flex Module for Apache and IIS was
    included in Flex3 Release of Feb. 25,but I did not find it.
    Does Anyone know about where to download the kit.
    Thanks
    Aiguo

    This link seems to have it, for Win and Mac:
    http://labs.adobe.com/wiki/index.php/Flex_Module_for_Apache_and_IIS#Installation

  • Function Module for Excise and VAT Calculation

    Dear All,
    I required one Function module for calculation of Excise % and amount of Invoice Verification Document.
    We are use TAXINN tax procedure. I am try to make Purchases Register where we required the Break up of Full tax amount as basic excise duty, Education Cess, S&H Education Cess and VAT Amount.
    Thanks
    Mukesh

    Hi,
    Locks are usually appliend on Tables. So you could find the table names affecting.
    Then you could goto SE11 and n Lock objects search for table name
    Once you identify the lock object. Display. Goto->Lock Modules.
    You will get 2 module names one for enqueue and 1 for dequeue.
    e.g. Lock object EBKK_ACCNT.
    and FMs are DEQUEUE_EBKK_ACCNT and ENQUEUE_EBKK_ACCNT
    Hope this helps.
    Regards
    Megha

  • Function module for Delivery and billing based on sales order

    Hi Friends
    I am developing an object which has to create the sales order, delivery for that sales order and billing for it at the same time.
    I have tried for few function modules to create the delivery and billing but I am not able to achieve.
    Would you please help me by providing the correct function modules for these 2 activities?
    Thanks
    Praveen

    Hi Nikhil
    Thanks for reply,
    i am creating the sales order using the BAPI "BAPI_SALESORDER_CREATEFROMDAT1" only, but the billing document bapi
    "BAPI_BILLINGDOC_CREATE" is for online creation, it will call the t-code 'VF01'.
    I need to create the billing document with out calling the t-code like using bapi for sales order. Please suggest me if there are function modules to achieve this.
    Thanks
    Praveen

  • Regarding ports opening for patching client machine in DMZ.

    Hi ,
    Regarding SCCM patching to Client Machine on DMZ.
    I have SCCM server and WSUS server
    both are different machines.My software update point is configured to port 8530.
    I have a client machine in DMZ and want to do patching for the DMZ machine.
    Ports opened from my DMZ machine to SCCM server are 445,135,80,443,8530
    1.Do the above ports are fine to do patching ?
    2.Do we require communication between DMZ and SCCM server on port 8530 for patching on DMZ machine?
    Regards,
    Arjun

    Hi Arjun,
    The answer to the first question you will find in the link Torsten posted.
    The answer to the second question: Whether you should open port 8530 depends on where your Software Update Point and where the Site Server are. It must be opened for the following communication:
    Client -- > Software Update Point
    Site Server < -- > Software Update Point
    Software Update Point -- > Upstream WSUS Server
    If you have only a client in DMZ the port must be opened for the communication with the SUP.
    Regarding the 3rd statement: If you are not able to telnet to the port on the server, this would mean that the communication is blocked somehow. You must make sure, that you are able to telnet to it.
    Hope this helps. Regards,
    Stoyan

  • Table for Start and End time of Process Chain

    greetings experts,
    Hi All,
    I Have to give an Excel Sheet to Top level manager on Start and End Time of Data Load in each InfoPackage (PSA Load) triggered by Process Chain, please let me know if there is any table who keeps these information.
    Regards
    Sulochan

    Hi,
    You can use the program /SSA/BWT to give the Timings of the process Chain runs.
    1) To access this tool Goto SE38 .Type in u201C/SSA/BWTu201D as the Program name and click on execute. The list of all the tools that this Program contents are displayed.
    2) By default the option u2018Process Chain Analysisu2019 is selected. Now click on the execute button. Then you are displayed with the options through which you can select to perform analysis at Process Chain level or Process Type level. (Along with that, the Time Zones used to display the information is also displayed)
    3)If you click on the button u2018Process Chainsu2019 a window Pops up, here you need to provide the Chain-ID and/or the Log-ID and the Start Date/Time and the End Date/Time.
    4)Decide the parameters to enter as per your requirement, suppose your requirement is to check the runtime of a particular process chain for the past one week, then provide the technical name of that chain in the field Chain-ID and the start and end dates as per last one week and click on execute.
    5)Then the logs of the Process Chain for the selected dates are displayed along with the status (Red, Green or Yellow). The logs of the local chains (if any exist in the Process Chain selected) are also displayed (Much more additional information exist which is self explanatory). Now you can have a look at the Runtimes of different logs.
    Regards,
    Suprajah.

  • Regarding quota balances for sick and vacation

    hi all,
    can u tell me which inftype this sick and vacation quota balances can b found and how we can recognise them.
    thanks and regards,
    Phani.sista.

    Hi there. Absence quotas are in infotype 2006. There is a two-digit absence quota type code for each separate quota (example: we use 95 for sick time and 96 for vacation time).
    You can view your absence quota settings by going to transaction SPRO and choosing "Time Management", then "Time Evaluation", then "Time Evaluation with Clock Times", then "Processing Balances", then "Balance Formation", and then "Maintain Absence Quotas".
    - April King
    Message was edited by: April King

  • Report for login and logout time

    Dear All,
    Please can some one help me urgently.
    I have to find out users login and logout time over the last six months. I need to find out how many hours per user are being used.  What report do I need to run to find out ?

    Hi,
    Check the system log saved in your system.Normally the basis admin woulfd know better about this .Only they have the access and maintance for it.
    Anyways u can try out some other ways also
    Profile parameters rslg/local/file
    /usr/sap/<SID>/D20/log/SLOG<SAP-instance_number> Specifies the location of the local log on the application server.
    Alternatively try to  table - SYST
    Note:  there are many transaction codes that can be accessed only by super users .do tell me if u have one so that i can give you?

Maybe you are looking for

  • Illustrator CC crash on start - Mac OSX 10.9.2

    Message Bellow - Process:         Adobe Illustrator [23652] Path:            /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/MacOS/Adobe Illustrator Identifier:      com.adobe.illustrator Version:         17.1.0 (17.0.0) Code Type: 

  • Process Orders Types and Costing effect.

    Dear All, I have a query regarding the order type in process orders. There is an order type "Rework",. It can be used by the production people for some material(s) that may need only minute/little rework. Can anyone please help me to understand that

  • XI Courses.

    friends, i am planning attend the SAP XI courses,kindly help me in deciding the courses required for me, my requirement will be migrating a business intelligense application from oracle datawarehouse to SAP BW and also using the data of SAP MM module

  • Nokia 9500 - Hinge Assembly Cracks Frequently

    02nd June'08 NOKIA CUSTOMER CARE Dear Sir, Please note that I have been forced to replace the hinge assembly of my Nokia 9500 Communicator repeatedly as it cracks quite frequently. Please note details of purchase and changes done as given below. Mode

  • Putting a Flash Intro on iweb

    I brought a flash intro in .fla format and I was using FTP for mac to upload the flash intro to my iweb. What is the FTP server for site of iweb.