SAP CRM 7.0 -- How tro make Conversion from Bdoc to IDoc

Hi All,
I have extended BUS_TRANS_MSG Bdoc with custom Fileds ( as per requirement) and am looking to Convert the BDoc to IDoc.
So Can any one know how to convert Bdoc to Idoc in SAP CRM 7.0.
Kindly help me on this.
Thanks,
Raja

Hi Raja,
Is there any reason that you want to convert this Bdoc to Idoc. let me know, will take from there.
thanks

Similar Messages

  • How to make xsd from xml file?

    Hi,
    i have one xml file which has many node and element.
    anyone know how to make xsd from the xml file in order to make DT by using xsd ?
    Thanks and Best Regards;
    BangBang

    HI
    there are multiple ways of doing this if you have XML based 3rd party tool with you.. you can search on Google also and will get many tools which can convert this to XSD..
    few links with similar discussion..
    How to convert XML file into DTD or XSD
    XML to XSD
    How to creste a XSD ?
    Thanks,
    Bhupesh

  • HELP! How to make RRI from BEX query into Workbook with one report???

    How to make RRI from query into Workbook???

    Hi Alex,
    A workbook is a set format of queries, so when you try to jump to another query , you will definitely open another session and hence another excel file. This is the same for web templates also though you have an option of opening the new result in the same window.
    You would have to use some macros and open the query on the same page. A RRI is a query jump and not a drill down . A drill down would be getting more of the dimensions into the query.
    Regards
    CSM Reddy

  • How to extract data from custom made Idoc that is not sent

    Hi experts,
    Could you please advise if there is a way how to extract data from custom made idoc (it collects a lot of data from different SAP tables)? Please note that this idoc is not sent as target system is not fully maintained.
    As by now, we would like to verify - what data is extracted now.
    Any help, would be appreciated!

    Hi,
    The fields that are given for each segment have their length given in EDSAPPL table. How you have to map is explained in below example.
    Suppose for segment1, EDSAPPL has 3 fields so below are entries
    SEGMENT          FIELDNAME           LENGTH
    SEGMENT1         FIELD1                   4
    SEGMENT1         FIELD2                   2
    SEGMENT1         FIELD3                   2
    Data in EDID4 would be as follows
    IDOC           SEGMENT                          APPLICATION DATA
    12345         SEGMENT1                        XYZ R Y
    When you are extracting data from these tables into your internal table, mapping has to be as follows:
    FIELD1 = APPLICATIONDATA+0(4)        to read first 4 characters of this field, because the first 4 characters in this field would belong to FIELD1
    Similarly,
    FIELD2 = APPLICATIONDATA+4(2).
    FIELD3 = APPLICATIONDATA+6(2).  
    FIELD1 would have XYZ, FIELD2 = R, FIELD3 = Y
    This would remain true in all cases. So all you need to do is identify which fields you want to extract, and simply code as above to extract the data from this table.
    Hope this was helpful in explaining how to derive the data.

  • How to make upgrade from application server and not from central instance?

    Hello SAP Gurus!
    I have SAP ECC release 6.0, and I´m gonna make upgrade to enhancement package 6.06, do you know if Can I make upgrade from application server, but not from central instance?
    Thanks.

    Hi Victor,
    Upgrade process has to execute from the server where message server is running.
    So I guess it is not possible to initiate the SAP upgrade  from application server.
    Regards,
    Deepak Kori

  • Time machine. How to make backup from an external HD

    I need to learn how to use Time machine to make backups from an external hard disk in a network nas.
    We have been able to make backup of the information that is in the computer, but we need to protect the information that I have inthe external disk.

    Dear Mr. Root
    Folllowing your instructions we observed that the drive has been excluded, but I can not select it, and for this reason when I hit the  -   at the bottom I can not remove it.

  • How to make call from MOTOROLA V3C

    hI ALL
    I m trying to make a call in flashlite brew thru
    getURL("tel:022-67508053"); but not able to make a call
    022 is Mumbai std code in India AND 67508053 is the landline
    number .. Also let me know how to make a call to mobile.
    Thanx in advance..

    Use numeric symbols only in the argument - no any "-" or "(
    Alex

  • How can make byteArray from swf

    Hi all,
    i need to make byteArray from swf and save it into DB, because i need load the swf(in byteArray) to adobe air with URLLoader and loadBytes(). But I do not know how can i convert swf to byteArray, is it possible with php, or i need as3 script, which make byteArray...
    thanks for help!

    I don't know if you better post this in the Adobe AIR forum?

  • During APP how to make payment from the second bankof Vendor

    If a vendor has three(3) Bank Accounts maintained in the Master.And we want to make payment to the second bank during payment run in APP. So in this case what do we need to do so that payment will be made to the second BANK Account?please suggest.

    Hi,
    It can not be done from APP run itself and also can not be random....
    If you want to make payment from the second bank of the vendor then you have map Partner Bank type in the vendor master and then the respective Partner Bank type should be filled in invoice...now it will be paid from the bank for which partner type is defined..
    Regards,
    Chintan Joshi

  • CRM 7. How to make mandatory the BP Roles on CRM Web User Interface.

    Dear CRM Gurus,
      The requirement in our project is to have as mandatory at least one BP Role (except the default role of BP). Is there any way to implement or configure the CRM system to display an error message when a user tries to save a BP from WEB UI without having maintained the BP Role ?
    Thanks in advanced, John

    Hi Jhon,
    Before raising the error message as Garcia suggested check the collection of bp_roles.. if no roles maintain then raise the message.
    you can raise the message in eh_onsave event of BP_HEAD/BPHEADOverview.
    Sample code to check the collection of bp roles..
    DATA: lv_collection TYPE REF TO if_bol_bo_col,
                lr_bp                TYPE REF TO cl_crm_bol_entity.
      lr_bp ?= me->typed_context->builheader->collection_wrapper->get_current( ).
      CHECK lr_bp IS BOUND.
    TRY.
          lv_collection = lr_bp->get_related_entities(
                 iv_relation_name = 'BuilRolesRel' ).
    *     delete difftype-dependent roles (not maintainable/ displayed
    *     in standard)
          cl_crm_uiu_bp_roles_service=>filter_difftype_dependent(
            CHANGING cr_collection = lv_collection ).
    *     delete lifecycle stages (which are roles as well) from coll
    *     of "normal" roles
          cl_bp_accountlifecycle_service=>filter_roles_exclusive_stage(
            CHANGING cr_collection = lv_collection ).
        CATCH cx_crm_genil_model_error.
    *       should never happen
          EXIT.
        CATCH cx_sy_ref_is_initial.
      ENDTRY.
    check lv_collection->size( ) le 0.
          raise error message.
    Hope this helps.
    Cheers,
    Sumit Mittal

  • HOW TO MAKE COPIES FROM A DVD, HOW TO MAKE COPIES FROM A DVD

    Hello, Can anyone help me, please? I need to make some copies from a DVD. What do I have to do?

    How to copy previously-burned DVD-R video discs
    http://support.apple.com/kb/HT2059
    To create an image file, launch Disk Utility and select File: New: Disk Image From Folder. In the window that appears, navigate to the desired folder and then click on Image. Give the image file a name, and click on Save when prompted. That’s it.

  • How to make color from greyscale images?

    I have got a few photos into greyscale. How can I make them back to any color I want? thanks,

    You can use the Smart Brush tool, the one with the gears, select color from the drop-down, and paint.
    You can make selections of various objects, place a Hue/saturation adjustment layer above each selection, clip the adjustment layer to the selection, and in the H/S layer tick the colorize box. Adjust the sliders to suit.
    If you want more targeted guidance, post a representative file here for us to look at.

  • How to make MPG from DVCPRO HD footage?

    I have a DVCPRO HD 720p timeline and looking to make a basic SD DVD (24 or 29.97 fps).
    I tried multiple compressor settings (e.g. specify frame rate of 23.98) but whenever I import the m2v files into DVDSP, they always play back a bit stuttered, almost as if i'm watching a bad conversion of 23.98 to 29.97 timebase. All the footage playback smoothly when I view it in FCP. Can anybody specify their preset/workflow in detail?

    Hello, digiadam.
    Have a look at this article in the Apple Knowledge Base.

  • Can any tell me how to make Collage from selected images

    Hi
    I need to make a Collage of selected Images. Can anybody tell me how to proceed or point me a finger in the right direction. If there is an example then it would be great.
    Thanks in advance
    praveena

    One way you can do this is to override Panel, and set up clips, like this (mind you this is a very crude example. If you used this method, you'd want to set up loops and calculations to set the Polygon dimensions:
      private class MySubPanel  extends Panel {
        private Image[] images;
        private MySubPanel(Image[] _images) {
          images  = _images;
        public void paint(Graphics g) {
    // Just for a test, let's just assume only two Images are past in.
          int[]   xPnts = new int[] { 0,30,50,70,80, 95,75,60,45,30,15, 0},
                  yPnts = new int[] {20,35,15,35,20,110,75,95,70,85,55,30};
          Polygon p     = new Polygon(xPnts, yPnts, 12);
          g.setColor(new Color(50,150,20));
          g.setClip(p);
          g.drawImage(images[0], 0, 0, this);
          xPnts = new int[] { 0,15,30,45,60,75, 95, 80, 70, 50, 30,  0};
          yPnts = new int[] {30,55,85,70,95,75,220,130,145,135,155,130};
          p     = new Polygon(xPnts, yPnts, 12);
          g.setColor(new Color(50,150,20));
          g.setClip(p);
          g.drawImage(images[1], 0, 0, this);

  • How to make movie from photos?

    Hi all,
    I used to make family movies using iMovie and photos from iPhoto.
    I have tried to do it again just to find out iMovie doesn't allow me to use photos. Only pieces of camera movies are now used by iMovie.
    Do you know any way to import photos to iMovies?
    Thanks
    Victor

    There are many ways to produce slide shows using iPhoto, iMovie or iDVD and some limit the number of photos you can use (iDVD has a 99 chapter (slide) limitation).
    If what you want is what I want, namely to be able to use high resolution photos (even 300 dpi tiff files), to pan and zoom individual photos, use a variety of transitions, to add and edit music or commentary, place text exactly where you want it, and to end up with a DVD that looks good on both your Mac and a TV - in other words end up with and end result that does not look like an old fashioned slide show from a projector - you may be interested in how I do it. You don't have to do it my way, but the following may be food for thought!
    Firstly you need proper software to assemble the photos, decide on the duration of each, the transitions you want to use, and how to pan and zoom individual photos where required, and add proper titles. For this I use Photo to Movie. You can read about what it can do on their website:
    http://www.lqgraphics.com/software/phototomovie.php
    (Other users here use the alternative FotoMagico:  http://www.boinx.com/fotomagico/homevspro/ which you may prefer - I have no experience with it.)
    Neither of these are freeware, but are worth the investment if you are going to do a lot of slide shows. Read about them in detail, then decide which one you feel is best suited to your needs.
    Once you have timed and arranged and manipulated the photos to your liking in Photo to Movie, it exports the file to iMovie  as a DV stream. You can add music in Photo to Movie, but I prefer doing this in iMovie where it is easier to edit. You can now further edit the slide show in iMovie just as you would a movie, including adding other video clips, then send it to iDVD 7, or Toast,  for burning.
    You will be pleasantly surprised at how professional the results can be!
    To simply create a slide show in iDVD 7 onwards from images in iPhoto or stored in other places on your hard disk or a connected server, look here:
    http://support.apple.com/kb/HT1089

Maybe you are looking for

  • Error while running a BDC for the Transaction F-02

    Hi,        I'm getting an error <b><i>"Parking not possible during Batch Input"</i></b> while running a BDC for the transaction F-02.        When i click on the error message it displays the message [b<i>]"In Customizing, you can control whether an e

  • Getting error 10401:Unkn​own Device Error from configured PCI-6036E

    I have installed a PCI-6036E into a PC with a P-II and 32MB RAM. I am running NT4.0 SP6 operating system. Attached to the PCI-6036E is an SC2345 with one SCC-A10 attenuator module. When I try to run either one of the sample solutions or a VI that I h

  • Large library - can't synch. What gives?

    My iTunes music library is way too large for my iPod classic, and I haven't synched for quite a while. I just updated to the most recent Itunes. There used to be a "do you want iTunes to select the songs for your iPod" option, after it told me my lib

  • When I plug in my Thunderbolt, nothing happens.

    I just purchased a 27" Thunderbolt to use with my MacbookPro, 10.6.8 OSX. When I plug the Thunderbolt cable into the computer, nothing happens. I know the device has power because the charger is working on my laptop. Any ideas? I have tried restartin

  • Old iMac as separate render/exporting machine

    Hi Im finally upgrading to a Mac Pro and was wondering if I can network my old iMac and use it for rendering/exporting. I heard it can be done with Premier but not FCP. Can anyone point me in the direction of a tutorial or explain how to set up the t