Change several Dataproviders with Command URL in WebTemplate

Dear Community,
Could someone help me with this problem?
I have an Webtemplate containing 5 Table-Items with several views of one Query - now I want to switch the whole 5 Qeries to other ones with one click.
I tried to realize this with command URL´s (like mentioned in SAP-Docu and some posts) but haven´t been successful. This only works for one dataprovider, furthermore the Filters won´t be applied in the switched template (We are on BW 3.5).
Any suggestions how to solve this issue in a smart way?
kind regards.
Jürgen

Dear BW-Gurus,
now i will give you some coding - hoping somebody has a solution (we are on BW 3.5).
In the webtemplate there are 4 table-items with 4 several querie-views. With a click on button "Standard" the views should change to the other ones (works fine) and the filter values should stay (doesn´t work).
<FORM  method=post name=Form1 action=<SAP_BW_URL>>change layout:
   <input  type="hidden" name="CMD_1" value="DATA_PROVIDER=DP_1&CMD=Reset_DATA_PROVIDER&DATA_PROVIDER_ID=ZQV_VC1&RRI=X">
   <input  type="hidden" name="CMD_2" value="DATA_PROVIDER=DP_2&CMD=RESET_DATA_PROVIDER&DATA_PROVIDER_ID=ZQV_VC2&RRI=X">
   <input  type="hidden" name="CMD_3" value="DATA_PROVIDER=DP_3&CMD=RESET_DATA_PROVIDER&DATA_PROVIDER_ID=ZQV_VC3&RRI=X">
   <input  type="hidden" name="CMD_4" value="DATA_PROVIDER=DP_4&CMD=RESET_DATA_PROVIDER&DATA_PROVIDER_ID=ZQV_VC4&RRI=X">
   <input type="submit" class=SAPBEXBtnStd style="font-size:11px; height:100%" value="Standard">
</FORM>
the code works fine for changing the views, but the the nav-state after click is initial, even though i used the parameter "RRI=X" like mentioned here: [Forum Thread|; or here help.sap.com
what´s wrong with my coding? Do you prefer an other way to solve this issue??
thanks for every reply and hint
regards
Jürgen

Similar Messages

  • Modify several characterics with BAPI_OBJCL_CHANGE

    Hi,
    I have to change several characteric with BAPI_OBJCL_CHANGE, that change values in AUSP.
    I only change one of characterics but not with several positions.
        CALL FUNCTION 'BAPI_OBJCL_CHANGE'
          EXPORTING
            OBJECTKEY          = l_object     " For Example '000000000000064002'
            OBJECTTABLE      = C_TABLE  " For Example 'EQUI'
            CLASSNUM           = C_CLASS  " For Example 'EQUIPOS'
            CLASSTYPE          = C_TYPE    " For Example '002'
            STATUS                  = '1'
            STANDARDCLASS          = 'X'
            KEYDATE                = SY-DATUM
          TABLES
            ALLOCVALUESNUMNEW  = TI_NUM
            ALLOCVALUESCHARNEW = TI_CHAR
            ALLOCVALUESCURRNEW = TI_CURR
            RETURN             = RETURN.
    I look that in table TCLA i dont have field OBTAB = ' AUSP' as value. Any know how entries values in this table?

    TCLA will not have an entry of "AUSP" for field value "OBTAB" as AUSP is the table which has the characteristic values.  You should be looking for an entry in TCLA for OBTAB = "EQUI".

  • How to change a setting in the Java Control Panel with command line

    Hi,
    I am trying to figure out how to change a setting in the Java Control Panel with command line or with a script. I want to enable "Use SSL 2.0 compatible ClientHello format"
    I can't seem to find any documentation on how to change settings in the Java Control Panel via the command line
    Edited by: 897133 on Nov 14, 2011 7:15 AM

    OK figured it out. This is for the next person seeking the same solution.
    When you click on the Java Control Panel (found in the Control panel) in any version of Windows, it first looks for a System Wide Java Configuration (found here: C:\Windows\Sun\Java\Deployment). At this point you must be wondering why you don't have this folder (C:\Windows\Sun\Java\Deployment) or why its empty. Well, for an enterprise environment, you have to create it and place something in it - it doesn't exist by default. So you'll need a script (I used Autoit) to create the directory structure and place the the two files into it. The two files are "deployment.properties" and "deployment.config".
    Example: When you click on the Java Control Panel it first checks to see if this directory exists (C:\Windows\Sun\Java\Deployment) and then checks if there is a "deployment.config". If there is one it opens it and reads it. If it doesn't exist, Java creates user settings found here C:\Users\USERNAME\AppData\LocalLow\Sun\Java\Deployment on Windows 7.
    __deployment.config__
    It should look like this inside:
    *#deployment.config*
    *#Mon Nov 14 13:06:38 AST 2011*
    *# The First line below specifies if this config is mandatory which is simple enough*
    *# The second line just tells Java where to the properties of your Java Configuration*
    *# NOTE: These java settings will be applied to each user file and will overwrite existing ones*
    deployment.system.config.mandatory=True
    deployment.system.config=file\:C\:/WINDOWS/Sun/Java/Deployment/deployment.properties
    If you look in C:\Users\USERNAME\AppData\LocalLow\Sun\Java\Deployment on Windows 7 for example you will find "deployment.properties". You can use this as your default example and add your settings to it.
    How?
    Easy. If you want to add *"Use SSL 2.0 compatible ClientHello format"*
    Add this line:
    deployment.security.SSLv2Hello=true
    Maybe you want to disable Java update (which is a big problem for enterprises)
    Add these lines:
    deployment.javaws.autodownload=NEVER
    deployment.javaws.autodownload.locked=
    Below is a basic AutoIt script you could use (It compiles the files into the executable. When you compile the script the two Java files must be in the directory you specify in the FileInstall line, which can be anything you choose. It will also create your directory structure):
    #NoTrayIcon
    #RequireAdmin
    #Region ;**** Directives created by AutoIt3Wrapper_GUI ****
    #AutoIt3Wrapper_UseX64=n
    #EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****
    Func _JavaConfig()
         $ConfigFile_1 = @TempDir & "\deployment.properties"
         $ConfigFile_2 = @TempDir & "\deployment.config"
         FileInstall ("D:\My Documents\Autoit\Java config\deployment.properties", $ConfigFile_1)
    FileInstall ("D:\My Documents\Autoit\Java config\deployment.config", $ConfigFile_2)
         FileCopy($ConfigFile_1, @WindowsDir & "\Sun\Java\Deployment\", 9)
         FileCopy($ConfigFile_2, @WindowsDir & "\Sun\Java\Deployment\", 9)
         Sleep(10000)
         FileDelete(@TempDir & "\deployment.properties")
         FileDelete(@TempDir & "\deployment.config")
    EndFunc
    _JavaConfig()
    Now if you have SCUP and have setup Self Cert for your organization, you just need to create a SCUP update for JRE.
    Edited by: 897133 on Nov 16, 2011 4:53 AM

  • How to resolve Agents with pending URL changes

    Greetings,
    I have run the EMDIAG tool against my 12c OMS and one section of the results hows thie following -
    7001. Agents with pending URL changes
    LAST_EMD_URL
    EMD_URL
    https://lepisma.ucdavis.edu:3872/emd/main
    https://lepisma.ucdavis.edu:1830/emd/main
    1 row selected.
    verifyASLM
    ======================================================================
    On this host ./emctl status agent returns -
    Oracle Enterprise Manager 12c Cloud Control 12.1.0.1.0
    Copyright (c) 1996, 2012 Oracle Corporation. All rights reserved.
    Agent Version : 12.1.0.1.0
    OMS Version : 12.1.0.1.0
    Protocol Version : 12.1.0.1.0
    Agent Home : /usr/local/oracle/product/agent12g/agent_inst
    Agent Binaries : /usr/local/oracle/product/agent12g/core/12.1.0.1.0
    Agent Process ID : 44637
    Parent Process ID : 44555
    Agent URL : https://lepisma.ucdavis.edu:3872/emd/main/
    Repository URL : https://oracle-emrep1.ucdavis.edu:4904/empbs/upload
    Started at : 2013-04-20 16:09:06
    Started by user : oracle
    Last Reload : (none)
    Last successful upload : 2013-04-22 13:34:14
    Last attempted upload : 2013-04-22 13:34:14
    Total Megabytes of XML files uploaded so far : 134.96
    Number of XML files pending upload : 1
    Size of XML files pending upload(MB) : 0.03
    Available disk space on upload filesystem : 62.49%
    Collection Status : Collections enabled
    Last attempted heartbeat to OMS : 2013-04-22 13:34:11
    Last successful heartbeat to OMS : 2013-04-22 13:34:11
    Agent is Running and Ready
    Examinig the emd.properties file shows no entry for https://lepisma.ucdavis.edu:1830/emd/main and ./emctl config agent listtargets only shows the following for oracle_emd -
    [lepisma.ucdavis.edu:3872, oracle_emd]
    This was recently upgraded from 11g and prior to the upgrade there were difficulties patching this agent. Because of that it was reinstalled in 12c. I have no clue what is causing the issue let alone how to resolve it. Any suggestions are greatly appreciated.
    Thank you.
    Bill Wagman

    It's ok to have 11g agent and 12c agents up and running simultaneously and we do it all the time during migration from one to the other since they have to run on different ports (12c checks this at install ONLY IF the 11g agent it up and running when the 12c agent is being pushed out to the host).
    Also, if EMDIAG is the only place you see 1830 port being reported, it may be becuase its doing a search for any agents currently installed on the server. So if you still have both the 11g agent and 12c agent installed, this should not be an issue that it it reporting that URL/port with 1830 for the 11g agent. Since you can't upgrade 11g agents to 12c, (its required to do a new install of 12c agent) you have to do a complete uninstall of the 11g agent first from the OEM 11g gui console, then at the inventory level where the inital 11g agent was installed, than you may still need to manually remove that 11g directory if your runInstaller did not remove it once its "uninstalled".
    Edited by: ora6dba on Apr 25, 2013 7:24 AM

  • The sliders in Lightroom worked fine for several months with my Sony NEX3N but now they have no effect. I can only edit photos by changing the histogram directly.

    The sliders in Lightroom worked fine for several months with my Sony NEX3N but now they have no effect. I can only edit photos by changing the histogram directly.

    The sliders in Lightroom worked fine for several months with my Sony NEX3N but now they have no effect. I can only edit photos by changing the histogram directly.

  • Record about my phone (bought in Verizon store and connected to Verizon for 4 years) has been corrupted and now I can not make any changes to my data plan. Several sessions with the technical support and management have not resolved this issue. Each time

    Record about my phone (bought in Verizon store and connected to Verizon for 4 years) has been corrupted and now I can not make any changes to my data plan. Several sessions with the technical support and management have not resolved this issue. Each time technical people and top managers promised that this issue will be resolve tomorrow and they will cal me. Nothing happend!! I can not even cancel my service not just to upgrade it. Completely locked. 
    Any advice?
    Thanks.
    Alex.

    Cannot figure out what your talking about since it makes no sense.
    If you are the account owner you can go to the My Verizon web portal http://www.verizonwireless.com
    You must log in with your cell number and your my Verizon portal password. Not the account pin.
    Once there you can change your plan and services. However repeated incorrect login attempts will lock you out of the site. It a fraud prevention measure.
    1-800-922-0204 call support with your cell number and or account number and account pin and they can assist you.
    If you don't have the information then there is nothing they can do.
    If you can verify who you are they may be able to reset your account access. But only if you are the account owner.
    Good Luck

  • Webreporting - Command URL with "2" DataProvider

    Hi all,
    i am using a very long command url:
    <SAP_BW_URL DATA_PROVIDER='DATAPROVIDER_1' CMD_1='ITEM=TABLE_1&HIDDEN=X' CMD_2='ITEM=TABLE_2&HIDDEN=' CMD_3='ITEM=TABLE_3&HIDDEN=X' CMD_4='ITEM=TABLE_4&HIDDEN=X' CMD_5='ITEM=TABLE_5&HIDDEN=X' CMD_6='ITEM=TABLE_6&HIDDEN=X' CMD_7='ITEM=TABLE_7&HIDDEN=X' CMD_8='ITEM=TABLE_8&HIDDEN=X' CMD_9='ITEM=TABLE_9&HIDDEN=X' CMD_10='ITEM=TABLE_10&HIDDEN=X&DATA_PROVIDER=DATAPROVIDER_2&CMD_11='SET_NAV_STATE&ALL=X&IOBJNM_1=3V580UKS65FB0787Q1PCZ99AR&AXIS_1=X&IOBJNM_2=3UV7DAADF49GXT01LTYGLZHW3&AXIS_2=Y&FILTER_IOBJNM=3UV7DAADF49GXT01LTYGLZHW3&FILTER_VALUE=&3V1KIO6SW7GDK11BYCJZJ2637'>
    My problem is that all commands on Dataprovider 1 are working fine. Now i want to add in same command url a commands on a second DataProvider (DATAPROVIDER_2)! But the url is not working. I think somethings wrong here.
    The interesting part from url is this :....&DATA_PROVIDER=DATAPROVIDER_2&CMD_11='SET_NAV_STATE&ALL=X&IOBJNM_1=3V580UKS65FB0787Q1PCZ99AR&AXIS_1=X&IOBJNM_2=3UV7DAADF49GXT01LTYGLZHW3&AXIS_2=Y&FILTER_IOBJNM=3UV7DAADF49GXT01LTYGLZHW3&FILTER_VALUE=&3V1KIO6SW7GDK11BYCJZJ2637'>
    Seems like CMD_11 on Dataprovider DATAPROVIDER_2 is not working!
    Thanks for all who can help me
    Regards,
    M. Erbil

    Hi Mehmetali,
    copy&paste the attached coding in your html-body.
    Below the "visible" table you will find the buttons for switch between TABLE_1 / TABLE_2 and a variable export button.
    best regards
    Jens
    <BODY>
    <object>
             <param name="OWNER" value="SAP_BW"/>
             <param name="CMD" value="GET_ITEM"/>
             <param name="NAME" value="TABLE_2"/>
             <param name="ITEM_CLASS" value="CL_RSR_WWW_ITEM_GRID"/>
             <param name="DATA_PROVIDER" value="DATAPROVIDER_2"/>
             <param name="HIDDEN" value="X"/>
             ITEM:            TABLE_2
    </object><object>
             <param name="OWNER" value="SAP_BW"/>
             <param name="CMD" value="GET_ITEM"/>
             <param name="NAME" value="TABLE_1"/>
             <param name="ITEM_CLASS" value="CL_RSR_WWW_ITEM_GRID"/>
             <param name="DATA_PROVIDER" value="DATAPROVIDER_1"/>
             ITEM:            TABLE_1
    </object>
    <A class=SAPBEXBtnEmph href="<SAP_BW_URL item='TABLE_2' hidden='X' cmd_1='item=TABLE_1&hidden='>"> Show Table 1</A>
    <A class=SAPBEXBtnEmph href="<SAP_BW_URL item='TABLE_2' hidden='' cmd_1='item=TABLE_1&hidden=X'>"> Show Table 2</A>
    <SCRIPT language="JavaScript">
    <!--
    var prop = SAPBWGetItemProp("TABLE_1");
    var hidden = true;
    if (prop != null){
    for(i=1;i<prop.length;i++){
    if (prop<i>[0] == "HIDDEN") hidden = (prop<i>[1] == "X");
    if (hidden) {
    document.write('<A class=SAPBEXBtnEmph href="<SAP_BW_URL DATA_PROVIDER='DATAPROVIDER_2' CMD='EXPORT' FORMAT='XLS'>"> Export Table</A>');
    else {
    document.write('<A class=SAPBEXBtnEmph href="<SAP_BW_URL DATA_PROVIDER='DATAPROVIDER_1' CMD='EXPORT' FORMAT='XLS'>"> Export Table</A>');
    --->
    </SCRIPT>
    </BODY>

  • Portal with a URL using a Web browser in java stack

    Dear all,
    I can access the portal with our URL using a Web browser from your client machines .
    i got the following option :
    SAP Library
    SAP Library contains the complete documentation for SAP Web Application Server.
    Web Services Navigator
    Web Services Navigator is a tool that gives you a short overview of a specific Web service based on its WSDL, and enables you to test your Web service by creating and sending a client request to the real end point.
    System Information
    System information provides administrators with an overview of the system configuration and its state. It shows all of the system's instances and processes, their current state and important parameters (such as ports) that may be required for support cases, as well as the versions of the components installed.
    UDDI Client
    The UDDI client provides query and publishing functions for different Web service entities (tModels, business services) to any UDDI compliant registry.
    User Management
    The user management administration console provides administrators with the functions they need to manage users, groups, roles, and user-related data in the User Management Engine (UME). Users without administrator permissions can use it to change their user profile.
    Web Dynpro
    Web Dynpro is a User Interface technology available within the SAP NetWeaver Developer Studio.
    Various Web Dynpro tools provide administrators and application developers with performance measurement and application administration capabilities. The Web Dynpro runtime is already deployed.
    SAP NetWeaver Administrator
    A tool for administration and monitoring, offering a central entry point to the whole SAP NetWeaver system landscape. The SAP NetWeaver Administrator can be used in a central scenario where it is capable of operating an entire system landscape containing ABAP and Java systems as the application platform of SAP NetWeaver.
    J2EE Engine Examples
    This section contains several J2EE application examples that run on the J2EE Engine. The examples show some of the functions of both Java and the J2EE Engine. They can be easily deployed and tested by simply clicking on a button. The full source code of the examples is also available.
    when i click System Information:
    it ask user name () J2EE_ADMINand password (Installtion master password) ,after entered , i got below error .
    You are not authorized to view the requested resource.
      Details:   No details available
    Kindly suggest .

    Hello
    It means what it sais, your J2EE_ADMIN user doesn't have enough authorization.
    Chech if the appropriate authorization is assigned in your abap stack which belongs to the java stack you logon to:
    Role SAP_J2EE_ADMIN should be assigned to user J2EE_ADMIN.
    Kind regards
    Tom
    Edited by: Tom Cenens on Dec 17, 2010 2:55 PM

  • Crystal Reports XI does not allow to change Table to SQL command?

    I have report that has Table in Datasource and this table used in report and all fileds are mapped. I need to change table to SQL Command with the same result set of collumns. When I try to Update in Set Datasource Location - it does not work. CR XI allow to update Command to table but Table to Command just do nothing.
    What I have to do or how I can do it?

    Alexander,
    That's probably the "Best" way to do it, and long term you'll want to start adding BOE to your work flow.
    If you want to get around it, here how:
    1) MAKE A COPY OF YOUR REPORT AND WORK FROM THE COPY!!! This involves some a good deal of destruction before you get into reconstruction.
    2) Once you have created your command, remove the table.
    3) Now the fun part... Go through report and manually change all references to the 1st table...
       report fields
       formulas
       selection criteria
       groups
       the whole 9 yards...
    A short cut for the future... If you make all of your formula copies of all of your fields ( fCustomerName = {Table.CustomerName} ) and then only use the formula version of the field in the reports, you can make these changes very easily. (All you have to do is update the one set of formulas.)
    Also as a side note before you get started... You may want to think twice before you mix commands with tables. You loose the server side filtering and grouping on the tables when you do that.  So if you have several tables, you are better off doing the whole thing in one SQL command, do all of your filtering and sorting there and use it to replace ALL of your tables.
    Basically, Graham's way is the easy way... Assuming you have access to the BOE.
    Jason

  • Command URL Sequence

    A master Web Template include 2 web template items, and Prefix for Logical Name was set to the 2 web template items, say A1 and B1.
    Within the 2 web template item each of them has 2 dataprovider and a URL command sequence is created to activate & deactivate condition
    Running the 2 web template individually the URL command sequence is working properly.
    But when it was run under the master Web Template, the prefix only pass to 1 of the dataprovider in the command sequence, which make the function not working
    e.g. Command Sequence like the following
    <SAP_BW_URL CMD='SET_CONDITION_STATE'DATA_PROVIDER='DATAPROVIDER_1'
    CONDITION_ID='3XE37J1VQS1LJFFQUDZ4WTCA0' ACTIVE='X' CMD_1='CMD=SET_CONDITION_STATE&DATA_PROVIDER=DATAPROVIDER_2&CONDITION_ID=3XE6D54O1XDWFHGLW6JIORO88&ACTIVE='
    When running in the master Web Template, a prefix parameter of "A1%2e" is added before DATAPROVIDER_1, but not DATAPROVIDER_2.
    Any one know how to handle this?

    Hi Peter,
    I have a similar issue under BW 3.5 except that I have not had any success with command sequences. I have web templates that I use as menus to get to the web template that has the command sequence assigned to a button. When I change the command in the command sequence to handle either of the commands as a single command it works fine.
    I noticed that you used double quotes on the CMD_1 string whereas examples I have seen use single quotes. I don't know if that is the issue.
    I'm not helping you much but at least you know you are not alone with this issue.
    If I have any success in overcoming it I will let you know.
    Regards
    Rob

  • Access to a website with a URL ending on .exe does not work

    I need to access a website with a URL ending on .exe - Internet Explorer does not have any issues but with Firefox I only get the "file download" dialog box. Is there a setting where I can prevent this behaviour?

    Start Firefox in [[Safe Mode]] to check if one of the add-ons is causing the problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See:
    * [[Troubleshooting extensions and themes]]

  • How do I get rid of the dropdown list history on the location bar? I have tried changing several settings and all I have done is mess up my ability to open ZIP downloads.

    I wanted to clear the drop down suggestions/history list on the location bar so I went to Tools/Options and tried changing several settings. I could not get the results I wanted. Suggestions?
    I did get one unwanted result -- or maybe just a coincidence. I received an email with attached pictures in a ZIP format and I could not get the download to open. Suggestions?

    Tools > Options > Privacy > Location Bar: When using the location bar, suggest: Nothing
    See [[Smart Location Bar]]

  • While trying to change a BOM with transaction CS02, a runtime error appears

    While trying to change a BOM with transaction CS02, a runtime error appears.
    In intial screen he entered material ,plant BOM usage and date valid from  after executed then id displayed item list in that he wantu2019s delete one item, he has been deleted selected item after that when he was saving he is getting runtime error
    Developer trace
    ABAP Program SAPLKED1_WRITE_CE4_BPS1                 .
    Source LKED1_WRITE_CE4_BPS1U01                  Line 30.
    Error Code SAPSQL_ARRAY_INSERT_DUPREC.
    Module  $Id: //bas/640_REL/src/krn/runt/absapsql.c#17 $ SAP.
    Function HandleRsqlErrors Line 775.
    RABAX: level LEV_RX_STDERR completed.
    RABAX: level LEV_RX_RFC_ERROR entered.
    RABAX: level LEV_RX_RFC_ERROR completed.
    RABAX: level LEV_RX_RFC_CLOSE entered.
    RABAX: level LEV_RX_RFC_CLOSE completed.
    RABAX: level LEV_RX_IMC_ERROR entered.
    RABAX: level LEV_RX_IMC_ERROR completed.
    RABAX: level LEV_RX_DATASET_CLOSE entered.
    RABAX: level LEV_RX_DATASET_CLOSE completed.
    RABAX: level LEV_RX_RESET_SHMLOCKS entered.
    RABAX: level LEV_RX_RESET_SHMLOCKS completed.
    RABAX: level LEV_RX_ERROR_SAVE entered.
    RABAX: level LEV_RX_ERROR_SAVE completed.
    RABAX: level LEV_RX_ERROR_TPDA entered.
    RABAX: level LEV_RX_ERROR_TPDA completed.
    RABAX: level LEV_RX_PXA_RELEASE_RUDI entered.
    RABAX: level LEV_RX_PXA_RELEASE_RUDI completed.
    RABAX: level LEV_RX_LIVE_CACHE_CLEANUP entered.
    RABAX: level LEV_RX_LIVE_CACHE_CLEANUP completed.
    RABAX: level LEV_RX_END entered.
    RABAX: level LEV_RX_END completed.
    RABAX: end RX_RFC
    In sm21
    Perform rollback
    Run-time error "SAPSQL_ARRAY_INSERT_DUPREC" occurred
         Short dump "090618 110101 donalda 11557 " generated
    Runtime Error          SAPSQL_ARRAY_INSERT_DUPREC
    Exception              CX_SY_OPEN_SQL_DB
           Occurred on     18.06.2009 at   11:01:01
    The ABAP/4 Open SQL array insert results in duplicate database records.
    What happened?
    Error in ABAP application program.
    The current ABAP program "SAPLKED1_WRITE_CE4_BPS1" had to be terminated because
    one of the
    statements could not be executed.
    This is probably due to an error in the ABAP program.
    What can you do?
    Print out the error message (using the "Print" function)
    and make a note of the actions and input that caused the
    error.
    To resolve the problem, contact your SAP system administrator.
    You can use transaction ST22 (ABAP Dump Analysis) to view and administer
    termination messages, especially those beyond their normal deletion
    date.
    Error analysis
    An exception occurred. This exception is dealt with in more detail below
    . The exception, which is assigned to the class 'CX_SY_OPEN_SQL_DB', was
    neither
    caught nor passed along using a RAISING clause, in the procedure
    "RKE_WRITE_CE4__BPS1" "(FUNCTION)"
    Since the caller of the procedure could not have expected this exception
    to occur, the running program was terminated.
    The reason for the exception is:
    If you use an ABAP/4 Open SQL array insert to insert a record in
    the database and that record already exists with the same key,
    this results in a termination.
    (With an ABAP/4 Open SQL single record insert in the same error
    situation, processing does not terminate, but SY-SUBRC is set to 4.)
    How to correct the error
    The exception must either be prevented, caught within the procedure
    "RKE_WRITE_CE4__BPS1"
    "(FUNCTION)", or declared in the procedure's RAISING clause.
    To prevent the exception, note the following:
    Use an ABAP/4 Open SQL array insert only if you are sure that none of
    the records passed already exists in the database.
    You may able to find an interim solution to the problem
    in the SAP note system. If you have access to the note system yourself,
    use the following search criteria:
    "SAPSQL_ARRAY_INSERT_DUPREC" CX_SY_OPEN_SQL_DBC
    "SAPLKED1_WRITE_CE4_BPS1" or "LKED1_WRITE_CE4_BPS1U01"
    "RKE_WRITE_CE4__BPS1"
    If you cannot solve the problem yourself, please send the
    following documents to SAP:
    1. A hard copy print describing the problem.
       To obtain this, select the "Print" function on the current screen.
    2. A suitable hardcopy prinout of the system log.
       To obtain this, call the system log with Transaction SM21
       and select the "Print" function to print out the relevant
       part.
    3. If the programs are your own programs or modified SAP programs,
       supply the source code.
       To do this, you can either use the "PRINT" command in the editor or
       print the programs using the report RSINCL00.
    4. Details regarding the conditions under which the error occurred
       or which actions and input led to the error.

    Hi ,
    you are getting beacuse u are trying to do mass update to database.
    Please check that below note are applicable to your system.
    Note 453313 - DBIF_RSQL_ERROR_INTERNAL for mass insert
    Note 869534 - AFS MRP doesn't work properly with all BOM item categories
    Thanks Rishi Abrol

  • How to pass session variable value with GO URL to override session value

    Hi Gurus,
    We have below requirement.Please help us at the earliest.
    How to pass session variable value with GO URL to override session value. ( It is not working after making changes to authentication xml file session init block creation as explained by oracle (Bug No14372679 : which they claim it is fixed in 1.7 version  Ref No :Bug 14372679 : REQUEST VARIABLE NOT OVERRIDING SESSION VARIABLE RUNNING THRU A GO URL )
    Please provide step by step solution.No vague answers.
    I followed below steps mentioned.
    RPD:
    ****-> Created a session variable called STATUS
    -> Create Session Init block called Init_Status with SQL
        select 'ACTIVE' from dual;
    -> Assigned the session variable STATUS to Init block Init_Status
    authenticationschemas.xml:
    Added
    <RequestVariable source="url" type="informational"
    nameInSource="RE_CODE" biVariableName="NQ_SESSION.STATUS"/>
    Report
    Edit column "Contract Status" and added session variable as
    VALUEOF(NQ_SESSION.STATUS)
    URL:
    http://localhost:9704/analytics/saw.dll?PortalGo&Action=prompt&path=%2Fshared%2FQAV%2FTest_Report_By%20Contract%20Status&RE_CODE='EXPIRED'
    Issue:
    When  I run the URL above with parameter EXPIRED, the report still shows for  ACTIVE only. The URL is not making any difference with report.
    Report is picking the default value from RPD session variable init query.
    could you please let me know if I am missing something.

    Hi,
    Check those links might help you.
    Integrating Oracle OBIEE Content using GO URL
    How to set session variables using url variables | OBIEE Blog
    OBIEE 10G - How to set a request/session variable using the Saw Url (Go/Dashboard) | GerardNico.com (BI, OBIEE, O…
    Thanks,
    Satya

  • How can I change several prefixes in my Address Book?

    Hello,
    I been trying change several prefixes on my Address Book with no luck.
    I tried exporting them as Bussines Cards and editing them with Text Edit and I was unsuccesful. Due that the find tool wont "find" what I am looking for.
    At the end of the day is only replacing the following in a bunch of contacts:
    +54911
    for
    011
    Any help would be much apreciated.
    Thanks in advance
    Lucho

    Hello, I think you'll have to Export them & use another Application...
    How to Export Your Mac OS X Mail Address Book Contacts to a CSV File...
    Export Your Mac OS X Mail Address Book Contacts to a CSV File
    To save your contacts from the Mac OS X Address Book to a CSV (comma-separated values) file, which lets you import the data to many other address books:
    Download and install AB2CSV.
    Open AB2CSV.
    Select Mode | CSV from the menu.To configure which fields will be exported, you can select AB2CSV | Preferences… from the menu and go to the CSV tab.
    Now select File | Export from the menu.
    Go to your Documents folder.
    Click Choose.
    The exported address book contacts are saved to a file called "everyone.csv" in your Documents folder.
    http://email.about.com/od/macosxmailtips/qt/How-To-Export-Your-Mac-Os-X-Mail-Add ress-Book-Contacts-To-A-Csv-File.htm
    Then again, AB can be imported into...
    Might look into NeoOffice...
    http://www.neooffice.org/
    Or Open Office...
    http://porting.openoffice.org/mac/download/index.html
    And most likely MS Office.

Maybe you are looking for