RMA number - Return to Supplier

Can U tell me how the mean of RMA number is?
I want have a number for return transaction in Purchasing for printing document, but i saw that it display following the receiving transaction. I think that RMA number is the return number, but i didnt see it again when i saw in Receiving Transaction Sumary.
How can i see it when i query transaction? it is very important. Help me!

It stands for Return Material Authorisation and is used in OE. It is a shipping return from a customer and is receipted in purchasing.
Tracy

Similar Messages

  • When you return a product to Apple, where do you write the RMA number?

    I'm returning a 13-inch MacBook Pro with Retina display, and I need to know which box or where to write the RMA number.
    Thanks in advance!

    Outer box, on the bottom of the label, or on the bos below the label.

  • Customize invoice num of debit memo while doing returning to supplier

    Dear Consultants,
    We have a requirement to make a customization to modify the invoice number of debit memo which is created when user doing "return to supplier" transaction.
    My question is: Is there anyway to make this requirement without modify the oracle standard package or use trigger?

    Hi Kapil,
    Whatever you are mentioned is already there in SBO and I am using it.
    The flow is Purchase Order->AP Down Payment->Outgoing Payment->AP Invoice From Purchase order and it is working properly. Also you can adjust advance with other AP transaction of concern vendor.
    Which version you are using of SBO?
    Thanks,
    Sachin

  • Need to retrieve RMA number

    I sent in a zen 32gb for repair with an RMA, but I didn't record the RMA number and I never received the email confirmation with the number. How can I retrieve the RMA number to check status?
    Thanks

    HI i returned a ZEN Mosaic a few weeks ago. I followed the instructions.
    Unfortunately, I have misplaced the RMA number for my records and I want to check the status of my repair.
    How can I do that?

  • How can I get a RMA Number?

    I live in state collage and my iphone 5 is broken. I would like to send it to repair so how can I get a RMA number?

    You can contact Apple Store Customer Service at 1-800-676-2775 or visit online Help for more information.
    http://www.apple.com/contact/
    From the link on the bottom righthand side of every page in the forum and most (I did not check all)
    pages on Apple.com

  • DUNS number of our suppliers in the vendor master???

    Hi,
    We would like to store the DUNS number of our suppliers in the vendor master. It seems that an LFA1 extension is available specifically for storing the DUNS number and other D&B related data. I can not find any info on this. Can some one provide me with some info? We are on ECC6.0.
    Thanks,
    Chetan Shah

    Dear Chetan Shah,
    You can use the Business Add-Ins (BADI) VENDOR_ADD_DATA_CS and BADI VENDOR_ADD_DATA for processing enhancements in the vendor master record.
    You use the BADI VENDOR_ADD_DATA_CS to integrate your own subscreens in
    the standard dialog. You can process your own data (add-on data) on these subscreens.                                                      
    Hope this will help.
    Regards,
    Naveen.

  • Problem in creating the ADODB.Connection object Error Number returned:-2147024770

    Hi,
    We are migrating our applications from Windows 2003 to 2008 application server. We have vbs script in a job which is invoked from Tivoli Workload Scheduler (Windows)/JOBLNCH 8.5.1. We are getting the error while creating ADOBD object (Error Number returned:-2147024770).
    The error does not occur when we directly run the job on the 2008 server, but only when invoked throught the TWS scheduler. Also, this error is not occurring on 2003 server when run through the TWS.
    Here is the code snippet used to create object.
    set oSrcConnect = CreateObject("ADODB.Connection")
    Could you please help us identify if any settings need to be changed to avoid this error. Many Thanks for looking into the question.

    Hi,
    Error -2147024770 = hex 8007007E
    Least significant 32 bits are hex 7E = decimal 126
    C:\>net helpmsg 126
    The specified module could not be found.
    This usually indicates that the COM object you're using is trying to load a DLL that is not installed.
    Based on only this error message, there's no way we can tell you how to fix your script.
    Bill

  • Function  in param, start_date & number , return sums next working day

    Hi Friends,
    I need a funtion which can take in parameters as start_date and number , sum them as new date and return new_start_date as workind day.
    Suppose '15-SEP-2009' + 6 should return 23-SEP-2009 as new date.
    Basically the sum of date and number should return next working day (excluding saturday,sunday).
    e.g '15-SEP-2009' + 6 =21-SEP-2009 , but it includes saturday and sunday , so it should return 23-SEP-2009.
    Thanks
    Niren

    Hi, Niren,
    The first respondent gave a better function for testing for work days (Monday through Friday). If there's a bug with Saturdays, I'm sure that can fixed. Also,that function depends on your NLS settings. If that's an issue for you, that can be fixed, too. The idea that there are 5 work days in any 7 consecutive days will cut down the execution time considerable.
    A function like I suggested would be useful if you had to consider holidays as well as weekends.
    Here's an untested example:
    CREATE OR REPLACE FUNCTION  work_days_away
    (      in_start_date         DATE
    ,      in_day_cnt         NUMBER
    RETURN     DATE
    DETERMINISTIC
    IS
         IF  in_start_date - TRUNC (in_start_date, 'IW') >= 5
         OR  is_holiday (in_start_date)
         THEN
              RETURN  work_days_away ( in_start_date + 1
                               , in_day_cnt
         ELSIF  in_day_cnt >= 1
         THEN
              RETURN  work_days_away ( in_start_date + 1
                               , in_day_cnt    - 1
         ELSE
              RETURN  in_start_date;
         END IF;
    END     work_days_away;This use the date format 'IW', which does not depend on NLS settings, rather than 'D', which does.

  • Need to set "Title", "Display Name" and "Name" fields to custom string property "RMA Number" for each instance of custom work item

    Hi,
    We have a custom Work Item we use to track RMA's. I've created a string property called RMA Number which is also used as a key.
    RMAs do not have titles or any other identifying properties other than the unique RMA number (think incident number).
    I was wondering what the best approach would be to set these other fields ("Title", "Display Name" and "Name") to the RMA Number value (RMAXXX), as I'm currently investigating using a powershell script via a workflow.
    Thanks,
    Pietro

    Hi Marcel,
    I've come up with the following:
    # Load the SMlets module
    Import-Module SMlets
    # Get the RMA Class
    $RMAClass = Get-SCSMObject -Class (Get-SCSMClass -Name MyWorkItem$)
    foreach ($RMA in $RMAClass)
    $RMANumber = $RMA.RMANumber
    $RMA | Set-SCSMObject -PropertyHashtable @{"DisplayName" = $RMANumber; “Title” = $RMANumber; ”Description” = $RMANumber; }
    Is it possible to make it aware of which RMA work item executed it, and only update that one? Updating all the records each time a new one is created will cause some problems in the future.
    Thanks,
    Pietro

  • What and where is the RMA number in complaints

    hello,
    we found there is RMA number in complaints search, component BT120S, view AdvSearchCompIEF,
    available search criteria has RMA number in it, but I cannot find it in the complants view ,component BT120H.
    Does any one knows this field in complaints?
    Thanks.

    Refer to
    http://help.sap.com/saphelp_crm60/helpdata/en/68/691976cd2ef845a4e62437a82b67df/frameset.htm

  • State of repair having the RMA number

    how Can I know the status of the repair lenovo B590
    Shipped For warranty service to hassen (Germany)?
    I have an RMA number.
    Thanks

    It appears you bought iPhone 5 in Georgia's gray market. As you are already aware that Apple does not sell iPhones in that country. The iPhone in question was most likely sold by Apple or its Authorized reseller in USA.
    Warranty or Out of warranty services for iPhones are provided by Apple only in the country of sale by Apple, USA in your case.
    It needs to be presented in any Apple Store in USA for evaluation. They will offer you a refurbished Similar iPhone for a price*.
    If you want to change it to iPhone 5S, you need to sell this one on your own and buy a new iPhone of your choice.
    Out-of-warranty* cost:
        iPhone 5s, iPhone 5c, iPhone 5: $269

  • RMA Number - UNABLE to get CRAZY HP support to send me a FEDEX Label

    Hey HP people,
    I have a NON_FUNCTIONING Envy.  They sent out a repair guy to swap the hard drive.  IT DID NOT WORK.
    They sent me a BOX to send back the computer to HP for repair / replacement as it is under the warranty.
    HOWEVER, they did NOT
    * Include an RMA number'
    * Include an ADDRESS or LABEL to ship it back to HP.
    I am on CALL #8 (EIGHT as in EIGHT CALLS to HP), and the complete knuckleheads in India do NOT seem
    able to send me a simple mailing lable / RMA
    * By email
    * By Fedex
    * By Snailmail
    * By carrier pigeon.
    So I have a BROKEN HP computer UNDER WARRANTY and I am more than 10 days out... with ZERO ability
    for HP to help me...
    I am soooo frustrated.  My next step is going to be to SMASH the HP and film it for YOUTUBE and send
    it to Meg Whitman with a burnt copy of my USELESS HP support card.
    HELP!!!!

    This is a consumer to consumer forum. 
    We don't speak on behalf of HP when we answer questions.
    Here are the  specifics on this community:
    http://h30434.www3.hp.com/t5/Rules-of-Participation/Rules-of-Participation/m-p/252325#M1
    There are other methods to contact HP customer support.
    http://www8.hp.com/us/en/contact-hp/contact.html
    And here's Meg Whitman's contact info...
     https://ssl.www8.hp.com/us/en/company-information/executive-team/ceo-index.html

  • How to Block Return to Supplier for Inactive Subinventories

    In Purchasing Module while making a Return to Supplier & when we query an Item, all relevant receipt lines are visible including Inactive Subinventories.
    User is able to make return to supplier for Inactive Subinventories also.
    How do we block Return to supplier for Inactive Subinventories 

    How to block calls has been asked hundreds, and hundreds of times at CSC, a simple search would have provided you with all the necesarry information. Please search before you ask
    https://supportforums.cisco.com/docs/DOC-19628
    HTH
    java
    if this helps, please rate
    www.cisco.com/go/pdihelpdesk

  • GTX 670 RMA number has changed.

    Hello, first sorry for my english, I'm from Brazil .
    Then sent to a graphics card RMA, last time I consulted, the information was that they had received the video card, but I tried to see now, and could not, gave invalid number, googled the e-mail and found that was generated another RMA number.
    First number:
    RR14032390
    New RMA number:
    RRD14032390
    The word was added, D.
    Addresses are also different:
    First RMA number:
    RMA DEPT.
    Attn: RMA Dept.
    901 Canada Court
    City of Industry, CA 91748
    TEL:(626) 271 - 1004
    RMA#: RR14032390
    New RMA number:
    Attn: RMA Dept.
    727 Brea Canyon Road, Suite 5
    Walnut, CA 91789
    TEL:(626) 271 - 1004
    RMA#: RRD14032390
    Was it because of some problem with the stock, the first address?

    This is a Users-to-Users Forum so we can't tell you anything about the state of your rma process. Contact MSI about it: >>How to contact MSI.<<

  • Return Materials Authorization (RMA) number

    Is their any BAPI or Function module to generate an RMA# which will also update the relevant tables for the sales order in question? I am on R/3 ver 4.6C.
    Kshitij

    Hi Dinesh,
                 I dont know Details for the RMA Type Processing in Action Profile.
    But i May guide you for the Detals you have Asked here as to May you Ease in Finding the Solution,
    For your Requirement
    Check All the Details in Foll Path:
    Customer Relationship Management>Basic Functions>Actions>Actions in Transaction>Change Actions and Conditions>Define Action Profiles and Actions(Enter you Action Profile Name and View)
    Object Type Name This Also Lies in the Header of the Action Profile (It is your Object Type ie the Transaction Object Type to Which you Assign the Action(The type identifier specifies the type of an object (for example, by the name of a class, if the object is an instance of an ABAP object class) in a persistent object reference (POR) or local persistent object reference (LPOR)))
    Context Class You shall Find this in Action Profile Header Data in Customization (It is the Class Name which you are using to Execute the Action,The context class assigned to the application applies to all action definitions, except action definitions which are explicitly assigned their own context class)
    Processing Class It Lies in the Processing Type for your Action Defination which you have Configured.(It is nothing but the Class which Executes as you Execute your Action Condition)
    Processing Method It is the Method Call which Runs on the Execution for your Required Action Condition
    Links:
    http://help.sap.com/saphelp_crm60/helpdata/en/b3/8adce03cc9436f8765e814fb2e09dd/frameset.htm
    http://help.sap.com/saphelp_crm60/helpdata/en/83/785141eb54ba5fe10000000a155106/frameset.htm
    Hope it answered your Queries..
    Thanks and Regards,
    RK.
    Added Links for More Details by: RK on Apr 23, 2009 3:19 PM

Maybe you are looking for

  • My itunes on windows7 pc does not recognize new ipad. using same cable and usb port that works for my ipod. what to do?

    My itunes on windows7 pc does not recognize new ipad. using same cable and usb port that works for my ipod. what to do? Thanks

  • [SOLVED] When archiso build.sh script, the mount for airootfs.img fail

    Solved, you can see the details down in this post https://bbs.archlinux.org/viewtopic.php … 6#p1481476. Basically I rebooted. VVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVV As the subject states, when running ./build.sh there is a mount: work/mnt/airootfs:

  • [CREATOR 2.1] : pb with browser

    HI everyone I have installed Creator 2.1 and I can compile project but when I want to execute , Creator doesn ' t open the web browser choosen. Moreover if I want to access forul throught "Help->Forum" menu, I can not. Can anyone help me ? Thanks in

  • Client Server Socket With GUI

    Hi, As the name of the forum suggests I am very new to this whole thing. I am trying to write a client/server socket program that can encrypt and decrypt and has a GUI, can't use JCE or SSL or any built in encryption tools. I have the code for everyt

  • Help - Mail Settings, Imap & POP

    I am having problems with my mail settings, I use macbook pro OS X 10.9, I also have an ipad as does my wife. Recently I have noticed that when my wife or I delete a message it deletes from both ipads. I have checked my settings and made sure we are