Automatic cache for ABAP Cache( SXI_CACHE not  happening)

Hi All
I have installed the PI 7.0, configuation went well, have developed the sample ineterfacess and these interfacess are working fine...
The problem i am facing is the ABAP runtime cache is not getting updated automatically, after say10 min of each interface run, when i check SXI_CACHE it shows error (unable to perform Cache, Integreation_directory_HMI error) when i run the delta cache it works and the interfaces works fine....
i have done the following things to check for solution.
1. Made sure all the Namespacess in the IR are consistent.
2. INTEGREATION_DIRECTORY_HIM rfc dest is working fine..
    i have checked no time out option uder special option...
3. all the servicess releated to the cache under SICF are perfect.
when i run the cache it works fine, but it is not supporting automatic refresh..
Kindly let me know the report name which will take care of running the cache in background...
Any suggestions.
regards
Nisar Khan
Edited by: Nisar Khan on Feb 12, 2008 1:37 PM

Prateek,
The user for this RFC dest HMI is PIISUSER, and this user has the role of the IS_Service_User and IS_Service_User_main this roles has the authorization of S_rfc_adm....
To make sure this is causing the problem when i get the error again i will check the authorization to run the RFC dest: HMI and let you know.....
i think since i am using the user PIISUSER i should not have this problem but i will confirm it in sometime now..
there is some  program whihc can be scheduld to do this refresh from ABAP side right?
any other inputs?

Similar Messages

  • I keep getting this message and PSCC will not open:Unable to start your subscription for Adobe Photoshop CC.  I keep trying again with no results.  I am on automatic pay system.  This should not happen.

    I keep getting this message and PSCC will not open:Unable to start your subscription for Adobe Photoshop CC.  I keep trying again with no results.  I am on automatic pay system.  This should not happen.
    I had it open a few minutes ago.  Closed it and went to reopen to no avail. How can I open and continue to work?

    Does your Cloud subscription properly show on your account page?
    If you have more than one email, are you sure you are using the correct Adobe ID?
    https://www.adobe.com/account.html for subscriptions on your Adobe page
    If yes
    Some general information for a Cloud subscription
    Cloud programs do not use serial numbers... you log in to your paid Cloud account to download & install & activate... you MAY need to log out of the Cloud and restart your computer and log back in to the Cloud for things to work
    Log out of your Cloud account... Restart your computer... Log in to your paid Cloud account
    -Sign in help http://helpx.adobe.com/x-productkb/policy-pricing/account-password-sign-faq.html
    -http://helpx.adobe.com/creative-cloud/kb/sign-in-out-creative-cloud-desktop-app.html
    -http://helpx.adobe.com/x-productkb/policy-pricing/activation-network-issues.html
    -http://helpx.adobe.com/creative-suite/kb/trial--1-launch.html
    -ID help https://helpx.adobe.com/contact.html?step=ZNA_id-signing_stillNeedHelp
    If no
    This is an open forum, not Adobe support... you need Adobe staff to help
    Adobe contact information - http://helpx.adobe.com/contact.html
    -Select your product and what you need help with
    -Click on the blue box "Still need help? Contact us"

  • N4S: Web Dynpro for ABAP layout editor not working

    Have problem in Layout editor in Web Dynpro for ABAP
    I have installed NW04S Testdrive on 64bit Linux and able to login.
    SE80 is working alright.
    Next I create a Web Dynpro Comp. / Intf. and create a component.
    I double click on the View name "V_Default" . The Layout editor opens on the right side. Change into Edit Mode.
    The "View Elements" panel on the left side of layout editor is missing. This is where we select the various elements like "Textview" etc.
    Even the right click on the "ROOTUIELEMENTCONTAINER" to insert elements using context menu does not work.
    In summary I am not able to add any element in WD4A Layout screen.
    Is there any special plugin required to be installed?
    How to solve this problem?

    you cannot develope Webdynpro for ABAP using ECC5
    This is available with netweaver 2004s (WAS7.0) for which ramp up is going on right now and the general availability is expected sometime around 1st quarter for 2006.
    Regards
    Raja

  • Creation of PGI using BDC for tc VL02N is not happening..

    Hi All,
    i need to do Post Goods Issue (PGI) thro' BDC and after that i need to update the flag in Ztable.
    its giving Success message and updating the database also.
    but its not issuing the PGI.and further i want to create billing doc.So its compulsory to me to post PGI.
    if i look into the BDCMSGCOLL structure its giving "NO BATCH INPUT DATA FOR SCREEN"? why this is happening?
    please let me know immediately....
    REFRESH: tt_bdcmsgcoll .
      CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
        EXPORTING
          input  = wa_created-document_numb
        IMPORTING
          output = wa_created-document_numb.
      REFRESH tt_bdcdata.
      PERFORM bdc_dynpro      USING text-001 text-002.
      PERFORM bdc_field       USING text-008
                                   text-014.
      PERFORM bdc_field       USING text-009
                                    text-011.
      PERFORM bdc_field       USING text-014
                                    wa_created-document_numb.
      PERFORM bdc_dynpro      USING text-001 text-003.
      PERFORM bdc_field       USING text-009
                                    text-036.
      PERFORM bdc_field       USING text-025
                                    sy-datum.
      PERFORM bdc_field       USING text-008
                                    text-035.
      PERFORM bdc_field       USING text-037
                                    sy-datum.
      PERFORM bdc_field       USING text-038
                                    text-029.
      PERFORM bdc_field       USING text-016
                                    c_x.
      CALL TRANSACTION c_t_del USING tt_bdcdata
                                    MODE c_m
                                    UPDATE c_u
                                    MESSAGES INTO tt_bdcmsgcoll .
      SORT tt_bdcmsgcoll BY msgtyp.
      READ TABLE tt_bdcmsgcoll INTO wa_bdcmsgcoll WITH KEY msgtyp = c_e.
      IF sy-subrc EQ 0.
        LOOP AT tt_bdcmsgcoll INTO wa_bdcmsgcoll WHERE msgtyp = c_e.
          CALL FUNCTION 'FORMAT_MESSAGE'
            EXPORTING
              id        = wa_bdcmsgcoll-msgid
              lang      = text-010
              no        = wa_bdcmsgcoll-msgnr
              v1        = wa_bdcmsgcoll-msgv1
              v2        = wa_bdcmsgcoll-msgv2
              v3        = wa_bdcmsgcoll-msgv3
              v4        = wa_bdcmsgcoll-msgv4
            IMPORTING
              msg       = v_msg
            EXCEPTIONS
              not_found = 1
              OTHERS    = 2.
          IF sy-subrc <> 0.
          ENDIF.
          WRITE :/ v_msg.
        ENDLOOP.
      ELSE.
        MOVE : c_x TO wa_worklist-pgi_flag.
        READ TABLE tt_epit INTO wa_epit WITH KEY epi_id = wa_worklist-epi_id epi_sr = wa_worklist-epi_sr.
        IF sy-subrc EQ  0.
          MODIFY tt_epit FROM wa_worklist TRANSPORTING pgi_flag WHERE epi_id = wa_worklist-epi_id AND epi_sr = wa_worklist-epi_sr.
        ELSE.
          APPEND wa_worklist TO tt_epit.
        ENDIF.
         wa_epit-pgi_flag = c_x.
         MODIFY   tt_epit FROM wa_epit TRANSPORTING pgi_flag WHERE epi_id = wa_worklist-epi_id AND del_no = wa_created-document_numb .
         UPDATE zsd_dt_epit SET pgi_flag = 'X' WHERE epi_id = wa_worklist-epi_id AND del_no = wa_created-document_numb .
         IF  sy-subrc EQ 0.
         ENDIF.
      ENDIF.

    HI,
    Please refer this
    To perform Post goods issue
        PERFORM OPEN_GROUP.
        PERFORM BDC_DYNPRO      USING 'SAPMV50A' '4004'.
        PERFORM BDC_FIELD       USING 'BDC_CURSOR'
                                      'LIKP-VBELN'.
        PERFORM BDC_FIELD       USING 'BDC_OKCODE'
                                      '=WABU_T'.
        PERFORM BDC_FIELD       USING 'LIKP-VBELN' DELIVERY.
                                 '84000064'.
        PERFORM BDC_TRANSACTION USING 'VL02N'.
        PERFORM CLOSE_GROUP.
        CLEAR : DELIVERY,
                T_BSITEM,
                T_BSICTL.
      ENDIF.
    ENDFORM.                    " DELIVERY

  • Webdynpro for ABAP iView personalization not sticking?

    We are currently on EP7 and are having a very odd issue with ABAP Webdynpro iView personalization.
    For our Java Webdynpro iViews, we have used iView personalization quite a lot to change field labels, add text, change button text, etcc. all via portal content administration (ctrl+rightclick to make changes from iView preview). These changes would show as custom iView parameters settings on the Java Webdynpro iViews. Then we could put these iViews into our own portal packages and move them to other portals (QA, Production, etc).
    However, this is not working quite right with our ABAP Webdynpro iViews. We personalized an iView on our DEV portal. The personalization changes showed just fine for all users (ie. changes to input field labels). However, no new parameter settings show for the iView for the personalization. Also, after packaging, exporting and then importing the iView into the other portals (like moving from DEV to QA), the personalization is gone. We had to manually recreate this on the QA system. However, we do NOT want to do this on the production portal of course nor do we want this to be the method/solution going forward.
    So has anyone seen this? Is this some issue/difference between the ABAP and Java webdynpro iView templates?

    If it is WebDynPro ABAP iview, if you do the personalization, then your personalization is persisted in ABAP stack. You need to transport it in ABAP i.e R/3 development system to R/3 Quality system. Transporting only iview is not enough.
    Note : If you do the personalization for the ABAP iview, it will not be saved in the portal, it will be stored in the ABAP stack.
    Thanks
    Manoj K

  • Workflow to UWL to ABAP WebDynpro ( Binding not happening)

    Hi All,
    I have created Workflow which need to be executed from UWL.
    The workitem in UWL will call a ABAP Web Dynpro application for approval Process.
    I have registered the my Task in SWFVISU and Maintained the necessary settings (Even Re-registered the new task in UWL ).
    When I click the workitem in UWL it successfully calls the ABAP webDynpro application.
    But the Parameter WORKITEM id is not transfered from workflow to Web Dynpro Application.
    I have created a parameter WORKITEMID in the Workflow and populating it at runtime. But the same is not being passed to WebDynpro Import Parameter.
    I see that WORKITEMID is initial at runtime while debugging in WebDynpro Application.
    Can you please help me to bind the WORKITEMID from Workflow to WeBsynpro or from UWL to WebDynpro??
    Thanks
    Praveen

    Hi,
    You have bind the work item id to the task?
    You have added the work item id parameter in SWFVISU?
    Can you show us the UWL XML code for your task?
    Regards,
    Karri

  • What do I do when an Automatic Download of a show does not happen as scheduled?

    I have a "season pass" to a show that airs on Wednesday nights. I received an email today saying I had a new episode ready to download. I open my Itunes and the episode will not download. Just looking for someone to point me in the right direction.
    Thanks

    Hi Chad489,
    If you are having an issue with downloads on your Season Pass purchases, you may find the following article useful:
    iTunes Store: Download options when purchasing TV seasons, season passes, movie bundles, music box sets, or individual movies or TV episodes
    http://support.apple.com/kb/HT5731
    Cheers,
    - Brenden

  • Task License Validation Error Message/ Automatic Scheduling for Disk Defrag is not working.

    I saw where I could possibly ask you for answers to the problems that I am having with Windows 8.1 pro. First of all I noticed that my disk defragmentation task which was set on daily wasn't operating.  It indicated that the last time it ran all disks
    for disk defrag was back on 4/20 and on the this morning of 4/26 there was the date 4/20 for all the disks.  I went into the Administrator Tools section of Control Panel and found Schedule Tasks.  When I opened Schedule Tasks I got the
    error message that indicated a Task License Validation Error. It went on to read:The task XML contains a value which is incorrectly formatted or out of range.  This is my question...are the two related...the inoperative automatic maintenance of disk defrag
    and this error message from task scheduler?  And how do I address each issue to solution.   Thank you very much. 
    [email protected]

    The MSDN Windows and Windows Phone app development forums are for developers to discuss writing their own Windows and Windows Phone apps.
    For help using Windows please post on the Windows forums on
    http://answers.microsoft.com .

  • No automatic updation for IT0008;Relevant wagetype not found

    Dear Friends,
    When we are trying to update IT0583 with any conveyance type, system is throwing error.
    I  have checked the following tables (V_T7INC*, V_T7INA9) including the one mentioned in the message (V_T7INC9).
    However, we did not find any discrepancy. Please let us know the issue.
    Regards,
    Niladri

    Hi Niladri,
    Kindly check following following:
    1. In table "V_T7INA9" you have to include that respective wage type in respective allowance groupings.
    2. Need to check table "V_T510
    Please check these entries and let me know.
    Regards,
    Venkat Polisetty.

  • [OBIEE11g] Agents for seeding cache

    Hello,
    I would like to set an agent for seeding cache for several users.
    So I set a request and an agent for this.
    In the agent configuration, Destinations tab, I uncheck everything and I check only "Oracle BI Server Cache (For seeding cache)".
    But I get errors.
    1) if I save the agent and then open it for edit, again, I can see that the "Devices" option is selected, even though I made sure it was not;
    2) the agent runs with errors, because it cannot connect to the SMTP server.
    ([nQSError: 75027] Failed to open connection to SMTP Server)
    This sounds strange to me, because:
    1) I did not set it to send any email, just to seed cache only;
    2) I have properly configured the SMTP server, anyway, and it should work; at least it does work outside OBIEE.
    I have tried many different times and configurations, to make sure I do not make any errors when configuring the agent. But it does not work as expected.
    Do you have any advice?

    Anybody resolve this issue? We just upgraded to 11.1.1.6.6 and I have to have it send me emails or else it won't seed the cache. I don't like getting 84 emails a day!

  • Automatic packing not happening

    Hi All,
    Im doing outbound delivery auto packing for std sales as well as STO cycles
    auto packing happening for std cycle but not happening fot STO i have done as fallows..
    maintained pop1,popf1 and all delivery type activated for auto pack but not happening for STO
    pls provide all steps for auto pack and what may be the reason for my issue.
    Regards,
    MMReddy

    Apple TV is also not always updating watched episodes.  Is this a hardware problem or software?

  • Turn off the automatic update for flash player 10

    Corporation wants to control update on users machines.  not all users administrators on their machines.  How do I turn off automatic prompt for update.  What will happen if I delete Adobe Updater?

    Hi, This can be Unchecked:
    http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager05.htm l
    I'm not sure on your other question. I would find out from the IT Dept. on that.
    eidnolb

  • Portal Password Reset Application In webdynpro for ABAP

    Hello Friends,
    I am new to WDA . I want to create a Password Reset application in WDA like this
    [http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/f0c09b9d-52e0-2d10-3981-86bfa8e19dc3?quicklink=index&overridelayout=true]
    Can someone pls give the solution , how to start??
    Thanks in advance
    Himani

    I am afraid that this is not going to be possible for you. From WebDynpro for ABAP, you do not have portal API's to do that.
    May be an idea ,If you have SSO in place you could try to call some FM's in r3 side to change the password in r3 system and this would synchronize the UME in portal.

  • Consumption not happening

    Hello friends,
    In a manufacturing company there are departments like lathe, milling. They use common material in the BOM's. The problem is consumption ( backflush ) is happening for the BOM components for Lathe department and not happening for Milling department.
    This is not happening specifically from Jan1'08 ( Start of financial year ). The consumption was happening earlier. What can be the possible reasons?
    Please guide???
    Regards,
    Narendra Bora

    Hello friends,
    The problem is still unresolved. Let me summarize once again.
    1. There are two mfg dept. The BOM has some common components. The problem is the consumption ( auto backflush ) is happening in one dept and not happening in another dept.
    2. This problem is happening from Jan 1st. Earlier to that the consumption was happening.
    3. The reservation is getting created for the orders.
    4. The goods movement for the finished goods is happening where as the same for consumption is not happening.
    5. The error of goods movement not happening is also not going in COGI.
    Please some one guide me what can be the posssible reasons.
    Regards,
    Narendra Bora

  • 101 movement not happening when production order got backflushed.

    HI SAP Gurus,
    For SKU 101 movement not happening when production order got backflushed, but 261 movement successfully happened. Please let us know any settings need to check?
    Thanks and Regards,
    SHARAN.

    Hi Sharan,
    A 101 movement for the production order takes place when
    - You receive the production order via MB31
    or
    - Confirm the last operation which has PP03 control key
    A backflush is done only for the components called by the production order & not for the header material.
    Hope the above answers your query.
    Regards,
    Vivek

Maybe you are looking for

  • Thinking of using Time Machine.  Can you purge the external drive?

    I currently have a 500gb external drive that I use with the software that came with it. It has a feature that I run manually from time to time that purges any files not on my computer. This is helpful for those times when I have many old project file

  • Movement type linkage with Register updation

    Hi all, I would like to know which is the customisation that prompts the system to update the movement types to appropriate registers especially 601. Is it in: 'Specify Which Movement Types Involve Excise Invoices'  under Tax on Goods Movement. But i

  • Upgrade from 11.2.0.3 to 12.1.0.2 -- DST

    Dear All We are in process of manual database upgrade from 11.2.0.3 to 12.1.0.2 version, Having RDBMS DST version 14, Do we need to bring RDBMS DST version to 18 before upgrade or we can skip this and start with upgrade. With Regards T.K

  • Runtime parsing of policy.file - from source

    Hi All Decided to post here sinceI did not find any similar topic on forums and googling did not solve this. Is there any way to parse polic.file like input at runtime? PolicyTool. PolicyFile are classes that do that but: 1. all methods are private s

  • Windows File Migration (Send-SmigServerData / Receive-SmigServerData)

    Hi There, I have problems to migrate a directory (including subfolders and files) from a Windows Server 2003 Service Pack 2 to a Windows Server 2008R2 Service Pack 1. The error message is: Send-SmigServerData : Starting the connected transport failed