Rephrase my previois post: why mustsaslserver not behaving as it should be

Shane,
I think it is better to rephrase my question:
In a previous answer you said the following:
An email server/client was able to connect to your server on port 25
You can enforce SASL on port 25 connections from non-local hosts (not defined in INTERNAL_IP) by modifying the imta.cnf configuration file and changing the tcp_local channel definition. Replace the "maysaslserver" keyword with "mustsaslserver".
But I've just found this on my testing server:
After changing the maysaslserver to mustsaslserver for the tcp_local
stanza,
PC clients CANNOT connect to my testing server (for mail relaying)
, which is correct.
But mails from email servers
^^^^^^^^
CAN, becos incoming mails are still able to come in and sent to
the local users.
The mapping file is okay as the stanza is :
INTERNAL_IP
$(ip.of.this.host/24) $Y
127.0.0.1 $Y
* $N
Why?

Okay, Shane.
Let me describe what I've tried on this JSMS server.
But before I do so, here is the relevant lines in my mappings file:
INTERNAL_IP
$(158.182.1.76/24) $Y
127.0.0.1 $Y
* $N
My line in imta.cnf , i.e. before I've changed it looks like:
! tcp_local
tcp_local smtp mx single_sys remotehost inner switchchannel identnonenumeric sub
dirs 20 maxjobs 7 pool SMTP_POOL maytlsserver maysaslserver saslswitchchannel t
cp_auth missingrecipientpolicy 0 loopcheck
When I tested it by sending mail to one of its users from outside, the mail was received
okay. This is expected.
Now according to the manual, if I change the "maysaslserver" in the line above
to "mustsaslserver", then if I did the same test mentioned above,
it will reject the mail because it won't accept any smtp connection from
anything other than its own IP (158.182.1.76) or 127.0.0.1
Is my understanding CORRECT ?
But when I did the same test (i.e. sending mail to it like I've described above,
there's no difference. In other words. it did not reject the mail but received it)
Why?

Similar Messages

  • 500k Unique Limit not behaving as it should?

    Hoping to get an official "Adobe" answer here as results via Twitter were not too successful, plus this is just too detailed to be accurately articulated in 140 character chunks.  Anyways, the problem comes with an instance I am working on where unique page views for URLs that are well over 500K are not being bucketed in to the "low traffic" category as they should be per this adobe documentation:
    Uniques Exceeded (Low-Traffic) Logic
    I've attached a screenshot, these URLs all only have 1 view per the month, and are not previously recorded, so these should all be falling into the low bucket traffic, but they are not, and this number continues to grow.  Anyone experienced this before, and if you have, do you have insights on to why the software is behaving as such?
    Thanks!

    This forum section is for the analytics of Business Catalyst, One of Adobe's CMS's. IT is not the Adobe Marketing Cloud software forum.

  • For loop is not behaving as it should

    Hi,
    Please help me if you can.
    I'm using netbeans, I have a Dog class with a bark() method which contains an If/Else Statement:
    void bark() {
    if (size > 60) {
    System.out.println("Woof! Woof!");
    } // If
    if (size > 14) {
    System.out.println("Ruff! Ruff!");
    } // If
    else {
    System.out.println("Yip! Yip!");
    When I call this method from the Dog class with a new Dog object (after I have initialised it with a value of 64, the If statements execute If size > 60 AND if size > 14 and it didn't before! Why is this? It used to just execute the top If statement.
    The only thing I can think of is that I was trying to define set CLASSPATH on the command prompt the other day (to no success even though it was pointing right to the folder for javac etc) but I don't think this would cause an If statement to execute like this?

    Akhkhi wrote:
    Check the value of size variable in your method..I think its finding somthing different value what u r expecting ...what the heck are you talking about? This has absolutely nothing to do with the original poster's problem.

  • Combo box not behaving like it should

    I have a form in which I have 4 combo boxes that have more or less the same choices, however there is one that is common to all 4 (E078).
    When "E078" is selected in any of the combo box, a new combo box will appear (and a white rectangle will be hidden so that the new combo box title can be seen). It works when I select that in one or more combo box, however to make it disappear I have to select some other choice in the same combo box twice!!! If I select anything only once, it will not make the new combo box hidden, but if re-select something (same or another choice) then the combo box will disappear!
    I am at lost, and would be very thankful if someone could make it work seamlessly. I mean it works, nut it is just inconvenient and I cannot tell the user to make select something else twice if they want the field to disappear.
    Here is my form:
    https://workspaces.acrobat.com/?d=WjF6aV8IUuBX2w8iZN3k0g

    When you use event.value in a combo box's Validate event it does not give you the export value, which is what you want. It is easier to use place the code in a custom Keystroke script where you can use the event.changeEx property to retrieve the export value of the selected item. See the documentation for more information: http://livedocs.adobe.com/acrobat_sdk/9.1/Acrobat9_1_HTMLHelp/JS_API_AcroJS.88.607.html

  • Navigation menu active page color not behaving as it should

    I created an unordered list for the mainnav links. I use the following lines in the code:
    <li><a href="../index.html" class="thispage">Home</a></li>
            <li><a href="#">Events</a></li>
            <li><a href="#">Music</a></li>
            <li><a href="#">Agenda</a></li>
            <li><a href="../Pages/artists.html">Artists</a></li>
    The Home button shows the color for 'active', but if I go to the artists page it first shows the hover color, then the page opens but does not show the active color.... I.o.w. the Home button stays on active though it is not active.
    Please see the effect on my testsite: www.adrianrooymans.nl

    armona22 wrote:
    I'm sorry, but I tried that already, and it does not solve the problem. If I do that I get TWO active pages, but clicking anywhere on the artists page makes the blue color go away, except for the Home button.... I could temporarily put that on the testserver so that you could see what happens (unless you beleive me).
    You will get two active menu items unless the class is removed from the links that you don't want it on.
    If you look at the example page code in the 'completed' folder of the Bayside Beat tutorial you will see on the 'index' page the class has been added to the 'index' link:
    <nav id="mainnav">
          <ul>
            <li><a href="index.html" class="thispage">Home</a></li>
            <li><a href="sightseeing.html">Sightseeing</a></li>
            <li><a href="#">Eating Out</a></li>
            <li><a href="#">What's On</a></li>
            <li><a href="#">Where to Stay</a></li>
          </ul>
        </nav>
    Whilst on the 'sightseeing' page the class has been moved to the 'sightseeing' link:
    <nav id="mainnav">
            <ul>
                <li><a href="index.html">Home</a></li>
                <li><a href="sightseeing.html" class="thispage">Sightseeing</a></li>
                <li><a href="#">Eating Out</a></li>
                <li><a href="#">What's On</a></li>
                <li><a href="#">Where to Stay</a></li>
            </ul>
        </nav>

  • IMAP Mailbox not behaving as it should with Mac

    Hi all,
    Hope you can help.
    Have recently set up an IMAP email account for my business on both my Mac and my iPhone.
    Anything read or deleted on my Mac syncs with my iPhone as it should but when I read the email on my iPhone it does NOT appear as 'read' on my Mac. In fact, it marks itself as unread again if left for a while. Also mail deleted on the phone does not appear deleted on my Mac.
    Any help anyone could give would be greatly appreciated.
    Many thanks in advance,
    Nigel

    My Discover Card App.
    It's frozen... Can't delete it or anything. Just stuck in "waiting" mode...won't open... Nothing.

  • IPhoto is not behaving as it should!

    It's really slow to load.
    iCloud sharing doesn't seem to work properly although I followed the help instructions meticulously.
    When I click "share" it takes ages to load and "iCloud" is grayed out and the only option given is email.
    It won't let me set up a new stream- or rather it won't let me load anything into a new stream.
    At the moment I've given up and am sharing via a memory stick which is useless for videos!!
    Help!

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    The title of the Console window should be All Messages. If it isn't, select
              SYSTEM LOG QUERIES ▹ All Messages
    from the log list on the left. If you don't see that list, select
              View ▹ Show Log List
    from the menu bar at the top of the screen. Click the Clear Display icon in the toolbar. Then take one of the actions that you're having trouble with. Select any messages that appear in the Console window. Copy them to the Clipboard by pressing the key combination command-C. Paste into a reply to this message by pressing command-V.
    The log contains a vast amount of information, almost all of which is irrelevant to solving any particular problem. When posting a log extract, be selective. A few dozen lines are almost always more than enough.
    Please don't indiscriminately dump thousands of lines from the log into this discussion.
    Please don't post screenshots of log messages—post the text.
    Some private information, such as your name, may appear in the log. Anonymize before posting.

  • NIC Bonding not behaving as it should

    Hi Folks, am trying to setup NIC bonding on my VM (OEL5u6) having two virtualised NICs, i have done the setup which is quite simple however my active-backup mode is not working as expected.
    My Bonded interface
    [root@Gateway network-scripts]# cat ifcfg-bond0
    DEVICE=bond0
    IPADDR=192.169.25.2
    NETMASK=255.255.255.248
    ONBOOT=yes
    BOOTPROTO=none
    USERCTL=no
    BONDING_OPTS='mode=active-backup miimon=1000'
    TYPE=Ethernet
    individual interfaces
    [root@Gateway network-scripts]# cat ifcfg-eth2
    DEVICE=eth2
    HWADDR=08:00:27:1e:57:cf
    MASTER=bond0
    SLAVE=yes
    ONBOOT=yes
    BOOTPROTO=none
    USERCTL=no
    [root@Gateway network-scripts]# cat ifcfg-eth4
    DEVICE=eth4
    HWADDR=08:00:27:46:69:69
    MASTER=bond0
    SLAVE=yes
    ONBOOT=yes
    BOOTPROTO=none
    USERCTL=no
    Bonding status (looks good)
    [root@Gateway network-scripts]# cat /proc/net/bonding/bond0
    Ethernet Channel Bonding Driver: v3.5.0 (November 4, 2008)
    Bonding Mode: fault-tolerance (active-backup)
    Primary Slave: None
    Currently Active Slave: eth2
    MII Status: up
    MII Polling Interval (ms): 1000
    Up Delay (ms): 0
    Down Delay (ms): 0
    Slave Interface: eth2
    MII Status: up
    Link Failure Count: 0
    Permanent HW addr: 08:00:27:1e:57:cf
    Slave Interface: eth4
    MII Status: up
    Link Failure Count: 0
    Permanent HW addr: 08:00:27:46:69:69
    I am doing a continous ping from another host in the same n/w to this bonded interface IP to check if the ping streak breaks when i test this setup
    Testing -
    [root@Gateway network-scripts]# ifenslave -c bond0 eth4
    and that's it my SSH connection is gone, and ping is broken with "Request timed out"
    when i check the bond status now -
    Bonding Mode: fault-tolerance (active-backup)
    Primary Slave: None
    Currently Active Slave: eth4
    MII Status: up
    MII Polling Interval (ms): 1000
    Up Delay (ms): 0
    Down Delay (ms): 0
    Slave Interface: eth2
    MII Status: up
    Link Failure Count: 0
    Permanent HW addr: 08:00:27:1e:57:cf
    Slave Interface: eth4
    MII Status: up
    Link Failure Count: 0
    Permanent HW addr: 08:00:27:46:69:69
    am afraid there's not much help in the message log to debug this.
    Any views what's wrong and how to resolve? appreciate ur replies. Thanks
    Regards Amit

    Hi,
    I'm having the same problem, when i disconnect the cable from the eth0 (active slave) stop receiving respond
    I have tried bridged conf and interal net.
    I'm using VirtualBox 4.1.16
    This is my conf:
    [root@integrador ~]# cat /etc/sysconfig/network-scripts/ifcfg-bond0
    DEVICE=bond0
    IPADDR=10.10.0.2
    NETWORK=10.10.0.0
    NETMASK=255.255.255.0
    BONDING_OPTS="mode=1 miimon=100"
    BOOTPROTO=none
    ONBOOT=yes
    [root@integrador ~]# cat /etc/sysconfig/network-scripts/ifcfg-eth0
    DEVICE=eth0
    ONBOOT=yes
    BOOTPROTO=none
    MASTER=bond0
    SLAVE=yes
    USERCTL=no
    [root@integrador ~]# cat /etc/sysconfig/network-scripts/ifcfg-eth1
    DEVICE=eth1
    ONBOOT=yes
    BOOTPROTO=none
    MASTER=bond0
    SLAVE=yes
    USERCTL=no
    [root@integrador ~]# cat /etc/modprobe.d/bonding.conf
    alias bond0 bonding
    [root@integrador ~]# ifconfig -a
    bond0 Link encap:Ethernet HWaddr 08:00:27:5C:C5:BA
    inet addr:10.10.0.2 Bcast:10.10.0.255 Mask:255.255.255.0
    inet6 addr: fe80::a00:27ff:fe5c:c5ba/64 Scope:Link
    UP BROADCAST RUNNING MASTER MULTICAST MTU:1500 Metric:1
    RX packets:402 errors:0 dropped:0 overruns:0 frame:0
    TX packets:92 errors:0 dropped:0 overruns:0 carrier:0
    collisions:0 txqueuelen:0
    RX bytes:39487 (38.5 KiB) TX bytes:11045 (10.7 KiB)
    eth0 Link encap:Ethernet HWaddr 08:00:27:5C:C5:BA
    UP BROADCAST RUNNING SLAVE MULTICAST MTU:1500 Metric:1
    RX packets:211 errors:0 dropped:0 overruns:0 frame:0
    TX packets:89 errors:0 dropped:0 overruns:0 carrier:0
    collisions:0 txqueuelen:1000
    RX bytes:23061 (22.5 KiB) TX bytes:10863 (10.6 KiB)
    eth1 Link encap:Ethernet HWaddr 08:00:27:5C:C5:BA
    UP BROADCAST RUNNING SLAVE MULTICAST MTU:1500 Metric:1
    RX packets:191 errors:0 dropped:0 overruns:0 frame:0
    TX packets:3 errors:0 dropped:0 overruns:0 carrier:0
    collisions:0 txqueuelen:1000
    RX bytes:16426 (16.0 KiB) TX bytes:182 (182.0 b)
    eth2 Link encap:Ethernet HWaddr 08:00:27:DF:11:A2
    inet addr:192.168.57.1 Bcast:192.168.57.3 Mask:255.255.255.252
    inet6 addr: fe80::a00:27ff:fedf:11a2/64 Scope:Link
    UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
    RX packets:0 errors:0 dropped:0 overruns:0 frame:0
    TX packets:1142 errors:0 dropped:0 overruns:0 carrier:0
    collisions:0 txqueuelen:1000
    RX bytes:0 (0.0 b) TX bytes:119508 (116.7 KiB)
    eth3 Link encap:Ethernet HWaddr 08:00:27:D1:41:9A
    inet addr:192.168.1.50 Bcast:192.168.1.255 Mask:255.255.255.0
    inet6 addr: fe80::a00:27ff:fed1:419a/64 Scope:Link
    UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
    RX packets:825 errors:0 dropped:0 overruns:0 frame:0
    TX packets:625 errors:0 dropped:0 overruns:0 carrier:0
    collisions:0 txqueuelen:1000
    RX bytes:563221 (550.0 KiB) TX bytes:85914 (83.9 KiB)
    lo Link encap:Local Loopback
    inet addr:127.0.0.1 Mask:255.0.0.0
    inet6 addr: ::1/128 Scope:Host
    UP LOOPBACK RUNNING MTU:16436 Metric:1
    RX packets:25 errors:0 dropped:0 overruns:0 frame:0
    TX packets:25 errors:0 dropped:0 overruns:0 carrier:0
    collisions:0 txqueuelen:0
    RX bytes:2690 (2.6 KiB) TX bytes:2690 (2.6 KiB)
    [root@integrador ~]# cat /proc/net/bonding/bond0
    Ethernet Channel Bonding Driver: v3.6.0 (September 26, 2009)
    Bonding Mode: fault-tolerance (active-backup)
    Primary Slave: None
    Currently Active Slave: eth0
    MII Status: up
    MII Polling Interval (ms): 100
    Up Delay (ms): 0
    Down Delay (ms): 0
    Slave Interface: eth0
    MII Status: up
    Speed: 1000 Mbps
    Duplex: full
    Link Failure Count: 0
    Permanent HW addr: 08:00:27:5c:c5:ba
    Slave queue ID: 0
    Slave Interface: eth1
    MII Status: up
    Speed: 1000 Mbps
    Duplex: full
    Link Failure Count: 0
    Permanent HW addr: 08:00:27:fc:6b:f6
    Slave queue ID: 0
    [root@integrador ~]# lsmod | grep -i bond
    bonding 109558 0
    ipv6 264641 39 cnic,bonding,ip6t_REJECT,nf_conntrack_ipv6,nf_defrag_ipv6
    [root@integrador ~]# uname -a
    Linux integrador 2.6.32-220.el6.i686 #1 SMP Tue Dec 6 16:15:40 GMT 2011 i686 i686 i386 GNU/Linux
    Sorry for my english!

  • App not behaving as it should

    One of my apps is stuck in waiting mode for days now. It appears as though it got stuck during an update.

    My Discover Card App.
    It's frozen... Can't delete it or anything. Just stuck in "waiting" mode...won't open... Nothing.

  • When m posting something on facebook why its not showing via iphone

    Hello!this is hakana m having a problem when m posting something on faceook why its not showing via iphone....

    You'd really have to ask FaceBook that.

  • Accordion not behaving properly

    Hi!
    I have an accordion that is not behaving properly, and can't understand why. As you see in the following link, when clicked, the accordion´s opening is not smooth but quite strange. The .css and .js controlling files are the same Adobe.com posted in the download section. Is quite frustrating: I have done other accordions and I thought I could control this thing. But somehow, there is something that I dont understand going on.
    Link:
    http://www.wedobanking.com/wedobanking2.asp
    code:
    <html>
    <head>
    <link REL="SHORTCUT ICON" HREF="images/favicon.ico">
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <title>Wedobanking</title>
    <STYLE type="text/css">
    <!--
      A:link {COLOR: black; TEXT-DECORATION: none}
      A:visited {COLOR: black; TEXT-DECORATION: none}
      A:active {TEXT-DECORATION: none}
      A:hover {COLOR: black; TEXT-DECORATION: none} -->
    </STYLE>
    <script language="javascript">
    function loadTwo(iframe1URL, iframe2URL)
    parent.iframeTop.location.href=iframe1URL
    parent.iframe1.location.href=iframe2URL
    </script>
    <script language="JavaScript" type="text/javascript" src="spryassets/SpryAccordion.js"></script>
    <link href="spryassets/SpryAccordion.css" rel="stylesheet" type="text/css" />
    </head>
    <body>
    <table width="100%" height="100%" border="0" align="left">
      <tr>
        <td valign="top" align="left" width="160" height="100%">
            <table width="100%" border="0" BACKGROUND="images/LeftFrame.jpg">
              <tr>
                <td height="545">
               <div id="Accordion1" class="Accordion">
                <div class="AccordionPanel">
                  <div class="AccordionPanelTab"><a href="home.asp" onClick="window.frames['iframe1'].location = this.href"style="text-decoration:none">  Home                     </a></div>
                  </div>
                <div class="AccordionPanel">
                  <div class="AccordionPanelTab">  Your Profile</div>
                  <div class="AccordionPanelContent"><a href="YourProfile/YourProfile.asp" target="iframe1" style="text-decoration:none">      General</a>
                    <br>
                    <a href="YourProfile/YourProfile.asp" target="iframe1" style="text-decoration:none">      CV</a>
                    <br>
                    <a href="YourProfile/YourProfile.asp" target="iframe1" style="text-decoration:none">      Account</a>
                    </div>
                  </div>
                <div class="AccordionPanel">
                  <div class="AccordionPanelTab">  Create</div>
                  <div class="AccordionPanelContent"><a href="javascript:loadTwo('CreateBusiness/cBusinessTop.asp','CreateBusiness/cBusinessMain. asp')" style="text-decoration:none">      Business</a>
                    <br>
                    <a href="YourProfile/YourProfile.asp" target="iframe1" style="text-decoration:none">      Offer</a>
                    <br>
                    <a href="YourProfile/YourProfile.asp" target="iframe1" style="text-decoration:none">      Found</a>
                    </div>
                  </div>
                <div class="AccordionPanel">
                  <div class="AccordionPanelTab">  Invest</div>
                  <div class="AccordionPanelContent"><a href="Invest/showinvest.aspx" target="iframe1" style="text-decoration:none">      Businesses</a>
                    <br>
                    <a href="YourProfile/YourProfile.asp" target="iframe1" style="text-decoration:none">      Offers</a>
                    <br>
                    <a href="YourProfile/YourProfile.asp" target="iframe1" style="text-decoration:none">      Founds</a>
                    <br>
                    </div>
                  </div>
                <div class="AccordionPanel">
                  <div class="AccordionPanelTab">  Messages</div>
                  <div class="AccordionPanelContent"><a href="Invest/showinvest.aspx" target="iframe1" style="text-decoration:none">      New</a>
                    <br>
                    <a href="Invest/showinvest.aspx" target="iframe1" style="text-decoration:none">      Received</a>
                    <br>
                    <a href="Invest/showinvest.aspx" target="iframe1" style="text-decoration:none">      Sent</a>
                    <br>
                    </div>
                  </div>
                <div class="AccordionPanel">
                  <div class="AccordionPanelTab">  Help</div>
                  <div class="AccordionPanelContent"><a href="Invest/showinvest.aspx" target="iframe1" style="text-decoration:none">      FAQs</a>
                    <br>
                    <a href="Invest/showinvest.aspx" target="iframe1" style="text-decoration:none">      Forum</a>
                    <br>
                    </div>
                  </div>
                <div class="AccordionPanel">
                  <div class="AccordionPanelTab"><a href="exit.asp" onClick="window.location = this.href" style="text-decoration:none">   Exit                                      </a></div>
                  </div>
              </div>  
                </td>
              </tr>
            </table>
        </td>
        <td valign="top" align="left">
              <table width="100%" height="100%" border="0">
                <tr height="100%">
                  <td valign="top"><iframe name="iframeTop" width="100%" height="100" src="" frameborder="0"> Error: your Internet Navigator doesnt support iframes! </iframe>
                  <br>
                  <iframe name="iframe1" width="100%" height="490" src="" frameborder="0"> Error: your Internet Navigator doesnt support iframes! </iframe>
                  <br>
                  <iframe name="iframeBottom" width="100%" height="25" src="" frameborder="0"> Error: your Internet Navigator doesnt support iframes! </iframe>
                  </td>
                </tr>
            </table>
       </td>
      </tr>
    </table>
    <script language="JavaScript" type="text/javascript">
    var acc1 = new Spry.Widget.Accordion("Accordion1", { useFixedPanelHeights: false, defaultPanel: -1 });
    </script>
    </body>
    </html>

    The accordion behaves very well in all browsers with the exception of IE. When there is no DOCTYPE assigned to your document IE goes into Quirks mode.
    Just add the following to the very first line (no blank lines prior) of your document
    <!DOCTYPE html>
    Gramps

  • Production order creation - posting period is not open

    Dear All,
    Could you please explain me what the impact on CO/FI is when I create a production oder? Indeed, the posting period is not open in OB52 but I am wondering why the System issues this message when I use CO01 or CO40.
    Thanks
    D.

    Hi d,
    Whenever a production order is created or converted to planned orders, each of these orders carries some activities
    which are linked to cost elements in CO and GL accounts in FI.  The system gives you an alert that if posting periods
    are not open you cannot settle the production order.  If production order is pending that results in Work in progress
    which carries gl accounts relevant to be posted in the particular period.
    Regards,
    Sadashivan

  • Error: "posting period is not defined for fiscal year variant" in  FBICS3

    Hi,
    I got error  "posting period is not defined for fiscal year variant" when I execute t code FBICS3.
    I checked in OB29 &  t code FBIC010 & noted that the fiscal year variant had ben maintained.
    Please advice.

    HI,
    It was noted that the mentioned t code had been maintain but below mentioned error appear:
    Posting period  is not defined for fiscal year variant
    Message no. GU506
    Diagnosis
    You have tried to determine a posting date in fiscal year variant for period , fiscal year , but this period is not defined for the variant.
    Procedure
    You maintain fiscal year variants in table T009.
    It was referring to t code OB29. I have checked the detail, in OB29 also details maintain.
    Please advice why the error still prompt.

  • Depreciation posting rules are not define for area 00 in company code

    Dear Expert,
    Would like to seek for help, when I run a customize report (AUC without PO not yet capitalized report the system prompt the error depreciation posting rules are not define for area 00 in company code only on the march 2011 on ward but before march 2011 the report is able to display as usual.
    Between., does SAP have the standard report to list the asset which is AUC and not yet capitalized?
    My version of SAP is ECC 6.0.
    Kindly advise.
    Regards,
    Karen

    Hi,
    Thank you for the prompt reply, why the system prompt the error depreciation posting rules are not define for area 00 in company code only on the march 2011 on ward but before march 2011 the report is able to display as usual?
    Please help.
    Regards,
    Karen

  • Why are not  pop up  message window when message type I and W

    Hi All,
    I am working in BADI ( me_purchdoc_posted~posted) for t-code ME21N. Actually i want show material number, material description  and ABC indicator of material at saving point of PO if material is significant.
    code is properly working  but does not showing  error message window when I am using message type I  (information) or W (worming message) .
    if i am using message type E ( error message )then showing message window just link  Information message.
    So i can no understand why are not message window pop up  when i take message type I and W.
    my code is that
    method IF_EX_ME_PURCHDOC_POSTED~POSTED
    IF SY-TCODE EQ 'ME21N' OR SY-TCODE EQ'ME21'.
      DATA : wa LIKE LINE OF IM_EKPO.
      DATA : VAR_MAKTX TYPE MAKT-MAKTX.
      DATA : VAR_MAABC TYPE MARC-MAABC.
      DATA : P TYPE STRING.
      DATA : P1 TYPE STRING.
      LOOP AT IM_EKPO INTO wa.
        SELECT SINGLE MAABC FROM MARC INTO VAR_MAABC WHERE matnr EQ wa-matnr AND werks EQ wa-werks.
        SELECT SINGLE MAKTX FROM MAKT INTO VAR_MAKTX WHERE matnr EQ wa-matnr. " AND werks EQ wa-werks.
          IF VAR_MAABC EQ 'A'.
            P = 'is significant material'.
            CONCATENATE  WA-MATNR '(' VAR_MAKTX ')'  P INTO P1.
            MESSAGE P1 TYPE 'E'.
            EXIT.
            ENDIF.
      ENDLOOP.
    ENDIF.
    endmethod.
    guide me...............

    Hi vinod,
    thanks for reply......
    yes,  my  requirement is to show the popup window with  material number, material description and ABC indicator of material at saving point of PO if material is significant.
    I find Badi to transaction me21n at saving PO.  Badi ME_PROCESS_PO_CUST does not exist.
    so i am using Badi me_purchdoc_posted~posted.
    This Badi  ( me_purchdoc_posted~posted ) is properly working But showing message  "system error ( error in method po_post ) "
    when I am click on OK then automatic leave from transaction.
    guide me..........

Maybe you are looking for

  • Will Not Copy After Being Idle

    THIS IS A COPYING ISSUE!!!  After installing the upgraded version of Comcast's latest modem/router, our HP 6550 would not print.  I contacted Comcast and reported the difficulty and they informed me it was a printer problem - not their new modem.  Co

  • In ABAP-HR, How can i add wage tyes in wage slip, PE51 transaction code

    Hi friends, How can i add wage type in the pay slip ie transaction code pe51. Thanks&Regards, Shiva Prasad

  • How to dismiss the spelling dialogue without using the mouse

    I'd appreciate the right tip from anyone on how to dismiss the spelling dialogue in Mail without using the mouse. (I'm one of those guys who likes to use the keyboard as much as possible.) Here's the scenario: I open a new message in Mail, type my te

  • How to run the Program given in JavaMail 1.4 Demos (folderlist.java)

    Hi All, in the distribution of JavaMail 1.4, some programs are given, i want to run folderlist.java. But i m unable to run it? Can somebody tell me how to run it? i tried like this: java folderlist -T IMAP -H email.abcdef.com -U user -P password java

  • Request for an arrow key app for ipad

    I am trying to use ipad pages to type up some ideas on the road. I am really missing arrow keys on the keyboard. I find apple's loupe solution awkward, incumbent and inherently un-apple-like. Is it all possible that one of you smart developers could