CRM Sold To Text ID transfer to R/3 Customer Text ID

Hi All,
Now I need your suggestion on how to transfer CRM BP Sold to Text to
R/3 Customer Text. My first assumption, it's like in Order document where
we just need to create same Text ID for both document in CRM and R/3.
But it seems doesn't work for BP. I need to transfer BP Text from CRM to R/3.
Does it require BDT to customize? (As far as I know it's only for additional field
in CRM BP).
Or do we have to use Text Object KNA1 in CRM BP? As we know that
CRM BP using Text Object BUT000. How to switch to Text Object KNA1?
Or can we use both Text Object BUT000 and KNA1 on CRM BP?
Thanks in advance.
Gun.

Hi All,
Now I need your suggestion on how to transfer CRM BP Sold to Text to
R/3 Customer Text. My first assumption, it's like in Order document where
we just need to create same Text ID for both document in CRM and R/3.
But it seems doesn't work for BP. I need to transfer BP Text from CRM to R/3.
Does it require BDT to customize? (As far as I know it's only for additional field
in CRM BP).
Or do we have to use Text Object KNA1 in CRM BP? As we know that
CRM BP using Text Object BUT000. How to switch to Text Object KNA1?
Or can we use both Text Object BUT000 and KNA1 on CRM BP?
Thanks in advance.
Gun.

Similar Messages

  • Embedding a text field in a graphic OR custom text field look

    Hello all,
    I'm trying to create an application where the text field is visually appealing. If any of you have MSN Messanger on your BBs, I'm trying to have a text field similar to the one in the sign-in page.
    Any help would be appreciated

    Hello,
    Thank you for the info.
    Which driver are you using for the dataset?
    If you are using ADO.Plus add this to your App.Config file:
    <startup useLegacyV2RuntimeActivationPolicy="true">
    <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/>
    </startup>
    Thank you
    Don

  • Replicating custom texts in BP from CRM to ECC systems

    Hi All,
    I'm trying to set up synchronisation of a custom text held against a business partner in CRM with our ECC system.  So, in CRM, if I go to transaction BP and go to change mode for a partner and then go to the long texts tab...  As well as the 2 standard Correspondance and Accounting Note text ID's my functional consultant has also configured a third text, with ID Z001.  We are trying to get this to synchronise with ECC.
    With a bit of debugging I can see the text is being sent in a BDOC across to ECC but it isn't being populated into the customer master.  On the ECC side the custom text has been set up against the sales area of the customer master - I'm not sure of what else has been done there.
    Has anyone done this before who can give us some help/advice?  Bear in mind I know almost nothing about CRM to ECC synchronisation and BDOC's so I'm struggling with this!
    Thanks in advance,
    Gareth.

    Hi Gareth,
    While researching this issue I came across note number 622133. https://websmp202.sap-ag.de/~form/handler?_APP=01100107900000000342&_EVENT=REDIR&_NNUM=622133&_NLANG=E
    Its an old note, but it pointed me in the general direction of FM 'PI_BP_MAP_TEXT_IDS_CRM_R3'. This FM looks in table 'CRMTEXTID' to check if any mappings were maintained. Now if you do a where-used on CRMTEXTID, you see that it is used in a view, V_CRMTXTID. So go to SM30, maintain that view, map your R/3 text IDs to CRM text IDs and you should be all set.
    There must be a more elegant way to get to this table, but in the short term, this should fix your problem. I haven't tested it yet on my system but I get the feeling this should work

  • How do you transfer pictures,video's and text messages from iphone 4 to the new model

    How do you transfer pictures,video's and text messages from iphone 4 to the new model?

    http://support.apple.com/kb/ht2109

  • Concatenate text at transfer structure

    Hello
    Is it possible to concatenate 2 text at transfer staruture level via routine and to keep them in one infoobject. ?
    ANd can we pull this concatenate text in Bex analyzer and would it show the same long text in report ?
    Regards

    You can do that but if you are looking at storing more than 60 characters - you cannot - the display output is automatically limited to 60 characters ... if it is less than 60 characters - you can concatenate the two objects into another infoobject in the transfer rules...
    Object 1
    Object 2
    Object 3 ( this is not in your DS but is there in your CS )
    In the rule section of Object 3 have
    concatenate TRAN_STRUCTURE-Object1 TRAN_STRUCTURE-OBJECT2 into result.

  • HT201269 If i transfer everything to my new iphone will my text messages transfer also?

    If i transfer everything to my new iphone by itunes and back everything up will my text messages transfer also?

    Yes.  I suggest doing the backup/restore to itunes, not icloud.  But before doing the backup, also back up to icloud as a safety measure.  If icloud restore has problems (but often icloud restores have more problems), then do the restore from icloud.

  • How to add custom text on ISA B2B Order

    Hi,
    On Order page of ISA B2B I have created a custom text field  "Shipping Attention".When I try to add this text in the header like
    header.addExtensionData("Z123","Value") in Z_BasketRefreshAction which extends MaintainBasketDispatcherAction, it is not reflecting in the "Shipping Attn"(created in the text tab in CRM)  field in CRM system.
    The flow:
    /b2b/maintainbasket --> Z_BasketRefreshAction --> /b2b/basketrefresh --> MaintainBasketRefreshAction --> b2b/updatedocumentview
    Please let me know if I missing something...
    Thanks in Advance.
    Regards,
    Muthu

    Hello,
    You have covered the first two layers of the request - response cycle cake - the View (JSP) and the Control (Java) layers. The icing is done in the backend BAdI and using the right function module. I am assuming the CRM backend.
    A typical request-response in the application goes like this. I will give example for the header extensions.
    Added the custom variable in the HTML layer (JSP page)
    Traversed through the Dispatcher, Parser and get the input value from the JSP page variable and added it to the Business Object (Header) using addExtensionData.
    The java application layer actually makes an "Update Header" call during the update cycle - like when you click that "Update" button.
    In the SAP E-Commerce design, during this "update" cycles, the application flows through specific BAdI call sequence. It calls what I call the Header BAdI CRM_ISA_BASKET_HEAD when the header information is updated. You have to extend this BAdI and implement at least two methods.
    It has two methods - which are called during this request - response cycle. First method CHANGEHEAD_SET_DATA is called during the request cycle - that is from ISA to CRM (when update is clicked). This is where your extension data has to be transferred from the Java layer to the backend layer (model). You will essentially read from the table IT_EXTENSION and call SAVE_TEXT function module. Since your requirement is to update text, this is the FM to be called. Many other cases use the FM mentioned by Mike. This is where the data from the web layer is persisted in the backend model.
    And the other method GETHEAD_GET_DATA is called during the response cycle. In this method, you will essentially read from the model - in your case READ_TEXT and set it back in the extension layer CT_EXTENSION
    The update header call from the Java layer will now receive the data back from the model and will automagically transfer the values from the backend (ABAP layer) back to the Java layer to be accessible by you in the JSP using getExtensionData call.
    What you have to do are the steps .5 and 6 in order to complete the request-response cycle.
    Easwar Ram
    http://www.parxlns.com

  • Text Effects in Bridge wont attach to text layers in AE *Please help

    ** Please Help **
    short version
    I have read the AE help and it says to just double click the preset I want and it will attach to the text in AE, but it doesnt work. What do I do?
    Long version
    Ok, I am trying to use the built in animations that are located in the text folder inside bridge. While in AE I make a new text layer and type in the text, then I goto the EFFECTS & PRESETS fly out menu and Choose Browse presets, This will take you to the contents folder in Bridge, For instance I click on the 3d text folder to open it and view all of the preset text animations. If you click a sample Icon one time it will show you what to expect in Bridge, IF you double click it, it is supposed to attach that preset to your text layer and transfer that animation to the text layer in AE. Well I cant get it to work, It wont attach the preset to my text in the text layer of AE. Please tell me what I am doing wrong. Please help me figure this out. I have search the AE help files as well as the bridge help, with no answers.

    Jonas, thank you for a work around, using the bridge method would be nicer, but the apply animation preset works, I just have to open bridge so I can preview the text effect I want to apply. Main thing is I got it to work. Now to figure out why bridge and AE aren't talking.

  • Customer Text in Notification

    Hi all,
    I want a popup message to appear while creating a Notification [IW51] based on Customer/Sales Org/Dist chn/Sales Off/Sales Group.
    The moment i enter the customer for the particular sales area i need to get the popup message for a particular customer.
    I have done the same simulation (based on Customer/Sales area) and i cld get the message in the Sales order. But i want to reflect the same in notification.
    Plz guide.
    Thanks in advance,
    Cheers,
    Anil.

    Hi John,
    Customer text means BP or Account Text. In each Customer account or BP, we have notes area, where we have different text types. In each text type, we can write unlimited free text related to the BP or Account.
    You can check this text in the Account Overview under Notes Area where you have option to select multiple text types and write free text for each text type.
    The text is getting copied from ECC to CRM and the requirement is to show the text (belonging to one of the text types of the BP) in the alert box while doing the interaction after confirming the account.
    Please let me know, if you have more questions.
    Thanks,
    Sharath.

  • JS scripted needed to add custom text plus filename to file info in document title

    Would greatly appreciate any help with this one...
    JS script to add custom text plus filename to file info in document title
    many thanks

    Super :O)
    I have a folder of say 50 images and I want to run a JS script batch
    example in the document title :  image Nr 81205
    custom text is "image Nr" +  file name "81205"
    activeDocument.info.title =" image Nr" + decodeURI(activeDocument.name);
    would this be correct without seening the file ext
    many thanks

  • Rich Text Box Issue - Expand to show all Text

    Hi everyone
    I'm having a pretty frustrating issue with the rich text box when viewing a line item (not when editing the item, but viewing the item)
    I want my rich text box to expand with the text, which I have changed in the options on InfoPath with the "Expand to show all text" scrolling option. However, in IE, the table row will expand, but the actual rich text box will not and I'll have
    a scroll bar there and you cant see all of the text at one time. If I look in Chrome, then it works the way I want and I can see all of the lines of text that were entered into the rich text box.
    The only solution for IE to work correctly is to change the Display settings to "Enable enhanced rich text content...". But the big issue with that is now you can no longer highlight the text (the highlight disappears right after highlighting it),
    and the users will need to copy text from the text box, so it renders the "enhanced" rich text box useless for us
    It's kind of a lose-lose situation that I'd love to find the solution for

    I guess a better solution would be how can you highlight text from an enhanced rich text box, because changing these to "rich text box" gets rid of font colors in the pre-existing data.
    The original problem was that they couldn't highlight text unless they went into edit mode

  • Hello, I am trying to use a photo,that I've opened up in pages on a blank landscape, taken from my camera roll and use it as album cover art. All the custom text's will not paste when I copy.  Pic and texts are saved as a PDF, how can I paste the doc ?

    Hello, I am trying to use a photo,that I've opened up in pages on a blank landscape, taken from my camera roll and use it as album cover art. All the custom text's will not paste when I copy.  Pic and texts are saved as a PDF, how can I paste the doc ?

    Hello, I am trying to use a photo,that I've opened up in pages on a blank landscape, taken from my camera roll and use it as album cover art. All the custom text's will not paste when I copy.  Pic and texts are saved as a PDF, how can I paste the doc ?

  • Having custom text for 'Actual' and 'Target' in Funne chart

    Hi,
    We see 'Actual' and 'Target' label values in funnel chart when we hover the mouse on the chart.
    But i need to change the text to custom text for SINGLE graph. I dont want to chnage any xml or config files, I need this change in single report only.
    Appreciate all your posts which helps.
    Regards
    MuRam
    Edited by: MuRam on Dec 31, 2012 7:36 PM

    http://www.adobe.com/cfusion/mmform/index.cfm?name=wishform

  • HT5622 We have two iphones with the same Apple ID. Since I installed iOS this morning I have started receiving all my sons texts and when I send him a text it is delivered to both of us. How can I remove my phone from the joint Apple ID and remove myself

    My son and I both have iphones with the same Apple ID. Since I installed iOS this morning I have started receiving all my sons texts and when I send him a text it is delivered to both of us. How can I remove my phone from the joint Apple ID and remove myself from finding out what he is up to during Freshers week!

    You have to use a different Apple ID for your son.
    Read this note:
    iOS 5 & iCloud Tips: Sharing an Apple ID With Your Family
    still valid for ios 7

  • How can I create a form for users wherein the text field will expand to accommodate additional text?

    How can I create a form for users wherein the text field will expand to accommodate additional text?

    You need to use LiveCycle (PC Only) to create a dynamic form like that.
    The best you can do with Acrobat to view all of the text in a field is to set the field to multiline, and set the size to "Auto" (If you don't set the size to 'Auto', you can enter as much text as you wish, but the user will need to use the scrollbar to view all of the text.)

Maybe you are looking for

  • How to use one Account dimension for multiple account structures

    We are implementing a HFM application to replace two general ledger applications, one being Corporate and the other a new subsidiary. We need to maintain both of the chart of accounts and their unique rollup structures. We are facing the difficulty i

  • ITunes no longer wants me to purchase songs, apparently.

    I had been given 5 free ITunes downloads, and I believe I've used all 5 of them, but the "free song" counter at the top of the "store" screen still reads that I have 1 free song left. Every time I try to purchase a song, however, an error message box

  • Downpayment Against Capital PO

    Dear All, I defined Down payment Clearing Account in AO90 but i want to know which tyoe of GL account I should maintain for down payment clearing. Please help me. Thanks & Regards, Mahendra Gupta

  • What type of WS Security can be used for RPC Webservice?

    Hi all, I have 2 issues. 1)I was given a RPC webservice that I have to consume and expose it has WSI Webservice. I am unable to do the transformation from RPC webservice to WSI webservice in Eclipse.Are there any documents that helps me in transformi

  • How can get page information

    Dear All, I have the VO contain the values of emp_id ,name ,number, if i click the save button i will able to get the values of in the table by iteration Row object How i can able to get the Values of forms currently appered in the screen