Cannot generate dynamic alert for initial column in SNP.

Hello,
I have an SNP alert macro with a simple condition running from Initial column for 158 weeks. The alert is generated correctly for all other weeks but not for initial column.
The IF condition works correctly because a CELL_BG() in the same alert macro is correctly changing the color of the Initial column cell.
Is there some setting I need to make to generate alert for initial column?
Regards,
SS

Hello jejeje,
thanks for your efforts - what you describe is something users have found out on our side too - a problem remains: you can save this setting "Period from last Selection" and it brings you to the INITIAL column but: once you have scrolled forward in the SNP data view (so that the INITIAL column has disappeared) and you leave the SNP data view or select another product ... it "remembers" that you last time left the data view NOT having INITIAL column as a start column.
So, my users say that they scroll back to INITIAL column before selecting another part or using another SelectionID or leaving the SNP data view ... and of course they hate this since they have to do this a few hundred times a day worse case.
We had a call open to SAP on this and I told them that is about productivity and usabaliity issue moving from SCM5.0 to SCM7.0 - but they have nothing more to say than "not supported anymore" - and the ultimate solution is / will be to modifiy SAP SCM standard coding - unless somebody from SAP is reading the discussioons here and is dedicated to help their customers which pay millions every year into SAP support fees.
Thanks for your responses and effort !
Regards
Thomas

Similar Messages

  • Generate Sequential values for a column

    Hi,
    I had a column in named 'ID' in the block of my form. I want to generate sequential values for the column without using sequence. Suppose if the table does not have any data it has display the starting value what i am providing.(ex. 101).If the data is there in the table If i am executing the query in the last null record it has to show the maxvalue+1 for that column. where can I write the code to get this logic? How to write the code? Can any body please solve my problem?
    Thanks in advance
    user1

    Why don't you want to use a sequence? Do the ORDID values have to be sequential without any gaps in between?
    If so, this requirement is quite hard to achieve in multi-user environment.
    Some approaches:
    Select the next available value from the database when creating a new record , e.g. in the WHEN-CREATE-RECORD-Trigger:
    DECLARE
      CURSOR crMax IS
        SELECT NVL(MAX(ORDID), 0)+1
          FROM ORD;
    BEGIN
      OPEN crMax;
      FETCh crMax INTO :ORD.ORDID;
      CLOSE crMax;
    END;Pros: The user can see the new value when he starts entering the data.
    Contras: When another user uses the same form to create a new record between the point of time user 1 starts entering the record and the point of time he saves, the same number will be taken again which will fail on insert for the second user (i assume there is a Unique Key on ORDID).
    Result: This approach is not suitable in a multi-user environment.
    Second approach:
    Use the same logic as in approach 1, but select the next available number in the PRE-INSERT-trigger of the block:
    Pros: The problem of approach 1 with two users getting the same number gets much more unlikely, for in general the COMMIT goes quite short after the PRE-INSERT has fired, so there will only be problems if both users save at the same moment.
    Contras: Problem with duplicate numbers can still occur iunder special circumstances. The number is not shown until the Insert is issued against the database.
    Result: This approach is possible, but you have to decide if the restrictions are bearable for your situation.
    Further approaches:
    Create a "Number table" either with just one record and one column which contains the next suitable number (lets say TAB_ORDID with column NEXT_ORDID) or with a number of records containing the next suitable numbers.
    Then with the usage of SELECT FOR UPDATE you can lock a record, take the number from it and either update the row to the next value (one row apporach)or delete the row retrieved (multi row approach). Both cases require some more complex logic for retrieving the next number and can cause some trouble in multi-user-environments (ending up in all users who want to create records waiting for the one user who started and did not save correctly) if the locks are not handled correctly.

  • How to provide dynamic labels for calculated columns in HANA calc views

    Hi all,
    we have the requirement to provide dynamic labels for some calculated columns in our calculation view - how to do that?
    Thanks and kind regards,
    Alexander

    Calculated Columns can only generate a value from fields of the current item. And only some types of fields (for example, it can't use a lookup column).
    Consider using a workflow to accomplish your goal.
    Scott Brickey
    MCTS, MCPD, MCITP
    www.sbrickey.com
    Strategic Data Systems - for all your SharePoint needs

  • How to create event alert for particular column get updated

    Hi every one.... plz help me
    How to create oracle event alert when particular column is update. plz help me.... Acutually i need email alert when ever list price for an item column in pricing table get updated+... plz. Its urgent.

    Oracle Event alert is based on update of specific table and not on specific column in table.
    However you can create a trgigger on table which is based on updat of column. And in this trigger you can send a mail using plsql.
    HTH

  • Dynamic binding for table column

    Hi,
    I am using standard application and in a table (not ALV) i want to chnage the name of a column. Already a OTR is placed in it so am planning to do a dynamic bind for the text in the header. Kindly suggest ways.
    Thanks,
    Koushik

    DATA:
            l_caption          TYPE string,
            l_title            TYPE string.
      data lr_caption type ref to cl_wd_caption.
    *---Get OTR Text for Value Description
      CALL METHOD cl_wd_utilities=>get_otr_text_by_alias
        EXPORTING
          alias      = 'ZPERF_MGMT_DEV/RATING'
      language   =
        RECEIVING
          alias_text = l_title.
    lr_caption ?= view->get_element( 'TBL_VAL_HELP_DESCRIPTION_HEADER' ).
    lr_caption->set_text( value = l_title ).

  • Cannot Clear Critical Alert for Physical Standby Databases

    10.2.0.4.0 Grid Control monitoring 10.2.0.4.0 databases and standby databases with 10.2.0.4.0 agents.
    The standby databases are running on Xen guests. The O/S is Red Hat 4 Advanced Server.
    I had a failure of Xen guest on Saturday that caused me to have to rebuild the standby servers. EM Grid Control successfully verifies the configurations and the status is normal for both physical standby databases. (A rebuilt logical standby database shows no alerts.)
    Grid Control database targets page shows a single critical alert for each physical standby database. The alert is for "number of missing media files is 4". The metric graph shows the count as 0 since before the rebuilds. I cannot clear the alerts from the Critical Alerts page. Grid Control reports "The selected alert(s) cannot be manually cleared. They will clear automatically once the metric is no longer in a critical or warning state.".
    Any suggestions?
    Thanks,
    Ray Westphal

    Thanks for the reply Anthony.
    The result of the query on both standby databases is '0'. The metric graph also shows the value at '0' since before rebuilds.
    And the OMS db and agents have been reset several times since I posted this.
    Ray Westphal.

  • Generate dynamic DataTable for Values selected from SelectManyListBox

    I want to generate a datatable for values selected in a selectManyListBox,
    DataTable will have three columns
    1serial number
    2.values selected from listbox
    3.inputText for entering some data
    Plz guide me how can i do this...
    Thanx in advance!

    Check http://balusc.xs4all.nl/srv/dev-jep-dat.html how to use datatables.

  • SNP: How to "lock" initial column in SNP data view (SCM7.0 / SP8)

    Hello experts,
    after a change from SCM5.0 to SCM7.0 we are seeing a change in a tiny but very important capability and we are trying to re-establish it in SCM7.0. If somebody has an idea how to address this that would be of great help:
    As of SCM5.0 users were able to lock the INITIAL column of an SNP DataView so that the column is the default start column and not the next future column. In SCM5.0 the solution had 2 elements
    A) set a user parameter in SU01 called /SAPAPO/SDP_STARTCOL to value X
    +
    B) double-click the header of the initial column in the SNP data view
    As of SCM7.0 this is not supported anymore. There is a certain user setting in an SNP data view (Settings --> Others --> "Period from last selection"  ) but this is not behaving to our needs and SAP is saying what we want from SCM5.0 is a non-supported feature in SCM7.0.
    So, does anybody have an idea how to solve this. I checked UserExits and BAdis in SPRO for interactive planning - there all kind of stuff but nothing having a method to allow / perform a "column locking" in an SNP Data view. Thanks for any tip or hint here.
    Regards
    Thomas

    Hello jejeje,
    thanks for your efforts - what you describe is something users have found out on our side too - a problem remains: you can save this setting "Period from last Selection" and it brings you to the INITIAL column but: once you have scrolled forward in the SNP data view (so that the INITIAL column has disappeared) and you leave the SNP data view or select another product ... it "remembers" that you last time left the data view NOT having INITIAL column as a start column.
    So, my users say that they scroll back to INITIAL column before selecting another part or using another SelectionID or leaving the SNP data view ... and of course they hate this since they have to do this a few hundred times a day worse case.
    We had a call open to SAP on this and I told them that is about productivity and usabaliity issue moving from SCM5.0 to SCM7.0 - but they have nothing more to say than "not supported anymore" - and the ultimate solution is / will be to modifiy SAP SCM standard coding - unless somebody from SAP is reading the discussioons here and is dedicated to help their customers which pay millions every year into SAP support fees.
    Thanks for your responses and effort !
    Regards
    Thomas

  • Configuring the Initial Column in SNP

    Hi Folks,
    Basically what I want to do is to limit the horizon of the initial column. Right now, the initial column is displaying data from Jan 1, 1970 up to yesterday. But I only want to see data in the last three months only.  Can you guys help?

    Hi,
         Create a TB profile (/n/SAPAPO/TR30) for 3 months and assign it in the TB Profile History under the data view tab(/SAPAPO/SDP8B) and assign the value (L,R,C) in the initial column field just under that.
    Regards,
    Siva.

  • Generating Dynamic Query for Ad-Hoc Reports

    Hello,
    What is the best way to create a dynamic query to generate ad-hoc reports? I have a couple of ideas but not sure which would work best and be most flexible.
    I would like our users to be able to check checkboxes for what data they would like returned in their report. The data would be pulled from a number of tables, 10+, depending on what pieces of data they checked.
    Should I write one dynamic query, with a bunch of IF statements in it?
    Should I write many individual queries and then join them together in a temp query?
    Should I create a temp table on our SQL server which contains the data from all of the tables; then query that? (I am worried about data being out-of-date with this option.)
    Which one of these solutions should I go with or is there a better solution that I am not considering?
    Thanks for the help.
    Josh

    Do you mean a Stored Procedure? Would the Stored Procedure then have one query on it with a bunch if IF statements? Maybe a bad example, but something like this?
    Yep.
    I haven't written a proc for a coupla years (I have DB people to do that for me now, bless 'em), but every DB is different, so the approach will vary depending on what DB you have.  It's perhaps time to buy a book or do a google or something.
    Adam

  • Generate PI alerts for Runtime exceptions in other SAP ERP system

    Hi All
    We usually get alerts in PI Alert inbox.
    For some specific interfaces, we will need to raise an alert to other SAP ERP system user.
    Is there anyway generating this kind of exception?
    Thanks
    Sai
    Edited by: Sai Krishna on Jun 30, 2008 3:08 PM

    Hi Sai,
    There are 3 ways you can do this.
    1) Like VJ said "sending an Email using mail adapter from with in a BPM" Which will be a little complex and preformance wise may be slow  but sounds neat .
    2) Use the Work Flow WS71000002 ( AlertSendWf ) to capture and trigger a RFC or a Mail to the concern system
        For this you will require the services of a Workflow guy; but this will be fast and recommended if the error are being caught in a SAP to SAP landscape
    3) You can use this link to generate a group email this is what I have implemented in our landscape
    http://sapdocs.info/wp-content/uploads/2009/01/alert-configuration-in-xi.pdf
    Regards
    Gagan
    Edited by: GAGAN S. KASANA on Mar 2, 2010 5:17 PM
    Edited by: GAGAN S. KASANA on Mar 2, 2010 5:17 PM

  • Dynamic names for Datagrid column headers?

    How can I put data from my ws into the headerText for a
    DataGrid?
    I was hoping to find a defined property something like
    "HeaderTextFunction" built into the DataGrid but I didn't see
    anything like that. Do you have to use the Advanced DataGrid for
    something like this?
    I also can't make out whether I should import the WS value
    into an XMLList or just parse it directly into a function, or what
    the syntax of this should be vis a vis e4x etc.

    "Developer504" <[email protected]> wrote in
    message
    news:gfc8pi$17p$[email protected]..
    >
    quote:
    Originally posted by:
    thebouv
    > First element of the header list returned by
    myheaders..header
    >
    > Like I said, it'll depend on how your XML is set up the
    exact syntax of
    > the
    > e4x you'll use. If you have a more specific example I
    could help you
    > further.
    > If not, good luck!
    >
    >
    > This is the structure of my XML file:
    >
    > <bankCodes>
    > <banks bank1="Bank A" bank2="Bank B" bank3="Bank C"
    bank4="Bank D"
    > bank5="Bank E" bank6="Bank F"/>
    > </bankCodes>
    >
    > There is only one record.
    >
    > So what I wanted to do was put a different one of these
    on each column
    > header.
    yourXML.attributes(0), yourXML.attributes(1), etc.

  • Generating dynamic HTML for odiSendMail

    Hi,
    I have a requirement where i need to dynamically generate a HTML table, which is to be sent as the body of an email notification. This table will essentially be a HTML representation of data from some DB tables. How can I achieve this. A detailed solution is highly appreciated.
    Thanks

    Hi,
    Is there a way to dynamically generate the body of email in odiSendMail? If there is please let me know.

  • Generating RAR Alerts for just certain user groups

    Is there any way to limit a RAR Critical Actions Alert to just certain users?  Or, only if these users access certain data?
    We've had a request to monitor and send out a notification for some transactions, but only for certain users.  These transactions are available to many employees, but it is only a concern if someone from a certain group uses them.  Even then, it's only a concern if they access certain data.
    As an example (this is not the actual request), you have a transaction like say XD 03 (Customer Display) and its available to most everyone in the company.  You also have customers assigned to different company codes.  The issue then is that you have a certain group of users that are only supposed to look at customers for just one specific company code.  Ideally, you would want to be notified if they use this transaction to look at customers for other company codes.  At the very least, you want to know when they use this transaction so you would know to check on their usage.
    If this can't be done using the RAR Alerts, is there maybe another way to perform this montoring/notification?
    Thanks.

    Hi Bob,
    GRC RAR would not help you in this case. However you can restrict the Users through Roles which are assigned to them.
    For example : for tcode XD03 check maintain the authorization object F_KNA1_BUK with Activity 03 and Company code 1000 (depending upon your requirement). Assign the Role to User who require the access to view the Customers for the company 1000.
    Hopefully this may meet your expectations.
    Regards,
    Nikita Sharma.

  • Cannot generate stub objects...access denied

    Has anyone come accross this?
    I am attempting to access a coldfusion 9 webservice that I created and am also consuming.  The pair works fine when both requesting page and the webservice are resident on my development server, but generates the following error when in production:
    Error Occurred While Processing Request
    Cannot generate stub objects for web service invocation.
    Name: http://casadiablo.homeip.net/WebServices/SimpleWebService.cfc?wsdl. WSDL: http://casadiablo.homeip.net/WebServices/SimpleWebService.cfc?wsdl. java.security.AccessControlException: access denied ("java.io.FilePermission" "C:/Program Files/Java/jdk1.7.0_04/jre/lib/wsdl.properties" "read") It is recommended that you use a web browser to retrieve and examine the requested WSDL document to ensure it is correct. If the requested WSDL document cannot be retrieved or is dynamically generated, it is likely that the target web service has programming errors.
    The error occurred in D:/home/casadiablo.net/wwwroot/indexCDNet.cfm: line 10
    Called from "java.io.FilePermission" "C: line -1
    Called from "java.io.FilePermission" "C: line -1
    Called from D:/home/casadiablo.net/wwwroot/indexCDNet.cfm: line 10
    Note: the wsdl renders just fine in a browser at the address I'm using so it's not a can't find it or location issue.  I'm no expert in reading wsdl files, though, so it could render some clues if I knew what to look for.
    For context:
    When I go from my development environment to production, the consuming page is on casadiablo.net/indexCDnet.cfm (hosted by Hostek).  The webservice is on a PC in my home that has a dedicated IP address. 
    I've searched all over for an "access denied" java error (related to CF web services) discussion and have found nothing.  Any ideas as to how to troubleshoot where in this chain a java.io.FilePermission error might be triggered would be greatly appreciated!!
    Message was edited by: CFsolar
    Case solved. It turns out that this is totally a Hostek issue.  After exhausting all other options (including uninstalling and reinstalling java), it was a setting on the security sandbox that caused the error.  Well at least this will be out there for anyone else working with webservices and Hostek!

    Did anyone ever resolve this issue as I seem to be having the exact same issue???

Maybe you are looking for

  • HP Pavillion will not boot up everytime

    We dont use this desk to to often, but we turned it on, fans came on,  sounded like somthing eas startingt to boot. and then nothing black screen.  after a little while of turning it off and on it booted up, was able to update virus software and wind

  • Copy photos from DVD to Mac?

    I would like to copy photos from DVD to Mac computer anyone know how to do it.

  • ZCM 11-TP: device names always in lower case

    Hello, I'm just wonder why ZCM registers all linux device names in lower case, independent if the host name on the device itself is written in upper or lower case. Is this how ZCM did it all the time or is there a specific reason for this ? Rainer

  • Video clip

    Impossible to play video clips in music -> video clip. I have just a screen of the clips with music in background on My Ipad 2 with IOS 5 no problem with my iphone 4 on IOS 5...

  • Problem downloading pdf files

    I would like to learn more about IAS High availability, so I'm looking at page http://technet.oracle.com/products/ias/hi_av/content.html. I don't seem to be able to download ttp://technet.oracle.com/products/ias/pdf/firewallLoadbalancer.pdf. After 2/