WAD 3.5 URL - Command Sequence Filter and set_hierarchy_state in same url

Hey folks,
i need your help with following command sequence:
The Filter command works perfekt, but the second command 'set_hierarchy_state' doesnt work. I really tried everything, read blogs and how-to's...  please help me out:
&CMD=LDOC&TEMPLATE_ID=KPAS_TEST&FILTER_IOBJNM=0DISTR_CHAN&FILTER_VALUE=30
&FILTER_COLLAPSE=&FILTER_SIGN=E%26CMD_1%3DCMD%3DSet_Hierarchy_State%26
DATA_PROVIDER%3DSFS_INTEC%26IOBJNM%3D0DISTR_CHAN%26HIERARCHY_NAME%3D
AP_IP_FS_GESIPA%26ACTIVE%3DX
This command works:
&CMD=LDOC&TEMPLATE_ID=KPAS_TEST&CMD_1=CMD%3DSet_Hierarchy_State
%26DATA_PROVIDER%3DSFS_INTEC%26IOBJNM%3D0DISTR_CHAN%26ACTIVE%3DX
and this works:
&CMD=LDOC&TEMPLATE_ID=KPAS_TEST&FILTER_IOBJNM=0DISTR_CHAN
&FILTER_VALUE=30&FILTER_SIGN=E&FILTER_COLLAPSE=
but i need the combination of both single commands

Hi..
I solved my own problem..
that's the command sequence that works:
&CMD_1=DATA_PROVIDER%3DSFS_LOCHER%26FILTER_IOBJNM
%3D0DISTR_CHAN%26FILTER_VALUE%3D30%26FILTER_SIGN%3DE
%26FILTER_COLLAPSE%3D&CMD_2=DATA_PROVIDER%3DSFS_GRUPPE
%26FILTER_IOBJNM%3D0DISTR_CHAN%26FILTER_VALUE%3D30
%26FILTER_SIGN%3DE%26FILTER_COLLAPSE%3D
&CMD_3=CMD%3DSet_Hierarchy%26DATA_PROVIDER%3DSFS_INTEC
%26MULTI%3DX%26IOBJNM%3D0DISTR_CHAN
%26HIERARCHY_NAME%3DAP_IP_FS_GESIPA%26ACTIVE%3DX

Similar Messages

  • The URL command to filter a range for 0FISCPER

    Hello,
    Does someone know how to set a filter for a range for 0FISCPER in an URL.
    I tried FILTER_VALUE_LOW and FILTER_VALUE_HIGH, but this seems not to work for a compounded InfoObject.
    Next I tried FILTER_OPERATOR=GT and FILTER_OPERATOR=LT but also this didn't give any results.
    Regards,
    Sjaak

    Hi,
    please keep in mind to specify the complete compounded value.
    (See http://help.sap.com/saphelp_nw04/helpdata/en/59/edfe395dd76846e10000000a114084/frameset.htm)
    For example the correct notation could be
    FILTER_VALUE_LOW = K42004006
    You can verify the correct filter value format this way:
    Create a drop-Down-Box with 0FISCPER execute the template with parameter snippet_operations= (To ensure that an url request is sent) Now you can check in the url the correct format. Or just have a look on the generated HTML-Coding.
    Heike

  • Adapter engine URL different between CACHE and RWB adapter engine URL?

    Hi there,
    If I go to SXI_CACHE and go to the adapter engine runtime cache I get a URL of:
    https://<server>/MessagingSystem/receive/AFW/XI
    NOTE: The above URL is HTTPS.....and there is no port in the above....
    However, if I go to the runtime workbench and click on the adapter engine and click on "test message", I get the following URL:
    http://<server>:<port>/MessagingSystem/receive/AFW/XI
    NOTE: The above url is HTTP and there is a port.
    How can I get these URL's back in sync?
    I want them both to be HTTP.
    Any ideas?
    Thanks

    Hello
    1) Check the value of the Exchange Profile parameter 'com.sap.aii.connect.secure_connections'. If you don't wish to use HTTPS this should not have any value set.
    2) Delete the Adapter Engine cache in trx sxi_cache -> Goto -> Adapter Engine Cache -> Delete Cache Contents (trash can icon).
    The AE cache will be populated the next time a message is sent through the system. Check the value after this is done.
    Regards
    Mark

  • Filter and Join on same table

    Hi All,
    I am having a bit of hard time, implementing following.
    All suggestions welcome.
    (1) I have a file being mapped into an initial table with say, 10 fields (field1...field10).
    (2) I want to execute following logic for mapping
    For all records in the table, in a cursor
    If field1 = 10 Then
    update field10=x
    Else If field2 = 20 Then
    update field10=y
    End if
    If field10=x then
    update field3 =222
    End if
    I was thinking of using the filter, but am grappling with the problem that after I define the filter, how do I merge it with the original table data and execute the last conditional update (based on field10) on all records in the table?
    - Am thinking of doing as below
    Join the output from mother table with output from filter into a temp table (using non equal row id as the join condition), but this creates duplicate column names, and am wondering how to collapse them back into one column set again?
    is there an alternative possible, for this is very kludgy (if it works at all).
    Question 2
    (1) I have a sql expression defined, which I want to use in the filter bifurcation and also after the join. The sql expression's input column and output columns are same, just the target are to be different?
    Is it possible to do this, or do I have to duplicate the sql expression?
    Question 3
    My current load/stage is in PL/SQL procedure, which I am trying to model with OWB. Is there a guideline/ recommended best practice for doing this kind of activity?
    Appreciate your help.
    Deepak

    1. I think I already gave an answer on this question (and there is one more of the same in the forum), but here it is again:
    You can use an expression with a case statement:
    CASE field1
    WHEN 10 THEN 'x'
    WHEN 20 THEN 'y'
    WHEN ... THEN...
    ELSE field10 END CASE
    The input to this expression are fields field1 and field10, the output goes to field 10. So field10 will be updated with the value coming out of the expression - if field1 is 10 then it will be updated with 'x', when field1 is 20 then it will be updated with 'y' etc... when none of the CASE conditions are true (the ELSE case) it will be updated with the field10 (passt-hrough).
    2. The best solution would be to create a transformation (a function, for example) that contains your expression, then use it throughout the project without having to retype it.
    3. You should:
    - Import the source object structures and (where possible) the target ones
    - Design the new objects in OWB
    - Import your custom transformation library, if there is one
    - Design the extraction processes as mappings in OWB (you will not be able to reuse much of your old code if you want to take advantage of OWBs metadata management, runtime management etc. and if you want to maintain the system through OWB)
    - Run the two systems side by side for some time until you are confortable that the process logic you designed in OWB gives the same results as the old process.
    - Move the OWB system to production and switch the old system off.
    Regards:
    Igor

  • Help on URL Commands

    Hi,
    I have an HTML program, in which I have created a button.
    On this Button, I am executing my URL.
    Our problem is when the user clicks the button, my url getting executing & he can see the entrie link on the address bar with all the variables and filters which has been set.
    Is there anyway to disable the address bar through url commands by which user cannot see the url.
    I have also created the logoff button on the template which i have created. Can anyone please help in code how to logoff / disconnect from BW.
    Regards
    Ramesh Ganji

    Hi Ramesh,
    if you know a little of java script, you can easily do this. You can make the address bar of window disappear using a one line of code. Give it a try, if it fits yr needs.
    Regards,
    Purvang

  • Can you still open URL's within QuickTime and Lion ?

    Can you still open URL's within QuickTime and Lion ? the URL opening seems to have gone.
    I'm running Lion now and just noticed

    I actually tried that but it came up an error and movie could not be found (or words to that effect) I'll try again
    In case it still doesn't work for you, try this URL:
    http://idisk.me.com/jrwalker4-Public/Intro_2.mov
    It is a sample file posted yesterday fixing a Lion playback problem (Lion/QT X v10.1 doesn't seem to like having 2 active MP3 audio tracks present) which I just tested and is playing for me right now.

  • How to make the new tabs to open the same URL as the startup page?

    Hello!
    I was wondering if it's possible to configure the Firefox in such a way that the new tabs open exactly the same URL that is typed in the Options. I tried to set browser.newtab.url to about:home but it gives me Firefox Google custom page instead of the startup page that I've set in the Options. Another way I tried is to set the browser.newtab.url value in about:config to the same URL as the startup page URL, but then if I change the URL in the options the new tab URL is not changed. So the question is whether it's possible to make the Firefox read the URL that is used for the startup page and go there when opening a new tab.

    You can use a addon or about:config
    <h2>Addon</h2>
    * https://addons.mozilla.org/en-us/firefox/addon/new-tab-homepage/‎
    <h2>About:config</h2>
    # In the [[Location bar autocomplete|Location bar]], type '''about:config''' and press '''Enter'''. The about:config "''This might void your warranty!''" warning page may appear.
    # Click '''I'll be careful, I promise!''', to continue to the about:config page.
    # Enter '''browser.newtab.url''', double click the result.
    # A new window should now show, enter your homepage url in the box, then hit ok.
    # Open a new tab, does it work.
    If prefs arent saved you need to read the [[How to fix preferences that won't save]] article.

  • How to keep the same URL with a redesigned website

    I have completely redesigned my muse website and want to replace the old one which is already live. How do I go about doing so and keeping the same URL?

    Hi
    You can upload the site to root which would replace the existing one.
    http://helpx.adobe.com/muse/topics/exporting-publishing.html
    Thanks,
    Sanjit

  • Multiple commands in 3.5 WAD - RESET_ITEM, FILTER and DRILLDOWN

    Hello All,
    I'm using 3.5 WAD.
    My requirement is to fire following multiple commands:
    1. RESET_ITEM
    2. FILTER
    3. DRILL DOWN
    For first command I tried
    var cmdUrl = SAP_BW_URL_Get() + "&CMD=RESET_ITEM&ITEM=TABLE_1&ITEM_ID="+itemID;
               SAPBWOpenURL(SAP_BW_URL_Get() +cmdUrl );
    which works fine.
    Now I want to add filter command to filter multiple single values.
    I tried     
    filter_command = filter_command + "&FILTER_IOBJNM_" + (checkIndex +1) + "=0CRM_OBJ_ID__0CRM_CURRPH&FILTER_VALUE_" +(checkIndex +1) + "=" + phasesField[checkIndex].value ;
               SAPBWOpenURL(SAP_BW_URL_Get() +cmdUrl + filter_command);
    where checkIndex is loop counter.
    But its not working. If I individually fire filter_command, it works neither. If I initialize fitler_command as
    var filter_command = "&CMD_1=LDOC&TEMPLATE_ID=ZAJ_EDIT";
    it works; but if I refire the query in the same session, it fails.
    Could anyone suggest any good methodology to fire those multiple commands?
    Do I have to form a single URL or ...some other way to fire all commands like commandSequence in 7.0?
    I do no want to use form because my filters and drill downs are going to be dynamic.
    Thanks..
    Abhijeet

    http://help.sap.com/saphelp_nw04/helpdata/en/8d/07863be3047e19e10000000a114084/frameset.htm
    Function documentation Command Sequences Locate the document in its SAP Library structure
    Use
    Many questions require you to change several objects in different ways with commands. For example, you cannot use the current methods with a single request (command) for filtering a data provider for the fiscal year 1999 and another data provider for 2000.
    A command sequence allows you to add new commands to an original command. Data is requested from the OLAP processor and the HTML page is sent back to the Web Browser only after all of the commands have been processed.
    ·        The subsequent command sequences are added to the original command as parameter CMD_N. If the command is within an >SAP_BW_URL> tag, you need to make sure that the complete command sequence is set in quotation marks. No quotation marks can be set within the command sequence. If the command sequence is transported using a URL, you have to make sure that you replace the characters ‘=’ and ‘&’ with their hexadecimal display in the command sequence
    ¡        Replace ‘=’ with ‘%3D’
    ¡        Replace ‘&’ with ‘%26’

  • Problem in using Command sequences in Javascript in WAD

    Hi,
    I have created a WAD template in BEx 3.5 with multiple Web items (Tables & Charts). On the WAD there is an input field wherein the user enters the date and clicks on a button. The button click invokes a Javascript function to process certain commands (build together in a command sequence).
    The command sequence is as follows:
    SAP_BW_URL_Get() + "&CMD=PROCESS_VARIABLES" + "%26SUBCMD%3DVAR_SUBMIT" + "%26VAR_NAME_1
    %3DZTD_LODT" + "%26VAR_VALUE_EXT_1%3D" + datef.DATE_1.value + "%26VAR_NAME_2%3DZTD_DTR" +
    "%26VAR_VALUE_EXT_2%3D" + datef.DATE_1.value + "&CMD_1=ITEM%3DCHART_1%26CAPTION%3D" + c_hdr_1
    + "&CMD_2=ITEM%3DCHART_2%26CAPTION%3D" + c_hdr_2;
    Note: datef.DATE_1.value, c_hdr_1 and c_hdr_2 are custom run time variables declared in my HTML / Javascript function.
    The data providers by default are executed for the current date if no date is entered by the user which is the case when the web application is first executed.
    The first command is to re-execute the Data Providers to get the data as per the date entered by the user. This command is for changing the relevant variables in the variable screen and executing it to get the data from the data providers.
    The second and third command modify the caption of the web items CHART_1 and CHART_2 respectively.
    When i execute the command sequence the first command seems NOT to be executed(expected change in data not visible in the web items) while the second and third command seem to be executed as the heading of web items is modified.
    Before building the command sequence i had tested the each of the commands in isolation and it worked as expected i.e.
    First Command: The data in the web items changed as per the date entered by the user
    Second & Third Command: Heading of the web item changed
    Why is the first command in the command sequence not getting executed with the desired result?
    Looking forward to your views / clues which might help resolve this issue.
    regards
    Nitesh

    Hi Bala,
    Refer the below thread...
    Web Application Designer

  • WAD: command sequence.

    Hello everyone,
    in WAD, how can I execute a command of a command sequence if a previous command terminates with errors?
    For example, a button has 3 command: C1, C2 and C3.
    For standard, if C2 terminates with error, C3 not run.
    Instead,  I want to execute the command C3 even if the command C2 exits with error.
    In other words, I want to execute C1, C2 and C3 always.
    How can I achieve this goal?
    Thank you very much.
    Antonio

    Hi Antonio,
    You can make this by an ABAP Program or a Process Chain.
    Best Regards,
    Amine

  • QSUF (Query string url filter) and SQL Server reporting services report viewer parameters

    Hi,
    this is my issue:
    I have a SQL Server reporting services web part on a page with a report with 1 parameter, lets say it's a client list
    Then i have a QSUF that will be used to filter the clients list through the URL
    However, once i connect the filter and the report viewer web part, the parameter goes away and is no longer accessible
    I'd like to somehow keep the parameter visible, in case there is no parameter sent through the URL, i would like the user to be able to choose a client from the parameter drop down list
    I saw that there is a "send empty if no values are passed" option, but i can't seem to get this working properly and i don't know if this option will make the parameter visible again
    Any help would be appreciated
    Thanks.

    Hi,
    According to your post, my understanding is that the query string url filter web part not worked well with SQL server reproting services web part.
    Did you use the Wiki page layout in your environment?
    You can change the page to a web part page, then check whether it work.
    There is a similar thread for your reference.
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/4d7584e3-8e1a-48bf-9346-32f8cb480dd1/query-string-url-filter-web-part?forum=sharepointgeneralprevious
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • Command Sequence in Command URL

    Hello everyone.  I'm having a problem with a command sequence using the Web Template as a Web Item.  The command resets data providers TOPN1 and TOPN3 to new queries. 
    I have the following command sequence in a Web Template:
    <SAP_BW_URL DATA_PROVIDER='TOPN1' CMD='RESET_DATA_PROVIDER' INFOCUBE='ZDL_M03' QUERY='ZZDL_M03_Q0001' CMD_1="DATA_PROVIDER=TOPN3&CMD=RESET_DATA_PROVIDER&INFOCUBE=ZDL_M03&QUERY=ZZDL_M03_Q0002&RRI=X">
    The command sequence is working correctly in this Web Template, template SUBTEMPLATE.  However, this template is being called in another web template, MASTERTEMPLATE, via the web template item.   When the command is called as part of MASTERTEMPLATE, only the first DataProvider, 'TOPN1', is being reset.  The second dataprovider, 'TOPN3', is not being reset.
    I am running BW 3.5.  Just to reiterate, when called as a standalone web template, the command sequence works correctly.  When called as part of another web template, the command sequence is only resetting the first dataprovider in the command sequence.  Has anyone come across something like this?  Any help would be appreciated.  Thanks.
    Edited by: Peter Chiu on Jun 13, 2008 12:36 AM

    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

  • What are REQUEST_NO and PAGENO parameters in WebAD url commands?

    Hi,
    I cannot find any documentation on what are <b>REQUEST_NO</b> and <b>PAGENO</b> parameters in WebAD url commands and how to use them.
    Like in this case:
    http://..../sap/bw/BEx?SAP-LANGUAGE=E&PAGENO=1&REQUEST_NO=0&CMD=PROCESS_VARIABLES&SUBCMD=VAR_SUBMIT&...
    Will appreciate any hints!
    Vitalik

    This is a pretty normal thing to have to do, even on a form you can't guarantee all the values will be returned (unchecked checkboxes for instance won't ever send a value).
    In my code I am checking to see if these params are in
    the url or not:
    arg1 = request.getParameter("arg1");
    if(arg1 == null)
    do something1;
    arg2 = request.getParameter("arg2");
    if(arg2 == null)
    do something2;
    Just change your logic a little:
    // If the param is passed, get the value ...
    if (request.getParameter("arg1") != null)
        arg1 = request.getParameter("arg1");
    else // No parameter "arg1" passed ...
        // do something

  • Command sequence too long

    I am putting together a web template with a button that should automatically filter structures on two different dataproviders.
    Here's my command sequence URL:
    <SAP_BW_URL DATA_PROVIDER='DP'
    FILTER_IOBJNM='9DLWWASJARRDZ6WOY7WWA39G7'
    FILTER_VALUE_1='71IMI689IBYS87IHVTZ0TCYDA'
    FILTER_VALUE_2='F5C7W9WFPUU3S8JSGJRGIO5F5'
    FILTER_VALUE_3='80B8DZ6DOAPN41LVBDRVFH2EE'
    FILTER_VALUE_4='9NWL81CA7S8535FW9ZMYIQBMX'
    FILTER_VALUE_5='7YB1YNE13ZYI6F29HNTOJBPKZ'
    FILTER_VALUE_6='F0I4NP9MRXGNY7TN2B29R57C4'
    CMD_1='DATA_PROVIDER=DP_2&FILTER_IOBJNM=0YV5RI7DNTJKFZARAAGAIBDPU&
    FILTER_VALUE_1=4SOUXJTCNPHLKJ53AYM0B1LSK&
    FILTER_VALUE_2=EXYHBWXTKPFNV5EDOPEY4DY4M&
    FILTER_VALUE_3=D92NJZD7QBK48T4G1Y4M3JS67&
    FILTER_VALUE_4=8GJ7M67YXFFUE86IONBF2099B&
    FILTER_VALUE_5=81S1ATFOAI6638S7NTQ23TY4U&
    FILTER_VALUE_6=15KVM3ABYR6LKK22TLJUG1XV2'>
    The first DP filter works, but DP_2 only sets the first four filters, since the command only recognizes the first 250 characters. I tried breaking it up into multiple commands: for example, CMD_1 sets the first three, CMD_2 sets the last three, but it only shows the results from the last command.
    How can I get this to work? Is there any way around the 250-character limit on a command? If not, is there some kind of attribute to the filter command that tells BW to keep the existing filters in place while adding additional filters?
    Thanks,
    Jason

    There are only nine total columns in both of these structures, so I might be able to exclude the columns I don't want to see within 250 characters...the only problem is that FILTER_SIGN doesn't seem to work. Here's my new URL:
    <SAP_BW_URL DATA_PROVIDER='DP'
    FILTER_IOBJNM='9DLWWASJARRDZ6WOY7WWA39G7'
    FILTER_VALUE_1='71IMI689IBYS87IHVTZ0TCYDA'
    FILTER_VALUE_2='F5C7W9WFPUU3S8JSGJRGIO5F5'
    FILTER_VALUE_3='80B8DZ6DOAPN41LVBDRVFH2EE'
    FILTER_VALUE_4='9NWL81CA7S8535FW9ZMYIQBMX'
    FILTER_VALUE_5='7YB1YNE13ZYI6F29HNTOJBPKZ'
    FILTER_VALUE_6='F0I4NP9MRXGNY7TN2B29R57C4'
    CMD_1='DATA_PROVIDER=DP_2&FILTER_IOBJNM=44GMJ8XO8WAH6F39TQUQ33C97&
    FILTER_SIGN=E&FILTER_VALUE_1=8P7FXUFEQHUJL9KLAT6VFUSS6&
    FILTER_VALUE_2=5AKSQD4FJA2JRWKH2DT5EB8B9&
    FILTER_VALUE_3=18KK6ZB9LV0D24TZBYGL70GNM'>
    I've tried FILTER_SIGN=E and FILTER_SIGN_1=E, but neither seem to work.
    Message was edited by: Jason Kraft

Maybe you are looking for

  • Can I create a Win 7 Recovery Image *Bootable* USB THUMB DRIVE? -- (Instead of cd/dvd)

    Hi Can someone share how to create a  Windows 7 Recovery Image USB THUMB BOOTABLE DRIVE?  -- I mean in place of the Boot DVD that Windows Backup offers to create after you've created an image? I assume that there must be a way to do this? Thanks in a

  • Error icon change

    Hi, how do I change the attribute error icon to another gif? Or even better, is there a hook to not display this attribute error icon at all and yet continue to show the attribute error message below the attribute input field. Thanks, Mel

  • How to reformat Macbook 7,1 on OSX 10.6.8 with a 10.6.6 disc? or should I purchase 10.7? Can I reformat in the process?

    I recently purchased a used Macbook 7,1 that has OS X 10.6.8 already installed on it. I want to reformat the drive in order to remove the old users files and settings.. but I have a macbook pro OS X 10.6.6 disc only. When I insert it, it says "Mac OS

  • External/internal format of amounts in Dynpros

    Hello, If you enter amounts with currency JPY in a database table via generic maintenances view (sm30), they are automatically transformed into the internal format (with 2 decimal places). I want to use this "effect" for my own dynpros. Does anyone k

  • MDM Web Services - connectivity

    Hello I deployed the MDM web services on the portal and I am trying to test the web service - update BP the message that I get is Problem while connecting to MDM repository BP on server server_name with user name it seems like the user is empty even