0FISCPER Value Help is not working on Multi Provider

Hi Friends,
I Have created a query on Multi Provider (based two ODS) and when i click on the value help for 0FISCPER while executing the report, it just hangs up and keep running, but never givel any values wvwn after 5 hours (I did not observed for moreathan 5hrs, propably it might go for dump).
The same Query with same selection varuiable on 0FISCPER gives the value help in just 30 sec in both Dev and QA systems.
When i try to use the same value help on bothe the ODS, it was working fine in all Dev, QA and Prod environments. But same on Multi Provide is working only in Dev and QA, but not in Prod.
One diff i sea, is larg amount of data in Prod, in bothe the ODS invloved in this MP.
Can you guys pls help...how to resolve this. I even try with different possible settings for  MP  through RSDIPROP transaction
Thanks,
Venkat

Hi Akhan,
It is the same case even...if i run it from RSRT. It just hangup for past 80mts.
I got some more information,
When i try to do the same from portal...i have got below Error messages in Dump.
Caused by: com.sap.ip.bi.base.exception.BIBaseRuntimeException: Jco exception thrown while executing function "BICS_PROV_GET_MEMBERS" against system "SAP_BW"
Caused by: com.sap.mw.jco.JCO$Exception: (102) RFC_ERROR_COMMUNICATION: connection closed without message (CM_NO_DATA_RECEIVED)
Pls do share...if you got any more suggestions.
Thanks,
Venkat

Similar Messages

  • Value help does not work for ONE person only !

    Hi,
    we have a strange problem. In the Web IC, we are using a standard value help for the country field for a Business Partner. This works fine for everyone (ie, it picks up the country and slots it into the field) except one person. For her, it never returns any value into the country field. We are guessing that it's not Web IC related but is something in her browser settings etc...but haven't been able to pin it down. Can anyone offer any advice on this ?
    thanks for looking.
    Malcolm.

    Hello Malcolm,
    If this error occurs for one user only it's definitely related to the clients PC.
    Did you already delete all temporary files and the cookies on that PC? Usually this does the trick!
    If this does not solve the problem, try to let that particular user login on another PC where the problem does not occur. (If the error does occur on another PC too it's probably profile/authorization related)
    Hope this helps!
    Regards,
    Joost

  • WBS element field in transaction CS71-F4 help is not working in ECC 6.0

    Hii
    In SAP, while working in SAP 4.7, tcode cs71, WBS element is coming via F4 Help. But after upgradation to ECC 6.0 EHP 5, this F4 help is not working. I can enter value manually.but F4 help is not working.
    Please Help.

    Hi,
    You can do it manually too
    1.  Choose function group 'CSDI' via Transaction SE80.
    2.  Choose screen '0260'in the 'Screens' area and switch to change mode
    3.  Choose the 'Element list' tab index.
    4.  In this area, choose the 'Reference' tab index and enter the value
        'PRP' in the 'Search help' column in the line for field
        'RC29N-PSPNR'.
    5.  Save your change and regenerate the screen.
    6.  The correct input help for the WBS element is now available in the
        initial screen of Transaction CS71/72/73.
    I hope F4 helps works for "Existing WBS BOM's" in CS71 after this
    Refer to Note : 714824 as well , it has reverted back the changes done by note : 422265
    Regards
    Gaurav

  • With input disabled field search help is not working.

    Hi Web dynpro abap Gurus
    Please help me on below requirement.
    If i make a input field disable then the attach search help is not working. Is there is any way by which
    I can make input field disabled and search help will also work for this field.
    I really need help on this, Please help me.
    Many thanks in advance.
    Sandeep Sharma
    09971995045

    Hi
    I dont think that a field can be disabled and allows to choose data using f4 simultaneously. you can enable the field and allow the user to select whatever he/she wants.
    Then in any action like on press of save or submit button which the user will trigger after entering the values, get the value entered by the user in that perticular field and fire a query on the table/view, which you have used as selection method of your search help, it help is coming from data element then look for check table in domain. if sy-subrc comes 0 than go ahead else give error that value selected is modified.
    Thanks
    Vishal

  • Bookmarks not working in multi-document PDF application

    Why are bookmarks not working in multi-document PDF application when uploaded to the web? We created a multi-document PDF application. All bookmarks and links work on our systems. All work on the customer's system. They do not work when uploaded to the customers website. Their IT department says its an issue of relative vs. absolute addressing. We've created applications like this for years without running into this issue. Can't find anything about it in Acrobat Help. Can anyone help or lead me to help? Thx much, Sandy

    Have you tried opening the file in your browser to see if the bookmarks are working?  To open the file in your browser you need to do this:
    1) Launch your favorite browser;
    2) File >> Open >> Select your pdf file
    See this picture to see what I am talking about.  You might need to click on it to magnify it:
    Good luck.

  • Raise form_trigger_failure is not working in multi-record block?

    raise form_trigger_failure is not working in multi-record block.
    Why?
    I am using Form 9i.
    Thanks and regards,
    Vikas

    Here is my code. Workorder_master is single block, workorder_dtls is multi-block.
    This code is written in KEY-NEXT-ITEM of labour_code in workorder_dtls.
    If suspended labour, invalid labour etc. is selected then it should not leave labour_code, but does not happen as I like. What will be the solution?
    DECLARE
    v_count                         NUMBER;
    v_status                    CHAR(1);
    v_workorder_no     VARCHAR2(15);
    v_pass_no                    VARCHAR2(15);
    v_rec_pos                    NUMBER;
    BEGIN
         IF :workorder_dtls.labour_code IS NOT NULL THEN
              v_rec_pos := :SYSTEM.CURSOR_RECORD;
              SELECT COUNT(*) INTO v_count FROM labour_master
                                  WHERE labour_code = :workorder_dtls.labour_code;
              IF v_count > 0 THEN --if labour exist.
                   SELECT status INTO v_status FROM labour_master
                                  WHERE labour_code = :workorder_dtls.labour_code;
                   IF v_status = 'I' THEN--'I' stands for busy.
                        --check if labour is for extension i.e. if labour is working for same workorder
                        SELECT COUNT(*) INTO v_count FROM workorder_dtls
                                            WHERE labour_code = :workorder_dtls.labour_code
                                            AND workorder_no = :workorder_dtls.workorder_no
                                            AND to_dt <= SYSDATE;
                        IF v_count > 0 THEN
                             --if working in same workorder then for extension, then give from_dt, to_dt
                             SELECT MAX(TO_DT)+1 INTO :workorder_dtls.from_dt FROM workorder_dtls
                                                 WHERE labour_code = :workorder_dtls.labour_code
                                                 AND workorder_no = :workorder_dtls.workorder_no
                                                 AND to_dt <= SYSDATE;
                        ELSE
                             --if not working in same workorder then give message.
                             SELECT workorder_no, pass_no INTO v_workorder_no, v_pass_no FROM workorder_dtls
                                                 WHERE labour_code = :workorder_dtls.labour_code
                                                 AND to_dt <= SYSDATE;
                             MESSAGE('This labour is already working through workorder no. '||v_workorder_no||' using pass '||v_pass_no);
                             MESSAGE('This labour is already working through workorder no. '||v_workorder_no||' using pass '||v_pass_no);
                             RAISE FORM_TRIGGER_FAILURE;
                        END IF;
                   ELSIF v_status = 'A' THEN--'A' stands for available.
                        :workorder_dtls.from_dt := SYSDATE;
                   ELSIF v_status = 'H' THEN--'H' stands for help-up.
                             SELECT workorder_no, pass_no INTO v_workorder_no, v_pass_no FROM workorder_dtls
                                                 WHERE labour_code = :workorder_dtls.labour_code
                                                 AND to_dt <= SYSDATE;
                        MESSAGE('This labour has been held-up for not submitting gatepass.');
                        MESSAGE('This labour has been held-up for not submitting gatepass.');
                        RAISE FORM_TRIGGER_FAILURE;
                   ELSIF v_status = 'S' THEN--'S' stands for suspend.
                             SELECT workorder_no, pass_no INTO v_workorder_no, v_pass_no FROM workorder_dtls
                                                 WHERE labour_code = :workorder_dtls.labour_code
                                                 AND to_dt <= SYSDATE;
                        MESSAGE('This labour has been suspended through workorder no. '||v_workorder_no||' using pass '||v_pass_no);
                        MESSAGE('This labour has been suspended through workorder no. '||v_workorder_no||' using pass '||v_pass_no);
                        RAISE FORM_TRIGGER_FAILURE;
                   END IF;
                   IF v_status IN ('A', 'I') THEN
                        :BLK_TEMP_WORKORDER.LABOUR_CODE := :WORKORDER_DTLS.LABOUR_CODE;     
                        GO_BLOCK('WORKORDER_DTLS_IMG');
                        EXECUTE_QUERY(NO_VALIDATE);      
                        GO_RECORD(v_rec_pos);
                        GO_ITEM('WORKORDER_DTLS.FROM_DT');
                        IF :workorder_dtls.from_dt + 180 <= :workorder_master.to_dt THEN
                             :workorder_dtls.to_dt := :workorder_dtls.from_dt + 180;
                        ELSE
                             :workorder_dtls.to_dt := :workorder_master.to_dt;
                        END IF;
                   END IF;
              ELSE --if labour does not exist.
                   MESSAGE('Invalid labour code');
                   RAISE FORM_TRIGGER_FAILURE;
              END IF;
         END IF;
    END;

  • PSE 10  and Adobe CS6: When running silent install help is not working afterwards

    Hello,
    I'm not sure if this is the correct forum. If not: Please help me find the correct one.
    I have a big issue with Adobe CS6 (and former versions like Photoshop Elements 10): When installing it from DVD running GUI everything is working fine afterwards. If I install e.g. Photoshop Elements 10 using "Silent Installation" help is not working afterwards. It states that it cannot locate the URL. I have not installed AIR and also do not plan to install it.
    I have 'played' a little around with Common Files\Adobe\helpcfg and help directory. Now at least I do not get an error message but still it's not the online help which opens in the browser but the web page that is defined as 'home'.
    The same I see now in Adobe CS6. I have e.g. packaged After Effects and Illustrator and when deploying it I'm not able to open help as well and I fear that this is the same issue.
    Has anyone deeper knowledge about how "helpcfg" is working? Any example files? Any other help appreciated as well.
    Kind regards
    János

    @hannilator Have you checked the exceptions folder contents for instructions on how to push to logged off computers? Here's what I get when I package CS6 (DesignWebPrem) and excude AIR/CHC:
    After you have deployed the package, separately install the products in the exception folder.
    IMPORTANT: Before you install the products in the exception folder, refer to the following Adobe Knowledgebase article for information on installing these products and configuring the settings correctly:
    http://www.adobe.com/go/aamee_exceptions
    NOTE: The installation commands provided below will work when the user is logged in to the client machine where the package is being deployed. For the scenario where the user is not logged in, prefix the following string to the command:
    sudo launchctl bsexec `ps auwwx |grep [l]oginwindow | awk '{ print $2 }'`
    As an example, here is the command to install "Adobe AIR" when the user is not logged in to the client machine (assuming Adobe AIR is part of the package):
    sudo launchctl bsexec `ps auwwx |grep [l]oginwindow | awk '{ print $2 }'` Adobe\ AIR\ Installer.app/Contents/MacOS/Adobe\ AIR\ Installer -silent
    ###################################### Command to install Adobe Dreamweaver Widget Browser ######################################
    Adobe AIR Installer.app/Contents/MacOS/Adobe AIR Installer -silent -eulaAccepted -programMenu WidgetBrowser.air
    ###################################### Command to install AdobeHelp ######################################
    InstallAdobeHelp appVersion=4.0.244 appId=chc pubId=4875E02D9FB21EE389F73B8D1702B320485DF8CE.1 installerArg1=-silent installerArg2=-eulaAccepted installerArg3=AdobeHelp.air

  • Discoverer Reports does not work in Multi-org Environment after R12 Upgrade

    Discoverer Reports does not work in Multi-org Environment after R12 Upgrade. Created a simple report using the below query:
    SELECT po_header_id, segment1, type_lookup_code
    FROM po_headers
    WHERE segment1 = '5000002'
    Query works perfectly fine; when i set the ORG_CONTEXT in the database using the command:
    EXEC mo_global.set_policy_context('S',129)
    But the report doesn't fetch any data when ran from an Org based responsibility. We've ensured that the MO: Operting Unit is set accurately and general Oracle reports (PLSQL Program OR XML Publisher) are working perfectly fine.
    ===========
    I followed the steps provided in Metalink Note: 732826.1 - It works for some responsibilities where the MO: Security Profile is not set; but fails for those responsibilities where the MO: Security Profile is set.
    I am looking for specific solution that works irrespective of either the MO: Operating Unit profile is set of not.
    Please suggest. Appreciate your response.
    Thanks,
    Kesava Chunduri

    Hi Hussein,
    Thanks for the quick response.
    Yes, I've gone thru both the notes specified below:
    Discoverer Workbooks Based On Organization Enabled Views Are Not Populated [ID 1293438.1]
    - Tried this option; but this option is messing up a couple of Oracle Standard Functionalities.
    - For ex: If i set this profile option; we are not able to create any receipts using Custom Responsibilities.
    I am able to create the receipt, when i remove this profile option.
    No Data Shows for Reports in Discoverer 10g with Applications Release 12 [ID 1054380.1]
    - I see that the products i am running these reports from AR/GL - already exists in these tables.
    Anything other options??
    Thanks,
    Kesava

  • The 'Content, index, search' section of my help is not working in Mozilla

    Dear All,
    The 'Content, index, search' section of my help is not working in Mozilla.
    I am using robo8 and mozilla 8. Any idea? please help...
    Regards,
    Jobin.

    Dear William,
    It is a webhelp
    It is working in all other browsers except Mozilla.
    It is a merged help...
    waiting for your reply..:)
    Regards,
    Jobin.

  • F4 help is not working in IAC Iview

    Hi,
    There is IAC iview for transaction PA61
    F4 help is not working for the iview
    it workes in backend SAP PA61
    kindly give any hints what can we check
    thanks in advance
    b

    Hi,
    This might be due to the JRE version of the browser. We faced such issue and the update of JRE version in the browser helps to get the pop-up of F4 help. Check in the internet broswser Tools -> Internet Option -> Advanced. Check whether the JRE applet is checked or not. it has to be checked. if it is checked and even if you dont get the F4 help, upgrade the JRE version.
    Thanks,
    Mahendran B.

  • Help is not working in Hyperion System 9 WebAnalysis

    two months back we have installed Hyperion System 9.2.0.3 BI+ server and is working fine. however recently one user complained that WebAnalysis help is not working.<BR><BR>we are getting "page cannot be displayed" when clicking on Help --> contents and index from WebAnalysis -- <a target=_blank class=ftalternatingbarlinklarge href="http://hostname:19000/WenAnalysis">http://hostname:19000/WenAnalysis</a><BR><BR>this is the direct link to the webanalysis help <BR><a target=_blank class=ftalternatingbarlinklarge href="http://hostname:19000/workspace/docs/en/wa_user/frameset.htm?/workspace/docs/en/wa_user/launch.html">http://hostname:19000/workspac...n/wa_user/launch.html</a><BR><BR><BR>Do you know how to fix this?

    Hi Friends,
    I am working on Sandbox Server, in that Help (F1) is not working. When i try to click F1 system is opening the popup and showing the following message-
    The page cannot be displayed
    Plz help
    Regards
    Goutham

  • F1 help does not work in transaction SE80

    Hi Experts!
    A strange error occurred in our ECC 6.0 SR3 system (Windows 2003 SE 64 bit based, MaxDB 7.6.03.009). F1 help does not work in transaction SE80. Either nothing is shown when a keyword as SELECT is marked and F1 key is pressed, or a strange popup appears with title u201CABAP Keyword Documentationu201D and root u201CHit List of Index Searchu201D - [screenshot|http://i43.tinypic.com/aox7d.jpg]. No matter what I choose in the tree it always closes, no help is displayed and SAP GUI returns in the main screen in transaction SE80.
    I found this thread [Re: SAP F1 Help and SE80 issue|Re: SAP F1 Help and SE80 issue] but it did not help me. This is my system information:
    SAP PC VERSION INFORMATION: saplogon.exe
    MAIN MODULE INFORMATION:
       saplogon.exe
       SAP Logon за Windows
       Final Release 710
       7100.3.12.1042
       1046700
    SYSTEM INFORMATION:
       Operating system: Microsoft Windows XP 5.1 (2600) Service Pack 3
       Internet Explorer v. 7.0
    Application help works perfect - I checked the configuration in transaction SR13 too.
    Any ideas will be appreciated!
    Thanks!

    Hi Presu,
    As it is seen from my previous post SAP GUI version is 7.10 SP 12. I downloaded the last SP 13 and installed it. Now SAP GUI information looks like this:
    SAP PC VERSION INFORMATION: saplogon.exe
    MAIN MODULE INFORMATION:
       saplogon.exe
       SAP Logon за Windows
       Final Release 710
       7100.3.13.1045
       1063164
    The problem is not resolved.
    This happens from different workstations with different versions and sub-versions of SAP GUI, so the problem is not caused from the GUI I think. It happens using different logon users and in all SAP system cliens.
    Any other suggestions?
    Best regards,
    Pit

  • Photoshop CS4 Extended ...Program's 'Help' does not work

    I have PS CS4 Extended ... the Help command does not work ... I get a message saying "there was an error launching th eAdobe Help application. You may need to reinstall the application and Help component.
    IK have un-installed the program completely and then reinstalled it. Still, the Help does not work, although the rest of the program seems to perform ok.
    I'm rather at my wits end.
    Has anyone any suggestions.
    Thansk.

    This won't fix your problem, but it might help as a workaround...
    This is the page that normally opens when you click Help - Photoshop Help... in Photoshop CS4:
    http://help.adobe.com/en_US/Photoshop/11.0/index.html
    -Noel

  • Help button not working on firefox.How to fix?

    help button not working.

    Hello,
    Lets give Firefox some Tuneup.
    The Refresh feature (called "Reset" in older Firefox versions) can fix many issues by restoring Firefox to its factory default state while saving your bookmarks, history, passwords, cookies, and other essential information.
    '''''Note:''' When you use this feature, you will lose any extensions, toolbar customizations, and some preferences.'' See the [[Refresh Firefox - reset add-ons and settings]] article for more information.
    To Refresh Firefox:
    # Open the Troubleshooting Information page using one of these methods:
    #*Click the menu button [[Image:New Fx Menu]], click help [[Image:Help-29]] and select ''Troubleshooting Information''. A new tab containing your troubleshooting information should open.
    #*If you're unable to access the Help menu, type '''about:support''' in your address bar to bring up the Troubleshooting Information page.
    #At the top right corner of the page, you should see a button that says "Refresh Firefox" ("Reset Firefox" in older Firefox versions). Click on it.
    #Firefox will close. After the refresh process is completed, Firefox will show a window with the information that is imported.
    #Click Finish and Firefox will reopen.
    Did this fix the problem? Please report back to us!
    Thank you.

  • Customized Help does not work anymore after patch update.

    Hi,
    Our ECC system have a customized help (SAP Main Menu -> Help -> Company Help).  It stoped working after the kernel upgrade.  What do you think made it stop working.
    I tried to update also the sapgui patch to 21 but still the help would not work.
    thanks
    kbas

    .

Maybe you are looking for

  • Is there a way to use the Passbook on Lock Screen with Touch ID?

    I love having my boarding passes available in Passbook and being able to access from the lock screen.  I also like the Touch ID ability to unlock the phone without typing in the unlock code.   Now to get the two together.   When my passbook item show

  • IBooks Author in-line tables are being cut off

    iBooks Author in-line tables are being cut off at the bottom of a column, instead of flowing to the next column, or moving the entire table.  The entire point of marking a table as in-line, is to get it to move as text is inteserted before it.  But w

  • Can't drag and drop in Finder with trackpad or magic mouse

    I can't seem to drag and drop anthing in the Finder window since updating to Mavericks (10.9). I've tried changing all magic mouse and trackpad settings.  I can drag and drop windows and apps on the dock.  No sure what the issue is....any help is app

  • Camera raw version 7.4

    Is Adobe Camera Raw version 7.4 or higher available for elements 10 or 11?

  • Question related to Hyperion deployment

    Hi All, I am installing Hyperion 11.1.2. Is there any difference between auto deployment and manual deployment of Hyperion Web services on Weblogic. Is there any advantage, if we do manual deployment over auto deployment. Thanks, Prashanth