Assigned Capacity for a network activity

Hi all,
I need to get a table or FM through which i can findout the remaining workcenter capacity(work) assigned with the network order for each period. In RPSQT table i can get only planned capacity.
The transaction for the same is CM07 and in the settings we have planned or remaining option.
I need to findout from where the remaining capacity data is coming into CM07 transaction.

Hi,
Check if table KAKO helps. You may have to calculate the remaining capacity from available and utilised.
Regards

Similar Messages

  • Logic for Activity Qty and its unit of meas for external network activity,

    Hi,
    For external network activity, controlling key PS02. I want to read Activity Qty and its unit of measure.
    Is there any function module or Bapi for this or any selection table logic?
    I have tried BAPI_PROJECT_GETINFO and BAPI_NETWORK_GETDETAIL but I am not able to get this field?
    If anyone has solution please let me know.
    Thanks.
    Prem

    Got the alternative solution

  • Capacity Utilization by network activity for each period

    Hi all,
    How do i find out the capacity utilization at the network activity level. My requirement is to findout the remaining requirement/capacity of a workcenter for each period, which will be the cumulative value of the non utilized resources/hours for the previous months, based on distribution key.
    The same functionality is there in CM07, but what is the exact functionality and how it can be reimplemented in a report?

    Hi,
    Check if table KAKO helps. You may have to calculate the remaining capacity from available and utilised.
    Regards

  • Quality Inspection For WBS & Network Activity

    Hi All,
    In one our project scenario it is required that the qaulity inspection has to be perform for WBS or Network activity.
    Can anybody explain me the steps.
    Thanks,
    Vishal

    Dear Vishal
    QM in projects I dont think SAP has any solution currently available for this. Option available can be
    1) Create a WBS itself as Quality Inspection. You can capture all the QM activities in this particular WBS
    2) Create manaul inspection lot with reference to WBS and record the results.
    Regards
    Gajesh

  • Table for WBS,Network , Activity from CJ20n

    Hi All,
    What's the table to check WBS, network and activity?
    Thank you.
    Best Regards,
    Nies

    Hi
    Project it is PROJ table where Project is PSPNR.
    WBS it is PRPS the field is PSPNR,
    the link is PROJ-PSPNR = PRPS-PSPHI (PSPHI is the project definition).
    Activity Table is AFVC and the link is
    PRPS-PSPNR(WBS elements of PRPS) = AFVC-PROJN (WBS elements of AFVC).
    Network table is CAUFV and the link is
    AFVC-AUFPL = CAUFV-AUFPL
    <REMOVED BY MODERATOR>
    Thanks.
    Edited by: Alvaro Tejada Galindo on Feb 22, 2008 2:54 PM

  • Unit of measure missing for LagDuration in ES for Project Network Activity?

    Hello,
    I just tried the Enterprise Service "Read Project Activity" (ProjectProcessingManageProjectIn) from ESM ERP 604 in the ES workplace. The field LagDuration in the NetworkRelationship consists of only a number, but no unit of measure. I changed the unit from Hours to Seconds via the Web Portal and watched the results of the Service: the number did not change although one hour should result in different lag time than one second. IMHO the unit of measure is missing in the service definition. Or am I getting something wrong?
    Regards,
    Uwe.

    It is even worse: There are several duration fields in the "Manage Project In"  Service Interface (e.g. Activity BaseDuration). In the responses these fields always contain a naked number (no unit of measure). In the WSDL these fields are of type "Duration" which has a pattern restriction of "PnYnMnDTnHnMnS" - not an int type! In a request if you pass e.g. "PT20M" (which is a valid Duration according to the samples) you will get a nasty parse error. Can anybody explain? Has anybody worked around this issue?

  • How to remove a network activity for one employee from the worklist?

    Hi,
    We are using the SAP project system where project resources are assigned network activities. In the worklist in the ESS timesheet, the assigned network activities are displayed for the employee. The problem is when several employees are assigned for a network activity, and one of them no longer should register hours on this activity. How can you remove the assignment (using dates etc.) for only one person so that the network activity no longer is present in his worklist in the timesheet?
    Regards,
    Petter

    Well for this pernr you need to have a special coding to check for network and pernr.
    other would be a simple way using cats0003 to validate data an employee records here you can have a individual check
    for this pernr that he doesnt record for this activity and throw an error when he does! this is simpler

  • Create long text for network activity

    Hello,
    I'll create a long text for a network activity, but I found no BAPI for that.
    When I create long text for an order activity I use the BAPI BAPI_ALM_ORDER_MAINTAIN. There it is possible to specifiy the long text lines.
    In the BAPI BAPI_NETWORK_MAINTAIN there ist no table for specifying long text.
    Did anyone know how to create a long text for an network activity?

    Hello Vivek,
    I'll tried this too. My problem was, if I add long text to a existing network activity, everything works well. But in my programm I create a new network plan with one network activity (0010). After commit I become the correct network plan number. Then I try to add long text to the network activity. I get correct return codes but if I look in the transcation CJ20N I could not see some text. If I use the READ_TEXT function with the key I insert the text, I see the text, but not with the transaction CJ20N.
    I compared the key I used in my program with the key if I insert text with transaction CJ20N. I could'nt found some differences.
    SELECT SINGLE afvcp~mandt afvcp~aufpl afvcp~aplzl
                      INTO (mandant,aufpl,aplzl)
                      FROM afvcp INNER JOIN
                      afko ON
                      afko~mandt = afvcp~mandt
                      AND afko~aufpl = afvcp~aufpl
                      AND afko~aufnr = ordernumbernew.
                        "*Create Identifier
                        CONCATENATE
                        mandant aufpl aplzl
                        INTO lv_name.
                        header-tdobject = 'AUFK'.
                        header-tdname = lv_name.
                        header-tdspras = sy-langu.
                        header-tdform = 'SYSTEM'.
                        header-tdid  = 'AVOT'.
                        header-mandt = sy-mandt.
                        header-TDLINESIZE = '079'.
                        CALL FUNCTION 'SAVE_TEXT'
                          EXPORTING
                            client          = sy-mandt
                            header          = header
                            insert          = 'X'
                            savemode_direct = 'X'
                            owner_specified = ' '
                            local_cat       = ' '
                          IMPORTING
                            function        = func
                            newheader       = newheader
                          TABLES
                            lines           = lines
                          EXCEPTIONS
                            id              = 1
                            language        = 2
                            name            = 3
                            object          = 4
                            OTHERS          = 5.
                          CALL FUNCTION 'COMMIT_TEXT'
                           EXPORTING
                             OBJECT                = header-tdobject
                             SAVEMODE_DIRECT       = 'X'
                           IMPORTING
                             COMMIT_COUNT          = commit_count
                          COMMIT WORK AND WAIT.
    For example in the debug the header ist filled with:
    1 TDOBJECT C 10 AUFK
    2 TDNAME C 70 210000044156300000001
    3 TDID C 4 AVOT
    4 TDSPRAS C 1 D
    5 TDTITLE C 50
    6 TDFORM C 16 SYSTEM
    7 TDSTYLE C 8
    8 TDVERSION N 5 00000
    9 TDFUSER C 12
    10 TDFRELES C 4
    11 TDFDATE D 8 00000000
    12 TDFTIME T 6 000000
    13 TDLUSER C 12
    14 TDLRELES C 4
    15 TDLDATE D 8 00000000
    16 TDLTIME T 6 000000
    17 TDLINESIZE N 3 079
    18 TDTXTLINES N 5 00000
    19 TDHYPHENAT C 1
    20 TDOSPRAS C 1
    21 TDTRANSTAT N 1 0
    22 TDMACODE1 C 16
    23 TDMACODE2 C 16
    24 TDREFOBJ C 10
    25 TDREFNAME C 70
    26 TDREFID C 4 4
    In CJ20N the header is filled with
    1 TDOBJECT C 10 AUFK
    2 TDNAME C 70 210000044156300000001
    3 TDID C 4 AVOT
    4 TDSPRAS C 1 D
    5 TDTITLE C 50
    6 TDFORM C 16 SYSTEM
    7 TDSTYLE C 8
    8 TDVERSION N 5 00000
    9 TDFUSER C 12
    10 TDFRELES C 4
    11 TDFDATE D 8 00000000
    12 TDFTIME T 6 000000
    13 TDLUSER C 12
    14 TDLRELES C 4
    15 TDLDATE D 8 00000000
    16 TDLTIME T 6 000000
    17 TDLINESIZE N 3 079
    18 TDTXTLINES N 5 00007
    19 TDHYPHENAT C 1
    20 TDOSPRAS C 1
    21 TDTRANSTAT N 1 0
    22 TDMACODE1 C 16
    23 TDMACODE2 C 16
    24 TDREFOBJ C 10
    25 TDREFNAME C 70
    26 TDREFID C 4

  • Issues about substitution for network activity

    Hi guys,
    Today we have tried to creat a substitution for the network activity (Tcode: OPSN).  we also create some by reference the existing ones. When we choose form menu Edit->Validation/Substitution->Substitution, it really triger the our defined exit. But when we save the network, after we change the activity. It trigger nothing! So I am very confused.
    Welcome any suggestion!
    thanks very much!
    --James

    Hi James,
    check settings in network profile. For automatic substitution you need to make settings there.
    Cheers
    Thorsten

  • Record time against network activity in CATS

    Hi all
    Is there any special exit to be used to DIRECTLY record time against Network Activity in CATS ? I do not which to use the "Worklist & Copy" functionality.
    regards
    PK

    Hi,
    As far as i know, you can directly do a timesheet entry for a network activity. You need to have details like activity type and cost center to do this. Also note that timesheet entry in CAT2 is directly influenced by the data entry profile that you use and the settings in CAC2 transaction.
    I would suggest you to check both the Data Entry Profile and the setting in CAC2. If you find everything is fine here please check if there is any user exit that is preventing you from making a timesheet entry.
    Regards,
    Gokul

  • Time Events in PS (Clocking on an off a Network Activity)

    Hi,
    Is there a SAP standard transaction for clocking on and off jobs for a Network Activity? In PP you can clock on and off a job using CO19 but that doesn't work for PS.
    Any help would be appreciated.
    Regards
    Adeel

    As I understand, this kind of funcationality is not there in PS becasue in PS all the project activity is not direclty depends upon physical plant resource entiry directly. So, indirectly you can achieve the same via early confimration and extending duration of acitivty etc..
    Pelase share if someone have other views.
    With Regards
    Nitin P.

  • ACTUAL_FINISH_DATE NETWORK ACTIVITY UPDATING

    Hello,
    Is there a solution to modify the "Actual_finish_date" for a network
    activity through a bapi function ? This component seems to be called
    only in "read" bapis like BAPI_NETWORK_GETINFO.
    Thank you for your help
    Bests regards

    Hi,
    the only thing i´ve found is this:
    1.- it is used in fm -> MAP2E_AFVGD_TO_BAPI_ACTIVITY
    2.- within this fm it does this:
    <BAPI_FIELD>|EARLY_FINISH_DATE
    <SAP_FIELD>|FSEDD
    <CODE_PART>|A_MOVE
    <ADD_FIELD>|
      move afvgd-fsedd
        to bapi_network_activity-early_finish_date      
    where AFVGD =  Order: Dialog table for Table AFVG (order operation)
    Best regards.

  • Network activity confirmations

    1) Hi guys please advise is it  possible to avoid (by means of error ) the second confirmation of an activity whihc was already fully confirmed and completed.
    2) The milestone once it has received an actual date should not be possible to change the first actual date. So may be is it possible to get the field greyed out after doing the actual postings to milestone.I am not using the confirmation by means of a percentage completion of milestone and activity, instead my scenario requires the confirmation manually.
    3) How can we control that the milestone actual date should not be less than 3 days of the system date.
    The issue is important and urgent .Kindly advise
    Thanks
    RKS

    Hi,
    Thanks once again.
    I have been trying the SPRO and Enhancements listed under Confirmations node, but have a feeling that they may work for controlling network activity confirmation and not for milestones.
    Can you please confirm if these can work to control the milestone actual dates as per my requirement i.e. the actual dates once posted manually to milestone should not be possible to be changed.
    Kindly let me know of any other enhancement or exits if you are aware.
    Thanks and Regards
    Rajeev

  • Function, BAPI to get the children form a Network Activity in a Project (PS)

    Hi everyone,
    I have a Project in TCode CJ20N with PEPs, Networks and all the components that It has.
    I'm doing a program which input "Network Activity" and the result have to be all the children for this Network Activity (Material Components) including the information for each Material Component because What I'm looking for is to check if at list one of the children for a Network Aciviti have a Purchase Requisition linked to it as I show in the Attached File.
    To do this, I need to execute a function, BAPI, BADI or any code to get the children to look for a PR.
    Thanks a Lot.
    Regards
    Felipe Uribe

    Hi Arun...
    thanks a lot, I think it could work fine!!!.
    I'll try using this BAPI.
    Regards
    Felipe Uribe

  • Assignment between network , activity , person , planned number of hours

    Hi
    In CJ20N , we are doing person assignment against activity
    Against activity , in internal tab , we are entering the planned no of hours in the field Work
    Similarly , against each person , we enter the splitted time
    I need to know , in which Table , we can find the relationship between network , activity , person , planned number of hours (at that person level)
    rgds
    sandeep

    Hi Sandeep ,
    AFVC, table for activity
    KBED, table for main capacity.
    KBEZ, for Split
    KPER, person assignment of each period.
    There is a correction report ZKBED_DEL of note 542941, You get more details of the relationships of the tables above, if you view (or debug) the codes.
    Kind regards,
    Zhenbo

Maybe you are looking for

  • I have a doubt about The Single-Thread Rule

    The [url http://java.sun.com/docs/books/tutorial/uiswing/overview/threads.html#rule]Single Thread Rule states: Rule: Once a Swing component has been realized, all code that might affect or depend on the state of that component should be executed in t

  • Airport extreme not connecting to non-apple devices

    Hi, I just installed a airporte extreme to serve as my home router (normal home network stuff).  My set-up is a cable modem to the extreme to an iMac.  The internet connection works, the wifi also works since I have a MacPro that works fine.  The iss

  • Digitally Verified Signature Fields After Saving

    I am using Acrobat 9. I am creating a PDF with a whole slew of editable fields. Once the PDF is done I need to be able to email it to several people who need to be able to fill it out and save it (so that they can upload it to a website for me). I ha

  • Java server/client archetecture

    how would I go about setting up a connection with a client and maintaining it by sending info back and fourth

  • Videos stop playing in Youtube after buffering a few seconds

    Current Computer Specifications used: OS:  Windows 7 Professional 64-bits Service Pack:  1 (Latest) RAM: 8 GB Processor: Intel Dual Core Flash Player version:  11.6.602.180 Web Browser:  Firefox 20.0 Your help is sincerely appreciated in advance to f