UTILIT99 Variant with custom messages

Hi dear experts,
how can we insert custom messages to the variant UTILIT99?
Do I have to copy the function module ISU_UTILIT99  to a custom FM ZISU_UTILIT99 and in there insert the new custom message error numbers?
If so which table holds these messages? (eg. AJ 282)
Also where do you set the relationship between the variant UTILIT99 and the FM ISU_UTILIT? (to change it for the new custom FM)
Thanks for your help
Regards,
Sergio

Sergio:
Please read the Research Resources and Rules of Engagement .  You should endeavor to search prior to posting your request.  This information can be found in the help for SAP Utilities, within the billing chapter, and includes an example of what/how to proceed. 
Regards,
bill.

Similar Messages

  • Can we modify the standard AOL Message with custom Message in Seeded Page?

    Hi,
    I have a requirement to change AOL Message with custom Message in Seeded Page.
    In a seeded OAF page when a user clicks on a submit button a standard AOL Processing Message is populated.
    I Need to change the Standard Message and call Custom Message.
    Did controller extension and found that both the messages are populating.
    called the code after super and tried to call before super also.
    Did any one face this issue and resolved it. Kindly provide the solution.
    Regards
    Chaitanya

    Hi Gyan,
    I have tried by extending a sample custom controller.
    Below is the code of TestCO calling create message
      public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
        super.processFormRequest(pageContext, webBean);
          OAApplicationModule am = pageContext.getApplicationModule(webBean);
          if (pageContext.getParameter("Test") != null)
              OAException confirmMessage = new OAException("AK", "FWK_TBX_T_EMP_CREATE_CONFIRM",    null,
              OAException.CONFIRMATION, null);
              pageContext.putDialogMessage(confirmMessage);
      }Then I extending the TestCO to XXTestCO and it is calling Update Message
        public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
          super.processFormRequest(pageContext, webBean);
            OAApplicationModule am = pageContext.getApplicationModule(webBean);
            if (pageContext.getParameter("Test") != null)
                OAException confirmMessage = new OAException("AK", "FWK_TBX_T_EMP_UPDATE_CONFIRM",    null,
                OAException.CONFIRMATION, null);
                pageContext.putDialogMessage(confirmMessage);
        }got below Confirmation
    Confirmation
    Employee &EMP_NAME with the number &EMP_NUMBER has been created.
    Employee (&EMP_NAME) has been updated.
    Tried below approach also calling the message before super class
        public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
            OAApplicationModule am = pageContext.getApplicationModule(webBean);
            if (pageContext.getParameter("Test") != null)
                OAException confirmMessage = new OAException("AK", "FWK_TBX_T_EMP_UPDATE_CONFIRM",    null,
                OAException.CONFIRMATION, null);
                pageContext.putDialogMessage(confirmMessage);
          super.processFormRequest(pageContext, webBean);
        }got below Confirmation
    Confirmation
    Employee (&EMP_NAME) has been updated.
    Employee &EMP_NAME with the number &EMP_NUMBER has been created.
    My requirement is to print only the message which I have kept in Extended controller i.e. Update message
    Regards,
    chaitanya

  • Decision Pop Up: buttons with custom message

    Hi Experts,
    I have a requirement to display buttons with custom message on it for a decision pop up instead of 'Yes' or 'No'. Please guide me how do I do it?
    Thanks for your help.
    Regards,
    Surekha.

    Hi,
    if you want to do this, you first have to Create a new Context Node e.g. u2018DATASTORAGEu2019 in your Viewwith only a Dummy value attribute to store the custom buttons and catch which button was clicked.
    Then you have to call the popup in the Event Handler. Here is some sample code from a project I used to display a popup with buttons Yes and Cancel, but instead of these Yes and Cancel, you can put any custom name of the button (in lv_s1 and lv_s2).
    Put combination of Buttons (Yes - Cancel) in global table *****
              ls_btn_comb-name  = '99'.
              lv_s1 = cl_bsp_runtime=>if_bsp_runtime~get_otr_text( 'CRM_BSP_WD_TOOLS/BTN_YES' ).
                CONDENSE lv_s1 NO-GAPS.
              lv_s2 = cl_bsp_runtime=>if_bsp_runtime~get_otr_text( 'CRM_BSP_WD_TOOLS/BTN_CANCEL' ).
                CONDENSE lv_s2 NO-GAPS.
                CONCATENATE lv_s1 ',' lv_s2 INTO ls_btn_comb-value.
                APPEND ls_btn_comb TO GT_BTN_COMB.
    Put actual buttons in global table on level of Context Node 'DATASTORAGE' *****
                ls_buttons-id = 'btnYes'.
                ls_buttons-text = 'Yes'.
                ls_buttons-on_click = 'YES'.
                APPEND ls_buttons TO ztyped_context->datastorage->gt_buttons_custom.
                ls_buttons-id = 'btnCancel'.
                ls_buttons-text = 'Cancel'.
                ls_buttons-on_click = 'CANCEL'.
                ls_buttons-icon_src = '/SAP/BC/BSP/SAP/thtmlb_styles/sap_skins/default/images/cancel.gif'.
                APPEND ls_buttons TO ztyped_context->datastorage->gt_buttons_custom.
    Call Confirmation Popup *****
                  IF confirm_popup IS NOT BOUND.
                    lv_title = ls_item_dated_entry-ITEM_NO.
                    lv_text =  'Exam date has already passed. Do you want to override?' .
                      CALL METHOD comp_controller->window_manager->create_popup_2_confirm
                        EXPORTING
                          iv_title = lv_title
                          iv_text = lv_text
                          iv_btncombination = '99'
                          iv_custombuttons = ztyped_context->datastorage->gt_buttons_custom
                        RECEIVING
                          rv_result = confirm_popup.
                      CONFIRM_POPUP->SET_ON_CLOSE_EVENT( iv_event_name = 'CONFIRM_POPUP_CLOSED'
                                                         iv_view = me ).
                      CONFIRM_POPUP->OPEN( ).
                  ENDIF.
    Then the ON_CLOSE event, you can use the "standard" coding in case of decision popup.
    Hope this helps.
    Kind regards,
    Carl

  • Idoc ORDERS05 with Custom Message Type

    We want to use a Z message type for idoc type ORDERS05 to be able to separate a particular group of partners from other partners using ORDERS/ORDERS05.
    The goal with our Z message type is to use the standard function IDOC_OUTPUT_ORDERS. The only problem I see is that this function checks the message type in form READ_SERVICE_PACKAGE. It would ignore this code since my message type is a Z and it's checking for message type ORDERS. 
    I was thinking of using a Z wrap-around function to perform the same code in form READ_SERVICE_PACKAGE if the message type is my Z message type.
    I want to avoid creating a Z copy of IDOC_OUTPUT_ORDERS and all if the includes!!!
    Any suggestions?

    Hello Bruce,
    The function module is associated with the process code.
    Why do you need a new message type?
    Regards,
    Samir.

  • Is there a way to show Custom message in Outlook Mail read Inspector Window same as When a File is opened in Protected View.

    Is there a way to show Custom message in Outlook Mail read Inspector Window same as When a File is opened in Protected View.
    If we open a Document from Untrusted location,the file is opened in Protected mode and a Red Message bar is shown below the ribbon for Excel,Word apps.
    Can we show this type of similar message bar with custom Message in Outlook or any other Office App.

    Are you displaying an MSG file? Keep in mind that Outlook creates a temporary copy in one of Outlook folders, so strictly speaking your are not looking at a file.
    Dmitry Streblechenko (MVP)
    http://www.dimastr.com/redemption
    Redemption - what the Outlook
    Object Model should have been
    Version 5.5 is now available!

  • DISPLAY ONLY CUSTOM MESSAGE WITH SRW.MESSAGE

    Hi.I created a report with Report Builder 9i.I also created two form parameters of type date.I put inside the validation trigger in the property inspector the following plsql code.
    function FROM_DATEValidTrigger return boolean is
    v_date VARCHAR2(12);
    date1 date;
    begin
    v_date := :from_date;
    date1:=TO_DATE(v_date, 'DD/MM/YYYY');
    return (TRUE);
    EXCEPTION
    WHEN OTHERS THEN
    SRW.MESSAGE(546,'My Message');
    return (FALSE);
    end;
    This code works fine.Supose the user input wrong data for example 29/02/2003 displays an alert message
    with my custom message.But after this displays an another message from the Report Builder like this:
    Rep-0546:Invalid parameter input.
    My question is .Is it possible display only my custom message with the SRW.MESSAGE built in procedure?
    Thanks in advance Panagiotis.

    Hi,
    I am using this function in my Validation process to display Error when user gives null input
    function DEPT_IDValidTrigger return boolean is
    begin
         -- Check for Null Value here
         if(:DEPT_ID is null) then
         raise SRW.NULL_ARGUMENTS;
         else
    return true;
    end if;
         Exception
              -- Exception For Null Value
    when SRW.NULL_ARGUMENTS then
         srw.message(100, 'Please Enter Dept ID');
    raise srw.program_abort;
    end function ___ ;
    Function is correct but the error message i am getting at the client side is as follows ::
    "*MSG-00100: Please enter Dept IDREP-1419: 'dept_idvalidtrigger': PL/SQL program aborted.* "
    It seems it is adding some system level error.
    but i want only my custom message to be displayed on the client side ::
    *"Please Enter Dept ID"*
    Is this Possible in Oracle 6i.

  • ZHRMD_A Custome message type issue with custom segments.

    Hi Experts,
    We have implemented ALE in HR system, we have all other ALE using HRMD_A and we have jobs scheduled for HRMD_A message type. We dont want this job should trigger our model and distribute the data. So we have reduced the HRMD_A messae type to ZHRMD_A for basic type HRMD_A06. Every thing fine. After upgrade of SAP FROM ECC6.O to EHP4, PFAL is not creating IDOC segements for custom segments Z*. for example Z1P0002....ETC, though there is personal data for PERNR.
    Please guid if you have come across such situation and solution.
    Thanks & Regards.
    Venkat.

    Hi Venkat,
    In the same way i too have one situation like...have different model view with same message types( and same extension type) for various countries from one sender system.
    Should i create reduced message type for each model view?
    Or can i use same message type HRMD_A for various model views?
    If i can use same message type and same extension type for various model views is there any restriction we need to write in USER EXIT  EXIT_SAPLRHA0_004?
    Regards,
    Lava.

  • Custom reports do not run with error message: Routine FDPREP cannot read ..

    Hi
    Can anybody help me with this issue pls?
    The dev system is cloned from production a few days ago. After running the post clone procedure, the dev is working fine except when we are trying to run custom reports, it errorred out with error message - Routine FDPREP cannot read the file /fmis/11.5.0/reports/US/POXPRPO1.rep. I have checked the env files, and they seem ok. $CUSTOM_TOP is set to the correct value. Other standard Oracle reports are running properly. The custom report file extension is in low case (.rdf). I've even tried to compile the report manually by using rwcon60.sh, the rep file was created under that folder but concurrent manager is still giving the same error message. So I am suspecting whther it is the path issue, as from the error message we can see up there, it is not showing the absolute path. Can anyone pls shed some lights on this for me?
    Thanks!
    Liang

    Hi hsawwan,
    Echo $FMIS_TOP(Custom Top) returns /global/app/fdev/home/fdevapp/findevappl/fmis/11.5.0, which is the correct path.
    Interesting thing is I checked the custom forms and they are working properly , our current configuration is form server and web server are sitting on one node, and CM, admin and database are sitting on the other node. So it seems it is the CM node settings caused the problem. However, I've just compared the APPSORA.env, customfindev_XXXXXX.env $FMIS_TOP (Custom Top) on the two nodes, and nothing seems out of ordinary.
    Thanks,
    Liang

  • Itegration with Websphere Message Broker and Customer Master IDOC

    Hello All. I am new to this forum. I have a couple of questions.
    What I am trying to do: I have to interface to SAP with Websphere Message Broker which has inbuilt nodes to interface with SAP using BAPI or ALE to send Customer Master Record (create/update/delete)
    The questions I have:
    1/ Has anyone done this? What did you use BAPI or ALE?
    2/ When a Customer Master IDOC is sent to SAP, if successful, a return code is sent back by SAP. This indicates that SAP has received the IDOC successfully. However, our requirement is that we have to know whether the IDOC was successfully posted within SAP. I am of the opinion that this is manual task within SAP and it should not be the function of the middleware layer as its responsibility is only to successfully deliver the IDOC's. I would welcome opinions on this issue. Please let me know If there is a way to determine if the IDOC has been successfully posted in SAP.
    3/ Is there anywhere where I can get an XML representation of the Customer Master Record. I want to see the structure and the available fields. How can I get this info from SAP?
    Thank you

    Hi;
    Similar issue has been answered at -Steven Chan blog*
    From blog:
    Hello, RM,
    I have not seen any Oracle-produced documentation along those lines. I don't think there are any Oracle teams that are investing in producing documentation for IBM WebSphere.
    I would suggest contacting IBM to see whether they have produced any WebSphere-specific documentation.
    Regards,
    Steven
    Referance:
    http://blogs.oracle.com/stevenChan/entry/ebusiness_suite_release_1211_now_available
    Ps: You can rise SR for your issue also
    Regard
    Helios

  • Raising Customer Messages with SAP OSS on BCS issues

    Hi guys,
    I'd be keen to know everyone's opinion on raising customer messages with SAP OSS, in particular on BCS.
    Often I find that my colleagues are hesitant to raise a note with SAP because they think it either takes too long or they don't get a satisfactory answer.
    Whereas as soon as I see something fishy, that I cannot explain I will check my logic once more, check on SDN, check existing OSS notes, then raise a Customer Message immediately (while I continue to investigate/test).
    This is partly due to my experience that half the time I feel like a guinea pig in BCS, perhaps because BCS is not as widespread as other modules and i may be the first to try something so may be first to experience the problem.
    The first line response (often from Shanghai) usually tries to send the message straight back but I find with a little persistence, clear (and irrefutable) documentation , you soon get through to the experts in Germany (or is it Czech Rep?) who actually understand the issue.
    The client has paid a lot of money for the service through their SAP licensing and maintenance fees, so I have no qualms about 'reporting a product error' when I see one.
    Also, I find a lot of BCS documentation is out of date, not updated as new releases/EHPs come out, eg I recently relied on the contents of OSS note 936590, which was wrong for BCS 604. So I raised a customer message and requested that they update it, which has now been done - this is too late for me but might help someone else.
    Raising a Customer Message with OSS is not an excuse to avoid doing your job, but where there is a genuine error in BCS, I encourage others to raise OSS notes and persis with them until a satisfatcory response is received.

    Concur with TheScotsman.
    The situation is almost the same: the 1st line support (India) very often beat back the costomer message without going deep into the problem. However, if we persist and provide additional details (or when the message was made very professionally and bypassed the 1st line) the message was rerouted to consultants from Czeck Rep.). In this case the progress was significant. Since the client do not provide access to the system, in a couple of times we made a remote session: the support guy gave directions what to do in the system and where to look for some details. The problems were solved in a half an hour.

  • Sharepoint 2010, InfoPath 2010 with Custom Workflow. Error Message: InfoPath cannot submit the form. An error occured while form was submitted...

    I have created an InfoPath form that submits to a Sharepoint library with custom workflow attached. The workflow is initiated when the user submits the form. An email is sent to the supervisor who clicks the "Encoded Absolute URL" and approved
    the form via the emailed form. Then, based on certain criteria the form is either emailed to the VP or the workflow is complete. The VP is sent an email and clicks the "Encoded Absolute URL" and sumbits the form via the emailed form. This is
    how I would like it to work. The reality is, the form submits and is emailed to the supervisor and the supervisor is able to approve but when the form is sumbitted I get an error. The error is "InfoPath cannot submit the form. An error occured while
    this form was being submitted. The form cannot be submitted to the following location: <URL> The file <URL> is checked out for editing by <me> The operation completed successfully." The operation did not complete successfully and it
    is not checked out. I have read in previous posts that the file is locked. Since I am in the testing faze of the project there is no one else using the form. I have waited 24 hours and the lock has not been released. Please help!!! My deadline is growing short.

    I ran into your post while having a similar issue.  I don't have a 'full' fix for you, but I noticed at least in our case if you made sure you opened the Infopath form through the browser instead of the client Infopath program (use the drop-down menu
    and open in browser) the error doesn't occur.  Hope that helps some....

  • Help with custom page size support for non standard paper

    Firstly, we appreciate any support you may be able to provide, we have already thrown considerable effort at this and it has been very time consuming and frustrating.
    To support a number of business functions need to print to (non standard) continuous and mulitpart paper on a dot matrix printer. The (test) Mac is a 10.4.11 G4 laptop, the printer is an Oki Microline 520 (9 pin 80 column, IBM Proprinter, Microline or Epson FX personalities with a parallel interface) which has been networked via a HP JetDirext Ex Plus print server. That part appears to be operating correctly.
    We have tried a number of drivers / printer personalities with varying levels of success:
    ESP / EPSON 9-Pin Series CUPS v1.1 / Epson FX personality
    ESP / OKIDATA 9-Pin Series CUPS v1.1 / Oki Microline personality
    Ghostscript / epsonc / Epson Dot Matrix Foomatic PPD / Epson FX personality
    Ghostscript / ibmpro / IBM ProPrinterII Foomatic PPD / IBM Proprinter personality
    Ghostscript / okiibm / Oki Microline IBM compatible 9 pin Foomatic PPD / IBM Proprinter personality
    There were no appropriate drivers in Gutenprint (5.2.3 version) The most successful is the okiibm / Oki Microline IBM compatible 9 pin settings, it can print A4 and honors the Printer Features Resolution settings in the print dialogue.
    Q1: Should we see anything in the Printer Info / Installable Option, it is always blank ?
    The issue is custom page sizes, we can manage / add Custom Pages Sizes via the Page Setup / Paper Size interface and they draw on the screen OK but they do not work at the printer (various issue at the printer such error messages, junk printing and wrong orientation):
    Q2: Are we heading in the right direction or is there a better way to handle this ?
    Q3: Would 10.5 solve all our problems, are the print drivers any better ?
    Q4: Is this the correct way to specify custom page sizes, is this all we need to do ?
    Q5: Is so how do we get the driver to respect the size, do we need another filter or something ?
    Q6: Is it possible to add (by hand) custom page sizes to the ESP drivers or Foomatic PPD files so they they appear as a "standard" offering in the Page Setup / Paper Size interface ?
    Sorry for the long / complicated post and thanks in advance for any advice / assistance.

    Matt Broughton wrote:
    Testing on 10.5.7, Tried both Oki 9-Pin Series 1.3 / Microline personality (no joy) and Epson 9-Pin Series 1.3 (this is a much better driver than 1.1) / Epson FX personality but not much joy with custom page sizes,
    The Oki 9-pin Series 1.3 and the Epson 9-Pin Series 1.3 should produce the same results. The only difference in the PPDs is the printer model name.
    After some testing, I find that the output is not the same despite the two PPDs being virtually identical. I did spot in the CUPS source code for the rastertoepson filter that there is some model name matching for Epson printers. Thus I can see where the output using the Oki 9-pin PPD could be different than when using the Epson 9-pin PPD.
    but again once I imbedded the page size into the ppd some (but frustrating) luck. I can get it to respect the paper orientation and it prints well but I could not get the form length to work properly. At best over a print run of 7 labels it would creep up the label by about 0.1 inches / 2 mm.
    Just for the fun of it, I made some additions to the Epson 9-pin 1.3 PPD. All I can say is that I could print a job to file. I have no way to know what it would look like on paper.
    I did find that using a custom paper size did add some unwanted margins to the output bounding box. Putting the custom page size into the PPD seemed to get around that issue.
    I added the following lines to the Epson 9-pin PPD 1.3--
    <pre style="overflow: auto;font-size:small; font-family: Monaco, 'Courier New', Courier, monospace; color: #222; background: #ddd; padding: .3em .8em .3em .8em; font-size: 9px;">*PageSize Label1/Label1: "<</PageSize[288 107.8]/ImagingBBox null>>setpagedevice"
    *PageRegion Label1/Label1: "<<PageSize[288 107.8]/ImagingBBox null>>setpagedevice"
    *ImageableArea Label1/Label1: "0 0 288.00 107.80"
    *PaperDimension Label1/Label1: "288.00 107.80"</pre>
    This adds a paper size with the 4 inch (288pt) width and 1.5 inch (107.8pt) height. That represents the 1.4 inch label and the 0.1 inch gap between labels. I set 0pt margins except for the bottom where is set the 0.1 inch (7pt) gap as the bottom margin.
    The full diff in context is--
    <pre style="overflow: auto;font-size:small; font-family: Monaco, 'Courier New', Courier, monospace; color: #222; background: #ddd; padding: .3em .8em .3em .8em; font-size: 9px;">loki:~ matt$ diff -u /usr/share/cups/model/epson9.ppd ~/Desktop/epson9.ppd
    --- /usr/share/cups/model/epson9.ppd 2009-02-20 20:16:53.000000000 -0600
    +++ /Users/matt/Desktop/epson9.ppd 2009-06-06 20:37:06.000000000 -0500
    @@ -42,6 +42,7 @@
    *PageSize Legal/US Legal: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
    *PageSize A4/A4: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
    *PageSize FanFoldUS/US Fanfold: "<</PageSize[1071 792]/ImagingBBox null>>setpagedevice"
    +*PageSize Label1/Label1: "<</PageSize[288 107.8]/ImagingBBox null>>setpagedevice"
    *CloseUI: *PageSize
    *OpenUI *PageRegion/Media Size: PickOne
    *OrderDependency: 10 AnySetup *PageRegion
    @@ -50,17 +51,20 @@
    *PageRegion Legal/US Legal: "<</PageSize[612 1008]/ImagingBBox null>>setpagedevice"
    *PageRegion A4/A4: "<</PageSize[595 842]/ImagingBBox null>>setpagedevice"
    *PageRegion FanFoldUS/US Fanfold: "<</PageSize[1071 792]/ImagingBBox null>>setpagedevice"
    +*PageRegion Label1/Label1: "<<PageSize[288 107.8]/ImagingBBox null>>setpagedevice"
    *CloseUI: *PageRegion
    *DefaultImageableArea: Letter
    *ImageableArea Letter/US Letter: "18.00 18.00 594.00 774.00"
    *ImageableArea Legal/US Legal: "18.00 18.00 594.00 990.00"
    *ImageableArea A4/A4: "18.00 18.00 577.00 824.00"
    *ImageableArea FanFoldUS/US Fanfold: "18.00 18.00 1053.00 774.00"
    +*ImageableArea Label1/Label1: "0 0 288.00 107.80"
    *DefaultPaperDimension: Letter
    *PaperDimension Letter/US Letter: "612.00 792.00"
    *PaperDimension Legal/US Legal: "612.00 1008.00"
    *PaperDimension A4/A4: "595.00 842.00"
    *PaperDimension FanFoldUS/US Fanfold: "1071.00 792.00"
    +*PaperDimension Label1/Label1: "288.00 107.80"
    *MaxMediaWidth: "1080.00"
    *MaxMediaHeight: "86400.00"
    *HWMargins: 18.00 18.00 18.00 18.00</pre>
    I don't know if that will help you or not. Let us know what sort of progress you make.
    Matt

  • Bugs with Custom Status not getting displayed on Product Backlog and Sprint Backlog

    We added a couple of new states to the Work Item Type of Bug. We want all the bugs to show up in the Sprint Backlog items.
    In order to do this we added the custom states in Common Process Configuration file using witadmin and also in the Workflow tab of "Bug" using TFS Power Tools.
    The excerpts from the Common Configuration file for this is: 
    <BugWorkItems singularName="Bug" pluralName="Bugs" category="Microsoft.BugCategory">
       <States>
          <State value="New" type="Proposed"/>
          <State value="Open" type="Proposed"/>
          <State value="Deferred" type="Proposed"/>
          <State value="Approved" type="Proposed"/>
          <State value="Committed" type="InProgress"/>
          <State value="Ready
    For QA" type="InProgress"/>
          <State value="Devlopment
    in Progress" type="InProgress"/>
          <State value="Done" type="Complete"/>
          <State value="Closed" type="Complete"/>
          <State value="Reopen" type="Complete"/>
          <State value="Fixed" type="Complete"/>
       </States>
    </BugWorkItems>
    I assumed that this should have been sufficient to display all the Bug Work Items with these custom states.
    So, I created a new bug that had the state of "New" in the system. It was visible in the Product Backlog.
    When I changed the same work item's state from New to
    Open and save, the bug is removed from the backlog with this message.
    [Title] was removed because of your recent changes.
    The following changes removed the item:
    State was set to: Open
    Even after refreshing the page, the same work item does not appear in the product backlog page or the Sprint Backlog page.
    Any idea why this could happen?
    TSF Version : TFS 2013
    The Error I am getting on the Settings Page is :
    Page -> Control Panel > CollectionName > FabrikamFiber > FabrikamFiber Team
    Overview Tab > Settings Page
    Under BUGS sections:
    TF400917: The Current Configuration is not valid for this feature. This Feature cannot be used until you correct the configuration.

    Hi Augustya,
    I'd like to know the version of TFS you're using, and how did you customize the Common Process Configuration file for display the bugs on backlog page.
    You can add bugs or other work item types to appear in either the task board or the product backlog, but not both. I have a try and it wroks for me, you can follow the links below to add bugs to the backlog pages and check if it works.
    https://msdn.microsoft.com/en-us/library/jj920163.aspx?f=255&MSPPError=-2147217396
    http://blogs.msdn.com/b/visualstudioalm/archive/2013/02/12/add-bugs-to-the-task-board-or-backlog-pages.aspx
    Best regards,

  • Adding custom message on the login page

    I have done the following to try and get a custom message to display on the oracle login page:
    1:
    In the System Administrator Responsibility, went into the System Profile Options and searched for "Local Login Mask" The default value was 32, I set it to 96. This was done because 64 is the number to display a "Corporate Policy Message" on the login page (32+64 = 96).
    2:
    Switched over to the Application Developer responsibility, and went to Application->Messages. Here I did a search for "FND_SSO_SARBANES_OXLEY_TEXT". A result came back with current message text: "Corporate Policy Message". I changed this to a test message and hit save.
    3
    Still in Application Developer responsibility, I went to Other->Requests->Run and chose "Generate Messages", for parameters I chose:
    Language: US
    Application: Application Object Library
    Mode: DB_TO_RUNTIME
    while leaving the others blank. I submitted this request and it completed normal.
    4
    I logged out of applications, closed my browser and cleared my cache. I went to login into the apps and at the login page... it does display "Corporate Policy Message" but it never updated it to my custom one.
    Question: Do I need to restart the HTTP server or something to see the updated results? I am confused why it will display "Corporate Policy Message" but the value for FND_SSO_SARBANES_OXLEY_TEXT is clearly changed. Even when you go back into it and look.
    The Generate Messages conc prog is a spawned process so I cant find out what its doing.
    Any help would be loved!
    OH PS
    I know I started a previous thread on a similar topic, but the method has changed completely and I think it merits its own thread. My apologies if it shouldn't have been.

    Hi;
    What is your EBS and OS?Please check below thread
    password-Lock User when enter password in wrong 3 times
    Re: Lock User when enter password in wrong 3 times
    Regard
    Helios

  • Yosemite UPGRADE, Apps that I try to update fail with the message that connection to App Store failed, then i get a message that the updates were purchased by another user ID or purchase cancelled. All five updates have this error

    AFTER I UPGRADED TO YOSEMITE, I TRIED TO UPDATE THE FIVE APPS THAT I WAS BEING NOTIFIED NEEDED UPGRADING (IMOVIE, IPHOTO ETC). I TRIED TO UPDATE VIA THE APP STORE BUT GOT A MESSAGE "UPGRADE NOT POSSIBLE WITH THIS APPLE ID BECAUSE IT WAS EITHER BOUGHT BY A DIFFERENT USER OR THE ITEM WAS REFUNDED OR CANCELLED." I DO NOT HAVE A PROBLEM SIGNING ON TO ICLOUD OR ANY OF THE OTHER SERVICES USING MY APPLE ID, I ALSO CHANGED THE PASSWORD AT THE PROMPTING. SO I'M NOT SURE WHAT IT MEANS. WHAT CAN I DO TO UPDATE MY APPLICATIONS?

    Please test after each of the following steps that you haven't already tried. Stop when the problem is resolved. Back up all data before making any changes. Keep in mind that no one here represents Apple or can help with customer-service issues.
    Step 1
    A purchased app can only be updated by signing in to the App Store with the same Apple ID that was originally used to buy it. There's no way around that limitation, which also applies to free apps. If you can't sign in with the buyer's ID, delete the app and reinstall it. You'll have to pay for it again, if applicable.
    Step 2
    If you get the alert when trying to update a bundled iLife app, select the Purchases page in the App Store and locate the app in your purchase history. If there's a button marked ACCEPT on the right, click it.
    If you have a used Mac, the bundled apps were linked to the original owner's Apple ID and can't be transferred to you. Reportedly, customer service has issued redemption codes to some second owners who asked, but it's not guaranteed.
    Step 3
    If you're trying to update iLife or iWork apps that were installed from a purchased DVD, or if you have a refurbished Mac bought directly from Apple, contact App Store customer service for a redemption code. You may be asked for the part number of the DVD.
    Step 4
    From the App Store menu bar, select
              Store ▹ View My Account
    Enter your Apple ID password at the prompt. At the lower right corner of the window that opens, click the Reset button. Close the window.
    Step 5
    According to a report, the error can result from changing the language setting of your Apple ID account. I can't confirm.

Maybe you are looking for