How to download factory calendar from R/3 to CRM

Hi,
I have tried to search some threads regarding this topic but not get any answers.
Can someone help me on steps on how to download the factory calendar from R/3 to CRM?
I have tried to do through request (R3AR2) but it did not recognize the table TFACD in R/3.
Quick replies are deeply appreciated.
Best Regards.

Hi Angelo,
I did a little of Google on the Factory Calendar Stuff and got to know that you can Transport a Factory Calendar from one system to another. You can have a look at the Factory Calendar Customization from where you can the information about how to transfer it from one system to another. I have never worked in this but thought it might be a little help to you.
You can get the link to Factory calendar from the following --> SAP NetWeaver    --> General Settings --> Maintain Calendar.
Also, have a look at the following links:
Download Factory Calendar R/3 to CRM
http://www.sapfans.com/forums/viewtopic.php?f=15&t=311887#p943078
Hope this will help.
Thanks,
Samantak.
Edited by: Samantak Chatterjee on Nov 6, 2010 8:21 AM

Similar Messages

  • How to download org model from R/3 to CRM.

    Dear Friends,
                     How to download Org model  from R/3 to CRM. Any one tell me step by step detaily.
    Regards,
    Raj kumar,
    08123667379

    You can download organization from R3 to CRM in the following way.
    go to SPRO -> Customer Relationship Management -> Master Data -> Organization Management -> Data Transfer -> Copy SAP ECC Sales Structure. This is the place from where you can replicate the sales structure from ECC. You can have a look at the IMG Implementation Guide for a more detailed information.
    As for the BP not coming as an Organization, you need to activate the switch to integrate the BP and Organization functionality. The link for the same is given below:
    SPRO -> Customer Relationship Management -> Master Data -> Business Partner -> Integration Business Partner-Organization Management --> Set up Intergration with Organization Management . Here you need to activate the following Switch - HRALX OBPON ON Integration O-BP Activated.

  • How to Transfer factory calendar to APO from ECC

    Dear friends,
    I came across the statement in SCM210 material that factory calendar can be transferd from ECC to APO. If anyone knows about it can you please explain me with steps?
    Sree

    Sree,
    you can transfer the factory calendars from ECC to PAO following these steps:
    in APO:
    Transaction RSA1
    Select Source systems>SAP>your R/3 client.
    Right click on the client>Select Transfer Global Settings.
    Select Factory Calendars
    Select Rebuild tables
    Cheers!
    Abhi

  • How to download a file from the net and save it into .txt format in a datab

    Can some one show me a tutorial on how to download a file from the net and save it into .txt format in a database?
    Thank you,

    http://java.sun.com/docs/books/tutorial/networking/urls/readingWriting.html

  • How to download a file from Path specifed

    Hi Frndz..
    How to download a file from a specified path like  , i have a file on server in the path like "C://temp/Sap.pdf"
    I want to download this to user desktop..
    Thanks in Advance
    regards
    Rajesh

    Hi,
    For file down load u have to use a UI element as "File download".
    u just create context attribute as setdownload_res and file data.
    setdownload_res as of type "com.sap.ide.webdynpro.uielementdefinitions.Resource" then bound it to the ui element "resource".
    file data as of type "com.sap.tc.webdynpro.progmodel.api.IWDInputStream"
    and set calcuclated as true and read only as true.
    then in doinit method u just write this code
    IWDAttributePointer attr = wdContext.currentContextElement().getAttributePointer("fileData");
    IWDResource res = WDResourceFactory.createResource(attr,null,WDWebResourceType.UNKNOWN);
    wdContext.currentContextElement().setDownload_res(res);
    wdComponentAPI.getMessageManager().reportSuccess(""+c);
    after this in the getter method u write this code
    IWDInputStream stream = null;
    try
    stream = WDResourceFactory.createInputStream(new FileInputStream(new File("<pathof the file to be download>")));
    catch(Exception e)
    e.printStackTrace();
    return stream;
    also look at this thread  How to DownLoad any type of File from the server(PDF,XLS,Word)
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/202a850a-58e0-2910-eeb3-bfc3e081257f
    PradeeP

  • How to download a file from the internet using terminal

    how to download a file from the internet using terminal
    does any one know how to download afile from the internet using the Terminal application?

    Use curl. Something like this:
    curl -O http://www.example.com/filename.zip
    For more info, type +man curl+.

  • How to download a file from AL11 inot Excel format without collapse the col

    Hi,
    Please suggest how to download a file from AL11 to Excel sheet.currenlty all field are merging into single column.I writing this file via using DATASET.
    Regards
    Ricky

    Hi,
       Try this code,
    ==============================================
    TYPES : BEGIN OF ty_emp,
              empno(2) TYPE c,
              empid(10) TYPE c,
              empname(3) TYPE c,
            END OF ty_emp.
    DATA : it_emp TYPE TABLE OF ty_emp,
            wa_emp TYPE ty_emp.
    DATA : pbk TYPE string.
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
    PARAMETERS : p_file TYPE rlgrap-filename.
    PARAMETERS : p_asfile TYPE rlgrap-filename.
    SELECTION-SCREEN END OF BLOCK b1.
    pbk = p_file.
    OPEN DATASET p_asfile FOR INPUT IN TEXT MODE ENCODING DEFAULT.
      DO.
        READ DATASET p_asfile INTO wa_emp.
        IF sy-subrc <> 0.
          EXIT.
        ENDIF.
        APPEND wa_emp TO it_emp.
      ENDDO.
    CLOSE DATASET p_asfile.
    Filling the already created file with download PS radiobutton
      CALL FUNCTION 'GUI_DOWNLOAD'
        EXPORTING
      BIN_FILESIZE                  =
          filename                      = pbk
      FILETYPE                      = 'ASC'
         append                        = 'X'
         write_field_separator         = ' '
      HEADER                        = '00'
      TRUNC_TRAILING_BLANKS         = ' '
      WRITE_LF                      = 'X'
      COL_SELECT                    = ' '
      COL_SELECT_MASK               = ' '
      DAT_MODE                      = ' '
    IMPORTING
      FILELENGTH                    =
        TABLES
          data_tab                      = it_emp
    EXCEPTIONS
      FILE_WRITE_ERROR              = 1
      NO_BATCH                      = 2
      GUI_REFUSE_FILETRANSFER       = 3
      INVALID_TYPE                  = 4
      NO_AUTHORITY                  = 5
      UNKNOWN_ERROR                 = 6
      HEADER_NOT_ALLOWED            = 7
      SEPARATOR_NOT_ALLOWED         = 8
      FILESIZE_NOT_ALLOWED          = 9
      HEADER_TOO_LONG               = 10
      DP_ERROR_CREATE               = 11
      DP_ERROR_SEND                 = 12
      DP_ERROR_WRITE                = 13
      UNKNOWN_DP_ERROR              = 14
      ACCESS_DENIED                 = 15
      DP_OUT_OF_MEMORY              = 16
      DISK_FULL                     = 17
      DP_TIMEOUT                    = 18
      FILE_NOT_FOUND                = 19
      DATAPROVIDER_EXCEPTION        = 20
      CONTROL_FLUSH_ERROR           = 21
      OTHERS                        = 22
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    ==============================================
    Regards,
    Krrishna

  • How to download PDF attachment from gmail on iphone 5S

    Hi,
    How to download PDF attachment from gmail on iphone 5S
    Regards
    Ram

    Hello Ram2910
    You should be able to view them natively within iOS. If you can view them in safari and want to save them, then download iBooks or search for other apps that can view and save them.
    iBooks
    https://itunes.apple.com/us/app/ibooks/id364709193?mt=8
    iBooks: Viewing, syncing, saving, and printing PDFs on iPhone, iPad, and iPod touch
    http://support.apple.com/kb/ht4227
    Regards,
    -Norm G.

  • How to stop the Calendar from editing your input?

    How to stop the Calendar from editing your input?

    I am constantly finding that Calendar Version 8.0 thinks it knows what I want to type but it incorrectly takes numbers and days and times out of my input and changes my appointments. I hate this new supposedly "smart" feature. Even when I edit my event correctly a second or third time it rewrites my input incorrectly again. I have to use my iPhone to override the annoying editing on my mac. I am ready to find a new calendar program unless Apple allows users to input what they want without their information being incorrectly edited.

  • How to download Halloween videos from YouTube?

    <By Jenny>
    It is that time of year again, the exciting Halloween! Since activities in these days are wonderful, unforgettable, impressive, crazy, and fantastic, lots of them are recorded in the form of videos and uploaded to YouTube for sharing with all the people worldwide. Do you fall in love with some interesting, meaningful and unique video files about Halloween, and want to download them as your own collections so as to enjoy them in the leisure time? If so, this thread will definitely do you a favor, for it will instruct you how to download Halloween videos from YouTube in detail.
    The software we will use here is Pavtube [YouTube Converter|http://www.pavtube.com/youtube-converter/], which is free for downloading, if you want to convert the downloaded FLV YouTube Halloween videos to other formats, you should use its retail version, if not, there will be watermarks of Pavtube stamped in the output files.
    Okay, now let’s begin.
    1. Download Pavtube [YouTube Converter|http://www.pavtube.com/youtube-converter/], install and run it.
    2. Add URL, select output format
    After launching, press “Add URL” in the main interface of this program, and then the following interface will pop up. Copy and paste URL of the Halloween videos which you want to download from YouTube into the textbox after “URL”. If you only want to use its downloading function totally for free, you should check “Only Download FLV source file”, and uncheck “Keep FLV source file”, on the contrary, if you want to convert it to other format while downloading as well as keeping the FLV source file, you should tick the checkbox of “Keep FLV source file” in advance.
    Imagine you’d like to do downloading and converting work simultaneously, in that case, you should click on the drop-down list of “Convert to” to select an output format, here I choose “iPhone MPEG-4 640X480(*.MP4)” as an example.
    Also, there are two more optional steps, namely, specify output file name and save path. Factually, this program will generate a file name and destination folder by default automatically, if you don’t like using these ones, you can type your preferred file name into the textbox after “Save as” and click on the ellipsis icon at the opposite side of “Save to” to specify a path to store the output files.
    3. Custom
    This program allows users adjusting video and audio parameters like codec, aspect ratio, bit rate, frame rate, etc. You can configure all of these items according to your own requirements. For instance, if you need change the output files to have a smaller size, and do not mind the output quality, you can adjust these parameters into smaller figures.
    4. Click “OK” to start downloading and converting
    Once all the above settings are done, you can now click “OK” button to begin downloading and converting your favorite Halloween videos from YouTube at the same time. Pavtube [YouTube Converter|http://www.pavtube.com/youtube-converter/] will finish its tasks, even batch tasks at speed, and never let video and audio go in separate ways.
    Well, just 4 simple steps, the downloading and converting work are completed, sincerely hope this guide is helpful for you to download or convert your beloved Halloween video files from YouTube.
    By the way, I know an amused website specially designed for Halloween, it provides people with games and Halloween gifts, from which you can not only gain funs, but also get cute presents, [play this game here|http://www.pavtube.com/halloween/halloween.html], and happy Halloween.
    Get more related articles here : [Pavtube Halloween|http://www.pavtube.com/halloween/]

    Try this:
    http://i1224.photobucket.com/albums/ee374/Diavonex/0f2ca63a.jpg

  • How to download RAW images from Canon S100 to iPhoto?

    How to download RAW images from Canon S100 to iPhoto?

    You need the Raw compatibility update 3.9:
    http://support.apple.com/kb/DL1473

  • HT6154 how to download the files from mail like gmail or yahoo or hotmail to my iphone 5s.I have not seen the option in my iphone 5s

    how to download the files from mail like gmail or yahoo or hotmail to my iphone 5s.I have not seen the option in my iphone 5s

    Download what files?
    What is the actual problem that is occurring?

  • How to create apple id for mac app store without using credit card and there is no any option for payment none. please tell how to download free apps from mac app store

    how to create apple id for mac app store without using credit card and there is no any option for payment none. please tell how to download free apps from mac app store

    my problem solve by me
    first create apple id
    fill credit card details
    and complete your account creating  process.
    than go to app store or itune store
    login your acount
    click right side  - account button
    than again login for account setting
    next go to payment information and click edit button
    when u enter payment infomation
    click none button in payment method and click done button.
    than ur credit card has been removed.
    but rs. 60 will deducted in your account when u doing this process.

  • How to download ALL MAIL from the server in a Mail app ?

    How to download ALL MAIL from the server in a Mail app ? I want all the mail messages, sent, received ON my computer... Thanks much !!!!!!!

    In Mail's Accounts/Mailbox Behavior preference pane make sure these 4 checkboxes are NOT checked:
    OT

  • How to download paid games from the App Store in the absence of a credit card?

    How to download paid games from the App Store in the absence of a credit card?

    If you don't have a credit card, you'll need a prepaid iTunes card or iTunes gift certificate. Or, if you're in the US, you can use PayPal, though it's often an unreliable method of payment.
    Regards.

Maybe you are looking for

  • Java crypto/ usage of keyagreemnt

    hi, i am working with JDK 1.4 and using bountsy castle provider. i have written two methods encrypt() decrypt() using symmetric algorithem (like blowfish,AES,DES...). the encrypt() method will accept a object as parameter and writen back a sealed obj

  • Variable User Exits

    Previously I have only used CMOD to manipulate variables in queries. However, my current client has BW 3.5 and I have read that the direction now is to use the BADI RSU5_SAPI_BADI. Can anybody provide an example of a user exit using the BADI? I know

  • Need logic in Bex report

    Hi I have a QM report. The fields in the report are Notifications and HSE advisor are Info objects and Total number of notifications is a key figure. The data in the infocube is <b>Notification--HSE Advisor----Total number of notifications</b> 1500--

  • HT204391 pop-up windows

    Does iBooks Author support pop-up windows linked to hyper-linked words in a text? For example, when an user clicks on a hyperlinked word in a text, he/she sees a video in a pop-up window on the same storybook. I have seen an ibooks storybook where an

  • Hw 2 display ALV in Table control

    Hi experts, hw we cn display alv output in a tabl cntrl. is dere ny specific fnctn module or v hav 2 use som odr method. hlpful answrs 'll b suitbly rewrded....