Problem in down loading CUSTOMER_MAIN object

Hi Experts
we have done filter settings to download single customer master from ECC 6.0 toCRM 5.0.
After intial load,  the object CUSTOMER_MAIN still in running status for a long time in R3AM1.
Please help us how to resolve this
Thanks & regards
Vikram Gopal

Hi,
Note 788822 - Filtering does not work
would surely solve your probs...
Best Regards,
Pratik Patel
<b>Reward with Points!</b>

Similar Messages

  • Initial down load of objects from R/3 to CRM

    Hi Experts,
    We are facing problem while we are doing initial download for the objects from R/3 to CRM. 1st 5 objects showing running(yellow) remaining all are showing waiting(red) in R3AM1.We maintained all the settings. Let me know anything we missed in this please!
    Please provide Middleware settings for down load the objects from R/3 to CRM.
    Thanks in Advance
    RAMESH

    Hi Rajesh,
    Please check for those running objects whether there are any "Parent Objects". You open that adapter object which is in "Running" state and there is a tab called "parent objects". Please check whether there are any objects present there. If there are objects present there then those needs to be run first before running the current object.
    Regarding the objects in "waiting" state the reason is because the parameter MAX_PARALLEL_PROCESSES in the table SMOFPARSFA is set to a small value I believe.Increase the value to 99 and then again try the loading of objects.
    This parameter MAX_PARALLEL_PROCESSES  indicates the total number of loads that can be done at a time.
    Thanks
    Abishek

  • I am having problem to down load adobe 10.1 what should i do

    i am having problem to down load adobe 10.1 what shold i do?

    You can start by telling us a lot more detail about where and how you are trying to download Reader and exactly what happens.

  • Problem while down loading data into Excel

    Hi friend's,
    I am getting a error while down loading header
    internal table to excel.
    since in my header internal table there is no p
    type field..but i am getting this error..
    Only flat, character-type data objects are supported at the argument
    position "dest" for the statement
      "WRITE src TO dest".
    In this case, the operand "dest" has the non-character-type or deep type
    "P". The current program is flagged as a Unicode program. In the Unicode
    context, type X fields are seen as non-character-type, as are
    structures that contain non-character-type components.
    i have coded like this
    REPORT  ZACG_CCA_EXCEL                          .
    Tables : zacg_cca.
    data: P_file like RLGRAP-FILENAME.
    Data: Begin of it_header occurs 0,
          ccode(10) ,
          mat_cd(12) ,
          ingr_desc(30),
          con(10),
          quan(10),
          percqty(10),
          DATE(10),
          rsamnos(10),
          flag(5),
          end of it_header.
    Data : begin of it_final occurs 0,
           ccode type zacg_cca-ccode,
           mat_cd type zacg_cca-mat_cd,
           ingr_desc type zacg_cca-ingr_desc,
           conc type zacg_cca-conc,
           quantity type zacg_cca-quantity,
           percqty type zacg_cca-percqty,
           APP_DATE type zacg_cca-app_date,
           rsamnos type zacg_cca-rsamnos,
           flag ,
           end of it_final.
           SELECTION-SCREEN : BEGIN OF BLOCK blk WITH FRAME TITLE text-000.
           select-options : s_Date for zacg_cca-app_date.
           SELECTION-SCREEN  : END OF BLOCK blk.
           it_header-ccode = 'Samp_code'.
           it_header-mat_cd = 'Mat_code'.
           it_header-ingr_desc = 'Ingr_Desc'.
           it_header-con = 'Conc'.
           it_header-quan = 'Quantity'.
           it_header-percqty = 'Perc'.
           it_header-date = 'Date'.
           it_header-rsamnos = 'Rsamnos'.
           it_header-flag = 'Flag'.
           Append it_header.
           select ccode mat_cd ingr_desc conc quantity percqty
            app_date rsamnos from zacg_cca  into corresponding
            fields of table
           it_final where  zacg_cca~app_date in s_date.
           loop at it_final.
           it_final-flag = 'T'.
           modify it_final.
           it_final-quantity = it_final-quantity * 2 .
           Modify it_final.
           endloop.
           CALL FUNCTION 'MS_EXCEL_OLE_STANDARD_DAT'
             EXPORTING
               FILE_NAME                       = 'C:\amol\p_file'
              CREATE_PIVOT                    = 0
             DATA_SHEET_NAME                 = ' '
             PIVOT_SHEET_NAME                = ' '
             PASSWORD                        = ' '
             PASSWORD_OPTION                 = 0
              TABLES
             PIVOT_FIELD_TAB                 =
              DATA_TAB                        =   it_final
             FIELDNAMES                      =  it_header
            EXCEPTIONS
              FILE_NOT_EXIST                  = 1
              FILENAME_EXPECTED               = 2
              COMMUNICATION_ERROR             = 3
              OLE_OBJECT_METHOD_ERROR         = 4
              OLE_OBJECT_PROPERTY_ERROR       = 5
              INVALID_PIVOT_FIELDS            = 6
              DOWNLOAD_PROBLEM                = 7
              OTHERS                          = 8
           IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
           ENDIF.
    can any one....

    hii
    for title this FM have some restriction as it can not take value if its more then 10 length so you need to give length as 10 only for every string then append it with FIELDNAMES = it_header
    regards
    twinkal

  • Problem in down loading Grid out to Excel

    Hi all ,
    when i down load grid output into excel using list->export->localfile ->spread sheet,
    Some columns headings are down loaded with medium texts and some with short texts (seltext_s) .The same is displayed in default output(with out dragging) .  I found that fields with short texts are because of field  data length is less than 10 char .customer is asking to  medium or long texts in excel when down loaded..
    1)Hence i expanded fileds and then down loaded , same short texts are down loaded to XL.
    2)I incresed output length for those  fields so as to take medium or long texts in default output of report(no need of dragging ) and then  down loaded to excel .Still it is taking short texts only in XL .
    Will there be any default settings to consider text to considered while down loading or do ineed to set explicitley .Please advise me ..
    a bit urgent .
    I constructed fieldcat  as follows
    ls_fieldcat-fieldname    = c_cname.
      ls_fieldcat-seltext_l    = text-004.
      ls_fieldcat-seltext_s    = text-004.
      ls_fieldcat-seltext_m    = text-004.
      ls_fieldcat-reptext_ddic = text-004.
      MODIFY p_fieldcat FROM ls_fieldcat TRANSPORTING seltext_l seltext_m
    seltext_s reptext_ddic WHERE fieldname = ls_fieldcat-fieldname.
    Many Thanks
    Dharma P

    Hi  A. Caglar Ozkor,
    Basically the parmeter layout-colwidth optimization  is set to  'X'. I tried out to increase outputlength after setting it to '   '  , then down loaded to excel .In that case also it picked only short texts , Hence I thought there would be  some settings  to decide what text to be picked while down loading  in to excel .
    Guys , Any ideas to solve this problem   ...
    Dharma P

  • HT5622 hi is there a problem with down loading apps for the i phone 4s

    having a problem tring to down load apps is any bady having the same problem

    Hello rooster1969,
    I found an article with steps you can take when you are not able to connect to the iTunes Store.  I recommend following the steps in the section titled "Troubleshooting on an iPhone, iPad, or iPod touch" in this article:
    Can't connect to the iTunes Store
    http://support.apple.com/kb/ts1368
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • Incuured problems after downing load the new iOS5...lost items

    Since down loading the iOS 5  I have lost all my music, photos and Apps I purchased prior! What do I need to do to recovery them ( I do not have icloud on) or how do I recover them. My carema shows no views on the screen of the what the photo to be taken looks like either, iti s just dark, once you snap a photo you can see what was taken ....after the fact...

    Hi Eric.
    The 10.10.2 Combo Update is working fine!  
    But my old problem with Safari  is still hear...  I'm using Safari 8 and Yosemite 10.10.2 now, but still some sites (iCloud.com, outlook.com, Pinterest, Garmin, Google, ) informs I'm using a non supported version,  like Safari 4.
    If you have any suggestions I would appreciate. 
    Thank you for your Help! 

  • Problem in down loading to excel sheet from ALV report

    Hi Experts,
    I have used the funtion module REUSE_ALV_GRID_DISPLAY, and for field catalog I have individually written the field catalog  as there are not many fields instead of using the funtion module REUSE_ALV_FIELDCATALOG_MERGE.
    Report is getting displayed well but while getting  down load to xls only numeric fields are appearing and character fields are not appearing.
    Have  I selected the function module formats correctly.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
            I_BYPASSING_BUFFER          =
            I_BUFFER_ACTIVE             =
            I_INTERFACE_CHECK           = ' '
             I_CALLBACK_PROGRAM          = 'ZHR_DETAILS'
            I_CALLBACK_PF_STATUS_SET    = ' '
            I_CALLBACK_USER_COMMAND     = ' '
            I_CALLBACK_TOP_OF_PAGE      = ' '
            I_CALLBACK_HTML_TOP_OF_PAGE = ' '
            I_CALLBACK_HTML_END_OF_LIST = ' '
            I_STRUCTURE_NAME            =
            I_BACKGROUND_ID             = ' '
             I_GRID_TITLE                = 'Active ETA Details'
            I_GRID_SETTINGS             =
            IS_LAYOUT                   =
             IT_FIELDCAT                 =  RT_FCAT
            IT_EXCLUDING                =
            IT_SPECIAL_GROUPS           =
            IT_SORT                     =
            IT_FILTER                   =
            IS_SEL_HIDE                 =
            I_DEFAULT                   = 'X'
            I_SAVE                      = ' '
            IS_VARIANT                  =
            IT_EVENTS                   =
            IT_EVENT_EXIT               =
            IS_PRINT                    =
            IS_REPREP_ID                =
            I_SCREEN_START_COLUMN       = 0
            I_SCREEN_START_LINE         = 0
            I_SCREEN_END_COLUMN         = 0
            I_SCREEN_END_LINE           = 0
            I_HTML_HEIGHT_TOP           =
            I_HTML_HEIGHT_END           =
       IMPORTING
            E_EXIT_CAUSED_BY_CALLER     =
            ES_EXIT_CAUSED_BY_USER      =
         TABLES
              T_OUTTAB                    = ITAB
       EXCEPTIONS
            PROGRAM_ERROR               = 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.
    Please advice me.
    Thanks in advance.
    Regards,
    Irfan Hussain

    Hi Irfan,
      This looks strange !!1
      Try to use the layout option also and checkout if it works

  • I am having problems with down loading itunes. It wont download fully and gives me an error message

    plz help problem occured with new comuter, windows 7, and old comuter, windows xp
    I've been without itunes for 5 months plz help

    What does the error message say? (Precise text, please.)

  • Problem when down loading a simple report to Excel sheet

    HI Frenz,
    When I download a Simple report to excel , The Excel shows a blank column in between two column, which should not be the case.
    Kindly let me know ASAP
    Regards
    Irfan

    Hi,
    Check out the below samle code
    Download a report to excel with format (border, color cell, etc) 
    REPORT ZSIRI NO STANDARD PAGE HEADING.
    * this report demonstrates how to send some ABAP data to an
    * EXCEL sheet using OLE automation.
    INCLUDE OLE2INCL.
    * handles for OLE objects
    DATA: H_EXCEL TYPE OLE2_OBJECT,        " Excel object
          H_MAPL TYPE OLE2_OBJECT,         " list of workbooks
          H_MAP TYPE OLE2_OBJECT,          " workbook
          H_ZL TYPE OLE2_OBJECT,           " cell
          H_F TYPE OLE2_OBJECT.            " font
    TABLES: SPFLI.
    DATA  H TYPE I.
    * table of flights
    DATA: IT_SPFLI LIKE SPFLI OCCURS 10 WITH HEADER LINE.
    *&   Event START-OF-SELECTION
    START-OF-SELECTION.
    * read flights
      SELECT * FROM SPFLI INTO TABLE IT_SPFLI UP TO 10 ROWS.
    * display header
      ULINE (61).
      WRITE: /     SY-VLINE NO-GAP,
              (3)  'Flg'(001) COLOR COL_HEADING NO-GAP, SY-VLINE NO-GAP,
              (4)  'Nr'(002) COLOR COL_HEADING NO-GAP, SY-VLINE NO-GAP,
              (20) 'Von'(003) COLOR COL_HEADING NO-GAP, SY-VLINE NO-GAP,
              (20) 'Nach'(004) COLOR COL_HEADING NO-GAP, SY-VLINE NO-GAP,
              (8)  'Zeit'(005) COLOR COL_HEADING NO-GAP, SY-VLINE NO-GAP.
      ULINE /(61).
    * display flights
      LOOP AT IT_SPFLI.
      WRITE: / SY-VLINE NO-GAP,
               IT_SPFLI-CARRID COLOR COL_KEY NO-GAP, SY-VLINE NO-GAP,
               IT_SPFLI-CONNID COLOR COL_NORMAL NO-GAP, SY-VLINE NO-GAP,
               IT_SPFLI-CITYFROM COLOR COL_NORMAL NO-GAP, SY-VLINE NO-GAP,
               IT_SPFLI-CITYTO COLOR COL_NORMAL NO-GAP, SY-VLINE NO-GAP,
               IT_SPFLI-DEPTIME COLOR COL_NORMAL NO-GAP, SY-VLINE NO-GAP.
      ENDLOOP.
      ULINE /(61).
    * tell user what is going on
      CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'
         EXPORTING
    *           PERCENTAGE = 0
               TEXT       = TEXT-007
           EXCEPTIONS
                OTHERS     = 1.
    * start Excel
      CREATE OBJECT H_EXCEL 'EXCEL.APPLICATION'.
    *  PERFORM ERR_HDL.
      SET PROPERTY OF H_EXCEL  'Visible' = 1.
    *  CALL METHOD OF H_EXCEL 'FILESAVEAS' EXPORTING #1 = 'c:\kis_excel.xls'
    *  PERFORM ERR_HDL.
    * tell user what is going on
      CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'
         EXPORTING
    *           PERCENTAGE = 0
               TEXT       = TEXT-008
           EXCEPTIONS
                OTHERS     = 1.
    * get list of workbooks, initially empty
      CALL METHOD OF H_EXCEL 'Workbooks' = H_MAPL.
      PERFORM ERR_HDL.
    * add a new workbook
      CALL METHOD OF H_MAPL 'Add' = H_MAP.
      PERFORM ERR_HDL.
    * tell user what is going on
      CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'
         EXPORTING
    *           PERCENTAGE = 0
               TEXT       = TEXT-009
           EXCEPTIONS
                OTHERS     = 1.
    * output column headings to active Excel sheet
      PERFORM FILL_CELL USING 1 1 1 'Flug'(001).
      PERFORM FILL_CELL USING 1 2 0 'Nr'(002).
      PERFORM FILL_CELL USING 1 3 1 'Von'(003).
      PERFORM FILL_CELL USING 1 4 1 'Nach'(004).
      PERFORM FILL_CELL USING 1 5 1 'Zeit'(005).
      LOOP AT IT_SPFLI.
    * copy flights to active EXCEL sheet
        H = SY-TABIX + 1.
        PERFORM FILL_CELL USING H 1 0 IT_SPFLI-CARRID.
        PERFORM FILL_CELL USING H 2 0 IT_SPFLI-CONNID.
        PERFORM FILL_CELL USING H 3 0 IT_SPFLI-CITYFROM.
        PERFORM FILL_CELL USING H 4 0 IT_SPFLI-CITYTO.
        PERFORM FILL_CELL USING H 5 0 IT_SPFLI-DEPTIME.
      ENDLOOP.
    * changes by Kishore  - start
    *  CALL METHOD OF H_EXCEL 'Workbooks' = H_MAPL.
      CALL METHOD OF H_EXCEL 'Worksheets' = H_MAPL." EXPORTING #1 = 2.
      PERFORM ERR_HDL.
    * add a new workbook
      CALL METHOD OF H_MAPL 'Add' = H_MAP  EXPORTING #1 = 2.
      PERFORM ERR_HDL.
    * tell user what is going on
      SET PROPERTY OF H_MAP 'NAME' = 'COPY'.
      CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'
         EXPORTING
    *           PERCENTAGE = 0
               TEXT       = TEXT-009
           EXCEPTIONS
                OTHERS     = 1.
    * output column headings to active Excel sheet
      PERFORM FILL_CELL USING 1 1 1 'Flug'(001).
      PERFORM FILL_CELL USING 1 2 0 'Nr'(002).
      PERFORM FILL_CELL USING 1 3 1 'Von'(003).
      PERFORM FILL_CELL USING 1 4 1 'Nach'(004).
      PERFORM FILL_CELL USING 1 5 1 'Zeit'(005).
      LOOP AT IT_SPFLI.
    * copy flights to active EXCEL sheet
        H = SY-TABIX + 1.
        PERFORM FILL_CELL USING H 1 0 IT_SPFLI-CARRID.
        PERFORM FILL_CELL USING H 2 0 IT_SPFLI-CONNID.
        PERFORM FILL_CELL USING H 3 0 IT_SPFLI-CITYFROM.
        PERFORM FILL_CELL USING H 4 0 IT_SPFLI-CITYTO.
        PERFORM FILL_CELL USING H 5 0 IT_SPFLI-DEPTIME.
      ENDLOOP.
    * changes by Kishore  - end
    * disconnect from Excel
    *      CALL METHOD OF H_EXCEL 'FILESAVEAS' EXPORTING  #1 = 'C:\SKV.XLS'.
      FREE OBJECT H_EXCEL.
      PERFORM ERR_HDL.
    *       FORM FILL_CELL                                                *
    *       sets cell at coordinates i,j to value val boldtype bold       *
    FORM FILL_CELL USING I J BOLD VAL.
      CALL METHOD OF H_EXCEL 'Cells' = H_ZL EXPORTING #1 = I #2 = J.
      PERFORM ERR_HDL.
      SET PROPERTY OF H_ZL 'Value' = VAL .
      PERFORM ERR_HDL.
      GET PROPERTY OF H_ZL 'Font' = H_F.
      PERFORM ERR_HDL.
      SET PROPERTY OF H_F 'Bold' = BOLD .
      PERFORM ERR_HDL.
    ENDFORM.
    *&      Form  ERR_HDL
    *       outputs OLE error if any                                       *
    *  -->  p1        text
    *  <--  p2        text
    FORM ERR_HDL.
    IF SY-SUBRC <> 0.
      WRITE: / 'Fehler bei OLE-Automation:'(010), SY-SUBRC.
      STOP.
    ENDIF.
    ENDFORM.                    " ERR_HDL
    Cheers,
    Chandru

  • I am having problems with down loading items on Adobe Reader and have been told that I need to update my Adobe Reader. I have tried this but I am being told that I need to temporarily disable Firefox to do this?

    How do I disable Firefox to download Adobe Reader

    There may be a problem with the cookies that stores the "remember me" details. Try deleting cookies for live.com (including account.live.com and login.live.com cookies), for details on doing that see the [[Deleting cookies]] article.

  • I've had problems since down loading new firefox help

    Since downloading the new firefox my laptop. When I go into yahoo mail it freezes or will go back to desktop then recover and come back to yahoo and work fine. It has also added old firefox data to my deskyop. I did not request the new version it took over on it's own

    I can offer this for help:
    *[[Recovering important data from an old profile]]
    As well as for next time that there is an update:
    *[[Configuration Options for Updates]]

  • I've started Mountain lion few day and I've hung download. My problem the down load doesn't restart when I release it.

    Thanks by advance to tell me how to restart Mountain Lion download ?
    BR

    Welcome to Apple Support Communities
    If the resume doesn't work, open Launchpad, hold the Option (Alt) key and press the X button above the OS X Mountain Lion installer to remove it. Then, open the Mac App Store, go to Purchases and download Mountain Lion

  • Problems after down loading iTunes 11.1

    My imac was running fine until I download iTunes 11.1 yesterday. Now I have a black dialog box that lists and speaks when I move. My curser. Anyone know what this. I can not delete if nor can I fine any app / program that is related

    That's VoiceOver. Press Command and F5 keys to disable it, or open System Preferences > Universal Access (or Accessibility > VoiceOver, and turn it off)

  • Having problem down load software off the internet

    having problem add  down load software off the internet

    Adding to Jon,  that single /20 block  is a huge block   , you could brake  for example to  16     /24 networks,  254 ip host per /24 network.
    Example :
    175.106.16.0/24
    172.106.17.0/24
    x.x.18.x/24
    x.x.19.x/24
    x.x.20.x/24
    x.x.21.x/24
    and so on...
    The key to keep in mind  is  how you would want these blocks be announce,  I suggest you do thorough analysis  of your company internet architecture , present and future and come  up with proper  allocation of your blocks to minimize the re-addressing and re-advertizing nightmares.     
    another example could be out of a /24 off your /20 block say 175.106.18.0/24  can be  further brake  down to smaller blocks to be announced in various sites , again , like Jon indicated in his post, it all depends on your company's requirements for example such as branch offices having their own internet ISP where you may have public web servers  requiring public IP addresses, or even requiring public IP pool blocks  for various purposes etc.. 
    Another example of further braking  down your /24  you can have two /26's off that 175.106.18.0/24 that is still part of the /20 network , which could be 175.106.18.0/25 and 175.106.18.128/25 allowing 126 public IP addresses per network , and have these blocks being announced by  different  office branches  that have their own ISP , this is just an example , or announce both and separate  the routing at the perimeter device, there are so many variables in allocating and braking down that huge /20 block.
    Here is a freeware subnet cal if you are still looking for one.
    http://www.solarwinds.com/register/registration.aspx?program=92&c=70150000000CcHV&INTCMP=DLIndexA_FreeTools_freeSubnetCalculator
    my 2 censt
    Regards

Maybe you are looking for

  • Dynamic [Runtime] type casting in Java

    Hello, This is my requirement. I have a method that takes class name as a parameter. Ex: Object myMethod(String classname){ Object xyz = getObject(); //userdefine method which returns some object /*<b>I need to typecast above object with the class na

  • What are the SAP inbox tables.

    Hi Team i want to know what are the SAP inbox tables. if i have click on SAP inbox for perticular user, retrived 37000 entries and give short dump "Time Out" . i want to know from which table retrived the records and display into the SAP inbox(SBWP).

  • IIS - Webserver - Best Practice ?

    Hey Community I have some questions , and i´d love to hear some responses. I have a virtualized environment at home ... DC-1 , DC-2 , GW-1 , WEB-01 and some client and application VM´s running. GW-01 and WEB-01 are not part of the domain mcsa.local I

  • Re: Want to know about Oracle Obiee(New to SQL and OBIEE)

    Hi Mr Srini, I am also interested in learning OBIEE(started learning ).how is the market in uk?I live around london.

  • Creating new Tags with HTMLEditorKit

    Hello, I have an HTMLEditorKit and I want it to recognize the HTML tags + some new tags I've created (which contains some attributes). 1. Is it possible ? 2. How ? I've read the API, and found something about an HTML parser and a SGML DTD. There's a