How to add an aoutput message to posted ERS document?

I have credit/debit memo created in ERS run (tr MRRL) and I need add manually one output type to be able and print the proper document.
Is it possible?
Kind regards,
Ewa

Thanks Jimmy, unfortunately it doesn't work on my Submit button (which is where I do want it).. Here's what I have on the standard Submit button.
----- form1.SF_P8.SF_print-submit.EmailSubmitButton::click - (JavaScript, client) ------------------
xfa.messageBox("Please ensure you also print a copy for your records", Warning, 1, 1);
this makes my button do nothing at all, not even submit. I think it's because there are 2 events associated with it, the invisible "submit" and the new warning. Any suggestions?
Harry

Similar Messages

  • How to add a related content for a particular document in UCM

    Hi All
    How to add a related content for a particular document in UCM. On which table it stores all the related document details. Can anyone suggest me a document which helps me to know how to add related contents for a document
    With thanks and regards
    Anoop

    I believe there is a PDF doc which comes with the component (it should be at your harddrive when you install it), which describes everything you will need.
    In a nutshell, there are two types of relationship: sibling - sibling, parent - child (there are some more nuances, but it follows the same logic).
    A relationship is created between two existing items (not sure, if you can also create a relationship for a new checked in item, but it would be just a usability). You select the type of relationship and the item - I believe depending on the relationship you may start from either item. The dialog to start is INFO (display metadata) or UPDATE (update metadata).
    When a relationship is created you may watch it also from either end (again INFO is the starting point).
    It is quite self-explanatory, so if you have the component installed you may just play around with it for a while and that is it.

  • How to add an error message to an Output Type.

    Hello SAPients,
    Using a User Exit I'm modifying the segments of an outbound IDoc. When certain conditions apply I trigger an exception 
    RAISE DATA_NOT_RELEVANT_FOR_SENDING.
    It's ok because the IDoc is not generated and the Output Type is set to "Incorrectly Processed" status.
    But, when the user clicks the "Processing Log" button there is no informatio of the error occurred. How can I add an error message to the Processing Log of the Output Type?
    Thanks in advance for your kind help.

    Hi,
    Try this statement..
          MESSAGE ID      sy-msgid << Your msg class
                  TYPE    sy-msgty << Your message type
                  NUMBER  sy-msgno << Your msg no.
                  WITH    sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4 << Other info
                  RAISING data_not_relevant_for_sending.
    Regards,
    Joy.

  • How to add an attachment to a  post.

    Have searched the forum for an answer, all responses seem to be related to attachments to mail. I have a query on pages I want to post and need to add an attachment to clarify my problem. How can this be done ?

    I posted the enquiry on the pages forum, so logically it's  a pages problem. I want to include a file as an attachment to a post. Whilst there is provision to add (insert) images, videos or a link there is none for a file. Pages is version 09, with latest upgrades. OS is OS X, V 10.9.2. Hope this clarifyies the post.

  • How to add smiley in message in 5233 model

    Can any one help me to add smiley in message in 5233 model

    The 5233 is an s60 phone, and s60 phones do not have smileys inbuilt (except for the upcoming N8). You would have to install A-SMS or FUNSMS from Ovi Store to get smileys.
    If you find my post helpful please click the green star on the left under the avatar. Thanks.

  • How to add OS X Messages app

    how to add yahoo messenger to OS X Messages app

    HI,
    I used to have Yahoo Messenger  as well as setting up the Yahoo Account in iChat 6 (and then updating the OS/App since to Messages 8 in Yosemite)
    I never used the Yahoo app to access mail from Yahoo.
    The version I have in Snow Leopard opens my Browser to login to web mail.
    As the Error messages said the Messaging side the app did do does not work in OS X 10.10.x
    It only lists setting the account up in Messages.
    In System Preferences > Internet Accounts enabling it there for Mail will add an Account to the Mail app.
    9:28 pm      Wednesday; April 22, 2015
    ​  iMac 2.5Ghz i5 2011 (Mavericks 10.9)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad

  • How to add an Alert Message

    Hi, what steps must I take to add an alert message that reminds the Adobe Reader end user to Print their form if they wish to keep a record of their form data.
    Also, where should such an alert appear, when and upon which event type?
    Harry

    Thanks Jimmy, unfortunately it doesn't work on my Submit button (which is where I do want it).. Here's what I have on the standard Submit button.
    ----- form1.SF_P8.SF_print-submit.EmailSubmitButton::click - (JavaScript, client) ------------------
    xfa.messageBox("Please ensure you also print a copy for your records", Warning, 1, 1);
    this makes my button do nothing at all, not even submit. I think it's because there are 2 events associated with it, the invisible "submit" and the new warning. Any suggestions?
    Harry

  • How to add the error message into Delivery Error Log (VL10A,VL10X)

    Hi,
    I have a to add my custom message into Delivery creation error log (VBFS, VBSS)
    This message should be shown in the Collective process log (VL10X, VL10A).
    Please give me the soln to solve this problem.
    I have searched in SDN, i didnt get the proper solution
    Thanks
    Shankar

    HI,
    Make use of the BADi "LE_SHP_DELIVERY_PROC"
    Use the method DELIVERY_FINAL_CHECK.
    Pass the error messages in table CT_FINCHDEL.
    Regards,
    Ankur Parab

  • How to add an error message to script?

    Hi, every one
    I got this script
    function paste in place to next master
    I want to add an error message to it, if there was no such thing as master B, C,D,E,F,G
    instead of system error.
    Teetan
    var
      myDialog = app.dialogs.add({name:"Copy Selected item(s) to chosen Master",canCancel:true}),
      mStringList = ["Master A", "Master B","Master C", "Master D", "Master E","Master F", "Master G"];
    with(myDialog){
      with(dialogColumns.add()){
      staticTexts.add({staticLabel:"Select a Master you want to copy to"});
      with(dialogRows.add()){
      var mySelection = dropdowns.add({stringList:mStringList, selectedIndex:0});
    app.doScript('main()', ScriptLanguage.JAVASCRIPT, undefined, UndoModes.FAST_ENTIRE_SCRIPT, "Paste in place");
    function main(){
      if (!app.documents.length || !app.selection.length)
      alert( "Nothing selected!" );
      exit();
      if (myDialog.show() == true)
      copy_to_next_master(); 
    function copy_to_next_master() { 
    var
      mChoice = mySelection.selectedIndex,
      mMsg = "Done.\rWhat you select is pasted in place to next documents - " + mStringList[mChoice],
      nSel = app.selection.length,
      mDone = false,
      i,n,nextDoc,curSel;   
    for ( i = 1; i < app.documents.length; i++) {   
      nextDoc = app.documents[i];   
      targetMaster = nextDoc.masterSpreads[mChoice];
      if (!targetMaster.isValid) {
      mMsg += "\rCan't detect " + mStringList[mChoice] + " in a doc: " + nextDoc.name;
      continue;
      mDone = true;
      for ( n = 0; n < nSel; n++ ) { 
      curSel = app.selection[n]; 
      curSel.duplicate( nextDoc.masterSpreads[mChoice] ); 
    mDone ? alert(mMsg) : alert("Nothing copied");

    Sorry Jarek
    I made a big mistake
    I want add an error message in to this:
    var curSel = app.selection[0]; 
    for ( var i = 1; i < app.documents.length; i++) { 
        var nextDoc = app.documents[i]; 
        if (!curSel) { alert( "Nothing selected!" ); exit(); } 
        curSel.duplicate( nextDoc.masterSpreads[1] ); 
    in case of I just want to paste in place to only on choice
    Teetan

  • How to Bypass Tax Jurisdiction Code  while Posting FI Document

    Hello All,
       I have a requirement where I can enter Tax code along with Tax Jurisdiction for some of the cases while Posting FI Document using T code s FB01.. etc.
    However for  one scenario I need to BY pass the Tax Jurisdiction while posting FI Document . How to achieve this.
      As  per SAP once we define Tax Jurisdiction it is mandatory to enter as Input to Post the document.
      But I need to control this Tax Jurisdiction as I dont want to enter  while posting FI Document.It should not prompt for Tax Jurisdiction .
      How to make an option field in this case (Based on Company code and Tax code combination).
      Any BADI / User exit/BTE to Ignore the Error message Enter Tax Jurisdiction code).
    Please help me as soon as possible.
    Thanks.

    My Query is , when am posting a document in FB01 Transaction , when I enter Tax code at line item level, Tax jurisdiction is mandatory if we dont enter it give an error saying that ' Please enter a Tax Jurisdiction' .
       My requirement is I would like to bypass that error without entering Tax jurisdiction I would like to proceed by providing default Tax Jurisdiction through any userexit/BADI/BTE. so that I will not get that error .
       So any USER-EXIT/BTE/BADI is there which will trigger before the error(maintain tax jurisdiction )  at line Item leve ?????
    I hope now requirement is clear.

  • How to associate a test message with a change document

    I am using solution manager 7.01.
    accessing my change documents through the workcenter I need to create a new test message - so I use the Create transaction button on the button bar, Service Process, Test Message
    Then I am in the create test message screen.  However from here I cannot see how to associate my test message with either the change document that I was processing or to the maintenance cycle.
    Ideally I want to link the test message to the change document however at least to the maintenance cycle.
    How do I do this?
    Am I creating the test message in an incorrect way?
    regards
    Marina

    Anyone?  Does no one use Test Messages?

  • How to add a default user group for multiple document type's?

    Hi,
    I am trying to add same default user group for different document types when MA is created. Is there any way to setup using a single "Document Security Template"? Or I need to create different templates for different document types?
    Please confirm.
    Thanks,
    Saloni

    Hi Saloni,
    Based on what your specific requirement, it might be easier to do it with scripting.
    If you are doing it using Document Security Templates, you would have to create a Document Security Template for each of the 6 MA types and assign the default group. Create another one and leave the Document Type field blank, so it will apply to the other 4 MA types that don't have a default group.
    Regards,
    Vikram

  • How to update WBS Element in already posted FI documents

    Hi All,
    I would like the procedure to update the WBS element in already posted Finance documents. We have Fund center is also activated in our system.
    Kindly suggest the procedure for the same please.
    Thanks and Regards,
    Sarvendra Negi

    Hello,
    All PS_PSP_PNR fields, as COBL-PS_POSID are dependent on the
    project settlement. By posting a document you can enter the fields
    independent of the fact, whether the project settlement is active or
    not. Only the field status is crucial. As soon as such a document is
    changed, the activity of the project settlement is relevant.
    If it's active, these fields must not be changed in general.
    Otherwise you would get a inconsistency between FI and CO, because
    there is no interface updating the project settlement tables
    In this case TBAER (transaction OB32) does not play a role anyway.
    But if the project settlement is not active, the fields can be filled
    informatively by posting the document. And thus there must be a
    chance in FB02 to change them again. Therefore the settings of TBAER
    are crucial and TCOBX must not be changed like in note 966428.
    Furthermore the entries of TCOBX are used in the coding for different
    queries. So it would be very critical to change these entries.
    The only solution can be, that you adapt TBAER accordingly. In the
    standard it is not possible.
    BR,
    Raquel

  • How To Add A Signature To Your Posts

    A signature is a great way to personalize your posts. You can add a brief details about your products or just a personal tagline to distinguish your posts.
    Creating or editing your signature is very easy. This is how you do it:
    1. Log into the Forum.
    2. Now, at the right pane, below your user name, click on My Account.
    3. You will land on the Personal Profile tab, under Personal Information.
    5. Scroll down to the text box named Signature.
    6. Now, enter your preferred text in the signature.
    Your signature should be brief and should not contain any inappropriate content. For example, you can put any simple text as the signature.
    Or, you can use a HTML code to color or design your signature accordingly. You can even add small pictures using HTML code.
    7. Once done, scroll down and click on the  button.    
    Now, all your new and existing posts will have the signature at the bottom. If you want to make more changes, perform the same steps again.
    Happy posting!
    If you want to search for solved threads for a model or a particular issue - check the link below to learn how to do it easily.
    Searching for Accepted Solutions
    I work for HP, supporting HP experts and trying to help this community as much as I can.

    My Settings (to the right of where your name appears under the forum post title) -> Personal Profile -> Personal Information
    You need to be at least a "Copper" contributor before you gain this priveledge as it explained here:
    http://forums.verizon.com/t5/Community-Announcements/Verizon-Community-Ranking-System/m-p/21291

  • How do I delete a message I posted?

    Hi,
    I've inadvertently posted an incomplete message on the forum & can’t find how to delete!
    Please explain.
    Thanks,
    Paul Towle.

    altenbach wrote:
    I have recently tried this when I accidentally double-posted and it worked just fine!
    Altenbach!!!
    You double-posted???? !!!!! Yikes!!!!
    That's almost considered a sin...
    Oh..
    It was removed...
    okay..
    You'll make it to heaven

Maybe you are looking for

  • How to capture the data from a JSP form

    Hi I have a JSP form, My task is to capture the data from a JSP and submit to Data Base. for example I have the field like Enter Table name to be created in data base: The table name is to be captured by a servlet and by that table name, table should

  • Itunes x64 will not install on windows 8 pro

    I am unable to install Intunes 84 on my PC running Windows 8 Pro. Error message is error writing to file C:\ProgramData\34BE82C4-E596-4e99-A191-52C6199EBF69\w64\w64\GEARAspiWDM.sys Verify that you have access to that directory

  • Unable to use Subversion 1.7 from JDeveloper 11.1.2?

    When I try to check out a workspace from my Subversion repository, I get the message svn: The path '...' appears to be part of Subversion 1.7 ... Please upgrade your Subversion (SVNKit) client to use this working copy. I'm running JDev 11.1.2.1.0. Un

  • Upgrade from 10.1 to 10.2.0.3

    Hi all, We're planing to upgrade from 10.1 to 10.2.0.3 in Windows 2003 SP2, but we don't have the installers. We were browsing on the web and only we found 10.2.0.3 for Windows 2008 and Windows Vista. Can this installer be used to upgrade on Windows

  • New to Mac....Help. Mail app on ~Dock does not open

    I have had my mac for over a year and mail has been great. I have a mac desktop g5. Clicking mail on the dock and I can read my messages easily. Now i have to go to .mac to get my mail. Its all a blank screen and these rainbow wheel is driving me nut