CRM Order Message number and description and Notes

Hi
   we have Error/warning messages and notes in CRMD_ORDER (ie in CRM sales order). I am looking to get the tables for message number and notes.  The purpose for this is I need to give these details to BW team for extraction. The standard extractor doesnt have these fields (ie message number or notes)
Here is the research I have done till now
1) for Messages people are suggesting to use FM - CRM_MESSAGES_DISPLAY which gives Log handle and Message number. with this data call CRM_MESSAGES_GET_MSG_INFO and this will give the Application area and message number which can be queried in T100 table
2) for notes I was suggested to use the FM - READ_TEXT
The option I have is use a user exit (extractor) and populate these data in the extractor before sending it to BW
Can you please let me know if message number and notes in a order can be directly queried from tables (is there a link table that connects the order GUID to the message table (T100) ?

Hi Veena
     I tried this but it doesnt get me to the actual notes. I was able to query STXH which doesnt have the actual notes. So I further went into STXL table where there is a field called "Data" which looks like a big GUID but not sure if there is a another table I need to plug this to get the actual notes.
     What I heard from the ABAP team is that there is no way to get this data through direct or link tables. We have to use the READ_TEXT FM
Edited by: Vikas BhumiReddy on Jul 6, 2011 4:55 PM

Similar Messages

  • BPC 7.5: Node ID and description are not loading

    Hi,
    I'm working on BPC 7.5 and SP04.
      I'm working on BPC 7.5 and SP04.
    I have G/L account hierarchy in BI system. I tried to load G/L account master data attr/text into BPC and successfully loaded but hierarchy node ID's and description are missed. I followed the below steps.
    1) Loaded master attr,text and hierarchy data from ECC to BI and activated the master data.
    2) Used the below transformation and conversion file.
    3) Selected the hierarchy in selecetion in data package while loading data into BPC.
    Transformation File:
    *OPTIONS
    FORMAT = DELIMITED
    HEADER = YES
    DELIMITER = TAB
    AMOUNTDECIMALPOINT = .
    SKIP = 0
    SKIPIF = 177000
    VALIDATERECORDS=YES
    CREDITPOSITIVE=YES
    MAXREJECTCOUNT=
    ROUNDAMOUNT=*MAPPING
    *MAPPING
    ID=ID
    *CONVERSION
    ID=ACCT_ID_MD.xls
    G/L Account compounded to chart of accounts (10+4) and has total length 14 and hierarchy node ID's have length 32.
    I used the below conversion file.
    External                                                         Internal
    01000000??????                               ??????
    0100000???????                               ???????
    010000????????                               ????????
    0000000000000000000000000000????         ????
    000000000000000000000000000?????         ?????
    00000000000000000000000000??????         ??????
    0000000000000000000000000???????         ???????
    *                                                      js:%external%;
    Please suggest anyone how can I load node ID's and description.
    Note: I followed the same above process for 0PROFIT_CTR and 0COSTCETER and successfully loaded master, text and hierarchy data.
    Thanks
    Prasad

    Hi,
    Use the below code in CMOD and change the hierarchy name.
    *&  Include           ZXRSAU04
    CASE i_datasource.
    Global Declaration *********
    FIELD-SYMBOLS: <FOLDERT> TYPE ROSFOLDERT,
                   <HIENODE> TYPE ROSHIENODE.
    CONSTANTS : C_NODE VALUE 'C'.
    **Enhancement will be used to suffix Z to all cost center hierarchy node
    **This will be further used in BPC to load hierarchy without error.
    WHEN '0COSTCENTER_0101_HIER'.
    LOOP At C_T_HIENODE3 ASSIGNING <HIENODE>.
       IF <HIENODE>-IOBJNM = '0HIER_NODE'.
       CONCATENATE 'Z' <HIENODE>-NODENAME+4(20) into <HIENODE>-NODENAME.
       ENDIF.
    ENDLOOP.
    LOOP At C_T_FOLDERT  ASSIGNING <FOLDERT>.
      IF <FOLDERT>-IOBJNM = '0HIER_NODE'.
      CONCATENATE  'Z' <FOLDERT>-NODENAME+4(20) into <FOLDERT>-NODENAME.
      ENDIF.
    ENDLOOP.
    LOOP At C_T_HIENODE ASSIGNING <HIENODE>.
      IF <HIENODE>-IOBJNM = '0HIER_NODE'.
      CONCATENATE  'Z' <HIENODE>-NODENAME+4(20) into <HIENODE>-NODENAME.
      ENDIF.
    ENDLOOP.
    ********End Of Code
    **Enhancement will be used to suffix Z to all profit center hierarchy node
    **This will be further used in BPC to load hierarchy without error.
    WHEN '0PROFIT_CTR_0106_HIER'.
    LOOP At C_T_HIENODE3 ASSIGNING <HIENODE>.
       IF <HIENODE>-IOBJNM = '0HIER_NODE'.
       CONCATENATE 'Z' <HIENODE>-NODENAME+4(20) into <HIENODE>-NODENAME.
       ENDIF.
    ENDLOOP.
    LOOP At C_T_FOLDERT  ASSIGNING <FOLDERT>.
      IF <FOLDERT>-IOBJNM = '0HIER_NODE'.
      CONCATENATE  'Z' <FOLDERT>-NODENAME+4(20) into <FOLDERT>-NODENAME.
      ENDIF.
    ENDLOOP.
    LOOP At C_T_HIENODE ASSIGNING <HIENODE>.
      IF <HIENODE>-IOBJNM = '0HIER_NODE'.
      CONCATENATE  'Z' <HIENODE>-NODENAME+4(20) into <HIENODE>-NODENAME.
      ENDIF.
    ENDLOOP.
    ********End Of Code
    ENDCASE.
    Thanks
    Prasad

  • CRM order message and notes table

    Hi
    we have Error/warning messages and notes in CRMD_ORDER (ie in CRM sales order). I am looking to get the tables for message number and notes. The purpose for this is I need to give these details to BW team for extraction. The standard extractor doesnt have these fields (ie message number or notes)
    Here is the research I have done till now
    1) for Messages people are suggesting to use FM - CRM_MESSAGES_DISPLAY which gives Log handle and Message number. with this data call CRM_MESSAGES_GET_MSG_INFO and this will give the Application area and message number which can be queried in T100 table
    2) for notes I was suggested to use the FM - READ_TEXT
    The option I have is use a user exit (extractor) and populate these data in the extractor before sending it to BW
    Can you please let me know if message number and notes in a order can be directly queried from tables (is there a link table that connects the order GUID to the message table (T100) ?

    Hi Veena
         I tried this but it doesnt get me to the actual notes. I was able to query STXH which doesnt have the actual notes. So I further went into STXL table where there is a field called "Data" which looks like a big GUID but not sure if there is a another table I need to plug this to get the actual notes.
         What I heard from the ABAP team is that there is no way to get this data through direct or link tables. We have to use the READ_TEXT FM
    Edited by: Vikas BhumiReddy on Jul 6, 2011 4:55 PM

  • Photo title and description does not display

    I have a site created in dreamweaver, I used photoshop to
    create a web photo gallery. The title and description although
    entered as file info and directly as html will not display when the
    gallery is loaded. Help please?? Is there a script problem? Here is
    a link
    http://www.clwhome.com/albums/gym2005_6/index.htm

    Actually the title and description do appear for a split
    second and the
    vanish.
    The information is there and can be seen if you look at the
    page outside the
    frameset.
    http://www.clwhome.com/albums/gym2005_6/pages/0226wolves04.htm
    Might be better asked in the PhotoShop Forum.

  • Search MAT0M - Material Number/Material Description does not  work

    Dear Guru,
    I don't know why search help in MM60 F4 at material field.
    Use search help: Material Number/Material Description
    It does not work when I selected material number because of it did not return material number to field.
    How should I do? Please help.
    Regards
    Thank you very much.

    go SE11
    display search help  MAT0M
    Check whether you have an flag for import and export  next to the MATNR field.
    if that is okay, then open search help MAT1
    select there search help MAT1_A then click  the big button for parameter allocation, check if related parameter MATNR is to collective search help parameter MATNR.
    if that is okay, then close the window, and doubleclick MAT1_A
    MAT1_A ha sagain included search helps.
    Select there your MAT0M and click the the big button for parameter allocation and  check there the same as above.
    Further check whether all search helps, MAT1 and MAT1_A and MAT0M ar active. (you can see that next to the description)

  • No goods receipt possible for purchase order message number# M7036

    Hello,
    We are working in 4.7C , Created the scheduling agreements, with Shipping notification(Inbound delivery)   .
    Created the Scheduling agreement on 25.09.2009 and created the schedule line one same day with date 25.09.2009, (time column Blank).
    So in Practice for Goods receipt we are using MB0A t code for GR,(not using MIGO)..while MB0A..iam going to make GR with ref to Shipping notification then system will through below given message.
    No goods receipt possible for purchase order
    5500001447 0001
    Message no. M7036
    tried every thing but unable get. shar your views
    Regards
    Sapman man

    Hi
    If you use Shipping notification then you have to create inbound delivery VL31n and do the PGR in inbound delivery  VL32N itself.
    Incase of scheduling agreement schedule lines you have to make sure the following
    1) Schedule line delivery date shoud be todays date or in the past
    2) Schedule must be released by using message type based on the type of schedule ( Normal, JIT or forecast)
    Hope it helps
    Thanks/Karthik

  • I have finally figured out how to export an iphoto album so that I can maintain the proper order of the photos after burning the file. How do I keep each individual photo title and description after exporting and burning?

    I have finally figured out how to export an iphoto album so that I can maintain the proper order of the photos after burning the file. How do I keep each individual photo title and description after exporting and burning?  Presently after exporting and burning each photo is identified by the file name rather than each individual title description.  

    File name and Title are not the same thing.
    Filename is attached to the Jpeg file in the Finder.
    Title is attached to the photo within the Jpeg file - as is the description. These are written to the Exif and IPTC metadata on export.
    So: File -> Export. Kind: Jpeg or Tiff and Check the box at 'Title and Keywords'. This will write the Title, keywords and descriptions (though not explicitly stated) to the metadata. This can then be viewed in any app that understand this material.
    You can choose, if you wish, to also use the Title as a Filename - that's an option at File Name
    Regards
    TD

  • Bookmarks sync erase new tags, labels and description on former synchronized bookmarks

    hello,
    on firefox 32.0.3
    bookmarks synchronisation erase recent tags, labels and description during the sync.
    this happen on already sync bookmarks on which we add some tags, labels and description, but not on new ones.
    no error message when logging or unlogging.
    thanks in advance
    best regards

    Hi ebntv,
    Thank you for your question, I understand that after a recent sync to your sync account that there are Recent Tags, descriptions and labels missing. However it is only the older Bookmarks that are affected.
    I have attached two screenshots to clarify to make sure I understand the feature that is affected:
    # The first has the default recent tags and list of all tags.
    # the second is an older bookmark visited 32 times that has all of the details after a sync.(However it never had a description or keyword)
    Which information is missing exactly?

  • Is it possible to share multiple photos from iPhoto to flickr with embedded title, description and tags for each photo?

    I use iPhoto to share my photos to different sites like facebook and flickr ... with facebook it's easy since the pics don't need much details ... however, I have some trouble with Flickr, since I need to add description, titles and tags for each picture ... is there a way to do so ?!

    Titles and descriptions are not embedded into a photo until it is exported out of iPhoto with the following settings:
    So if Facebook can read those values in an image file you'll need to export as shown above and upload to FB from outside of iPhoto or import back into iPhoto and sync the new files to FB.
    OT

  • Value category and description for maintenance costs

    Does anyone know how I can get the value category and description and tie it to our cost data coming from tables COSP & COSS?    I tried going to PMCO but there can be several entries say for labor, services and you have no way of knowing which entry belongs to what type of cost.
    thanks!

    Hi,
    the value categories + texts are in TPIR2 + TPIR2T. Since you are working with PM, you need to set APPL = PM. And you need to set the correct controlling area. To map the cost elements (COSP, COSS are based on cost elements) to value categories you need to analyze table TPIK3.
    Besides I think that the costs for PM orders are also saved to table PMCO. So reading this instead of COSP, COSS might be easier.
    Regards,
    Thorsten

  • How do I change picture, author and description of new podcast submitted?

    So I just submitted a new podcast, The Jay and Clay Show, and it was accepted by iTunes. However it has the wrong picture, author and description and I need to change it. Apple's technical support e-mail was not too helpful on this. Also I am not too knowledgeable about RSS feeds so if you could please explain the steps necessary to change this that would be great.
    My RSS feed URL is: thejayandclayshow.wordpress.com/feed
    and my URL is: thejayandclayshow.wordpress.com

    You will need to enter the new name and category in the same places that you entered the current ones. However you need to check whether this will affect the feed URL: some services incorporate the title into the feed URL so changing the title would change that and iTunes would lose contact with the feed. If the feed URL doesn't contain the title you should be good to go. Exepct the Store to take a couple of days or so to update.

  • How to fix BC blog post meta title and description

    BC blog post <title> and <description> shows (seo) from sidebar/post list - But does not show in blog post page thru site menu nav.
    The blog post title and description show up corectelly when clicking on sidebar list of posts.
    It must be using the module layout list.html which I have set up with:
    <html>
        <head>
        <title>{tag_blogpostmetatitle}</title>          
            <meta name="description" content="{tag_blogpostmetadescription}">
        </head>
        <body>
    On the sidebar/post list
    Title and Description show correctly here:
    https://cameocoinsonline.worldsecuresystems.com/cameo-coins-blog/how-to-buy-and-sell-gold- and-silver-bullion
    The problem is:
    when clicking on menu nav to “blog” it does not show correct title and description.
    From the blog page thru menu nav
    Title and Description do not show correctly here:
    It shows the name of the blog (cameo coins blog) instead of the name to the post.
    https://cameocoinsonline.worldsecuresystems.com/cameo-coins-blog
    Please Advise
    Thank You

    Hey there,
    Firstly, putting blog posts meta title in the list layout is really bad - You do not do this. This is not how meta works and you need to understand a bit more about what it is.
    If you have a list of blog posts on a page all with lots of title and meta BC will do one of two things.
    1. Use the very last title and meta it sees rendered on all the layouts/templates/page it sees
    2. Render the last title and spit out multiple meta's
    Meta implementation is for the detail layout of something like a blog only - The single rendered content - 1 title, 1 meta description. For your blog this will ONLY go in the blog detail layout.
    And in that layout at the bottom of it..
        <head>
        <title>{tag_blogpostmetatitle}</title>         
            <meta name="description" content="{tag_blogpostmetadescription}">
        </head>
    You need to understand that, remove it from others to fix up that issue with what your doing first. Very likely because you probably have this in other list layotus and all over the place your seeing inconstant output, address this and you probably will actually find your issue fixed.

  • Need help for displaying key and description in Dropdown (ABAP WEBDYNPRO)

    Hi Experts,
    I am using dropdown as a table field. For this dropdown I want to display the value as well as description.
    In ALV table when we create a dropdown dynamically in table field, there is a method SET_KEY_VISIBLE in class CL_SALV_WD_UIE_DROPDOWN_BY_KEY.
    But I think we cannot use similar method for normal dropdown field in table.
    Is there any way we can display both value and description in dropdown value set ?
    Please help.
    Regards,
    Anand

    Hi,
    I think there is no such option. You need to consider one variable type string and while populating the
    valueset fill this variable by concatenating the value and description and assign it the key and value
    pair of the valueset.
    DATA:
      lt_value_set_ctry      type table of wdr_context_attr_value, " Country/Service Location
      lv_str type string.
        loop at lit_country into ls_country.
          concatenate ls_country-value ls_country-text into lv_str separated by space.
          ls_value_set-value = lv_str.
          ls_value_set-text  = lv_str.
          append  ls_value_set to lt_value_set_ctry.
          clear ls_value_set.
        endloop.
          lr_node_info->set_attribute_value_set( name = 'COUNTRY'
                     value_set = lt_value_set_ctry ).
    Consider this lit_country is a text table for countries.
    Regards,
    Lekha.

  • Hi, I have had an LG Octane for 4 years and loved it. I used it for email, surfing the web and facebook. But 6 weeks ago I stopped getting text messages, I could send but not receive.  I was told it was just worn out.  So I ordered another Octane and it w

    Hi, I have had an LG Octane for 4 years and loved it. I used it for email, surfing the web and facebook. But 6 weeks ago I stopped getting text messages, I could send but not receive.  I was told it was just worn out.  So I ordered another Octane from ebay, and it wouldn't connect to the internet. I was told by Verizon that the software had been changed.  So I ordered a NEW in Box Octane and I am having trouble with that too. Bing won't work, nothing will work that will enable me to download Verizon Opera mini that still works on my old phone. I have a smart phone with another number but I LOVE the Octane for daily use. Why will my old Octane work but I can't get a NEW one to.  Verizon guys are stumped too:( Please help!!  Thanks!

    Why start a new and very similar thread to your other one which you have not responded to (have you read the replies?)
    I suggest that no response is made to this duplicate thread. 

  • Help! I received a message on my iPhone that "phone Number Added to iPad4 [NAME of IPAD] is now using [PHONE NUMBER] for FaceTime and iMessage" and it is not my iPad!! What do I do, how do I shut them out??

    Help! I received a message on my iPhone that "phone Number Added to iPad4 [NAME of IPAD] is now using [PHONE NUMBER] for FaceTime and iMessage" and it is not my iPad!! What do I do, how do I shut them out??

    Use a strong password and set up Two Step Verification on your account.
    http://support.apple.com/kb/ht5570

Maybe you are looking for

  • Problems with iPhone 3G recovery.

    Ever since last night, my phone has been stuck on the apple logo that shows when turning on your phone. This has happened before and I was able to fix it by holding down the sleep/wake button and the home button. Now when I do that, it either goes ba

  • Downgrade Windows 8 ent to windows 8.1 pro

    (I asked this in the general windows forum but this may be a more appropriate place) I have perpetual developer licences for Windows 8 under a now discontinued msdn subscription. My main box has Windows 8 ent (MAK license). I also have (as part of th

  • FORMAT command hangs on SOL 10...

    I have V440...when I run the FORMAT command, it just hangs there. Here is a metastat cmd output: # metastat d6: Mirror Submirror 0: d16 State: Needs maintenance Submirror 1: d26 State: Resyncing Resync in progress: 20 % done Pass: 1 Read option: roun

  • Using the Parallels program to run a Windows program, can two Macs network to use the Windows program?

    When using the Parallels program to run a Windows program, can I network my MacBook Pro with my friend so we can use the same Windows program.

  • CAF/VC Exception Handling

    Hello, I have a simple CE application, which stores data in a backend system and receives a ticket number. In case an error occures, the application service implementation catches the EJBException and throws a CAFServiceException. Unfortunately the g