How to specify 2 conditions in when settings for 2 items in dynamic actions

Hi,
How to use 2 conditions for 2 different items in Page rendering ->dynamic actions-------when event settings
Actually i have three items like A nd B nd c
If A=v,x,y,z and B=k,l............ i need to set some content like
"werttyyyy" in c  and i need to make it as disable
if A=v,x and B=k ..................
i need to enter the text in c  which i would  like to be freetext  and i need to make it as enable now
here it is i struck  ------------Page rendering ->dynamic actions-------
when
event
change
select type
items
items
a,b
condition
<<<<<< how to mention my condition in tis column>>>>>>>>>>>>>>>>>>>>>>>
Regards,
Pavan

Hi JTan414,
I have check the expression you have provided and there are many incorrect using of this expression, please check and do some modification as below:
For the MonthName function you should follow the grammar like:
=MonthName(10,True)
=MonthName(Month(Fields!BirthDate.Value),False)
="The month of your birthday is " & MonthName(Month(Fields!BirthDate.Value))
You have add the dataset name "DealStarts" at the wrong place, it should like below:
=Last(MonthName(Month(Fields!BirthDate.Value)),"DealStarts")
or
=Last(MonthName(Fields!IntegerValueField.Value),"DealStarts")
This will return the last value from the dataset
There is no function named launchdate, expression "launchdate ("RowofTrendingVisibility")" is incorrect and you shouldn't add the datasetname in this way.
If the expression involved of conditions from two different datasets, limit kinds of functions will support to use:
 =Last(Fields!BirthDate.Value,"DataSetName")
=First(Fields!BirthDate.Value,"DataSetName")
More details information about how to use expression in SSRS:
Expression Examples (Report Builder and SSRS)
If you still have any problem, please try to provide more details information about your requirements and also some sample data.
Regards,
Vicky Liu
Vicky Liu
TechNet Community Support

Similar Messages

  • KSLD how to specify kernel name when run ksld command on host

    I am trying to use KSLD v1.0 and I could not reproduce similar result shown on KSLD User Guide. I followed almost everything on KSLD User Guide except I don't know how to specify kernel name when running ksld command. Here is what I have tried.
    #ksld -t debug /ksld-space/slo8/proto/root_sparc/platform/sun4u/kernel/sparcv9/unix 99
    I can only get unix and krtld read in. (ksld_dbx)modules could not show any modules *.o
    When I use this
    #ksld -t debug /ksld-space/slo8/proto/root_sparc/platform/sun4u/kernel/sparcv9/genunix 99
    then I can only read on genunix.
    Example on KSLD User Guide use unix.281, what is unix.281 created or obtained from target.
    I noticed some SUN Tachnical Support Guru are online to answer questions, thank you for your quick reply.

    I am having the same problem, did you get a solution?
    Thanks,
    I am trying to use KSLD v1.0 and I could not reproduce
    similar result shown on KSLD User Guide. I followed
    almost everything on KSLD User Guide except I don't
    know how to specify kernel name when running ksld
    command. Here is what I have tried.
    #ksld -t debug
    /ksld-space/slo8/proto/root_sparc/platform/sun4u/kernel
    sparcv9/unix 99
    I can only get unix and krtld read in.
    (ksld_dbx)modules could not show any modules *.o
    When I use this
    #ksld -t debug
    /ksld-space/slo8/proto/root_sparc/platform/sun4u/kernel
    sparcv9/genunix 99
    then I can only read on genunix.
    Example on KSLD User Guide use unix.281, what is
    unix.281 created or obtained from target.
    I noticed some SUN Tachnical Support Guru are online
    to answer questions, thank you for your quick reply.

  • How could I set the proxy settings for just some URLs and not for all?

    Hello,
    I am using HttpURLConnection to establish a HTTP connection . The connection pass through a proxy, and it requires security.
    I know that I can set the proxy settings in the system properties, and this works perfect.
    But I don't want to set the proxy settings in the system properties, because this proxy settings will be for ALL the URLs, and I just want for a few URLs.
    How could I set the proxy settings for just some URLs and not for all?
    Thanks

    java.net.URL.openConnection(java.net.Proxy proxy)
    @since 1.5

  • How to How to get FI field status settings for General data

    Hello All,
    Can you please tell me How can I achieve field status settings for General data.
    I have some code to get field status settings for account assignment block but I need General data block data.
    Can you please help me with the same.
    I got the below code to get field status settings for account assignment block But I need General data block information.
    FUNCTION z_fieldstatus_getdetail.
    *"*"Lokale Schnittstelle:
    *" IMPORTING
    *" VALUE(I_BSCHL) TYPE BSCHL
    *" VALUE(I_BUKRS) TYPE BUKRS
    *" VALUE(I_SAKNR) TYPE SAKNR
    *" TABLES
    *" T_COBLF STRUCTURE COBLF
    *" T_FIELDS STRUCTURE TCOBF OPTIONAL
    *" EXCEPTIONS
    *" ERROR_MESSAGE
    * liefert Feldstatus in Liste t_coblf:
    * Feldname (DDIC) nicht in der Liste -> Feld ausgeblendet
    * Feldname (DDIC) in der Liste -> Feld eingabebereit
    * required = 1:
    * Mussfeld;
    * required = 0: kein Mussfeld
    * active = 0: Feld ausgblendet
    * Als Hilfstabelle wird die gesamte Feldliste der Felder (t_fields)
    * ausgegeben,
    * deren Eingabebereitschaft im Customizing steht
      DATA: ls_faus1 LIKE tbsl-faus1.
      DATA: ls_faus2 LIKE tbsl-faus2.
    * Feldstatus holen
      CALL FUNCTION 'FI_FIELD_SELECTION_DETERMINE'
        EXPORTING
          i_bschl     = i_bschl
          i_bukrs     = i_bukrs
          i_saknr     = i_saknr
        IMPORTING
          e_faus1     = ls_faus1
          e_faus2     = ls_faus2
        EXCEPTIONS
          customizing = 1
          OTHERS      = 2.
      IF sy-subrc <> 0.
        MESSAGE a613(/ssc/comon).
      ENDIF.
      DATA lv_char.
      DATA int_coblf LIKE coblf OCCURS 0 WITH HEADER LINE.
      DATA p_cobl LIKE cobl.
      DATA: dummy_ktosl LIKE bseg-ktosl.
      PERFORM kontierungsblock_ermitteln(sapff001)
      TABLES int_coblf
      USING lv_char(1)
      ls_faus1 ls_faus2 dummy_ktosl.
      t_coblf[] = int_coblf[].
      SELECT * FROM tcobf INTO TABLE t_fields.
    ENDFUNCTION.
    Thanks in Adv.
    Kaustubh

    Hi ,
    Looking at the question the first thing that comes to my mind is what is the organization structure that you are following .
    As you have mentioned that you have used segment insted of profit center for splitting , what is the scope of profit center in your implementation .
    in implementations where locations are devided as profit centes it becomes very necessary to mandatorily split the documents based on profit center .
    in your case as you have set it as segment i dont find it an issue of you keeping it as optional as it will not give you and error during your operations , as you have made profit center optional in splitting charcteristics .
    hope this suffices .
    Regards ,
    Dewang

  • How to turn off "Adobe PDF settings for Autodes AutoCAD documents" dialog box between pages of a batch conversion?  There is a check box for this purpose, but it is grayed out, and of course unusable?!

    How to turn off "Adobe PDF settings for Autodes AutoCAD documents" dialog box between pages of a batch conversion?  There is a check box for this purpose, but it is grayed out, and of course unusable?!

    How to turn off "Adobe PDF settings for Autodes AutoCAD documents" dialog box between pages of a batch conversion?  There is a check box for this purpose, but it is grayed out, and of course unusable?!

  • How to change the contact sync settings for icloud? please advise

    how to change the contact sync settings for icloud? please advise?

    There are no settings to change. Assuming you are using Lion 10.7.2 (or 10.7.3) - which you should be - you simply sign in in System Preferences>iCloud and check 'Contacts' and any other data you want to sync.
    If you are using an earlier system you will not be able to sync your contacts, and there is no workaround. However you can sync them with Google or Yahoo contacts, though I don't know how well this works.

  • Settings for Item Proposal and Product Proposal

    Hi Gurus,
    How to do the configuration settings for Item Proposal and Product Proposal.
    I also want to know what is the difference between Item Proposal and product Proposal.
    Give me your Solution.

    Item proposal is the list of regularly/frequently ordered items of a particular customer. this will be useful when u are entering the sales order. it will be used to speed up the order entry process.
    For that Goto VA51, enter item proposal type as MS and sales area details.
    enter the customer name and the list of products and save. Assign the item proposal No in the customer master sales area data, sales tab.
    create the sales order  and enter the customer no and press the propose items button in the sales order.
    the system will propose one box and it will display all the materials. then u can continue further.
    Product proposal:
    To configure product proposal, Go to IMG,SD, Basic functions, Dynamic product proposal, Maintain all the settings
    **A product proposal is a list of products for a specific customer that is automatically proposed during sales document processing. You can decide for yourself which materials should be displayed as product proposals in the sales document. You can also determine the sequence in which the materials appear in the product proposal.
         During sales document processing, the system displays a product proposal in the item overview according to the customer and the business transaction. It displays the material number, material description, and historical order quantites in the sales unit last used. To use a material again, you just have to copy it. The system does not run the standard checks (pricing, availability, incompletion, material determination, free goods determination and so on) until you have entered the order quantities.
    The product proposal is both an entry help and an aid to sales support and promotions. It is particularly useful in Telesales, where the employee automatically receives a display of all the materials that are of interest to a particular customer. This helps them to provide appropriate advice to the customer quickly and easily. The sales document history enables you to analyse the purchasing behaviour of a customer and recognize early on if it changes, for instance, when the customer suddenly stops ordering a product.
    The product proposal differs to cross-selling in that it is dependent on the customer and sales area, and is displayed in the sales document as soon as you have entered a customer. Cross-selling, on the other hand, is triggered by a material. In other words, the system proposes cross-selling materials according to the material or a characteristic of the material you have entered.
    You can determine the product proposal from different data sources:
    Order history
    Listed materials
    Excluded materials
    Item proposal
    Customer-material info records
    Customer-specific data sources
    You can combine materials from these data sources to create a product proposal. The system then accesses the data sources either online or in the background.
    To define a product proposal for sales document processing, you must carry out the following activities in Customizing:
    Define customer procedure for product proposal
    Define document procedure for product proposal
    Assign document procedure for product proposal to order types
    Maintain table of origin for product proposal
    Define product proposal procedure and determine access sequences
    Maintain procedure determination (in background) for product proposal
    Maintain procedure determination (online) for product proposal
    The product proposal procedure determines how the system displays the product proposal in the sales document. For instance, if the system has accessed the order history, it determines how many columns should be displayed in the sales document, in which period intervals thehistoric order quantities should be displayed (for instance, day, week, or month), and most importantly, the sequence in which the system should access the data sources (for example, order history, listing, exclusion).
    The product proposal procedure depends on the:
    Customer determination procedure
    The customer procedure determines which product proposal procedure the system automatically uses when you create a sales document for a particular customer.
    It is specified in the customer master record per sales area.
    Document determination procedure
    The document procedure determines which product proposal procedure the system automatically uses for a certain document type. The document procedure is stored as a key in the header for the sales document type.
    If you use online processing, the product proposal procedure is determined according to the customer and document determination procedures.
    If you use background processing, the product proposal procedure is determined according to the sales area in the customer master and the customer determination procedure. It does not use the document determination procedure because the document type is not recognized in background processing.
    Difference:
    Item proposal is the list of products the customer used to buy frequently.
    Product proposal is also the list of products but it will explode in the sales order, once u enter the sold to party field. But this will be based on the following criterias.
    Order history
    Listed materials
    Excluded materials
    Item proposal
    Customer-material info records
    Customer-specific data sources
    Hope this clarifies.
    Reward points if useful

  • Is it possible to create a new tab in 'Default settings for items' option?

    Hi everybody
    I am Raghu working in EBP2.0 & I have come across a difficlty and that is of creating a new tab and also the fields 'GL a/c', 'cost centre' or 'internal order' in this new tab.
    First of all please let me know whether is it possible to create a new tab for these fields.
    The purpose of this new tab is to default the cost centre and GL account with reference to shopping cart.
    As per current scenario, user has to enter the cost centre & the GL code as many times as the number of items in a shopping cart. I mean, if you have 10 items in your shopping cart then 10 times user has to input the cost centre & GL account. To avoid this we are required to add new tab so that per shopping cart we can enter the GL account & cost centre only once.
    Your immediate response would be very much apprecited.
    Regards
    Raghu

    hi Ram & Sreenivas
    Thanks for your immediate response.
    Ram, we can default GL a/c & cost centre in org structure since client wants to us to keep the option of entering these for every shopping cart.
    Sreenivas, I checked the 'copy to clipboard' option & its not there in EBP2 and I feel what you meant as cost centre tab is account assignment tab.
    Let me explain you more clearly about this requirement.
    Current Scenario
    1.Say a user has added 5 items to his SC.
    2.User has to enter cost centre & GL code 5 times & then he can order
    Required scenrio
    1.Say a user has added 5 items to his SC.
    2.As per the proposed functionality, user will click on 'Default settings for items' button. Three tabs will appear-->Basic data, Internal note & Delivery Address.
    We have to provide a new tab here where in user will default his GL & cost centre for this shopping cart & then order. This will help user to avoid entering GL & cost centre 5 times.
    For some reasons our client is not interested in defaulting this data.
    Please help in this regard if time permits.
    Thanks
    Raghu

  • GL account given in Default Settings for Items is not taking precedence

    Hi All,
    Could you please give your valuable inputs for my query
    Which takes precedence....GL account given in Default Settings for Items at the top of the shop screen or the Product category and GL account assignment maintained in SRM GUI?
    Scenario: I input a GL account in 'Default Settings for Items' at the top of the shop screen. Then click on Describe Requirements. Here I change the Product Category and add the line item to shopping cart.
    What GL account will appear in the cost assignment? Default value maintained at the top or the value maintained in the Product category table.
    Thanks
    Deepthi....

    Hi Muthu,
    Thank you for your response.
    It is not picking the default G/L account assigned to cost center( I believe you are talking abt OKB9 trans). It is picking the G/L account which is assigned to the product category in the customising. This is happenning only if the product category is changed for the line item while adding the item to shopping cart. Otherwise the same G/L account given at the header is appearing in the line item too.
    Also While changing the G/L#  information in Default settings for items at top, if Cost center is also changed then the same cost center is appearing in the cost assignment section for the line item but not the G/L.
    Wanted to know if this is a standard design or not. I would like to have the header data to take precedence over the product category and G/L assignment. Any suggestions please
    No ..... I checked in csks table.There are many cost centers for the company code.
    Thanks
    Deepthi..

  • Default settings for items is not getting copied to items in Shopping Cart

    Hi SRM GURU's,
    I am facing a problme while creating shopping cart.
    I maintained default settings for items like Product catagory,Internal Notes etc.
    While adding items in shopping cart these default settings are not getting copied to any items.
    If anybody is having any clue Plz let me know I will award points for sure.
    Our integration testing is affected because of this issue.
    Thanks in Advance.
    Atulp
    +919822761641

    Dear Laurent,
    Yeah, this is a very strange issue and also a rare one. We have already tried this option. User deleted the cart and created a new cart. But still no luck. The new cart is also not getting released from SOCO. User created many carts previously for different product categories, vendors and all carts were through. But for this cart,it is not getting released. If you could have any other idea, you are most welcome.
    Anyway, thanks so much for your time and patience. Appreciate your help!!
    Regards,
    Aswini

  • Tracking number field in the Default settings for items section

    I need to add the tracking number field in the Default settings for items section in the shopping cart creation transaction.
    Could you please tell me inw hich structure should I add the custom field ?
    thanks,
    Rita.

    Hi Atul,
    I added the code of tracking number in in the html template saplbbp_mon_sc 1200 with reference to the code of purchase org field.
    This added a field in the shopping cart report selection screen but without any description.
    I will further learn html code and try to bring in the description and then try to handle this field in the badi bbp_mon_sc after_selection_screen and after_selection method.
    Is this approach ok?
    <!-- purchase org. -->
        `TR()`
          `TD(class="label", nowrap="X")`<label for="GS_ITEM-PURCHASE_ORG"> `T_PURCHASE_ORG.label`</label>
          `TD(class="label", align = "right", nowrap="X")` <label for="GS_ITEM-PURCHASE_ORG"> </label>
          `TD(class="data",  nowrap="X")` <input type="text" id="GS_ITEM-PURCHASE_ORG" name="GS_ITEM-PURCHASE_ORG" value="`GS_ITEM-PURCHASE_ORG`" maxlength="14" size="14">
          `F4HelpButton(bbpformname, "GS_ITEM-PURCHASE_ORG", jsMaskString(strEnc(#SELECT_TEXT_SHELP_PUR_ORG)), jsMaskString(strEnc(#SELECT_SHELP_PUR_ORG)))`
         `TR()` `Lines(colspan2="2")`
    <!-- tracking no (added) -->
        `TR()`
          `TD(class="label", nowrap="X")`<label for="GS_ITEM-ZZBE_TRACKING_NO"> `T_TRACKING_NO.label`</label>
          `TD(class="label", align = "right", nowrap="X")` <label for="GS_ITEM-ZZBE_TRACKING_NO"> </label>
          `TD(class="data",  nowrap="X")` <input type="text" id="GS_ITEM-ZZBE_TRACKING_NO" name="GS_ITEM-ZZBE_TRACKING_NO" value="`GS_ITEM-ZZBE_TRACKING_NO`" maxlength="14" size="14">
          `F4HelpButton(bbpformname, "GS_ITEM-ZZBE_TRACKING_NO", jsMaskString(strEnc(#SELECT_TEXT_SHELP_PUR_ORG)), jsMaskString(strEnc(#SELECT_SHELP_PUR_ORG)))`
         `TR()` `Lines(colspan2="2")`

  • Using Illustrator CS6, how to preserve drawn colors when Save For Web to PNG?

    Using Illustrator CS6 on Mac OSX 10.9.1:
    step 1. I open a new file for Web profile.
    step 2. I verify that File > Document Color Mode is RGB.
    step 3. I draw a square and set it's color to 0,103,197 (decimal).
    step 4. I click File > Save For Web
    step 5. In the popup that opens, I set to PNG-24, and verify the option Convert To sRGB is not selected.
    step 6. Using the Mac's DigitalColorMeter, I observe the color is 0,109,191 in the Save For Web popup. If I save it, then open the saved PNG file, it's color is also 0,109,191.
    How to do this so the colors don't change?
    step 7. I close Save For Web popup.
    step 8. I verify Edit > Color Settings for Working Spaces is set to Monitor RGB, and that the Color Management Policies for RGB is off.
    step 9. I verify Edit > Assign Profile is set to Don't Color Manage This Document.
    step 10. I verify View > Proof Colors is off.
    Can anyone provide a set of Illustrator CS6 settings that let me save a PNG image with the same colors it's drawn in so I can use that PNG image in a website?
    I must be missing something obvious, because anyone working in web design must do this day in and day out, please let me know what procedure people follow to achieve this.
    UPDATE:
    Using the above procedure DOES preserve the colors when embedding the PNG image in a webpage viewed in Firefox and Chome, but NOT for Safari. Also, the colors are not preserved in Mac's Preview software, as well as Microsoft Office 2011 for Mac.
    I'm pretty new to all this. Hoping someone can provide some perspective on what typical procedure people use for web development when working with colors in Illustrator CS6.

    Using Illustrator CS6 on Mac OSX 10.9.1:
    step 1. I open a new file for Web profile.
    step 2. I verify that File > Document Color Mode is RGB.
    step 3. I draw a square and set it's color to 0,103,197 (decimal).
    step 4. I click File > Save For Web
    step 5. In the popup that opens, I set to PNG-24, and verify the option Convert To sRGB is not selected.
    step 6. Using the Mac's DigitalColorMeter, I observe the color is 0,109,191 in the Save For Web popup. If I save it, then open the saved PNG file, it's color is also 0,109,191.
    How to do this so the colors don't change?
    step 7. I close Save For Web popup.
    step 8. I verify Edit > Color Settings for Working Spaces is set to Monitor RGB, and that the Color Management Policies for RGB is off.
    step 9. I verify Edit > Assign Profile is set to Don't Color Manage This Document.
    step 10. I verify View > Proof Colors is off.
    Can anyone provide a set of Illustrator CS6 settings that let me save a PNG image with the same colors it's drawn in so I can use that PNG image in a website?
    I must be missing something obvious, because anyone working in web design must do this day in and day out, please let me know what procedure people follow to achieve this.
    UPDATE:
    Using the above procedure DOES preserve the colors when embedding the PNG image in a webpage viewed in Firefox and Chome, but NOT for Safari. Also, the colors are not preserved in Mac's Preview software, as well as Microsoft Office 2011 for Mac.
    I'm pretty new to all this. Hoping someone can provide some perspective on what typical procedure people use for web development when working with colors in Illustrator CS6.

  • How can I edit the privacy settings for my daughters Apple ID.

    My daughter has forgotten her privacy settings. She has $80 in credit and would like to use them. How can she edit her privacy settings?

    What do you mean by 'privacy settings' ?
    If you mean the Settings > General > Restrictions passcode on her iPad then was it on the iPad when she last backed up ? If not then she can restore to that backup and it should be removed. If it was on the iPad when she last backed up then the only way to remove it is to reset the iPad back to factory defaults and she can then re-sync your content back to her iPad - she won't be able to restore to the backup as that will keep the code in place.
    If you mean the answers to her security questions, then if she has a rescue email address (which is not the same thing as an alternate email address) on her account then the steps on this page will give you a reset link on her account : http://support.apple.com/kb/HT6170
    If she doesn't have a rescue email address (she won't be able to add one until she can answer her questions) then sher will need to contact Support in her country to get the questions reset.
    Contacting Apple about account security : http://support.apple.com/kb/HT5699
    When they've been reset (and if she doesn't already have a rescue email address) sher can then use the steps on this page to add a rescue email address for potential future use : http://support.apple.com/kb/HT5620
    If you mean something else ... ?

  • How Can I Change Default Zoom Settings For Safari?

    I just got my new iMac and hate the fact that everytime I open Safari everything is small and centered directly in the Safari screen.  How can I change the default settings so it either zooms in more or is in a landscaped mode so I don't have two big white patches on the sides of my window?

    The only way I know of, (and that I use) is as follows:
    Open textedit and create a new document.
    Add the following 3 lines to the file
    body {
    zoom: 175%
    Save the file as "somename.css". I called mine defaultzoom.css and saved it in Documents.
    In Safari go to Preferences | Advanced.
    In the Style sheet: dropdown box choose "other" and browse to the location of your somename.css file.
    That's it, now webpages will open with the default zoom level you used in the file (I use 175% but you need to tweak it for your screen size). Also, I do run into situations where some pages don't render correctly. If that happens you can go back to Safari | Preferences | Advanced and change the Style sheet dropdown box to none until you are done viewing that paticular website. Then just put it back when you are done.

  • How do I set the conversion settings for Word to ignore outline autonumbering for headings?

    I have a user manual in Word that uses outline autonumbering for Heading 1, Heading 2, etc. For example, "1.0 Introduction," "1.1 System Settings" and so on).
    I know when setting the conversion settings for FrameMaker, you can select the Ignore Autonumber option in the Conversion Settings dialog to keep only the paragraph content. I don't see anything like this for the Word Conversion Settings. Does this capability exist?

    To clarify:
    I have my paragraphs in Word set up with the required numbering properties using Word's Style settings. In Word, I want the headings to be numbered 1.0, 1.1, 1.1.1, etc. because the intent is for the reader to read through the manual like a book - from start to finish.
    I'm single-sourcing my manual from Word into RoboHelp to generate an online help package. However, I do not want my RoboHelp headings to be numbered because the user may or may not read each topic in order (in other words, they may only need to read what's in section 3.2, but won't get there by reading sections 1.0 through 3.1 first). I might also clarify that each heading is its own topic - so Section 3.2 would be a separate topic from 3.0 and 3.1.
    So for example, in Word, it reads like this:
         "1.0 Introduction
         [content goes here]
         1.1 System Requirements
         [content goes here]
         1.2 References
         [content goes here]"
    And in RoboHelp, I want it like this
         "Introduction
         [content goes here]"
         ---[end of topic]---
         "System Requirements
         [content goes here]"
         ---[end of topic]---
         "References
         [content goes here]"
         ---[end of topic]---
    Does that make sense?
    So how do I keep the numbering in my Word document, but set up the Conversion Settings in RoboHelp to ignore those numbers and only include the text following the autonumber? I have been able to do this when single-sourcing a FrameMaker book into RoboHelp.

Maybe you are looking for