Regarding MRSS Assingment Status

Dear all
1) I have a problem in MRSS. i m executing Tcode /n/MRSS/PLBOORGM and press the Assignment Button on toolbar we get details of assignment all is fine. my issue is when i check the Assignment status it's showing blank i want display current status of assignment.
2) how to assigned color in demand resource.
please tale me how to do it. 
is there any configuration setting for this or any BADI or any class please ho to slove this issue.
Thanks,
Abhilash

I have tested this TA in 10 various systems, and nowhere i got it.
So either it is a module which we dont have so i cant say anaything about it, or /MRSS is some customer name room which got reserved.
If later is the case it is a custom development and then probably noone here on MSDN can help you.

Similar Messages

  • I applied for AppleCare work from home 7 days ago and haven't received an email regarding my application status.  Anyone know how long this takes or if I shouldn't expect anything?

    I applied for AppleCare work from home 7 days ago and haven't received an email regarding my application status.  Anyone know how long this takes or if I shouldn't expect anything?

    I have no idea how long it takes. I applied for one several months ago. The position is still posted but I haven't heard a thing.

  • Urgent: regarding planned order status

    hi,
    i want to have tcode in which it should display planned order status in which details about whether it is converted to purchase requsition or production order etc..
    plzz help me out in finding dis tcode as it most urgent to me.
    if find useful he or she will be definately rewarded.

    Dear Ric.S,
    If your procurement type for the material is X - Both Procurement typesin MRP2
    view,then after MRP run Planned orders are obtained,only these planned orders
    you can convert either to Production order or else Purchase Req.
    So check in MD04 or MD16 for all the planned orders.
    CO40 - Individual conversion of Planned order into Prod.Order.
    CO41 - Collective conversion of Planned order into Prod.Order.
    MD14 - Individual conversion of Planned order into Purchase Req.
    MD15 - collective conversion of Planned order into Purchase Req.
    Regards
    Mangal

  • Regarding marking of status for generate draft invoice for single projects

    Hi,
    1)
    I have read through the portion - "Automatic Invoice Approve/Release Extension" in the document - "Oracle® Projects APIs, Client Extensions, and Open Interfaces".
    Noticed the package - "pa_client_extn_inv_actions" and procedures - "approve_invoice, release_invoice".
    I understand that these procedure play role in the actually approving & release of the invoice but will this also play role in changing the status or some other code need to be written for changing the status.
    My requirement of customizing a workflow for approval also need to mark status as unapproved when not approved. Not sure if same procedure will help.I am completely new in Project accounting so not sure if I have put forward very basic questions.
    2) Second question is in regards to the way this procedure should be modified :
    This is the code for approve_invoice:
    /*----------------------------------------------------------------------+
    | Approve Customer Invoice Template |
    +----------------------------------------------------------------------*/
    Procedure Approve_Invoice ( P_Project_ID in number,
    P_Draft_Invoice_Num in number,
    P_Invoice_Class in varchar2,
    P_Project_Amount in number,
    P_Project_Currency_Code in varchar2,
    P_Inv_Currency_Code in varchar2,
    P_Invoice_Amount in number,
    X_Approve_Flag out NOCOPY varchar2, --File.Sql.39 bug 4440895
    X_Status out NOCOPY number ) is --File.Sql.39 bug 4440895
    BEGIN
    -- Reset the output parameters.
    X_Approve_Flag := NULL;
    X_status := 0;
    -- Add your Approve Invoice Logic here.
    -- If you want to Approve the Invoice set X_Approve_Flag to 'Y'.
    -- If it's null or set to 'N', Approval of Invoice will not be Done.
    -- Do not add 'commit' or 'rollback' in your code, since Oracle
    -- Projects controls the transaction for you.
    EXCEPTION
    when others then
    -- Add your exception handler here.
    -- To raise an application error, assign a positive number to X_Status.
    -- To raise an ORACLE error, assign SQLCODE to X_Status.
    RAISE;
    END Approve_Invoice;
    I have shown below what I understand on the modifications to be done on the same:
    Procedure Approve_Invoice ( P_Project_ID in number,
    P_Draft_Invoice_Num in number,
    P_Invoice_Class in varchar2,
    P_Project_Amount in number,
    P_Project_Currency_Code in varchar2,
    P_Inv_Currency_Code in varchar2,
    P_Invoice_Amount in number,
    X_Approve_Flag out NOCOPY varchar2,
    X_Status out NOCOPY number ) is
    BEGIN
    -- Reset the output parameters.
    X_Approve_Flag := NULL;
    X_status := 0;
    X_Approve_Flag := 'Y';
    -- If you want to Approve the Invoice set X_Approve_Flag to 'Y'.
    -- If it's null or set to 'N', Approval of Invoice will not be Done.
    EXCEPTION
    when others then
    X_Status = 1;
    -- To raise an application error, assign a positive number to X_Status.
    -- To raise an ORACLE error, assign SQLCODE to X_Status.
    RAISE;
    END Approve_Invoice;
    **Will this modification "X_Approve_Flag := 'Y';" result in the invoices to be approved if I put this after the APPROVE path and if I put "X_Approve_Flag := 'N';", does that mean that the invoice would be rejected/unapproved so that I can put it after the REJECT path ?
    3)
    Custom workflow launch procedure to be fired from billing extension screen. Presently what is done is in the project template screen, in the billing assignment, the billing extension is referred.
    That means for each and every project, billing extension name will be attached.
    Present flow is once the generate draft invoice runs, triggers the billing extension, which in turn invoke the custom workflow launch procedure. But my question is how my workflow launch procedure is going to identify the particular transaction which triggered the workflow procedure, because based upon some project number/id/invoice number, I will have a select fetch the data into variable and then setting those into workflow attributes between create process and start process.
    So question is how my procedure will identify the transaction which invoked the procedure to get the particular project number/invoice number may be.
    I am not getting much from my research so thought of sharing with you if someone can assist me on the same.
    Regards,
    Ad

    Hi Krishna,
    Yes. I am invoking my workflow from billing extension only. I have entered the procedure name in the billing extension. Now when the draft invoice runs , setup is such that billing extension gets invoked as a result of "draft invoice for a single project".
    Till now its fine because my workflow is actually getting launched from here.
    Now custom requirement is that the approve and release in invoice review screen will be disabled and the approval process will have to be custom.
    Till this also its fine.
    A scenario is when the custom notification reaches approver. He/she would either approved or reject. If he approves, then invoice should get approved and then released.
    For this we tried and it seems no API is available as mentioned by Oracle. So whats the way to update invoice statuses ?. Presently we are going with a not recommended way - insert into tables . But I feel something should be there on updating status as per custom logic.
    You can let me know what u did for changing statuses
    When we do release from invoice review screen, an RA invoice number gets generated. I also need to update the table with the RA invoice number while insertion in table. Now there is no d/b sequence for this number. I have tried to open the logic of Release button and could get on table name PA_IMPLEMENTATIONS which always have 1 row for per OU. and there is a field next ra invoice number which shows the RA invoice number to be used. This value will keep on incremented as long as RA number gets generated.
    I am stuck at this place , on how to get the RA invoice number with some proper recommended method.
    In short I need a way to update inoice statuses like approved, released other than direct insert in table
    and how to get RA invoice number to be utilised while the release logic
    Regards,
    Ad

  • Regarding the Qm Status

    Hi,
    I have loaded data into an InfoCube. The Data is loaded successfully into the InfoCube and the Status in Monitoring tab is Greeen. Also the Tech Status under Manage tab is Green. But the Qm Status is Yellow. Also I am unable to display the data in BEx.
    I have refreshed several times and still the Qm Status is not changing to Green. In SM 37 it is showing that the job is finished.
    Now how to make the Qm status to Green and make the data available for Reporting....
    Regards
    YJ

    Jayanth,
    Please find effects of SettingQM Status Forcefully.
    1. aggregating the relevant InfoCubes ,         
    2. compressing the relevant InfoCubes  ,        
    3. activating relevant ODS Objects      ,       
    4 updating relevant ODS Objects          ,     
    5. query content of the relevant InfoCubes and ODS Objects.
    I hope you know how to assign points and close the issue.
    Thanks
    Ramu

  • Regarding show vtp status

    Hi All,
    I'm learning networking.
    I've a doubt from the output of show vtp status. What does it mean by "Maximum VLANs supported locally" ?
    And the output is showing that the present verions is "VTP Version 2" and again at VTP V2 mode it is showing as disabled, why?
    And I'm i not running the vtp version2 ? If yes, which version is this?
    Can someone tell me what is "VTP Traps generaiton" ?
    Regards,
    Chandu

    Hi Chandu,
    let me start with some brief answers, we can dig deeper then if you like.
    What does it mean by "Maximum VLANs supported locally" ?
    The number depend on the platform.
    Example: Catalyst 2960 Data Sheet: Max. 255 VLANs
    Much more important: Low-end platforms are limited in the number of spanning-tree instances they support.
    Example: Catalyst 2960: Max. 128 instances
    And the output is showing that the present verions is "VTP Version 2" and again at VTP V2 mode it is showing as disabled, why?
    It means the switch/IOS is v2-capable (but running v1).
    This output- line in your IOS is somewhat misleading, other IOS provide a much better output:
    VTP Version                     : running VTP1 (VTP2 capable)
    Can someone tell me what is "VTP Traps generaiton" ?
    You can enable SNMP traps for VTP events (SNMP traps are sent to a management station):
    Sw1(config)#do show vtp status | i Traps
    VTP Traps Generation            : Disabled
    Sw1(config)#snmp-server enable traps vtp
    Sw1(config)#do show vtp status | i Traps
    VTP Traps Generation            : Enabled
    And also at the end what does it mean "MD5 digest" i believe it is reffering to VTP password, but i didn't set any password for this switch yet.. but on the right side of that it is showing some hexadecimal values what are they?
    Have a look at this discussion:
    https://supportforums.cisco.com/message/4105410#4105410
    Configuration last modified by 0.0.0.0 at 3-26-93 14:35:34  --> What does this exactly mean?Local updater ID is 0.0.0.0 (no valid interface found) --> what is local updater ID, i thought it wil be an IP address, but again it is showing like no interface found?
    The switch hasn't received "better" VTP information from another switch so far and uses its own information (local vlan.dat).
    0.0.0.0: It seems like it doesn't have an IP address configured and up/up.
    HTH
    Rolf

  • Regarding  MRSS/PLBOORGSRV alert message "Diagram object number not valid".

    Hi all,
    I have a problem with MRSS. When I run the transaction /MRSS/PLBOORGSRV, delete the "demand of resource" and save I am getting the following error : " Diagram object number not valid (13, $ POSITION, 11)".
    Can Everyone help me ?
    Thanks for response.
    Best Regards
    Guldav
    Edited by: Guldav on Jan 12, 2012 12:13 PM
    Edited by: Guldav on Jan 12, 2012 12:39 PM

    wa_bapiebanc-doc_type = c_pr_type. "purchase requisition documentation type
    wa_bapiebanc-item_cat = c_item_cat. "ITEM CATEGORY
    wa_bapiebanc-acctasscat = c_ac_asign. "Account Assignment Category
    wa_bapiebanc-material = wa_data-stock_item. "Material number
    wa_bapiebanc-suppl_plnt = c_3000. "supplying plant
    wa_bapiebanc-pur_group = c_pur_grp. "purchase Group
    wa_bapiebanc-purch_org = c_pur_org. "Purchase Organisation
    wa_bapiebanc-unit = c_unit. "Unit of measure
    wa_bapiebanc-plant = c_r_plant. "receiving plant
    wa_bapiebanc-deliv_date = sy-datum + 7. "Delivary date
    ***************************************************8
    here pass wa_bapiebanc-CREATE_IND= '1'.
    append wa_bapiebanc to it_item.
    note
    Short Text
         Creation Indicator (Purchase Requisition/Schedule Lines)
    Definition
         Shows whether the purchase requisition or delivery schedule line was
         created manually or automatically (e.g. as a result of the requirements
         planning process).
         In the case of delivery schedules created under scheduling agreements,
         if schedule lines with different creation indicators are consolidated to
         form a release schedule line, the creation indicator remains "blank".

  • Regarding the change status of leave workflow.

    hi friends,
    i have copied the standard leave worklfow "WS12300111" and customized it just to meet our requirement means for multiple approvers.
    everything is working fine in production  means if user ID "AIHR01' raise a leave request the workitem will go to "AIHR02" after his approving the workitem will go to the final approver means "AIHR03" after his approval the leave request will be completed and the status in the TC - PTARQ is coming as "APPROVED" means only after the approving of "AIHR03" the status is coming "APPROVED" but in some cases when user id "AIHR02" is approved instead of coming status "SENT" it is coming "APPROVED"  in TC-PTARQ and because of this status the workitem is coming blank in UWL of "AIHR03".
    I have already incorporated the given below method in the "WORKFLOW" just to change the status from "APPROVED"  to "SENT" after the approval of user ID "AIHR02" but in some cases it is not working fine it is giving BUG.
    begin_method changestatus changing container.
    DATA:request TYPE ptreq_header-request_id,
              wi_id TYPE swwwihead-wi_id.
    DATA: request_instance TYPE REF TO if_pt_req_request,
               event   TYPE tim_req_xfer_event VALUE
               cl_pt_req_const=>c_reqtrans_send,
               ex_status TYPE tim_req_status,
               container_wi TYPE swcont OCCURS 0,
               agents TYPE STANDARD TABLE OF swhactor WITH HEADER LINE.
              swc_get_element container 'REQUEST' request.
              swc_get_element container 'Wi_id' wi_id.
    DO.
      CALL FUNCTION 'ENQUEUE_EPTREQ'
       EXPORTING
        MODE_PTREQ_HEADER       = 'S'
        MANDT                   = SY-MANDT
         request_id              = request
        X_REQUEST_ID            = ' '
        _SCOPE                  = '2'
        _WAIT                   = ' '
        _COLLECT                = ' '
       EXCEPTIONS
         foreign_lock            = 1
          system_failure          = 2
          OTHERS                  = 3
        IF sy-subrc = 0.
          EXIT.
        ENDIF.
        WAIT UP TO 60 SECONDS.
      ENDDO.
      IF sy-subrc = 0.
        CALL METHOD ca_pt_req_header=>agent->get_request
          EXPORTING
            im_request_id     = request
          IMPORTING
            ex_request        = request_instance
          EXCEPTIONS
            request_not_found = 1
            OTHERS            = 2.
        IF sy-subrc = 0.
          CALL METHOD request_instance->initiate_state_trans
            EXPORTING
              im_transfer_event = event
               im_external_call  = 'X'
       im_ret_value      = 0
                     ex_new_status     = ex_status
       ex_ret_code       =
          swc_set_element container 'Ex_Status' ex_status.
        ENDIF.
        CALL FUNCTION 'DEQUEUE_EPTREQ'
         EXPORTING
      MODE_PTREQ_HEADER       = 'S'
      MANDT                   = SY-MANDT
           request_id              = request
      X_REQUEST_ID            = ' '
      _SCOPE                  = '3'
      _SYNCHRON               = ' '
      _COLLECT                = ' '
      ENDIF.
      swc_create_container container_wi.
      swc_set_element container_wi 'WI_ID' wi_id.
      agents-otype = 'US'.
      agents-objid = sy-uname.
      APPEND agents.
      CALL FUNCTION 'SWW_WI_START_SIMPLE'
        EXPORTING
          task                         = 'TS90000089'
          called_in_background         = 'X'
        TABLES
          agents                       = agents
          wi_container                 = container_wi
        EXCEPTIONS
          id_not_created               = 1
          read_failed                  = 2
          immediate_start_not_possible = 3
          execution_failed             = 4
          invalid_status               = 5
          OTHERS                       = 6.
      end_method.
    Request you to plesase help me to solve this issue .why in some cases instead of coming status "SENT" it is coming "APPROVED"  after the approval of user id "AIHR02".
    BECAUSE of the  "APPROVED" staus the same workitem is coming blank in the UWL OF "AIHR03".

    solved by own

  • Regarding TECO system status in Plant maintenance

    Can anyone suggest me the BADI or exit for blocking TECO status along with SDRQ user status

    Hi,
         Please check the user exit : IWO10004 Maintenance order: Customer check for order completion
    I believe the above user exit gets triggered when TECO is set ..
    Check whether FMs STATUS_READ or STATUS_CHECK is helpful or no
    If system status or user status is not there in DB Table then u may have to read via structure ..
    Check this link Block Order TECO on the basis of operation User Status
    regrds
    pushpa

  • Regarding Yellow Request Status in InfoCube

    Hi All,
    I am trying to load the data from DSO to Info Cube. Here DSO is of 7.0 type & InfoCube of 3.x type. Once the data is updated into Info cube, the request is still found in Yellow status. when i checked the monitor of the request, in the status tab all the status are completely green but in the infocube it is still found in yellow status. Also the "Request is available for Reporting" icon is not appearing.
                                                What is the possible cause for the request to remain in yellow status in InfoCube even though the monitor shows Green status. I tried reloading the data completely but still my problem is not solved.  Please suggest methods so that request should automatically turn into Green status.
    Points will be awarded as per SAP forum rules.
    Thanks in advance,
    Rajesh

    Hi Experts,
    I have come up with a new issue.
    When I do a full upload from DSO to Infocube, the request in Infocube would remain in yellow status. When i check the monitor status it was completely Green. so in that case i changed the status of request manually to Green as suggested by forum experts.
    When I do a INIT upload from DSO to cube, still my request in Infocube would remain in yellow status. Again i changed the status of request manually to Green. But the problem is when i check the monitor of the request, under 'status' tab the status is Green but under 'Details' tab Overall status is still in yellow status. The sub-option 'Databasis (requests) : Not yet finished' is also in yellow status. what is the possible cause for this? how to overcome such problem?
    Thanks,
    Rajesh

  • Regarding message in status bar

    Hai SDN members , i have to display message in status bar , my requirement is like this ,ihave three fields in gui screen 1 is shipment num ,2 is shipment type and 3 is packing ref . and if i give the input in this three fields ,then the shipment number should be displayed in status bar

    hi,
    u want message after pressing some button or enter?
    u need to write this in USER_AOMMAND module of PAI, in when case..
    like
    when 'SAVE'.
    MESSAGE s000(zmsg_fmtr) WITH srn.
    here zmsg_fmtr is my message class
    and this is my 000 message in that mssage class
    Record Saved Successfully with Serial Number &
    in place of & my passing parameter (srn) will come on status
    reward if usefull...

  • Question regarding student/teacher status for Adobe CC

    I'm asking if I can qualify as a student/teacher status for Adobe Creative Cloud sale purchase.  Deadline is Dec. 1.  I have a U of AZ email address and I am a certified volunteer for the University. I have a bonified email address from the University but I wanted to know if this would qualify for this sale purchase.  I don't want to purchase first and ask questions later.  Thank you.

    Adobe Education... Start here https://creative.adobe.com/join/edu
    Education Plan https://creative.adobe.com/plans?plan=edu
    One Year Intro Price http://forums.adobe.com/thread/1448933?tstart=0
    http://www.adobe.com/products/creativecloud/students.edu.html
    http://www.adobe.com/education/students/student-eligibility-guide.edu.html
    ID Proof http://www.adobe.com/store/au_edu/academic_id.html

  • Table for purchase order status

    Hello friends,
    There's a tab STATUS in purchase order (tcoe ME21N).
    I can't find a table which contains theses statuses.
    Anybody knows what's the table for purchase orders status ??
    Regards,
    Bahia

    Hi
    PO status is stored in Structure not in the table.
    Please use the List displays to get the information like ME2N,ME2L, ME2M, ME2K etc
    You can also get the information from the table EKKO, EKPO, EKET,EKBE
    Hope it helps
    thanks/karthik

  • PRODUCTION ORDER STATUS AFTER CO11

    HELLO ALL,
    I WANT OT KNOW THE STATUS OF PRODUCTION ORDER AFTER CONFIRMATION.
    If X prodcution order has been confirm on shop floor.
    and submited to QC.
    Next step is quallty inspection,then it will go to  finished goods store, then despatch.
    How can i see that , wheather order is in quailty for inspection , or it has been gone to finished store or from finished store to despatch.
    what will be the system status for this three stages ????
    Regards
    DHIRAJ

    Hi,
    The status of the order after confirmation will be CNF if fully confirmed or PCNF if partially confirmed. Similarly DLV or PDLV also. Whether material goes into QC or not order status will be these mentioned above. That means as soon as order has delivered the goods to the stock then order status does gets affected by the material movement. Whether a stock is lying in the shopfloor inventory or dispatch stores it is not affecrted. Even in MTO after delvery order is not impacted by inventory movements
    Regards
    Vineet

  • Iphone 6  order status update

    for any verizon reps/employees. I have been following these forums since preorder night. the only thing I have learned is that there doesn't seem to be any order/method to our orders. A little background to my experience: I was one of the individuals that didn't have a problem submitting my preorder, couldn't have been any later than 1215am pst. Upgrading 3 gold iPhone 6+ 64 gb. I got the confirmation email one hour later with a shipping/deliver date of 10/07. A few days ago the date changed to 10/03 while the status continues to process. Credit card has yet to be charged. Anyways ive noticed that there are several people with similiar orders who apparently submitted their orders at a later time than mine, others who received their confirmation email at a later time than I did, who not received their phones on 9/19. ive also recently learned that a handful of individuals who are in the same boat as me are starting to get updates where their credit cards are charged and shipment date confirmed (9/24 if I'm not mistaken). I've been patient and will continue to be but I would still like to get a better idea of when my order will be processed or at least how it is decided which orders will be processed before others. and just to be clear I have been to and continue to check the websites listed in responses from Verizon reps with no further clarification than order still processing. If anyone has any idea how verizon dentermines which order the preorders are processed I would greatly appreciate it. Thanks ahead of time.

    This is primarily a customer-to-customer forum.  Responses by Verizon reps aren't guaranteed and when they do respond, it can be several days after a post is left.  If you want a quicker response regarding your order status, you may want to call Customer Service.

Maybe you are looking for

  • JDBC 4.0 Public Review

    The JDBC 4.0 Public Review Draft specification is now available on the JCP web site. http://jcp.org/aboutJava/communityprocess/pr/jsr221/index.html This is the JDBC spec that will be included in Java 6.0 so this is what you'll be living with for the

  • Loop through tables based on data dict values

    Hi, I working on an old v7.3.4 database that I'm not familiar with and I want to loop through the tables and count the occurrence of a field value based on table names i've retrieved from the data dictionary. None of the tables have relational keys d

  • Updating Address Book

    What happened before when I received an updated address book was an option to update their address. It's gone away now and only option when viewing their address attachment is to add. Any ideas?

  • Deleting change pointers in IDOC

    Is there any other way to delete change pointers other than using transaction code BD22?

  • Buggy behaviour setting tracking ID C6

    Hi there, Strangeness is happening. I have a paragraph where I cannot set tracking to 100. I can set it to another number, but not 100. Weird? I have tried IDML to no avail. If you would like to try yourself, here's the doc: www.freelancebookdesign.c