Specific extractor works in DEV but not in QUAL

Hello Everybody
I have new problem : I created a specific extractor ZCRM_SRV_PROCESS_I based on specific FM based on RSAX_BIW_GET_DATA_SIMPLE.
This extractor have to retrieve specific fields of Service Order Item (linked document type BUS2000116)
In DEV it works fine for loading INIT & DELTA
In QUAL, loading INIT does not work but loading works for some records...
Loading finish with following message :
  System Response
  Caller 09 contains an error message.
  Further analysis:
  The error occurred in Extractor .
  Refer to the error message.
Job is cancelled in source system with small text :
19.04.2011  14:51:05  Job started
19.04.2011  14:51:05  Step 001 started (program SBIE0001, variant &0000000022545, user ID ALEREMOTE)
19.04.2011  14:51:05  Asynchronous transmission of info IDoc 2 in task 0001 (0 parallel tasks)
Do you know why it works in DEV but not in QUAL ?
Thank you
Cyril
Edited by: cyril meslin on Apr 20, 2011 9:53 AM

There is no problem of authorization. In RSA3 it's ok for some records but too long for full of records.
In fact, my FM make a first select after to be determined init or delta mode :
IF i_updmode = 'D'.
        SELECT i~guid h~object_id h~guid h~process_type
                 INTO TABLE st_zcrmt_bw_i       
                 FROM crmd_orderadm_h AS h
                 INNER JOIN crmd_orderadm_i AS i ON h~guid = i~header
                 WHERE h~object_id    IN lr_object_id
                   AND h~changed_at   >= lv_timestp
                   AND i~guid         IN lr_item_guid
                   AND ( i~product_kind <> 'X' OR  i~product_kind <> '' )
                   AND ( h~process_type = 'ZSOL'
                      OR h~process_type = 'ZSPE'
                      OR h~process_type = 'ZSVO'
                      OR h~process_type = 'ZSVT' ).
      ELSE.
        SELECT i~guid h~object_id h~guid h~process_type
                 INTO TABLE st_zcrmt_bw_i         "PACKAGE SIZE I_MAXSIZE
                 FROM crmd_orderadm_h AS h
                 INNER JOIN crmd_orderadm_i AS i ON h~guid = i~header
*                 UP TO I_MAXSIZE ROWS
                 WHERE h~object_id    IN lr_object_id
                   AND i~guid         IN lr_item_guid
                   AND ( i~product_kind <> 'X' OR  i~product_kind <> '' )
                   AND ( h~process_type = 'ZSOL'
                      OR h~process_type = 'ZSPE'
                      OR h~process_type = 'ZSVO'
                      OR h~process_type = 'ZSVT' ).
      ENDIF.
Then FM CRM_ORDER_READ is running for 500 records to retrieve header data :
CALL FUNCTION 'CRM_ORDER_READ'
    EXPORTING
      iv_no_auth_check     = abap_true
      it_header_guid       = it_guids      "500 records
      it_requested_objects = lt_requested_objects
    IMPORTING
      et_orderadm_h        = lt_orderadm_h
      et_service_os        = lt_service_os.
Then this FM is running for 10 records for item data (max 10 because FM CRM_ORDER_READ does not work for more records) :
CALL FUNCTION 'CRM_ORDER_READ'
    EXPORTING
      iv_only_spec_items   = abap_true
      it_item_guid         = it_guids         "10 records
      it_requested_objects = lt_requested_objects
    IMPORTING
      et_orderadm_i        = lt_orderadm_i
      et_sales             = lt_sales
      et_appointment       = lt_appointment
      et_status            = lt_status
      et_text              = lt_text
      et_subject           = lt_subject
      et_doc_flow          = lt_doc_flow
      et_customer_i        = lt_customer_i
Perhaps if I succeeded to improve SELECT & call of CRM_ORDER_READ, it would be better but I don't know how to do...

Similar Messages

  • Custom bsp Iviews work in dev but not in qas?

    Hi All,
    We're using R/3 4.7, ESS 50.4, MSS 60.1.20.
    We have developed a number of custom bsp iviews that work perfectly fine in dev but when we transported to qas, no data is displayed.  The labels in the bsp are being displayed so we know that the bsp is working.
    We use epcf to listen for the employee number in the bsp's.  It is configured the same in both dev and qas but in qas the bsp is not picking up the employee number and therefore is displaying no data.  When you click on susbequest employees in the team viewer, nothing happens (bsp should reload).
    The only difference is that the portal dev and the bsp's reside on the same server but when we go to portal qas, it is now on a different server to the bsp.  We have relaxed the domain, so that the server name has been removed from the domain name but still to no avail.
    If anyone can help at all, i'd really appreciate it, as i'm at a loss as to what to do next.
    Many thanks,
    Liz.

    Hi,
    Seems that there is:
    1. something wrong with the System Object or it's definition..
    OR
    2. someone used a server/hostname as a "constant" instead of a "variable"
    OR
    3. the Portal and Backend are not in the same domain or the configuration is not with Fully Qualified Domain Name
    Hope this helps you to narrow it down or even find the issue.
    Good Luck,
    Benjamin Houttuin

  • CFDocument: works in dev but not prod?

    We are using CFMX 7,0,2,142559 Standard on W2K3 servers. In
    our dev and qa environements, cfdocument works fine, but in
    production it does not, and produces the error below in the errror
    log.
    The code is all the same, the data is the same - I have
    sinked our dev and qa servers with the production data. I have even
    put out a test file in all environments containing the following:
    <cfdocument format="pdf">
    Dave's content
    </cfdocument>
    It Streams to the browser just fine in dev and qa, but in
    production the browser times out, and the error below is produced.
    Anyone else see this?
    Thanks in advance.
    ~~~~~~~~~~~~~~~
    "Error","jrpp-58","07/09/06","15:31:55","Corporate","The
    document has no pages. The specific sequence of files included or
    processed is:
    E:\sites\corp\docs\pressroom\press_releases\pr_in_pdf.html, line:
    23 "
    java.io.IOException: The document has no pages.
    at com.lowagie.text.pdf.PdfPages.writePageTree(Unknown
    Source)
    at com.lowagie.text.pdf.PdfWriter.close(Unknown Source)
    at com.lowagie.text.pdf.PdfDocument.close(Unknown Source)
    at com.lowagie.text.Document.close(Unknown Source)
    at
    coldfusion.tagext.lang.DocumentTag.doAfterBody(DocumentTag.java:1225)
    at
    cfpr_in_pdf2ehtml894705829.runPage(E:\sites\corp\docs\pressroom\press_releases\pr_in_pdf. html:23)
    at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152)
    at
    coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:349)
    at
    coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:65)
    at
    coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:225)
    at
    coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:51)
    at coldfusion.filter.PathFilter.invoke(PathFilter.java:86)
    at
    coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:69)
    at
    coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:2 8)
    at
    coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38)
    at
    coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38)
    at
    coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
    at
    coldfusion.filter.RequestThrottleFilter.invoke(RequestThrottleFilter.java:115)
    at coldfusion.CfmServlet.service(CfmServlet.java:107)
    at
    coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:78)
    at
    jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:91)
    at
    jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
    at
    jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:257)
    at
    jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:541)
    at
    jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.java:204)
    at
    jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:318)
    at
    jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:426)
    at
    jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:264)
    at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)

    Hi,
    Compare the formula of the variable in Dev and in QA. Might be some operands might bwe missing in QA environment.
    Cheers,
    Suresh Aluri.

  • Case insensitive search working in dev but not in prod

    Hello All,
    I had set the CASE_SENSITIVE_CHARACTER_COMPARISON parameter as OFF in NQSConfig.ini file for enabling the case insensitive search in OBIEE.
    This setup is letting me do the case insensitive search in Dev env but the same doesnt work in prod env. I tried pointing both prod and dev rpd to same prod db.
    With same db also, case insensitive search doesnt work in prod env.
    Any idea for which other configuration I can look for.
    Thanks in advance.

    Thanks Stijin. I had seen this post earlier. Case insensitive search works fine after setting the value for NLS_SORT and NLS_COMP in production RPD but the other report with distinct clause starts failing. Not sure about the reason.
    Saw this comment from you in that post:
    The only compromise solution we could find was to "cache" the column value we wanted to use in insensitive searches. These were mainly used in "show all choices" while setting prompts. Other than that there isn't much you can do in an Oracle database.
    Can you please tell me how to implement the above.

  • Variable works in Dev but not in Test in Webi report

    Hi All,
    I have written a variable to calculate Average. It works fine for all entries in Dev. But when I transport it to Test Environment, it works fine for some entries and does not work for some entries.
    Any suggestions?
    This is happening in WEBI Report.
    Regards
    Edited by: No.One on Sep 21, 2011 2:45 PM

    Hi,
    Compare the formula of the variable in Dev and in QA. Might be some operands might bwe missing in QA environment.
    Cheers,
    Suresh Aluri.

  • Webi Report on BW Universe works in DEV but not properly in TEST

    Hi,
    We have created a Webi-Report on a BW Universe on our DEV server. Everything works like a charm and we are prompted as the first thing for keydate and the report is refreshed successfully. We then export the Universe (no connection overwrite) and Report to our TEST server with the Export Wizard and the problems start.
    When we refresh the report on the TEST server we are prompted for keydate. If we select a value for the date we receive an error:
    A database error occured  The database error text is: The MDX (and then some MDX) failed to execute with the error Specify a value for variable Financial Statement Version. (WIS 10901)
    If we select Use default value the report refreshes but no currency conversion is done. We can then refresh the report again and this time if we select a value for the keydate the report refreshes without the above error.
    We have tried to overwrite the connection during export from DEV to TEST so the connection points to our DEV BW Server with the same result. If we create the universe on the TEST server from scratch everything works as intended.
    If we transport the Universe and report from DEV to PROD directly the report works as intended.
    The BO user (SSO WinAd) testing this have admin rights on BO. The connection in the univers to BW is done using a fixed username and password (no SSO to BW)
    I am now out of options and would appreciate any input you might have to solve this problem.
    Best Regards,
    Lars

    Hi Wavery,
    Thanks for your reply. I have checked the connections and they are named exactly the same on DEV/TEST/PROD. I have also tried deleting the universe, connection and report on TEST and then do a new transport of all of them from DEV to TEST. Same result.
    What I don't understand is why the refresh works if I do it in two steps:
    <OL>
    <LI>
    I set keydate to "use default value" when prompted and the report will refresh without the keydate dependent calculations. None keydate dependent measures are showing correct values from BW.
    </LI>
    <LI>
    Then I refresh again and set the keydate to a date and the report refreshes with the dependent calculations.
    </LI></OL>
    This tells me the connection is working and the problem is somewhere else. At the moment I'm clueless
    Any input is highly appreciated.
    Thanks,
    Lars

  • Works on dev, but not production server

    I am building a site using LCCS which works on my laptop, which runs ColdFusion 9 and Apache. But it does not work on my production server, which is ColdFusion 8 and IIS. I have made the various configuration changes and I can successfully create a room via CF from the production server.
    But my Flex app does not seem to load properly on the production server. It is basically a video-conferencing app, so the swf should display the "Start My Camera" button, but it doesn't. It works perfectly on my laptop though.
    I realize I am using very different environments, but I don't know why that would affect anything for the simple Flex-generated swf, especially when I am dynamically creating the room via production.
    I am sure it is something simple, but am out of ideas. Any suggestions would be greatly appreciated.
    cheers,
    Steven

    It seems I figured out my problem (well, about this issue anyway).
    A while back, I un-installed .NET but then had to re-install it. In doing so, somehow IIS lost the ability to recognize .js files. It would return a 404 error whenever you tried to call any file with a .js extension. My hosting company did something to re-associate the file type with IIS. It seems I have the same problem with .swf files.
    fyi, I used Charles (a Firefox plugin) to diagnose this. I had assumed it was a permission issue. It never occurred to me to try to access my swf directly.

  • Web template works in Dev but not in Q

    We have a web template includes 10 queries. First I transported 10 queries from Dev to Q and we executed each one. All worked. Then I transported this template. Transport was successful but it return a error message when it gets execute for few seconds.
    One thing I don't understand is it contains many Template items but it only show part of Items when I collected. Now I am trying to collect each template items but I am unable to find missing items from Bex Web Items list. Why is that?
    Here is the error message:
    The initial exception that caused the request to fail was:
    Termination message sent
    ABEND RSBOLAP (000): Program error in class SAPMSSY1 method : UNCAUGHT_EXCEPTION
      MSGV1: SAPMSSY1
      MSGV3: UNCAUGHT_EXCEPTION
    com.sap.ip.bi.base.application.exceptions.AbortMessageRuntimeException: Termination message sent
    ABEND RSBOLAP (000): Program error in class SAPMSSY1 method : UNCAUGHT_EXCEPTION
      MSGV1: SAPMSSY1
      MSGV3: UNCAUGHT_EXCEPTION
    at com.sap.ip.bi.base.application.message.impl.MessageManager.addMessageInternal(MessageManager.java:148)
    at com.sap.ip.bi.base.application.message.impl.MessageManager.addMessage(MessageManager.java:113)
    Details: Full Exception Chain
    Messages
    ABEND: Program error in class SAPMSSY1 method : UNCAUGHT_EXCEPTION
    ABEND: System error in program SAPLRZI0 and form RSZ_FORM_AND_VAR_TAB_FILL-02- (see long text)
    Can anyone help? Thank you in advance!

    Hi,
        You have to collect all the WEB items toos, it should be under the WEB ITEM  in transport connection. Try collecting them again . Hope you have transported all the dependant Query elements like variables, User exits variable code if any.
    Hope it helps,
    Cheers,
    Balaji

  • My external iSight works in iChat, but NOT quicktime 7 pro

    I'd like to get in on this...
    My external iSight works in iChat, but NOT quicktime 7 pro when i try to make a movie recording. No audio, no video, nothing. But, iChat works. This is on a brand new mac pro with the latest leopard. Any ideas????

    Hello Tommy Igoe
    With no other video capable apps running and your working iSight connected and turned on when you launch QT 7 Pro, try these suggestions to see whether one of them fixes your problem:
    (0) Try all suggestions applicable to your system from Apple's How to Troubleshoot iSight.
    (1) Check that your QuickTime Player > Preferences > Recording settings are correct.
    (2) Repair Permissions and test to see if iSight works with QT Pro now.
    (3) Disconnect all peripheral and test again to check for hardware or software conflicts.
    (4) Download and reinstall QuickTime 7.4 for Leopard. Repair permissions and test movie recording.
    If you must post back for other suggestions, please clarify and expand on your QT problem. Please be specific. For example, can you see but not execute the QuickTime Player > File > New Movie Recording menu command? Can you execute the menu command but find that the recording window does not open? Does the recording window open but you find the "Record" button is not clickable? Etc.?
    Also please tell us whether you found that QuickTime is the ONLY problem app in EVERY user account you tried when you used Apple's Troubleshooting suggestions.
    Finally, if you currently have ANY other problems with your Mac, please describe them all.
    EZ Jim
    PowerBook 1.67 GHz w/Mac OS X (10.4.11) G5 DP 1.8 w/Mac OS X (10.5.1)  External iSight

  • SanDisk ImageMate works on Vista, but not on Leopard

    I bought an iMac when my old Windows XP machine from Dell died last Christmas, and am mostly very pleased with it. I used Boot Camp to install Vista Home Basic on it also, because I still needed to run some Windows software.
    I recently acquired a digital camera from my daughter, along with a SmartMedia card reader by SanDisk (model SDDR-55 ImageMate). On the SanDisk website I found a driver for Windows that would work for 95, 98, ME, 2000, and XP. I downloaded it after not finding one for Vista listed. Similarly, there was a driver that would work for Macintosh OSX and OS 10.1. I downloaded it after not finding one specifically for Leopard.
    I installed both drivers under their appropriate OSes and plugged the ImageMate into a USB port on the computer. What I found was that it worked fine under Vista but was not recognized at all by Leopard. I contacted SanDisk and they had me verify that it was not a problem with the USB port. Also, they had me try to install it on another Mac (my daughter has a Mac laptop running Leopard) and it didn't work there either. So I know the ImageMate works and the USB port works.
    SanDisk then suggested I contact Apple. Is there anything I can do to get the ImageMate working on Leopard?
    One thing I noticed was that when I ran Terminal and went to /System/Library/Extensions and looked at a couple of files created during the install on the Mac, the owner and group were different from all the other files, so I made them match the others thinking file ownership might be the problem. Alas, it was not. (I did the install while logged in as admin.)
    Can anybody point me in the direction of what to do next?
    Thanks in advance,
    Sherry

    Many thanks to both of you for responding. My guess is that my ImageMate is getting old and SanDisk isn't going to help support it. I'm sure they'd rather I replace it by buying one of their newer models.
    One of my lesser attractive qualities is that I am cheap, and hate to throw away anything that still works. Since this little doobie still does (under Vista), I'll probably limp along with it there until I can't stand it anymore and buy a new one. I appreciate learning that some require drivers and some don't: that will help when it comes time to buy a replacement.
    Neither here nor there, but this is the 2nd device I've had difficulty with getting to work on Leopard but not on Vista (the other being my HP PSC 1315xi printer/scanner/copier).

  • Password works for login but not for the Adobe CC Desktop application

    Password works for login but not for the Adobe CC Desktop application

    Please refer to http://helpx.adobe.com/creative-cloud/kb/troubleshoot-cc-installation-download.html
    ou can try deleting OPM.DB from steps below and try again.
    Mac OS: You can locate the OPM.db file in the \User\\Library\Application Support\Adobe\OOBE folder. To access the hidden user Library folder, see Access hidden user library files | Mac OS 10.7 Lion. - http://helpx.adobe.com/x-productkb/global/access-hidden-user-library-f iles.html
    Windows: You can locate the OPM.db file in the :\Users\\AppData\Local\Adobe\OOBE folder.  To view the hidden AppData folder, see Show hidden files, folders, filename extensions | Windows XP, Vista, Windows 7. -http://helpx.adobe.com/x-productkb/global/show-hidden-files-folders-ex tensions.html
    3) update to the latest version of the Creative Cloud app.
    Also we would like few more details:
    When has this issue started occurring, was this after installation of any specific adobe product.
    On which platform are you seeing this.
    Also we would like to know if after above steps this issue occurs ever again in future.
    You can refer to http://forums.adobe.com/thread/1239510
    Regards,
    Rajshree

  • Custom F4 help in a BSP application working in Mozilla but not in IE

    Hi,
    I have created a custom F4 help in a BSP application.
    It is working in Mozilla but not in IE. I tried enabling javascript as well but still it is not working.
    Can someone please suggest a possible solution for this?

    Hi,
    See simmilar discussion in thread /thread/1883519 [original link is broken]
    I think this may be helpful for you.
    Thanks,
    Chandra

  • Why does the counter work in MAX, but not Labview?

    Please help, I have been away from Labview for over 3 months, and I am quite rusty....
    Last year, I successfully configured NI9401 to measure period (seconds) by counting the rising edges of my sensor signal.  Since then, I have aquired a new PC, and loaded all my software into it, including the Labview VI's that successfully worked on the old computer.
    I can see the digital signal using MAX and the test panel for the NI9401, so, I know my wiring and my TTL signal is OK, but, when I try to run the attached VI, nothing happens except the error below..  How do I tell this VI to look for the signal on MOD3/CTR0 and channel 14?
    Thanks. I am sure it is a small adjustment...this worked fine a few months ago...not sure what is wrong now.
    Thanks,
    Dave
    Solved!
    Go to Solution.
    Attachments:
    continuously measure period buffered_singlechannel_forum_feb_23_2012.vi ‏20 KB

    OK, now.  Resolved the issue. The vi is fine, but, some shaky wires were identified...worked in MAX but not in the vi.  Now that the connections have been tightened up, it works for both.  Sorry for the inconvenience.
    Dave

  • Works on emulators but not on mobile devices

    Hello,
    My project works on emulators but not on mobile devices (no image and on Samsung it says "unsupported file").
    Please help, I don't know what to do. My configurations: MIDP 2.1, CLDC 1.1.
    Thanks in advance.
    Edited by: Vitali.pom on Oct 27, 2011 12:01 PM

    Edit: I succeeded to solve it accidentally. I did the following: Sign the jar in Netbeans, clean and build, the jar didn't work, I wiped out the .ks from the jar and clean and build again. Now it worked.
    Edited by: Vitali.pom on Oct 30, 2011 1:28 AM

  • Wifi works at home but not when away from home

    My Wifi works at home but not when away from home, what is wrong?  I thought with a phone plan I didn't need to have a wifi connection.

    You either need WiFi or Cellular (or both). If you have neither, you can't connect to the internet.
    Most people use WiFi at home and Cellular while away from home, or connect to public WiFi networks where there are some.

Maybe you are looking for

  • Which iMovie text font am I in?

    I like the "default" one, which doesn't seem be selected in the list. Somehow, in this multi-paged text that I'm making, the font got "switched" and now I'm in Helvetica Neue. But how do I get back to the default one? The font that seems to be highli

  • OIM - OID Connector 9.0.4 - Incremental User Recon?

    I can't see how incremental user recon is implemented in this connector. Can anyone tell me if incremental user recon is possible with this connector and if so how to configure it to perform incremental user recon? There is no documented or default s

  • FCE HD vs FCE 2

    Does anyone know the functional differences between 2 and HD? I'm wondering because there is an Apple Pro Training book out for 2, but there isn't one for HD, and I was wondering if the book for 2 would be useful to me. (I have HD) Thanks!

  • How to set CSRF token  to make a POST call via Destinations in HANA XS

    I have a requirement where I would want to make a POST call to Gateway Service,which would need a CSRF token. I fetch the CSRF token and then I use the same token during POST. Hence i set this in $.request.headers() . I know that I have to set the co

  • DVD Studio, Motion... in FCP 6 won't get installed...

    Hi all - I just recentley, now I see stupidely, deleted Motion and DVD Studio from my FCP6 suite. Now, I am trying to re-install it using the DVDs I have, but my Mac won't start the install, it just kicks it out. I tried other DVDs, like one of my mo