PO with shipping tab, could we not craete delivery and use migo to do it?

Hi experts
We setup vendor as return vendor , So when we create return Po, it will have shipping tab on po item.
So do we have to craete delivery for it ? Because for some return parts, Vendor agree to return back the money but no need return the goods to them, So we hope for such case, User may no need to create the
delivery to ship the parts, just do migo 161 to reduce the qty? 
Please advise if it's possible?
Thanks
Alice

Hi,
What I under stood  is:
PO created for 100  qty.
10 to be returned. but vendor ready to pay the cost. Is it so ..?
Then scarp this 10 qty.(551 mvt.type)
Credit Memo issued to vendor against this vendor.
regards

Similar Messages

  • HT4623 Is anybody having trouble with your ringer after installing OS 6.0 and using the new GPS system?

    Is anybody having trouble with your ringer after installing OS 6.0 and using the new GPS system?

    The good (?) news is many people are have OS 6.0.1 wifi problems.
    I could not connect to my home network.  What eventually worked for me (twice now), though it makes no sense, is to go to the particular connection you want to use, hit the little blue arrow on the right to get the details screen.  Scroll down to the bottom and change "HTTP Proxy" from "None" to "Auto".  Then leave the "URL" field that pops up blank. 
    This should not work.  However, it has for me where many other suggestions have not. 
    *shrug*
    Best of luck.

  • Oracle BPEL - Does not cater for not null columns and use of "default".

    Oracle BPEL - Does not cater for not null columns and use of "default".
    BPEL fails with message:
    ORA-01400: cannot insert NULL into ("EDDB"."SEISMIC_LINES"."COORD_SYSTEM_ID")
    But SQL*PLUS command works:
    INSERT into EDDB.SEISMIC_LINES
    (etc)
    regards
    Allan Ford
    Analyst / Programmer - IT Application Services, IT Services, Shared Business Services
    Santos Ltd
    Level 4, 91 King William Street, Adelaide SA 5000
    Phone: 08 8224 7944 Fax: 08 8218 5320
    Email: [email protected]

    note: BPEL keeps it's own "offline" copy of table and database items. A column that is marked not null in the database can be marked as nullable in this area. (if you kmow that a trigger is going to cater for this ..)
    One workaround is to use a trigger to provide value rather than use the column default ..

  • I am from Russia,so can i buy a Macbook pro with retina in Usa or in another country and use it in russia,with Russian language???

    I am from Russia,so can i buy a Macbook pro with retina in Usa or in another country and use it in Russia,with Russian language???
    Like iphone you can buy it in Usa without contract and use in other countries,you can select language in iphone,can i select language in macbook pro???
    Thanks

    Sure, you can choose and use MBP with Russian language.

  • When I close Safari now with multiple tabs, it does not warn me I have multiple tabs open.  How do I turn it on?

    Safari always warned me when I had multiple tabs open before it would close.  Now it closes whenever I hit the red X (close out).  When I was at the Apple store ithey indicated that that is how the latest Safari works, but it is supposed to open all the tabs that were open when it is relaunched.  Mine appeared to do that when I was at the Apple store, but now it does not.  When it opens now, it just opens my home screen with no tabs.
    Can anyone shed light on this?

    One change in Firefox 4 is to by default stop Firefox displaying the warning message, but it can be turned back on by changing some preferences.
    # Type '''about:config''' into the location bar and press enter
    # Accept the warning message that appears, you will be taken to a list of preferences
    # Locate the preference '''browser.tabs.warnOnClose''', if its value is set to '''false''', double-click on it to change its value to '''true'''
    # Repeat this for these 3 preferences '''browser.warnOnQuit''', '''browser.warnOnRestart''' and '''browser.showQuitWarning'''

  • Help:  VA01/2 - Shipping tab - Tolerance Fields not Maintainable.

    These fields are not maintainable in VA01 and VA02 in our ECC 6.0 system. We can't find in config where to allow and open these fields up to make them so the users can change the values of these two fields (over and under tolerance on the shipping tab of the order line).
    These fields currently default in from the Customer Master, however, we want to allow the user to change them on the customer order line in the Shipping tab.   Where do we change our system (config) to allow this.
    thanks,
    David

    Hi Dave, I think you're using Cust Master Info Records..and if so, the system might not allow you to change it here..either change it in CMIR or remove the CMIR and try it.
    Regards,
    Raghu.

  • Help-kerberos works with spnego keytab file but not in netbeans and Metro

    Hi,
    Appreciate if someone can shed some light on this problem and guide on what else am I missing.
    I'm trying to call .NET based WCF webservice (MS Dynamics CRM - OrganizationSvc) from a java client. Started looking at Metro framework for interoperability. I was able to generate all the proxy classes and was able to write the code to invoke web service. However the challenge was using Kerberos based authentication and related setup.
    I primarily followed the link below which was very helpful but had to dig more to get more specific details.
    http://blogs.sun.com/enterprisetechtips/entry/building_kerberos_based_secure_services
    Tried to follow netbeans route and hit some roadblocks in verifying the setup (krb5.conf & login.conf & wsit-client.xml). So, came across SPNEGO and used their examples, made changes accordingly and after experimenting with various configuration settings(krb5.conf and login.conf), finallyI was able to run HelloKDC & HelloKeytab files successfully.
    krb5.conf_
    [libdefaults]
    default_realm = NA.CONVERGYS.COM
    [realms]
    NA.CONVERGYS.COM = {
    kdc = CDCWW13.na.convergys.com
    admin_server = CDCWW13.na.convergys.com
    [domain_realm]
    .na.convergys.com = NA.CONVERGYS.COM
    login.conf_
    spnego-server {
    com.sun.security.auth.module.Krb5LoginModule required
    useKeyTab=true
    keyTab="C:/WINDOWS/orldwv705_feb03.keytab"
    doNotPrompt=false
    storeKey=true
    principal="HOST/ORLDWV705.na.convergys.com"
    debug=true;
    C:\spnego-r7>klist -k C:\WINDOWS\orldwv705_feb03.keytab
    Key tab: C:\WINDOWS\orldwv705_feb03.keytab, 1 entry found.
    [1] Service principal: HOST/[email protected]
    KVNO: 7
    With these settings, I was able to successfully make the call & Hello Keytab was able to get the Ticket and authenticate.
    http://spnego.sourceforge.net/index.html
    http://spnego.sourceforge.net/client_keytab.html
    http://spnego.sourceforge.net/troubleshoot_hellokeytab.html
    However, when I run the example in Netbeans with the setup mentioned in the link below, I run into following exception...
    http://metro.java.net/guide/Developing_with_NetBeans.html#wsit_example_with_nb-creating_wsit_client
    http://metro.java.net/guide/_Configuring_Kerberos_for_Glassfish_and_Tomcat.html
    1) noticed that sc:KerberosConfig element in wsit-client.xml does not get updated automatically in netbeans ide, so manually edited to put the entries.
    2) also followed the setup required in glassfish domain.xml & login.conf xml.
    3) also noticed that netbeans setup requires us to use C:\Windows\krb5.ini file which is nothing but krb5.conf file referred elsewhere.)
    wsit-client.xml_
    <wsp:Policy wsu:Id="ClientKerberosPolicy"
    xmlns:sc="http://schemas.sun.com/2006/03/wss/client"
    xmlns:wspp="http://java.sun.com/xml/ns/wsit/policy"
    xmlns:scc="http://schemas.sun.com/ws/2006/05/sc/client"
    xmlns:wsp="http://schemas.xmlsoap.org/ws/2004/09/policy"
    xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
    <wsp:ExactlyOne>
    <wsp:All>
    <sc:KerberosConfig wspp:visibility="private"
    loginModule="KerberosClient"
    servicePrincipal="HOST/ORLDWV705.na.convergys.com"
    credentialDelegation="true" />
    </wsp:All>
    </wsp:ExactlyOne>
    </wsp:Policy>
    ERROR
    INFO: WSP5018: Loaded WSIT configuration from file: file:/C:/Documents%20and%20Settings/rchoppal/My%20Documents/NetBeansProjects/TestOrgSvc/build/web/WEB-INF/classes/META-INF/wsit-client.xml.
    WARNING: [failed to localize] WSP_0075_PROBLEMATIC_ASSERTION_STATE({http://schemas.microsoft.com/xrm/2011/Contracts/Services}AuthenticationPolicy, UNKNOWN)
    WARNING: [failed to localize] WSP_0019_SUBOPTIMAL_ALTERNATIVE_SELECTED(PARTIALLY_SUPPORTED)
    INFO: >>>KinitOptions cache name is C:\Documents and Settings\rchoppal\krb5cc_rchoppal
    INFO: >>> KrbCreds found the default ticket granting ticket in credential cache.
    SEVERE: WSITPVD0050: Error while Securing Request Message.
    com.sun.xml.wss.XWSSecurityException: Unexpected Exception in Kerberos login - unable to continue
    at com.sun.xml.ws.security.impl.kerberos.KerberosLogin.login(KerberosLogin.java:94)
    at com.sun.xml.wss.impl.misc.WSITProviderSecurityEnvironment.doKerberosLogin(WSITProviderSecurityEnvironment.java:3049)
    at com.sun.xml.wss.provider.wsit.WSITClientAuthContext.populateKerberosContext(WSITClientAuthContext.java:911)
    at com.sun.xml.wss.provider.wsit.WSITClientAuthContext.secureRequest(WSITClientAuthContext.java:318)
    at com.sun.xml.wss.provider.wsit.WSITClientAuthContext.secureRequest(WSITClientAuthContext.java:291)
    at com.sun.enterprise.security.webservices.ClientSecurityPipe.process(ClientSecurityPipe.java:158)
    Caused by: javax.security.auth.login.LoginException: java.lang.NullPointerException
    at sun.security.krb5.Credentials.acquireDefaultCreds(Credentials.java:451) (i tried to search open source code, but this line did'nt match exactly)
    at sun.security.krb5.Credentials.acquireTGTFromCache(Credentials.java:272)
    at com.sun.security.auth.module.Krb5LoginModule.attemptAuthentication(Krb5LoginModule.java:589)
    at com.sun.security.auth.module.Krb5LoginModule.login(Krb5LoginModule.java:542)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at javax.security.auth.login.LoginContext.invoke(LoginContext.java:769)
    at javax.security.auth.login.LoginContext.access$000(LoginContext.java:186)
    at javax.security.auth.login.LoginContext$4.run(LoginContext.java:683)
    at java.security.AccessController.doPrivileged(Native Method)
    at javax.security.auth.login.LoginContext.invokePriv(LoginContext.java:680)
    at javax.security.auth.login.LoginContext.login(LoginContext.java:579)
    at com.sun.xml.ws.security.impl.kerberos.KerberosLogin.login(KerberosLogin.java:85)
    SEVERE: SEC2004: Container-auth: wss: Error securing request
    javax.xml.ws.WebServiceException: WSITPVD0050: Error while Securing Request Message.
    at com.sun.xml.wss.provider.wsit.WSITClientAuthContext.secureRequest(WSITClientAuthContext.java:299)
    at com.sun.enterprise.security.webservices.ClientSecurityPipe.process(ClientSecurityPipe.java:158)
    Caused by: javax.xml.ws.soap.SOAPFaultException: Unexpected Exception in Kerberos login - unable to continue
    at com.sun.xml.wss.provider.wsit.WSITAuthContextBase.getSOAPFaultException(WSITAuthContextBase.java:1617)
    at com.sun.xml.wss.provider.wsit.WSITAuthContextBase.getSOAPFaultException(WSITAuthContextBase.java:1633)
    ... 42 more
    WARNING: StandardWrapperValve[TestOrgSvcServlet]: PWC1406: Servlet.service() for servlet TestOrgSvcServlet threw exception
    javax.xml.ws.WebServiceException: Cannot secure request for {http://schemas.microsoft.com/xrm/2011/Contracts}CustomBinding_IOrganizationService
    at com.sun.enterprise.security.webservices.ClientSecurityPipe.process(ClientSecurityPipe.java:165)
    Caused by: javax.xml.ws.WebServiceException: WSITPVD0050: Error while Securing Request Message.
    at com.sun.xml.wss.provider.wsit.WSITClientAuthContext.secureRequest(WSITClientAuthContext.java:299)
    at com.sun.enterprise.security.webservices.ClientSecurityPipe.process(ClientSecurityPipe.java:158)
    ... 40 more
    Caused by: javax.xml.ws.soap.SOAPFaultException: Unexpected Exception in Kerberos login - unable to continue
    at com.sun.xml.wss.provider.wsit.WSITAuthContextBase.getSOAPFaultException(WSITAuthContextBase.java:1617)
    at com.sun.xml.wss.provider.wsit.WSITAuthContextBase.getSOAPFaultException(WSITAuthContextBase.java:1633)
    ... 42 more
    Edited by: user6748004 on Feb 3, 2011 5:36 PM
    Edited by: user6748004 on Feb 3, 2011 5:38 PM

    Hi Gasha,
    The only change I did after this, was to try and use 'KerberosServer' configuration from the wsit-client.xml. Atleast, this enabled the glassfish application to load the configuration related to keytab etc, and use it to communicate with the WCF service for negotiation.
    <sc:KerberosConfig wspp:visibility="private"
    loginModule="KerberosServer"
    servicePrincipal="HOST/ORLDWV705.na.convergys.com"
    credentialDelegation="true" />
    login.conf has
    KerberosServer {
    com.sun.security.auth.module.Krb5LoginModule required
    useKeyTab=true
    keyTab="C:/WINDOWS/orldwv705_feb03.keytab"
    doNotPrompt=false
    storeKey=true
    principal="HOST/ORLDWV705.na.convergys.com"
    debug=true;
    fyi.. Used the following way to create the keytab
    Keytab was created using below instructions
    ktpass -princ HOST/[email protected]
    -mapUser [email protected]
    -mapOp set
    -pass *
    -crypto DES-CBC-MD5
    -pType KRB5_NT_PRINCIPAL
    -out orldwv705.keytab
    Targeting domain controller: CDCWW13.na.convergys.com
    Successfully mapped HOST/ORLDWV705.na.convergys.com to svcMSCRMDev.
    Key created.
    Output keytab to orldwv705.keytab:
    Keytab version: 0x502
    keysize 75 HOST/[email protected] ptype 1 (KRB5_NT_PRINCIPAL) vno 8 etype 0x3 (DES-CBC-MD5) keylength 8 (0x0bc27ca83891dc2a)
    Also realised that we need to add 'HTTP/ORLDWV705.na.convergys.com' & 'http/ORLDWV705.na.convergys.com' using set SPN commands on the AD of the server where CRM is installed.
    With these changes, the negotiate authentication seems to have happened using the Kerberos token from the keytab, but later ran into an error for which I was not able to get any clue to go forward. Someone in another post about this error suggested that it worked once they changed principal names, but when I tried I did'nt get any success.
    This is where I'm struck now. What I don't know is if there is another setup from which we can try a similar interoperability example for ex.. weblogic 10.1 & eclipse which is more close to our real environment.
    SEVERE: SEC2004: Container-auth: wss: Error securing request
    java.lang.IllegalArgumentException: Missing argument
    at javax.crypto.spec.SecretKeySpec.<init>(DashoA13*..)
    at com.sun.xml.ws.security.impl.kerberos.KerberosContext.getSecretKey(KerberosContext.java:91)
    at com.sun.xml.wss.impl.filter.SignatureFilter.process(SignatureFilter.java:525)
    Edited by: user6748004 on Apr 8, 2011 10:39 AM

  • Having trouble communicating with ipod says software was not installed correctly and then asks if i want it repaired but couldnt need help

    Having trouble communicating with i pod says software was not installed correctly and asks if i want it repaired but then says could not be repaired.Installed uninstalled numerous times but nothing dont know what else to do.

    See the second box of  Troubleshooting issues with iTunes for Windows updates.
    tt2

  • Likely bug with external editing (in CS5 not CS6 beta) and edited image not showing back up in LR

    I have come across something strange today that I've not seen before. I'm running LR 4.0 under Win7 64-bit. I usually use Photoshop CS6 beta as my external editor, but invoke CS5 when I have to use some tools that don't support the beta. Here is the scenario:
    * I have CS5 open
    * I externally edit an image in CS5 and Save it from CS5 when I'm done
    * The edited image does not show up in LR
    * I close LR and reopen it
    * There is the edited image!
    I have duplicated this many times this evening. I don't think I've seen it when I've used CS6 beta.

    Something strange is going on because I had the behavior reported of edited image not showing up after using another filter, Nik Silver Efex Pro 2.

  • Can I with no worries delete my old back-up and use Time Machine?

    Before upgrading my MacBook to Leopard I took a back-up, just to be sure. I'm thinking of making a clean install of Leopard though, just to be certain to get the best out of it. The thing is that I want to try out Time Machine, but I don't have the space of on my external HD to make a partition for Time Machine and keep my old back up. So is Time Machine reliable? Would it be safe for me to back up my system using Time Machine, do a clean install, and then get my files back to my Mac through Time Machine and my external HD?
    Thanks

    It's your call.
    The first thing that Time Machine is going to do will be to make a full backup of your machine anyway, so from the standpoint of whether you'll need the old backup, that is unlikely from a purely "got a copy of the data" standpoint.
    However, if you ever want to roll back to Leopard, for example if you had a Tiger-only application or other issues that prevented you running Leopard, having that original backup would be invaluable, and not possible to do from Time Machine only.
    To hedge your bets, a second drive might be in order. It doesn't need to be a large one - just enough for your current data since you can backup your existing machine on it, leaving your existing drive (assuming it's larger) for TM.
    Of course, you could also not turn on Time Machine until you're ready, leaving you with your existing backup intact, and throwing that away when you turn on TM. That way you don't need an extra drive, you just miss out on TM in the short term.

  • I need help with boot camp. "Back up the disk and use Disk Utility to format it as a single Mac OS Extended (Journaled) volume. Restore your information to the disk and try using Boot Camp Assistant again."

    This message appears every time I try to partition my disk:
    "Back up the disk and use Disk Utility to format it as a single Mac OS Extended (Journaled) volume. Restore your information to the disk and try using Boot Camp Assistant again."
    I verified my Macintosh HD disk on Disk utility and then tried to repair it, but I am unable to click the repair button.
    It says it's not available because the startup disk is selected.
    I don't know what to do or how to go about both these problems.
    Please, any suggestions?

    This message appears every time I try to partition my disk:
    "Back up the disk and use Disk Utility to format it as a single Mac OS Extended (Journaled) volume. Restore your information to the disk and try using Boot Camp Assistant again."
    I verified my Macintosh HD disk on Disk utility and then tried to repair it, but I am unable to click the repair button.
    It says it's not available because the startup disk is selected.
    I don't know what to do or how to go about both these problems.
    Please, any suggestions?

  • Error: iTunes could not connect to iPod because it is locked with a passcode.  You must enter your passcode on iPod before it can be used with iTunes.  We do NOT remember the passcode used.

    I am trying to restore my son's iPod Touch 4th generation. I went about 20 minutes into the recovery process and got the error message, iTunes could not connect to iPod because it is locked with a passcode you must enter your passcode on iPod before it can be used with iTunes. The whole problem started with my son putting in a password that he has now forgotten. How do I get passed this? 

    its the 1st time ive heared of this
    can u link it to an computer to add music?
    if so you should be able to restore it
    connect to itunes under  the devices tab click on the ipod now click summary on the top
    on the page you should see and check for update's or update tab
    below that there should be an restore tab just click on the restore tab
    NOTE RESTOREING WILL DELETE EVERYTHING YOU ADDED TO THE IPOD AND IT WILL BE BACK TO FACTORY SETTINGS

  • 10.9.5 with camera raw 5.07 not showing .RW2 and DNG but showing .CR2 previews in finder

    Even with the latest OS and latest camera raw, only my Canon raw image files display proper previews in the finder, and open properly with iPhoto and Photoshop.  .RW2 and .DNG files will not show previews or open with iPhoto, and .RW2 files won't even open in Photoshop without being converted to DNG.  I've combed the support community questions for over a year now, am tech support oriented, and am ready to throw in the towel.  I've had this same problem with previous system versions and camera raw versions, so I know the solution lies with neither of the two. 

    I'm having exactly the same issue and I posted on Adobe's site and dpreview and StackExchange but nobody has the final answer. I can see thumbnail previews in finder with ALL my various Raw files (Olympus OMD EM1, Panasonic GH2 and GH3, and Nikon D5300) just fine but when I use the convert to DNG feature in Lightroom (latest version since I'm on the CC subscription), only the Nikon DNG files display a preview thumb in finder and neither the Oly or Panny DNG files display. The closest I got to an explanation is that, since the m4/3 cameras do their profiling in camera and Adobe doesn't have a profile for them, some of the info isn't converted into the DNG in those systems. The article I read about it was really about Aperture not being able to read the Adobe DNG files but it may also explain why Mac finder can't show preview thumbs.  Aperture 3: Some DNG images display as unsupported - Apple Support
    If there is no way to get preview thumbs in finder with the converted RAW files from my GH3 then I'll forgo converting for now.
    Here is my Nikon DNG
    And my Panny DNG (Oly is the same)
    Panny RAW shows up just fine
    As does the Oly ORF

  • SSAS 2008 snowflake - dimensions with one-to-many relationship (NOT fact table) and hierarchy?

    Hi, below is my data model for SSAS 2008 on snowflake schema.
    Below is SQL Server DW tables:
    DimStudent - StudentID [primarykey], StudentName, DateOfBirth, AddressID
    DimStudentAddresses - AddressID [primarykey], StudentID [foreignkey], ddressLine1, AddressLine2, AddressType
    FactEnrolment - StudentID, EnrolWeek, EnrolFees
    So here FactEnrolement.StudentID is joined to DimStudent.StudentID column,
    and relationship between DimStudent & DimeStudentAddresses is one to many I.e. one student can have multiple addresses like primary or secondry address.
    To design snowflake schema in SSAS 2008 BIDS project :
     [Question-1] how to join one-to-many dimensions (NOT fact table) Like DimStudent & DimAddresses?
     [Question-2] At the end I want to have a single dimension only I.e. Student which should have both DimStudent & DimStudentAddresses tables attributes init. So I can create hierarchy from these two table into a single dimension? How
    to do this?
    Please reply with feedback particular to my above scenario as I refereed other MSDN forums but nothing solid I found.
    Any STEP-BY-STEP guideline please. Many thanks.

    Hello KM,
    Have you solved this issue after refer to Bill's suggestion? Please let us know how things go.
    If you have any feedback on our support, please click
    here.
    Best Regards,
    Elvis Long
    TechNet Community Support

  • I have a problem with windows media player does not play audio and it does not rip cds is a gateway windows 7

    winwows media player its not respondig  and dont play audio

    Why are you asking your Windows question in an Apple forum?

Maybe you are looking for

  • SQL 2012 SSIS package runs from the command line (dtexec.exe) and completes right away ...

    Hi I'm upgrading our SSIS packages from SQL 2005 to SQL 2012 . Everything is working fine in Visual Studio, but when I'm submitting dtexec.exe it's finishing right away in the command line (the actual execution takes long time).  It looks to me that

  • Can't get picture of other person whilst calling t...

    Can someone help me i seem to be able to hear people when i call them but cannot see their picture just my own in the little box, can anyone help me pls 

  • Facebook

    Can anyone tell me how to get the Facebook app to work correctly. I can handle all the usual stuff like comments not showing on the right photos, but now I can not get it to load at all or the newsfeed is hours old even though it says that it has bee

  • SD: IDOC: Missing functions

    Hi I'm trying to send picking data via edi/ale to a non-SAP system. I tried to add a process code to the message type PICKSD and only "SD02" are available? When i try to add  any of the other codes i get a error when i try to use edi/ale. "EDI: Funct

  • HT5958 Problem Updating archived FCPx Events to new FCPx 10.1

    I've recently upgraded to FCP X 10.1.  (I love all the improvements, but don't yet see the benefit of Libraries honestly :-) I had some FCP Events stored on my Mac Hard drive and updated those to the new Libraries format along with the upgrade to 10.