String values(dimension)  in delivery rules possible or not

Hi,
    I have a deski report which should be sent to receipent based on delivery rules in publication. for example if (object1="987" or object2="KM") then publish the report to receipent . how should i achieve this. can anyone give syntax for this.
  is this possible for webi  report through publication
Regards,
Shanthakumar.

Which version of BusinessObjects Enterprise or you using?

Similar Messages

  • Value of planned delivery time in days not updating

    Hello Experts,
    i have created a material using BAPI_MATERIAL_SAVEDATA.
    IN Mrp2 VIEW
    PLANNED DELIVERY TIME IN DAys is not updating
    i have passed
    la_plantdata-plnd_delry =  P_PLND_DELRY.
    la_plantdatax-plnd_delry =  'x'.
    i have commited the work too but the field is not updated
    Please help.
    Thanks & Regards,
    Naresh

    Hi,
    This question is not related to APO, i would suggest you to post the thread in ABAP forum.
    However can you check
    can you check whether la_plantdatax-plnd_delry field is 3 charcter or one character field.
    Generally it will be like below.
    la_plantdata-plnd_delry = 100
    la_plantdatax-plnd_delry = 'X
    Regards,
    Srini

  • Value-based hierarchy on ROLAP dimension. Is this possible and how?

    Value-based hierarchy on ROLAP dimension. Is this possible and how?
    If yes, what tool I have to use. Any simple examples?

    Based on my experience of OWB10gR2 the option to create a "Value Based" hierarchy is only enabled if you create an AW based OLAP model. If you want to create a ROLAP model then I do not think this is possible.
    Question is why create a ROLAP model when you could get better performance and more powerful analytical features by using a multidimensional model within an analytic workspace.
    Keith

  • Writing value in the parent curr adjs node of the value dimension

    Hi,
    Is it possible to write amount in the parent curr adjs node of the value dimension through rule. If yes, how
    Thanks & Regards
    mnr

    Hi,
    Is it possible to write amount in the parent curr adjs node of the value dimension through rule. If yes, how
    Thanks & Regards
    mnr

  • Can't assign a string value to a member of type TEXT in Calculation Manager

    I can assign a string value to that member of type TEXT using a run-time prompt of type StringToNumber.
    Example: "My Text Member" = {string_rtp};
    However, I need to accompllish the same function without using a run-time prompts.
    I have a planning application and I know that text along with all other non-numeric
    values are stored on the relational side in the planning application schema.
    It seems reasonable to assume that if this can can accomplish
    with a run-time prompt that I could do also do it without a run-time prompt.
    What appears to be lacking is a function like:
    "My Text Member" = @StringToNumber(<String Literal>);
    Clearly, this is already being done "under the covers" for run-time prompts. If
    would appear to be a minor enhancement to expose such a function to developers.
    NOTE: I suppose you would also need to add new syntax/function to identify a string
    literal from say a member name. I'm wondering if this is the more difficult challenge
    from a product perspective????

    When executing a Calculation Manager rule in Planning, the run-time prompt (RTP) is populated by looking up the outline information present in the relational Planning application database. If the RTP is of type TEXT, the strings displayed in the member select are from the from the relational Planning application database too. Subsequently when executing the Rule, the RTP's value is in fact the record ID (a number) which is then saved into the appropriate intersection in Essbase.
    You need to bear in mind, the Rule is executed in Essbase. If Essbase needs to "write" a text, it would then need to connect to the Planning relational database to create a new record. The newly created record ID then needs to be feed back to Essbase, in order to store it in the appropriate intersection.
    What you are suggesting, comes with a big overhead causing Essbase and the rule to slow. Thus, the disadvantages outweighs the advantages.

  • Can I pass a string value to a double numeric indicator?

    I am doing a sequence of tests and saving each tests datas. When I bypass one of the tests, I need the string value 'BP' to get saved ( in the double numeric indicator ) for that particular test. Is there any possible way to do that?
    Solved!
    Go to Solution.

    The numeric indicator works like a "Format into String" function with a hardwired numeric input.
    So it really is a string indicator in the end.
    You can use the "Format String" property node to modify how the numeric is displayed.
    (Also available in Display Format ... --> Advanced Edit Mode.)
    I don't think you can avoid displaying the numeric value, but you can add text.
    So you could, for example, display: "0  BP".
    Format string normal = "%#.2f";
    Format string adding "  BP" text  = "%#.2f  BP";
    Some of the suggestions by others on this thread might be easier to manage and give a better result.
    (You have to swap Format Strings around and still have the numeric displayed.)
    *Note however, that this technique can be used to do interesting things like add Units to your numeric indicator.*
    steve
    Help the forum when you get help. Click the "Solution?" icon on the reply that answers your
    question. Give "Kudos" to replies that help.

  • Change string value by adding a transaction key in T156

    Hello expert,
    My client want to add the transaction key BSX in the string value used for the code movement 261 k (good issue
    of supplier consignment stock).
    SAP Active Global Support respond that changes of value string for standard movement types are not supported.
    However we want if possible to change that : is there a way to do that?
    Thanks for your response.
    Céline Ouali

    Hi,
    If you just want to use new transaction or account modifier without changing value/quantity string, you can do that in T156X.
    Otherwise, i.e. to update value/quantity string -
    Create a custom value string with reference to SAP standard WA03. Update the Value/Quantity string for movement type 261 K in table T156S. Goto SE11 - Display Contents - Create/Maintain Entries.
    You need to add custom transaction keys/account modifiers for value strings in table T156W.
    Thanks
    Venkata Ganesh Perumalla

  • How to export data from Elimination Value dimension member by HAL HFM adapter?

    Good day!<BR><BR>Is it possible to export HFM 4.0.5 data with HAL from the <Elimination> Value dimension member?<BR><BR>In 3.* versions it wasn't and there is Known Issue in the "HFM 3.* Adapter Read Me" file: "The Hyperion Financial Management Adapter exports data using the <entity currency> Value dimension member. The documentation erroneously states that there is a port available for the Value dimension"<BR>But there is not such point in the same file for HFM 4.0.5 AND there is Value port in the HFM 4.0.5. Adapter.<BR><BR>Thanks!<BR><BR>Regards,<BR>Georgy<BR>

    In the first approch, try to change the exporting parameter type REF TO DATA.
    Try like:
    CLASS lcl_test DEFINITION.
      PUBLIC SECTION.
        DATA: t_mara TYPE HASHED TABLE OF mara WITH UNIQUE KEY matnr.
        METHODS:
          constructor,
          get
            IMPORTING
              if_matnr TYPE matnr
            EXPORTING
              ea_mara  TYPE REF TO data.
    ENDCLASS.                    "lcl_test DEFINITION
    START-OF-SELECTION.
      DATA: lo_test TYPE REF TO lcl_test,
            lr_data TYPE REF TO data.
      FIELD-SYMBOLS: <fa_mara> TYPE ANY,
                     <f_field> TYPE ANY.
      CREATE OBJECT lo_test.
      lo_test->get(
        EXPORTING
          if_matnr = '000000000077000000'   " << Replace Your Material
        IMPORTING
          ea_mara  = lr_data ).
      ASSIGN lr_data->* TO <fa_mara>.
      ASSIGN COMPONENT 'ERSDA' OF STRUCTURE <fa_mara> TO <f_field>.
      <f_field> = space.
      WRITE: 'Done'.
    CLASS lcl_test IMPLEMENTATION.
      METHOD constructor.
        SELECT * INTO TABLE t_mara
               FROM mara
               UP TO 10 ROWS.
      ENDMETHOD.                    "constructor
      METHOD get.
        FIELD-SYMBOLS: <lfs_mara> LIKE LINE OF me->t_mara.
        READ TABLE me->t_mara ASSIGNING <lfs_mara> WITH KEY matnr = if_matnr.
        GET REFERENCE OF <lfs_mara> INTO ea_mara.
      ENDMETHOD.                    "get
    ENDCLASS.                    "lcl_test IMPLEMENTATION
    Regards,
    Naimesh Patel

  • How to connect input string value to numerical values

    Hello,
    I am trying to figure out how to connect a single user's input string value to numerical values. Basically I want the user to input the name of a gas that I have a list for (I believe i put the list of gasses in an array>). Then I want to match 2 numerical values "a" and "b" depending on which gas name the user has put in. These "a" and "b" values will be automatically matched with the gas name from a list I put. For example the gas hydrogen has a value of 3 for "a" and 4 for "b. so when the user puts the name "hydrogen" in a string constant, automatically  "a" and "b" should be outputted. I will be connecting a and b to a formula
    Thanks for any help
    Solved!
    Go to Solution.

    student11 wrote:  These "a" and "b" values will be automatically matched with the gas name from a list I put. For example the gas hydrogen has a value of 3 for "a" and 4 for "b".
    This sounds a lot like an Enum to me.  Make sure you type def the enum to make sure updates quickly and easily make it to all copies of the enums.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • BAPI function module to get condition type and its values based on delivery number?

    Hi All,
    I would like to have the BAPI function module to get condition type value based on delivery number before invoice is created.please provide detail program for as a reference .please reply as soon as possible its urgent.
    Regards,
    saaikumar.

    If you haven't already, you may first need to search via the SAP transaction "BAPI" in the area this is applicable to.  Failing that I do hope you get an answer.

  • Limiting value for unplanned delivery cost

    Hi,
    I want to set up a limiting value for unplanned delivery cost ( Say the unplanned delivery cost should not exceed 10% of the total invoice value ).
    How to achieve this functionality.
    Regards,
    R. Dillibabu.

    Hello,
    There are no checks for unplanned delivery cost and you should explore the possibility of user exits to implement this functionality.
    Cheers !

  • Publishing/delivery Rules/Crystal Alerts

    Hi All,
    Has anyone used the following feature and if so did you get it to work? We are using Crystal(WEBI is not Supported) Alerts function with this. And after we set it up and hit the "Run it Now" button, it either goes into a Pending State or Scheduled and never seems to run?
    I took this from the Help on InfoView:
    u201CDelivery rulesu201D affect how documents in publications are processed and distributed. When you set delivery rules on documents, you indicate that the publication will be delivered to recipients only if the content in the documents meets certain conditions. There are two types of delivery rules:
    Recipient delivery rule
    If the data in the recipient's instance meets the delivery rule, the instance is delivered to the recipient.
    Global delivery rule
    If the data in a designated document meets the delivery rule, the publication is delivered to all recipients.
    Note: The designated document for a global delivery rule can be different from the document or documents used in a publication. For example, you can set a global delivery rule on a Desktop Intelligence document used as a dynamic recipient source instead of a Desktop Intelligence document in the publication.
    If a publication has recipient and global delivery rules, the global delivery rule is evaluated first to determine whether the publication will be processed. If the publication meets the global delivery rule, the system then evaluates the recipient delivery rules to determine which instances to process and distribute for each recipient.
    How you set delivery rules depends on the document type that you want to publish. For Crystal reports, you specify a delivery rule based on a named alert that the report designer creates in the Crystal report. For Desktop Intelligence documents, you specify a formula expression. You can also set a delivery rule based on whether the personalized publication contains any data.
    1500 character limit then formatting is removed to save space
    Edited by: Don Williams on Oct 2, 2009 6:42 AM

    The diagram u201CGlobal delivery rule metu201D illustrates how an alert-based global delivery rule works. Here the global delivery rule is set on a document in the publication. The Crystal report has a Revenue alert for values greater than 100,000. The publisher creates a global delivery rule based on the Revenue alert so that the Crystal report is only delivered to all recipients if revenue exceeds 100,000. In this case the delivery rule is met, so the Crystal report is delivered.
    Global delivery rule met
    The diagram u201CRecipient delivery rule unmetu201D illustrates how a recipient delivery rule works. The publisher sets a recipient delivery rule for the Crystal report so that the report is delivered to recipients only if the report contains data for that recipient. When the report is personalized for each recipient, Green Recipient does not have data in the Crystal report. This means that only Blue Recipient and Orange Recipient receive the publication.
    Recipient delivery rule unmet
    For publications that contain multiple documents and objects, each document can have its own recipient delivery rule. When you do this, you have the following options for processing and delivery:
    If a document in the publication fails to meet its recipient delivery rule for a recipient, the entire publication will not be delivered for that recipient.
    If a document in the publication fails to meet its recipient delivery rule for a recipient, that document will not be delivered, but all other documents in the publication will be delivered for that recipient.
    Delivery rules are useful because they allow publications intended for a large number of recipients to be processed and distributed more efficiently. Consider a situation in which a publisher at an insurance company creates a publication for its clients that contains the following objects:
    Edited by: Don Williams on Oct 2, 2009 6:44 AM

  • No grid values for PO 4500000002 00010; goods receipt not possible

    Dear Experts
    I have been configuring AFS, 1st I create Charactreristic for Size and Colour, 2nd assigned it in MM01. And create PR and PO. When I Goods receipt the following error occured.
    "" No grid values for PO 4500000002 00010; goods receipt not possible
    Message no. 8J658 ""
    But I can see the grid like the below mentioned in MIGO screen "Grid Value " field
    I have mentioned One size and three colours
    Grids like
             Size
    Grn       S
    Blu       S
    Yell      S
    Pls help me.
    Thanks
    Rajakumar.K

    In PO item level go to Delivery shcdule tab and over there you have to select the grid value
    Hope u clear

  • Return all instances of a string value

    I know that similar questions have been asked before but I am having a tough time getting things to work.
    I would like to search for all instances of a string value (shown red) and return the corresponding values in the adjacent cells (shown green) so that each room number is represented.  For example, I want the search for "Adequately" to return rooms 236 and 237 (and 237 just once even though it is listed twice).  Is this possible?
    Any help is appreciated.
    Clay

    Here's an example, similar in some ways to Yvan's, but taken a bit further.
    Data table (left) contains only the original data. I've shortened the ratings to allow an easier fit on this page.
    Summary table does the work in two stages.
    Pulls the room numbers for rooms matching each rating. (yellow portion of table. If desired, these rows may be hidden.
    Builds a list of these for each condition. (Footer row)
    Formulas (all on Summary)
    Row 1 is a header row, and contains the Rating labels, which must match those used on the Data table.
    B2:   =IF(AND(Data :: $E2=B$1,COUNTIFS(Data :: $E$2:$E2,B$1,Data :: $C$2:$C2,Data :: $C2,Data::$B$2:$B2,Data :: $B2)=1)," "&Data :: $B2&" "&Data :: $C2&" ","")
    Fill right to column F. Fill down to row 16 (as many rows as there are data rows on Data)
    Note the " " at the beginning and end of the 'if true' part: " "&Data :: $B2&" "&Data :: $C2&" "
    There is a single space between each pair of quotation marks. These are necessary to the second formula below.
    Row 17 is a Footer row.
    B17:  
    =IF(COUNTA(B)-COUNTBLANK(B)=0,"",TRIM(SUBSTITUTE(CONCATENATE(B2,B3,B4,B5,B6,B7,B 8,B9,B10,B11,B12,B13,B14,B15,B16),"  ",",
    There is a return character in the formula immediately before the last quotation mark. Press option-return to enter a return into a formula.
    SUBSTITUTE finds the two spaces added between items in the list and replaces them with a comma followed by the return noted above.
    TRIM is used to remove the single space before the first item in the list and the single space after the last.
    Regards,
    Barry

  • How can I manage byte size of a string value in java?

    Hi,
    How can I manage byte size of a string value in java? I have NAME column in my database table, of type VARCHAR2(128). Supports multilingual, so value in Name can be English, French or Dutch.. like that. Byte size of English character is 1 and that of French is 2 and varies.. . Because of this reason I find difficulty in insert query. Please suggest solution.

    But the event does not really have a size - you can export the photos and make the size pretty much what you want - while it is in iPhoto it is an event
    I guess that iPhoto could report the size of the original photos as imported - or the size of the modified photos if exported as JPEGs - or the size of the modified photos if exported with a maximum dimension of 1080 - but the event simply is photos and does not have a "size" until you export it
    Obviously you want to know the size but the question was
    what is your puprose for knowing the size?
    WIth that information maybe there is a way to get you what you want
    But the basic answer is simply that an event does not have a size - an event is a collection of photos and each photo has either two or three versions in the iPhoto library and each photo can be exported for outside use in several formats and at any size
    LN

Maybe you are looking for

  • HTTP to RFC scenario---- need help

    HI, I am trying to send the pay load through the Runtime workbench - > Adapter Engine -> Test Message, on pressing the send message it says that message is send but I cannot see the message in XI. I have done the following steps:- 1) Check the string

  • How to call pl/sql stored procs from AMImpl

    Hi I have worked with the regular procs which has input/output params as primitive types like Number, Varchar2 etc. But how to pass values to pl/sql procs which has custom data types like VARCHAR2_TABLE_100, please find the definition below. create o

  • Strange font problem

    Hey, I am trying to write a program which will consistantly display all text (across all platforms) in the same font. I chose "Lucida Sans" since it comes with the JRE. When I compile and run my program, it displays all text in "Lucida Sans" as expec

  • After update to mavericks my epson 420sw scanner is not responding error w-61

    after update to mavericks. my epson all in one sx 420 sw the scanner is not responding error message w-61

  • Prospecting and Exploitation solutions for oil and gas company

    Now  we are implementing SAP for an oil and gas company, they want to manage Prospecting and Exploitation through PS.Does anyone has some related documents or experiences?We need help eagerly. Thank you!