MB1A T Code Issue

Dear All,
We have blocked the T Code: MIGO for Goods issue, user need to use MB1A t code only for GI.  Need to know the procedure for configuring the Goods Issue by assigning different cost center and G/L account based on the line item wise.
Pls guide me to achieve the above function.
Regards
Srini

Hi,
Go to SPRO>MM>Inventory Management> Settings for Enjoy transactions > Settings for Goods movement > Settings for transactions and reference document
Select MIGO and double click transaction event folder and deactivate Goods issue ( remove the tick mark )
then you cant find the goods issue in t-code MIGO.
then there is only one option to enter goods issue is MB1A.
Asok.N

Similar Messages

  • Is Muse compatible with Email Service Providers. I found html code issues - PCs have viewing issues

    Is Muse compatible with Email Service Providers? A colleague said Muse has html code issues as PCs struggle to display the artwork correctly when emails are delivered.

    Is Muse compatible with Email Service Providers? A colleague said Muse has html code issues as PCs struggle to display the artwork correctly when emails are delivered.

  • Serial Code Issue

    I purchased a full version of Adobe Photoshop CS4 Extended about a year and a half ago. I loaded it on my laptop just fine. However, following a HD crash, it's asking me for an upgrade check. I used the file just fine previously. How do I fix this issue?

    Your post is entitled "Serial Code Issue" but you make no mention of that in your posting.  You should provide the complete message that the software is providing to help make your problem clearer.
    If the message is indicating you need to provide a serial number to confirm upgrade eligibility it means you purchased CS4 as an upgrade to a preceding version and you need the serial number from that preceding version in order to confirm the eligibility of the new CS4 version.

  • EA4500 Intermittent Latency issue-Code Issue 2.0.37

    I have been using the WRT54GV2 wireless G router for a while with no issues. I have upgraded to the EA4500. Periodically I am experiencing bursts of high latency(local area network) which is affecting certain apps I use such as a cisco soft phone. I am using the 2.4ghz band and connecting around 150mbps.   What could be causing this? When I experience the latency issue, my data throughput fluctuates to different speeds as low as 60mb. I never had this issue on the older wireless router. I have upgraded my client drivers, could this be a code issue on the 4500?  I am on 2.0.37

    See if any of this helps.
    I had something similar and this took care of it.
     http://homecommunity.cisco.com/t5/Wireless-Routers/E4200V2-Bridge-Mode-wireless-disconnects/td-p/501...

  • Calculation of Tax Issue from FB60 (Tax Code Issue)

    Dear All,
    Normally when we purchase or received any services we post following entry.
    INVOICE VALUE IS 1000
    Purchase Ac Dr   1000
       To Vendor                   900
       T o Tax                         100
    But our requirement is that
    Purchase Ac Dr   1100
       To Vendor                  1000
       T o Tax                          100
    System should add cost of TAX  in purchase instead of reduction form vendor balance as we have to give 1000 RS to vendor.
    Can we create TAX code in this manner.
    This is not even possible form function available in Edit Option in FB60 (Calculate tax on Net Amount)
    Not even from TDS (Withholding tax)
    WE CANu2019T SUGGEST POSTING JV IN THAT CASE.
    Regards,
    Bittu

    Apologized for that Atif.
    Withholding Tax Type does not control Vendor line item.
    My issue is that system should not reduce value enter in vendor  amount field.
    System usually reduce amount which is payable to vendor
    Please see my example once again. I also mention that it is not working from Withholding Tax nor form Tax code(FTXP)
    Edit option in FB60 is also not useful in this case.
    Regards,

  • Not sure if this is a code issue

    Hello
    I've had a fair bit of help from this and another forum to get my code working. Thanks to everyone.
    Basically I've created a screensaver randomly selecting one of eight images registered as Movie Clips.
    The issues that I have found are that the playing of the movie does not always work properly, ie it stops on a fade in or fade out.
    The latest version I have is that if I create the swf and html file from my Virtual Machine (XP) at work the movi runs fine on my home (Vista) machine.
    If I try and create these files from my home machine the test (Ctrl + Enter) freezes and also if I play the swf file that also freezes, the html file runs fine.
    I had this also happen on the other way round on a previous version, things would stop on the Virtual Machine but when I copied the files to my home machine all worked fine.
    Does anyone have any thoughts on this?
    I've listed the full code below on what I am running.
    Paul
    import fl.transitions.Tween;
    import fl.transitions.easing.*;
    import fl.transitions.TweenEvent;
    import flash.events.TimerEvent;
    import flash.utils.Timer;
    import flash.utils.setTimeout;
    var mc0:mcClip0 = new mcClip0(); // each mc is associated with its' own class, whose base class is MovieClip();
    var mc1:mcClip1 = new mcClip1();
    var mc2:mcClip2 = new mcClip2();
    var mc3:mcClip3 = new mcClip3();
    var mc4:mcClip4 = new mcClip4();
    var mc5:mcClip5 = new mcClip5();
    var mc6:mcClip6 = new mcClip6();
    var mc7:mcClip7 = new mcClip7();
    var mcList:Array = new Array (mc0, mc1, mc2, mc3, mc4, mc5, mc6, mc7);
    var imgCount:uint = 8;
    var currentImage:uint = 0;
    var myTimer:Timer = new Timer(1500, 1);
    addChild(mcList[currentImage]);
    mcLogoStart();
    myTimer.addEventListener(TimerEvent.TIMER_COMPLETE, timerHandler);
    function mcLogoStart():void{
        mcList[currentImage].x= Math.floor(Math.random()  * (stage.stageWidth-400))  + 200;
        mcList[currentImage].y= Math.floor(Math.random()  * (stage.stageHeight-400))  + 200;
        var mcLogoTween:Tween = new Tween(mcList[currentImage], "alpha", None.easeIn, 0, 1, 2, true);
        mcLogoTween.addEventListener(TweenEvent.MOTION_FINISH, freezeImage);
    function freezeImage(e:TweenEvent):void{
        if(mcList[currentImage].alpha==1){
            myTimer.start();
        if(mcList[currentImage].alpha==0){
            currentImage=Math.floor(Math.random()  * (imgCount-1))  + 1;
            addChild(mcList[currentImage]);
            mcLogoStart();
    function timerHandler(e:TimerEvent):void{
        mcLogoFinish();
    function mcLogoFinish():void{
        var mcLogoTweenOut:Tween = new Tween(mcList[currentImage], "alpha", None.easeOut, 1, 0, 2, true);
        mcLogoTweenOut.addEventListener(TweenEvent.MOTION_FINISH, freezeImage);

    for example:
    import fl.transitions.Tween;
    import fl.transitions.easing.*;
    import fl.transitions.TweenEvent;
    import flash.events.TimerEvent;
    import flash.utils.Timer;
    import flash.utils.setTimeout;
    var mc0:mcClip0 = new mcClip0(); // each mc is associated with its' own class, whose base class is MovieClip();
    var mc1:mcClip1 = new mcClip1();
    var mc2:mcClip2 = new mcClip2();
    var mc3:mcClip3 = new mcClip3();
    var mc4:mcClip4 = new mcClip4();
    var mc5:mcClip5 = new mcClip5();
    var mc6:mcClip6 = new mcClip6();
    var mc7:mcClip7 = new mcClip7();
    var mcList:Array = new Array (mc0, mc1, mc2, mc3, mc4, mc5, mc6, mc7);
    var imgCount:uint = 8;
    var currentImage:uint = 0;
    var myTimer:Timer = new Timer(1500, 1);
    addChild(mcList[currentImage]);
    mcLogoStart();
    myTimer.addEventListener(TimerEvent.TIMER_COMPLETE, timerHandler); var mcLogoTween:Tween;
    function mcLogoStart():void{
        mcList[currentImage].x= Math.floor(Math.random()  * (stage.stageWidth-400))  + 200;
        mcList[currentImage].y= Math.floor(Math.random()  * (stage.stageHeight-400))  + 200;
        mcLogoTween = new Tween(mcList[currentImage], "alpha", None.easeIn, 0, 1, 2, true);
        mcLogoTween.addEventListener(TweenEvent.MOTION_FINISH, freezeImage);

  • Invoice not released to accounting: tax code issue

    Hi All,
    Iam getting an error while i released my invoice to accounting. No accounting document generated. the error is " Tax code V0 does not appear in any G/L account item Message no. FF753"
    we have various condition types in our invoices. Only  TAX condition type ZWST has tax code V0. rest of the condition types like basic price, cash dicsount, rebate condition etc do not have tax code assigned to them which is right since only tax conditions have tax code assigned to them and which is ZWST only.
    My question is why the above error comes " Tax code V0 does not appear in any G/L account item Message no. FF753" . if I double click on the error message, system shows me the following
    """"""""""""""""tax code V0 does not appear in any G/L account item
    Message no. FF753
    Diagnosis
    The document entered contains a customer or vendor item with tax code V0. This does not occur in any of the G/L account or asset items.
    Consequences:
    If you have not entered the cash discount base manually, the system will set it to zero in this item.
    If this item was paid with cash discount deduction and the cash discount amount contains a tax portion, the tax code entered is used for the backdated tax calculation. An automatic breakdown does not take place on the basis of the offsetting items.
    Procedure
    Check whether the tax code was set correctly. If necessary, correct it or enter "**".
    There are, however, also situations in which it makes sense to enter a tax code manually which differs from the offsetting items, for example, during data acquisition.
    Effects on Customizing
    You can define when this system message is to be issued in accordance with your requirements.
    In Customizing, choose Cross-Application Components -> Bank Directory -> Change Message Control.
    The application area and message number can be taken from the technical documentation """""""""""""
    I do not know what system is saying.Could anybody help.
    regards
    sachin

    Hi Sonu,
    Please refer SAP Note 112609.
    Thanks & Regards,
    Santosh

  • Urgent please-sorting code issue in BIP

    Hi,
    issue with sort order in BIP reports. I gave code like this but saying expression error. Please help me.
    sort should be in the order of numbers , then upper case then lower case values.
    declared variable is <?variable: srtStr; "'01234567890ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz'"?>
    then i am trying to apply code in my group
    <?for-each-group:ssAssetMgmtAsset;./ssReferenceNumber3?><?sort:current-group()/string-length(substring-before ($srtStr,substring(ssReferenceNumber3,1,1)));'ascending';data-type='text'?>
    the above code saying expression error
    Thanks,
    lax

    What is the exact error you get?
    I believe that the data-type (within the for-each-group) should be number. Try that and let me know if that fixes your issue.
    Thanks,
    Bipuser

  • F110 Issue-sort code issue

    Hi Gurus,
    We have one issue by F110,by using the bank transfer.so all the payments are cleared.and DME file is generated.we have to upload to the bank.before that we have to convert the file into notepad.by using our local software we upload into our PC.but here
    some vendors are not picking up the right sort codes.on which base it is picking up.only for some vendors we are facing this issue.
    Thanks in advance
    Jana

    Dear,
    Please check the vendor master for the sort key entry in accounting information accounting, compare the sort key with other vendor masters. Check whether reconciliation GL in vendor master is also given the same sort key as in the vendor master.

  • TDS Certificate, Challan Payment Issue and BSR Code Issue

    Hi All,
    I have configured Extended withholding tax as follows and encountered some issues
    1. Specify Document Type (Accounts Payable): Here I have given Document type as SA and I am able to Pay the remittance challan through Post Vendor challan transaction.
    MY question is How can I update my check no. I tried to update through FCH5 But it is showing no data.
    2. Form 16A Certificate: How the field Cheque / DD No (If Any) gets updated?
    3. BSR Code in Form  16A: I have maintained Bank branch in FI02. and made the remittance challan through that bank.
        but still my BSR Code is not updating in Form 16A.
    4. Form 16A Certificate: How does the Quarter Acknowledgement No field gets updated?
    Kindly provide me the solutions for the above queries.
    Your inputs are very much appreciated.
    Thanks in Advance
    Best Regards
    Shashi
    Edited by: shashi mantripragada on Apr 7, 2010 9:43 AM
    Edited by: shashi mantripragada on Apr 12, 2010 2:13 PM

    Hi,
    Please check entries in the number ranges that needs to be maintained for WT certificates.
    Financial Accounting (New) - Financial Accounting Global Settings (New) - Withholding Tax - Extended Withholding Tax - Posting - India - Withholding Tax Certificates for Vendors and Customers - Maintain Number Ranges
    And also check its assignment.
    Hope this helps.
    Vikas.

  • Please help with this registration code issue!

    Hi,
    I just purchased Quicktime Pro, and am trying to use it. For some reason when I am working with a video, my registration code is always showing in the window under the video.
    Why is this, and how can I remove it so that it doesn't constantly show?
    Thanks!

    If you do post a pic, blur out or hide your registration number.
    Never heard of your type of issue either.

  • How do I redeem a coupon code issued by Apple, due to a previously botched iPhoto book?

    I had a recent iPhoto book order that was misprinted twice & although it was eventually redone & perfect, Apple issued me a coupon code for a credit on a future job.  I'm trying to redeem that now but can't find where to do so.
    The instructions that came with the code say to "click Buy then click Use A Coupon on the right".  There is no Use A Coupon on the right or anywhere else.  I've gone through all the ordering screens, up to the point where it says "Place Order" & there is no Use A Coupon button.
    On the very last Place Order screen there was an Enter Promo Code box & I tried to enter my coupon code there but it woudn't take it.
    The email states that the coupon code is valid until the end of 2011 so I know it's not expired.
    Anyone ever done this before?

    "Promo Code" is the only option I see in iPhoto '11.
    If you haven't already, make sure you are copying and pasting the code from the email to the promo box.
    If that doesn't help I suggesty you email them back to ask them how to use the code they gave you.

  • Code issue in php form - submit button not sending email

    Created a form that was originally supposed to open up to 2 pages depending on what was clicked. Clear would send you to an error page, and submit would send you to a thank you page. Decided that was a waste and so did not create the html pages. BUT, wanted the form info for the contact page.
    Here is the issue: it will not submit when submit is clicked. It clears when you click clear, but there's no email coming from the site via submit.
    Do I need to edit the php form code if I don't want the other pages? I've looked at what I have but I don't see if there is a form error or anything here. Here is the code for anyone who wants to have a look. Thanks in advance.
    <?php
    // get posted data into local variables
    $EmailFrom = "EMAIL FROM WEP PAGE - CONTACT - ";
    $EmailTo = "[email protected]";
    $Subject = "EMAIL FROM jennylowhar.com - CONTACT -";
    $name = Trim(stripslashes($_POST['name']));
    $telephone = Trim(stripslashes($_POST['telephone']));
    $email = Trim(stripslashes($_POST['email']));
    $comments = Trim(stripslashes($_POST['comments']));
    // validation
    $validationOK=true;
    if (Trim($name)=="") $validationOK=false;
    if (Trim($email)=="") $validationOK=false;
    if (!$validationOK) {
      print "<meta http-equiv=\"refresh\" content=\"0;URL=error.html\">";
      exit;
    // prepare email body text
    $Body = "";
    $Body .= "name: ";
    $Body .= $name;
    $Body .= "\n";
    $Body .= "telephone: ";
    $Body .= $telephone;
    $Body .= "\n";
    $Body .= "email: ";
    $Body .= $email;
    $Body .= "\n";
    $Body .= "comments: ";
    $Body .= $comments;
    $Body .= "\n";
    // send email
    $success = mail($EmailTo, $Subject, $Body, "From: <$EmailFrom>");
    // redirect to success page
    if ($success){
      print "<meta http-equiv=\"refresh\" content=\"0;URL=thankyou.html\">";
    else{
      print "<meta http-equiv=\"refresh\" content=\"0;URL=error.php\">";
    ?>

    I'm confused by that, but I know this works.
    $fname=STRIPSLASHES($_POST['fname']);
    $lname=STRIPSLASHES($_POST['lname']);
    $title=STRIPSLASHES($_POST['title']);
    $company=STRIPSLASHES($_POST['company']);
    $street=STRIPSLASHES($_POST['street']);
    $town=STRIPSLASHES($_POST['town']);
    $zip=STRIPSLASHES($_POST['zip']);
    $phone=STRIPSLASHES($_POST['phone']);
    $fax=STRIPSLASHES($_POST['fax']);
    $county=STRIPSLASHES($_POST['county']);
    $phone=STRIPSLASHES($_POST['phone']);
    $email=STRIPSLASHES($_POST['email']);
    $comments=STRIPSLASHES($_POST['comments']);
    $date=STRIPSLASHES($_POST['date']);
    $time=STRIPSLASHES($_POST['time']);
    $location=STRIPSLASHES($_POST['location']);
    $from="$email";
    $to="putemailhere";
    $subject="Submission from Contact Form";
    $msg= "This is a submission from yoururl.com.\n\n"
    . "Clients Name: $fname . $lname \n"
    . "Title: $title\n"
    . "Company Name: $company\n"
    . "Street Address: $street\n"
    . "Town:$town\n"
    . "Zip: $zip\n"
    . "Telephone: $phone\n"
    . "Email Address: $email\n"
    . "Comments: $comments\n";
    mail($to, $subject, $msg, 'From:' .$from);
    PS, go back and edit your origial post and REMOVE your email.
    Gary

  • Photoshop Camera Raw 7.4 Update  is not installing because of Error Code U43M1D207. What needs to be done to resolve this error code issue?

    Photoshop Camera Raw 7.4 update is not installing because of error code U43M1D207.  What needs to be done to resolve this issue?

    If you need to post again, please keept the following in mind:
    BOILERPLATE TEXT:
    Note that because this is boilerplate text, not all points may apply to any given, specific poster.
    If you give complete and detailed information about your setup and the issue at hand,
    such as your platform (Mac or Win),
    exact versions of your OS, of Photoshop (not just "CS6", but something like CS6v.13.0.6) and of Bridge,
    your settings in Photoshop > Preference > Performance
    the type of file you were working on,
    machine specs, such as total installed RAM, scratch file HDs, total available HD space, video card specs, including total VRAM installed,
    what troubleshooting steps you have taken so far,
    what error message(s) you receive,
    if having issues opening raw files also the exact camera make and model that generated them,
    if you're having printing issues, indicate the exact make and model of your printer, paper size, image dimensions in pixels (so many pixels wide by so many pixels high). if going through a RIP, specify that too.
    etc.,
    someone may be able to help you (not necessarily this poster).
    a screen shot of your settings or of the image could be very helpful too.
    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers:
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

  • RMI Client Code Issue

    Hello,
    Here is my client side RMI program:
    import java.rmi.*;
    public class MyRemoteClient {
    public static void main(String args[]) {
    MyRemoteClient mm = new MyRemoteClient();
    mm.go();
    public void go(){
    try{
    MyRemote service2 = (MyRemote) Naming.lookup("rmi://xxx.xxx.xx.xx/Hello");
    String s = service2.sayHello();
    System.out.println(s);
    } catch(Exception ex){ex.printStackTrace();}
    }Having started RMI Registry and Service Implementor code on the server, if I try to run the above code on the client it fire the following error:
    java.rmi.ConnectException: Connection refused to host: 127.0.1.1; nested exception is:
    java.net.ConnectException: Connection refused: connect
    at sun.rmi.transport.tcp.TCPEndpoint.newSocket(Unknown Source)
    at sun.rmi.transport.tcp.TCPChannel.createConnection(Unknown Source)
    at sun.rmi.transport.tcp.TCPChannel.newConnection(Unknown Source)
    at sun.rmi.server.UnicastRef.invoke(Unknown Source)
    at MyRemoteImpl_Stub.sayHello(Unknown Source)
    at MyRemoteClient.go(MyRemoteClient.java:11)
    at MyRemoteClient.main(MyRemoteClient.java:6)
    Caused by: java.net.ConnectException: Connection refused: connect
    at java.net.PlainSocketImpl.socketConnect(Native Method)
    at java.net.PlainSocketImpl.doConnect(Unknown Source)
    at java.net.PlainSocketImpl.connectToAddress(Unknown Source)
    at java.net.PlainSocketImpl.connect(Unknown Source)
    at java.net.SocksSocketImpl.connect(Unknown Source)
    at java.net.Socket.connect(Unknown Source)
    at java.net.Socket.connect(Unknown Source)
    at java.net.Socket.<init>(Unknown Source)
    at java.net.Socket.<init>(Unknown Source)
    at sun.rmi.transport.proxy.RMIDirectSocketFactory.createSocket(Unknown Source)
    at sun.rmi.transport.proxy.RMIMasterSocketFactory.createSocket(Unknown Source)
    ... 7 more
    I am wondering as to why is it trying to connect to a local host 127.0.1.1 instead of the IP Address specified at by"xxx.xx.xx.xx" in the program?
    I have the stub class and the service interface classes on my client-side.
    Thanks.

    I am wondering as to why is it trying to connect to a
    local host 127.0.1.1 instead of the IP Address
    specified at by"xxx.xx.xx.xx" in the program?Because that only specifies where the lookup should be done, i.e. where the Registry is. This lookup() returns a stub to your remote object which has its own IP address and port embedded into it, and that's where 127.0.0.1 is coming from - you're not doing Registry.lookup at this point, you're calling your remote method.
    This indicates a DNS or /etc/hosts misconfiguration - your primary IP address is coming up as 127.0.0.1 instead of whatever your public IP address is. Famous Linux issue. You should really fix it in your DNS or /etc/hosts, but you can work around it by setting -Djava.rmi.server.hostname=<public IP address> at the server JVM.

Maybe you are looking for

  • Help! Youcam, Microsoft Word, Excel, Powerpoint and Adobe Reader all not working in U310

    Using a U310 ideapad with Windows 7 bought one year ago - warranty just expired of course!! 5 days ago I tried to pull up and excel spreadsheet from an e-mail and got an error message that there was not enough memory to do so. Afterward, I tried to o

  • Toshiba L305 stops at BIOS splashscreen

    Hello all, My L305 won't boot past the BIOS splash screen. Pressing F2 or F12 does nothing. All lights appear to be functioning normally. The HDD light turns on for a second then is always off. It appears there is no disc activity. What I have tried:

  • Change of Search help for location field in report incident

    Hi All,          i have added new fields Region,BSA in the report incident form .here based on the region entered in the search help the corresponding bsa have to be displayed in the search help of BSA .these are achieved customising  the search help

  • Problem with delimited output in repeating frames - urgent

    I have two repeating frames one below the other. The problem is that unless there are two rows or more that result in the first repeating frame, it does not appear in the delimited output file. What is going on here ? Is it a bug ? This happens only

  • Migrating data from Sun ONE directory server into openLDAP

    Hi, I was to migrate the data from Sun ONE directory server into openldap. Has anybody done this or know about this. Can you please share the steps that needs to be done. NOTE: I have exported the data into LDIF file but when I run with ldapadd into