Creation of new message in OBA5

Dear Experts
I got one warning message in F-47 no is F5371. but, I want to make that warning messgae as a error message in OBA5. but , F5 message class, 371 message is not availble . there is no option to create new messge by selecting the Error option.
how to create or insert new  error message No 371 under F5 message class which I got at F-47 transaction as a warning message
can any one help me in this regard
Tulasi

Hi,
Technically, you can use OBMSG transaction. However, keep in mind that the unability to change the control in OBA5 means that it's about a core process that SAP does not recommend to change.
Regards,
Eli

Similar Messages

  • Creation of  New Message Type for Extended IDoc

    Dear Friends,
    I want to create New Message Type for MATMAS and want to Active Change Pointers accordingly. Thru this Message Type how can I able to use Extended IDoc which I have created for Basic Idoc Type MATMAS05.
    I am Sending Data from SAP to XI ; Any one can help me in this How can I create the Message Type with the IDoc Extn .
    for Change Pointers.
    Warm Regards,
    Naveen Mutyapu.

    Hi naveen mutyapu,
    see these links
    http://www.netweaverguru.com/EDI/HTML/IDocBook.htm#_Toc8400404
    http://help.sap.com/saphelp_erp2005/helpdata/en/0b/2a6620507d11d18ee90000e8366fc2/frameset.htm
    http://www.sappoint.com/presentation.html
    http://www.allsaplinks.com/idoc_search.html
    http://www.sapgenie.com/sapedi/idoc_abap.htm
    http://www.erpgenie.com/sapedi/idoc_abap.htm
    http://www.allinterview.com/rss/interview-questions/new/SAP-ALE-IDocs.xml
    happy learning.
    thanks
    karthik

  • Creation of New Message by Customer - No Long Text

    I am creating test messages as an end-user in our Service Desk. After I send the message and review it, the long text has disappeared. Has anyone else experienced this?
    Thanks.
    Jackie

    Hi Jackie,
    Is your Basis part of the message is getting created.
    Are you using the standard transaction type.
    Check the Text in the Transaction data ---Overview tab
    Both short text and long text should be present with other system details.
    Regards
    Prakhar

  • How to approve creation of new identities

    Hi,
    I have created an approval process for the creation of new identities based on the how-to-guide for role approvals.
    My idea is to determine all approvers in a script which gets the entry reference as parameter from ToIdentityStore pass.
    However, for some reason, the entry reference is empty.
    Any ideas what am I doing wrong?
    Here is the script:
    function nsn_getNSNApproversFromCompanyAddress(Par){
    var entryReference = Par;
    uErrMsg(1, "entry reference: " + entryReference);
    var idStore = uGetIDStore();
    var companyAddress = uIS_GetValue(entryReference, idStore, "MXREF_MX_COMPANY_ADDRESS");
    uErrMsg(1, "company address: " + companyAddress);
    var nsnApprovers = uIS_nGetValues(companyAddress, "MX_APPROVERS");
    if (nsnApprovers.indexOf("!ERROR")>= 0)
         uErrMsg(1, "ERROR: " + nsnApprovers);
    return nsnApprovers;
    uErrMsg(1, "entry reference: " + entryReference) does not print out any value for entry reference
    And here is the destination tab content of the ToIdentityStorePass:
    MSKEYVALUE     %MSKEYVALUE%
    MX_APPROVERS     $FUNCTION.nsn_getNSNApproversFromCompanyAddress(%MX_ENTRY_REFERENCE%)$$
    Thanks in advance for your help,
    Elmar

    Hm, from what the error output message tells me it looks like MX_ENTRY_REFERENCE does not contain ANY value.
    uErrMsg(1, "entry reference: " + entryReference); generates this output: 'entry reference: '
    May this be due to the fact that this is a creation process and the identity to be created is not yet stored anywhere? If so, what would be the correct way to implement an approval process for identity creation?
    In the destination tab, MX_PENDING_VALUE is defined, as in the how-to-guide manager approval example.
    Thanks & Br,
    Elmar

  • Creation of new internal delivery channel using AQ

    Hi,
    I wanted to route one of Trading partner data to a different queue.(no want to use existing queues - IP_IN /IP_OUT queue).
    This needs to create a new delivery channel using AQ in B2B.
    I have gone thru the steps & entered all entries, but I am not able to find any queues created in B2B schema.
    Do I need to create a queue using PL/SL in B2B to make it available as internal delivery channel or this setup itself will create a queue in B2B?
    PFA the entirs:
    for transport parameters
    - transport server (B2B server IP)
    - Protocol as AQ
    -URI - b2b.<uri_name> (name of Queue, wanted to create)
    - Hostname
    - Port
    -SID - b2b
    -consumer - b2buser
    - receiptient - null
    -Polling interval - 6000
    Transport server details:
    Host name - (IP)
    IP - Host IP
    username -
    Pswd - for B2B schema
    Any pointers will be a great help.
    Regards,
    MS

    As mentioned by TH in the above post, first thing is to create the data type that is used for messages - IP_MESSAGE_TYPE. This data type will already be present in the B2B database and could be reused.
    For a new data type you could do the following.
    ==============================================================
    Create a new data type using the following
    ==============================================================
    create type IP_MSG_TYPE as OBJECT (
         MSG_ID VARCHAR2(128),
         INREPLYTO_MSG_ID VARCHAR2(128),
         FROM_PARTY VARCHAR2(512),
         TO_PARTY VARCHAR2(512),
         ACTION_NAME VARCHAR2(512),
         DOCTYPE_NAME VARCHAR2(512),
         DOCTYPE_REVISION VARCHAR2(512),
         MSG_TYPE INT,
         PAYLOAD CLOB,
         ATTACHMENT BLOB
    Once you have created a new Data type ( or are reusing the existing data type), you need to create Queue Table that will hold the Outbound and Inbound message queues. The existing Queue table is "IP_QTAB" which can again be reused.
    For new Queue table you could do the following
    ==============================================================
    Create a new Queue Table using the following
    ==============================================================
    execute dbms_aqadm.create_queue_table (     queue_table => 'MY_QTAB',
                             queue_payload_type => 'IP_MSG_TYPE',
                             multiple_consumers => FALSE);
    If you need to reuse the datatype change the queue_payload_type to 'IP_MESSAGE_TYPE'.
    Once we have the Queue Table that will hold the queues, we need to add and start the queues that are to be used for the inbound and outbound messages.
    ==============================================================
    Create the new Queues into the Queue Table using the following
    ==============================================================
    execute dbms_aqadm.create_queue (queue_name => 'B2B.MY_OUT_QUEUE', queue_table => 'B2B.MY_QTAB');
    execute dbms_aqadm.create_queue (queue_name => 'B2B.MY_IN_QUEUE', queue_table => 'B2B.MY_QTAB');
    execute dbms_aqadm.start_queue(queue_name => 'B2B.MY_OUT_QUEUE', dequeue => TRUE, enqueue => TRUE);
    execute dbms_aqadm.start_queue(queue_name => 'B2B.MY_IN_QUEUE', dequeue => TRUE, enqueue => TRUE);
    If you are reusing the queue table IP_QTAB for creation of new queues, then reference that for the queue_table in above commands.
    You need to reference the queue_name eg. B2B.My_OUT_QUEUE in the B2B UI screen.
    Hope this helps.
    AKT

  • Moved: Creation of new iViews not possible because templates missing

    Hello,
    sorry I moved this issue to "Portal Content Development"
    Creation of new iViews not possible because templates missing
    Regards
    Alex
    Message was edited by:
            Alexander Lepka

    Alex,
    I'd be curious to know what SAP says.  We have the same problem.  Not sure how/if we broke it, but we can no longer create iviews using the wizard.  I opened an OSS msg a while ago, but did not get much assistance. 
    We have recently upgraded to 2004s and it did not resolve the issue as I hoped it would. 
    If SAP provides a solution for you, please post it. 
    Thanks,
    Shelly

  • Selecting account when composing new message

    With Mail, is it possible to automatically select the "from" address based upon entering a "to" address? I have a bad habit of composing a new message and sending it without thinking about which account I'm actually sending it from. What I'd like to do is be able to, for instance, enter my friend's name when I'm composing a new message, and based on that, Mail would automatically switch the sending account to my personal email account. When emailing my boss, automatically use my work account, etc.

    Hi jp3,
    Unfortunately Mail does not support what you're looking for. If you respond to an email it'll automatically select the appropriate account but not on the creation of a new message. The only "setting" for that is in "composing" where you can choose a default address (or) the account of the selected mailbox. If you go the second option, just make sure you're viewing the appropriate Inbox.

  • Mail wont let me open new message window

    Hello,
    So lately I have noticed a bug, I believe, in mail. At random times when I click on the new message icon nothing happens. However, if I close mail completely and reopen it, the new message window shows up. Any idea why this is happening? Thanks for the help
    Derek Osterloh

    SUSSED THE NEW MAIL MESSAGE PROBLEM!!!
    I am delighted to say that I resolved this one myself... Its on an IMAC 20", which I had also hooked up to a second display (although not switched on). What happened is that I turned to system Preferences, went to Displays, and changed the settings in the arrangement tab. This I thought would help, as perhaps the New Message window had been created, but was displayed somewhere else I could not see, and Guess what, there they all were! They had been elongated after the update to Leopard, and subsequently, were all sat there on the 'other' display.
    I hope his helps with others with the same problem. (thats also why I did not have the problem on the laptop)
    Good luck to all.

  • How do I set an e-mail account as default for new messages?

    I have two different e-mail accounts set up on my iphone. I want to be able to use the e-mail view that includes messages from all accounts/inboxes. When I am in that view and create a new message, my iphone will automatically select one of my accounts. It is unfortunately not the one I most often want to use. I don't find a way to change that setting - but I am sure it is possible! How do I do it... Thanks!

    No I don't have that option. I can see the corresponding option for calendars so I understand where it should be - but it isn't there. It's as if the account set up by mobileiron is disregarded and the system only thinks I have one account. But still - the mobileiron account is listed right there....
    If there isn't a simple solution that I had missed I guess this looks to be a bug, right? How would I report such....?
    Thanks
    Joakim

  • CUP - Issue regarding creation of New SAP ID in CUP.

    System :  SAP GRC 5.3 SP 12..
    We have requirement where in we need to design a workflow for creation of New SAP ID.
    The Naming convention followed for SAP ID is FIRST LETTER of FIRST NAME and LAST NAME with maximum 8 characters.
    For Eg
    JOHN SMITH would have SAP ID as JSMITH
    JERRY SMITH would  have SAP ID as  JSMITH01
    The requirement here is when user fill the REQUEST FORM for NEW User ID there is field where in the requestor need to put the desired SAP ID,
    Can a validation be set OR Logic be written so that user can put the SAP ID as per the naming convention..?
    Also , any other solution as to how the situtation can be handled in CUP...
    Regards.
    Ajit

    Hi Ajit,
    Yes, you can maintain the user ID in the Active Directory. User id will be now auto populated in the request form, from Active Directory when  we data Source is LDAP -Actice directory. So when user login to end user form to create a request, It's all information( user details + manager details ) will fetched from Active Directory.
    It is not possible to change userid in later stage of approval in the request.
    You can have security as final stage and guide them to create user manually as per naming convention.
    Make auto provisioning OFF in CUP
    Kind Regards,
    Srinivasan

  • Creation of new domains in weblogic

    Hi All,
    I need to create two new domain in weblogic.
    It should be start & stop from the admin console.
    How to do that. What is node manager?
    Just assigning the managed server with machine will do the start and stop from admin console. ?

    creation of new domain in weblogic

  • Yahoo Email App stopped notifying me of new messages.

    Hey guys. I've been noticing an issue with the yahoo mail app on my phone and I have no idea how to fix it. I used to get notifications whenever I had new messages just fine and now I'm not getting them at all. I have to open the app itself to check for new emails. How annoying is that? I don't know if it's a yahoo issue but any help would be very much appreciated. I haven't touched any of my settings in ages so there is no reason for them to not be working. I have notifications turned on and set to alert style and yet not a thing appears, not even in the drop down notification center. I don't know what is going on. Please help!
    Phone is an iphone4 still using ios6.1.3 (still refusing to update to os7 as long as I can since I have an older phone)
    Please let me know if more information is needed.

    Apparently all I needed to do was logout and log back in again because I did that and tested it and it worked. Huh. Well I'll be back if it starts acting up again.

  • Entourage (Exchange) Account Problem - New messages going to wrong Inbox

    In Entourage, there are two sets of Inboxes (folders): one for the Exchange account and the other for "Folders on My Computer"
    We desire new messages to deliver & stay in the Inbox for the Exchange account; however, recently new mail messages are delivered to the Inbox under "Folders on My Computer." How can I change this... manage which Inbox new mail messages go to for the Exchange account?

    Hi Peter,
    I'm marking the reply as answer as there has been no update for a couple of days.
    If you come back to find it doesn't work for you, please reply to us and unmark the answer.
    Best Regards,
    Steve Fan
    Forum Support
    Come back and mark the replies as answers if they help and unmark them if they provide no help.
    If you have any feedback on our support, please click
    here

  • How do I get rid of the auto signature "sent from my iPhone" when I create a new message?

    how do I get rid of the auto signature "sent from my iPhone" when I create a new message?

    Settings -> Mail -> Signature and edit it to whatever you'd like.

  • Mail.app not retrieving new messages from Exchange Server

    I used to use mail.app for my work email account, set up as Exchange IMAP. After upgrading to SL, I wanted to take advantage of the new exchange features, and set up an exchange account.
    But now, multiple times a day, the new exchange account will just sit there, trying to fetch new mail (the spinning wheel thing in the left side menu bar). I've gone hours w/o noticing the problem, only realizing this when I check my iPhone and see dozens of new messages. Restarting fixes the problem.
    Anyone else having this issue?

    michellzappa,
    All of my e-mail providers have some sort of web based access for my accounts. They identify, segregate and prevent any message marked as bounce from being downloaded to my inbox. Is this what you are describing as redundant?
    Mail Scripts 2.7.10 by Andreas Amann, provides an excellent compilation of mail scripts.
    I would advise that you create a new post with the title. "Can I write an applescript to automatically clean out messages on server every hour?" in the AppleScript Forum.
    ;~)

Maybe you are looking for

  • How do I move all of my apps from one touch to another

    I just bought a new iPod touch and would like to move all of my Apps to the new touch - when I sync the new touch the apps download as if they are new apps.  I have a games that I'd like to transfer with history.

  • Reports Stuck in Running Status

    We are having a problem where reports are stuck in running status. When looking on the server, the reports stuck in running status taking up a "jobserverchild" process, and does not complete. Has anyone experienced this issue, and how we can resolve

  • Conversion Problem in Unit of measure 1PAC=100,000 EA

    Hi Experts, I am facing the problem in conversion of Unit of Measures. If some material has the conversion unit when we order to Vendor. The Unit of measure is EA, the Order unit is PAC. The conversion is 1PAC=100,000 EA But the System is allowing as

  • Display profiles missing

    All of my display profiles are gone...any idea how I can get these back? 15" MacBook Pro 1.83 GHz   Mac OS X (10.4.9)  

  • Where are the data from note notes saved in a backup

    Hi, making a backup saved all my data. But is I renamed the macbook the backup cannot re-create it. The backup where made either under snow leopard and MLion. Thus I do have to do this manually. So where can I find the saved data from the note notes