What is the logical message type for Inbound Credit Memo (MM)

Hi Folks,
What is the logical message type for Inbound Credit Memo (MM)
Plz explain.
Thanks,
Matt

Hi Mat,
  The logical message types are as follows.
  /DSD/HH_CREDITDATA             DSD Credit Exposure and Credit lLmit
  CREADV                         Credit memo display
  CRESTA                         Copy credit status (DebtorCreditAccount)
  SBINV                          Credit memo procedure with invoice creation
  SBWAP                          SD Credit Memo Procedure with Automatic Postin
You can search for message types in database table EDMSG.
Regards,
Vimal.

Similar Messages

  • Logical Message Types for MM IDOCs

    Hi,
    My Client is on ECC 6.0. They are using a third party system and the information coming from that system has to create a PR, PO, GR, GI, Invoice receipt(MIRO) and Vendor Invoice (FB60) through IDOC's, which are inbound to SAP.
    What are the Logical Message Types we can use to transfer all the data into SAP. Also, how to look at the fields in the IDOC to check if all the required fields are available in the IDOC.
    Thanks,
    Randy.

    I'm not an expert but as per my knowledge these are the IDOC types and you can check the IDOC structures using we30.
    Purchase Requisition: PREQCR101
    Purchase Order: ORDERS01
    Post Goods Issue: MBGMCR01 / MBGMCR02
    Goods Receipt: WMMBID02
    Invoices: INVOIC01

  • What is the best data type for wallet application?

    Hi Friends..
    I want to know what is the best data type for wallet application..
    Assume that, i want to the Total of money saved digitally in Applet Wallet..
    And then if there's any transaction the Total of money which saved digitally in Applet Wallet would be Subtracted or Added depends on how much money that spent or saved..
    Which one is the best implementation of these scenarios :
    1. I save the User ID and Total of money in the Java Card, and then if there's any transactions, it would be added or subtracted directly and then saved again in the Java Card
    2. Or.. I save the User ID in the Java Card whereas Total of money in the Database, and then if there's any transactions, the ID would be read from the Card, and then select the Database based on that ID, and then Add or Subtract the money depends on how much money spent in the Transaction
    Please help me regarding this
    Thanks in advance

    Hi,
    Personally I would choose to store the total amount stored on the card. You could use two shorts (short[] perhaps) to store an integer (add more shorts to increase precision) and simply handle overflow your self. You could even look into using a third party library (or class) that treats a byte array as a big integer etc. There were some posts recently on floating point arithmetic that could be helpful for you since you will probably want to use decimals and JC does not natively support floats.
    Cheers,
    Shane

  • Process code for inbound credit Memo

    Hi All,
    May know what is the process code for inbound Credit Memo  (Return of Goods)
    Thanks,
    Matthew

    Hi Gautham,
    I checked the IDOC in BD87 tcode and it is saying "Function module not allowed: IDOC_INPUT_ORDRSP".
    I gave ORDR as the process code in the inbound parameters of the receiver system partner profile.
    In the sender system, I gave me10 as the process code. And there the status is 12, so everything is fine over there.
    Vishwa.

  • WHat is the best index type for non uniqueness / Varchar columns in SQL 2008 R2

    Hello All Greetings,
    Please help me here with my doubt,
    in my table i have two columns about a million rows, it has about 20 columns in it, three columns with name as Period, Gender so most of the time these two columns use in where clause,
    Gender  will contain Either M or F , Period contains YYYY-Month (2013-December, 2013-August) etc so i would like to add a Index to these two columns so that in will increase the performance, so please let me know what type of indexes i need to add to
    these columns in the table,
    please note that only one time we will add data to the table which will take only 2 minutes but we query the table every day
    so my question what is the best index type that i need to create on columns with non uniqueness values in the column.,
    Thank you In Advance,
    Milan

    There is nothing whatever wrong with creating an index on a VARCHAR column, or set of columns.
    Regarding the performance of VARCHAR/INT, as with everything in a RDBMS, it depends on what you are doing. What you may be thinking of is the fact that clustering a table on a VARCHAR key is (in SQL Server) marginally less efficient than clustering on a monotonically
    increasing numerical key, and can introduce fragmentation.
    Or you may be thinking of what you have heard about writing JOINs on VARCHAR columns - it is true, it is a little less efficient than a JOIN on numeric type, but it is only a little less efficient, nothing that would lead you to never join on varchar cols.
    None of this does not mean that you should not create indexes on VARCHAR columns. A needed index on a VARCHAR column will boost query performance, often by orders of magnitude. If you need an index on a VARCHAR, create it. It makes no sense to try to find an
    integer column to create the index on - the engine will never use it.
    Check this reference: http://stackoverflow.com/questions/14041481/is-it-good-to-create-a-nonclustered-index-on-a-column-of-type-varchar
    Mark ANSWER if this reply resolves your query, If helpful then VOTE HELPFUL
    INSQLSERVER.COM
    Mohammad Nizamuddin

  • Message type for Inbound SD EDI message : Sales Order Confirmation

    Hi,
    There is an EDI message coming into SAP for sales order confirmation post delivery.
    The data in the Idoc should then proceed to update the system and create the delivery document.
    I need a standard Message Type which when triggered, will perform the above actions.
    Will ORDRSP Message type be useful here.
    Thanks ,
    Ankit

    Hi,
    Message type/Idoc type
    "ORDERS / ORDERS04 --For orders
    ORDCHG / ORDERS04 -Order change
    ORDRSP / ORDERS04 --PO
    DESADV / DELVRY02 --Deivery
    INVOIC / INVOIC02"-Invoice
    Thanx,
    Pramod

  • What is the correct MIME type for an AD RMS protected PFILE?

    Hi,
     The context of why this question is asked is as follows: In an SAP Webdynpro application (the UI is displayed in a web browser). We intercept the file with SAP data that is being downloaded, encrypt it using AD RMS and then send the modified (encrypted)
    file back to be downloaded by the browser into the user's downloads folder.
     Because of this interception and modification of the text file being downloaded (.txt), which is now a .PTXT file (PFILE) there is a conflict in the MIME TYPE. 
    So could you let me know what the MIME type for a PFILE would be? Is there a standard MIME Type for all these PFILES? (.ptxt, .pfile etc..)? And is it by any chance "application/octet-stream"?

    Hi,
    I also noticed this - it seems that Microsoft's 4 char extensions like .docx are not being recognized by application type so that either the web server or mod-plsql is defaulting to the "application/octet-stream" mime type which refers to a file with binary content - instead of the traditional "application/msword" mime type you would expect.
    If you know, at the point of insert into your database table, both the mime type and file name, one workaround would be to check if the mime type is 'application/octet-stream' and the file's extension is ".docx" or other likely extensions and then treat it as mime type 'application/msword", etc.
    Not really a solution but might be sufficient workaround depending on your situation.
    Ted
    Edited by: Ted Martin on Oct 25, 2012 7:27 PM

  • What is the IDOC Basic Type for sales order creation

    Hi Experts,
    Can anyone tell me Idoc Basic type for sales order creation.
    Thanks
    Prashant

    Hi,
    The basic types for creating the order are:
    1.Orders01
    2.Orders02
    3.Orders03
    4.Orders04
    5.Orders05.
    The basic type for SIS order is:
    SISCSO01.
    Regards,
    Krishna.

  • What is the best field type for currency calculations?

    Hiya,
    I am doing a load of currency calculations e.g. here's one line of it
    The 'Total' fields I am using for doing/totalling my calculations has been defined as a local variable that reference an amount field setup in the data dictionary as:
    So in my program I am using these 2 decimal field.
    Of course I now realize this is a problem, as lots of rounding occurs and my values are way out when you deal with amounts in the millions.
    Does anyone know what type of variable they think is best for doing currency calculations?
    And could you provide a simple example?
    Many thanks!

    Hello Robert,
    I guess you can go ahead with ATFLV, incase if you want to display as a currency, you can use the function module  KKEK_CONVERT_FLOAT_TO_CURR.
    DATA: c_lv_float TYPE ATFLV VALUE '4.4500000000000000E+02',
          c_lv_curr TYPE WAERS VALUE 'EUR',
          c_lv_currval TYPE NETWR_AP.
    CALL FUNCTION 'KKEK_CONVERT_FLOAT_TO_CURR'
      EXPORTING
        float_imp          = c_lv_float
        curr_imp            = c_lv_curr
    IMPORTING
      CURR_FIELD_EXP      = c_lv_currval
    EXCEPTIONS
      OVERFLOW            = 1
      OTHERS              = 2.
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    WRITE:/ c_lv_currval.
    Output: 445,00
    Regards,
    TP

  • What is the default return type for a constructor

    I tried and found out that it should not be void, what is it? I am confused. Any clue? thanks

    constructors do not have return types. it is implicit that it is initializing a newly created object of the class of which it is a member.
    --p                                                                                                                                                                                                                                                                                               

  • MB1B transfer posting Idoc/Message type for outbound and inbound

    Hello All
    Can anyone tell me the idoc/message type for movement type 313 outbound and 315 inbound to SAP. This is for MB1B Enter Transfer Positing.
    Thanks
    Ricky

    Its WMMBXY

  • Idoc Message type for Customer Change XD02

    Hi All
    As per the business requirement, we need to have inbound interface to ECC system, in which we will add more partner's to the existing customers.
    I tried posting Idoc thorugh WE19 using message type DEBMAS and basic type DEBMAS06. It is creating the new partner which is part of the idoc but it behaves like a refresh, i mean the already existing partners are getting deleted.
    Tried to find the relevant message type for XD02 but did not find other than DEBMAS.
    Can anyone let me know how to acheive this.
    Following are the segments am passing.
    E1KNA1M :
    MSGFN     4
    KUNNR     1234
    ANRED     /
    BBBNR     0
    BBSNR     0
    BUBKZ     0
    KTOKD     /
    LAND1     /
    NAME1     /
    ORT01     /
    ORT02     /
    PSTLZ     /
    REGIO     /
    SORTL     /
    SPRAS     /
    STRAS     /
    TELF1     /
    LZONE     /
    UMJAH     0
    JMZAH     0
    JMJAH     0
    UMSA1     0
    HZUOR     0
    CIVVE     X
    SPRAS_ISO     EN
    E1KNVVM :
    MSGFN     4
    VKORG     1
    VTWEG     1
    SPART     1
    KALKS     1
    AWAHR     100
    ANTLF     9
    KZAZU     X
    LPRIO     1
    VSBED     1
    WAERS     USD
    VWERK     ABCD
    UEBTO     0
    UNTTO     0
    PODTG     0
    E1KNVPM :
    MSGFN     4
    PARVW     RE
    KUNN2     1010
    PARZA     0
    After execution, i am getting IDOC status 53 with message "Changes have been made".
    Thanks & Regards
    Madhu K

    Hi Madhu,
    /thread/2051526 [original link is broken]
    Same post in abap general.
    Regards,
    Madhu.
    Edited by: madhurao123 on Oct 4, 2011 11:59 AM

  • Creation Output Message Type for Scheduling Aggrement

    Hi,
    Please share the detail configuration for the Output message type for scheduling aggrement, i need to use ALE IDoc so that i can send this SA to SRM system.
    Regards,
    Pankaj

    Hi,
    Output determination process for Scheduling aggrement.
    SPRO-IMG-Material Management-Purchasing-Messages-Output Control-
    1)First create condition table based which becomes condition record for accessing the data.
    2)Create access sequence to access the data or search the based on the conditoin record in sequence  of the condition table.
    3)Define your message type like print,fax etc.
    Maintain the conditon record for the MN07 for the output type which new one you created.
    Regards
    Ravi Shankar.

  • Define fault message type for RFC

    Hi,
    How can I define the fault message type for RFC so that when I import RFC from another server to XI, I can view this Fault type.
    So far I could only see Request and Response type .
    Thanks

    Hi Rokie,
    Acc. to me by default we are having only request and response mesages for RFC and in case some exception/fault is there the RFC will through this in the response under the Return parameter having msg,id number as sub fields which you can map to fault message type.
    Sachin

  • EDI Message Type for Credit Memo inbound message

    Hi Experts ,
    We have ECC6.04.
    We configured Incoming vendor invoice idoc ( Message Type - INVOIC, Basic type  - INVOIC02)  which is working fine. We also have Credir Memo incoming message ( Message Type - GSVERF , Basic type  - GSVERF03 , Processing code-  GSVE , FM-IDOC_INPUT_GSVERF_START and assigned this FM to Object Type-  BUS2094)
    I am using same IdoC in WE19 that of Invoice, which successfully posted and editing the BSART as CRME and entering the Messgae type GSVERF , but when I am posting it system is giving error
    No record exists in T661W for vendor 2000001 , plant , unloading pointMessage no. V4032
    Diagnosis
    The system could not determine a sold-to party as no record has been specified in Table T661W for the displayed supplier, plant, and unloading point values.
    System Response
    IDOCS processing is terminated.
    Procedure
    Please create a record in Table T661W for the above values and restart the IDOCS planning from electronic mail.
    and
    EDI: Syntax error in IDoc (segment cannot be identified)Message no. E0078
    Diagnosis
    The segment E1EDK04 does not occur at the current level of the basic type GSVERF03 (extension ).
    This error can have several reasons:
    The segment E1EDK04 is assigned to a group whose header segment does not occur.
    The segment E1EDK04 does not exist in the syntax description of the basic type GSVERF03 (extension ).
    The sequence of segments in the group in which the segment appears is incorrect.
    Previous errors ('mandatory' segment or group missing) may be due to this error.
    Procedure
    Please check the IDoc or the syntax description of the basic type GSVERF03 (extension ).
    Th table T661W  is for Vendor, partner decribtion, Sold to party, Unlaoding Point. So I am not getting whsy sold to part relevant table ssytem is asking to make entry ?
    Can anyone please suggest/help me what is the problem and solution on this ?
    Thanks
    NAP

    Hi ,
    Currently we are using Message Type - GSVERF , Basic type - GSVERF03 , Processing code- GSVE , FM-IDOC_INPUT_GSVERF_START and assigned this FM to Object Type- BUS2094)..which is giving above error. I just found that process code GSVE is for Outbound message
    Can any one suggest /  confirm what should  be exact Message Type , Basis Type, Process code  and Funct. Module requiered  for processing EDI inbound message in MM - Logistics Inv Varification ? 
    Thanks
    NAP

Maybe you are looking for