Function to change status of the STS (Status and Tracking System)

Hi experts,
do you know a way to execute a function that changes status in the STS hierarchy?
We have a web interface with a BPS layout in it, and want to change the status of the STS according to the legal entity that has been changed as soon as a user clicks on a button.
Do you know a way (function or sth else) to do that?
Any hint will be greatly appreciated!
Thanks in advance,
Thomas

Have a look to these badis: CRM_ORDER_AUTH_CHECK (for authorization purposes), and CRM_ORDER_SAVE (To check the changes at save).

Similar Messages

  • Changing Look and Feel - BPS status and tracking system

    HI,
    I 'd like to know if there is a way to customize the web page that appears when you launch the transaction BPS_STS_START (Starts BPS Status and Tracking System). I believe that it's an automatically generated page, that takes from somewhere an html template. Is there a way to change that html template?
    For example, how could I insert a logo, insert titles, change fonts, etc.
    I 'll appreciate if somebody send me some related documentation.
    Thanks in advance.
    Cristian.

    Hi Christian,
    the STS is a BSP-Application(have a look at TA SE80).
    You can copy this BSP to your own customer-namespace(YTUNGUSKA) and you can change all pages and views you would like. You can integrate other stylesheets, logos or you can modify the logic of events triggered by buttons and so on. Please note: If you copy the TUNGUSKA you cannot use anymore the TA BPS_STS_START cause it only will start the BSP TUNKUSKA(its hardcoded), build up your own transaction.
    Hope it helps
    Bye Gil

  • Status and Tracking system (STS) with BI Integrated Planning ?

    Hi, is posible get some images or demo for show my clients ?
    i am reading Salp Help
    http://help.sap.com/saphelp_nw04s/helpdata/en/b6/92bc7479fb11d5b3df0050dadfb23f/frameset.htm
    and say :
    You can use the BW-BPS Status and Tracking system (STS) with BI Integrated Planning. This is useful if you are already using BW-BPS with the Status and Tracking system but want to use additional functions from BI Integrated Planning.
    What is additional functions from BI Integrated Planning ?
    Is posible write free text in some areas for planning and option for look from high levels ?
    Is posible Insert in the proces STS to <b>"Area Manager"</b> only for look status the Planning (open, in process or finishing) ?
    General manager --> Lock when is finishing.
    <b>Area manager</b>--> only look status the Planning ?
    Submanager of area --> Responsable, Aproval, etc.
    planning1
    planning2
    planning3
    planning4
    planning5
    Submanager of area : Planning TOO.
    Thank you ... This is important info and get some images the last version in STS working in web mode, for my client buy the product.

    Hi Bala ,
    Yes you can use the STS for BI IP also and you need to configure the Planning level and sub plan area and follow the steps to set up STS.
    STS still has BPS flavour and can be used in IP.
    Hope this helps
    Raja

  • ColdFusion 11: allowedextforinclude functionality has changed. But the docs haven't been

    G'day:
    I am reposting this from my blog ("ColdFusion 11: allowedextforinclude functionality has changed. But the docs haven't been") at the suggestion of Adobe support:
    @dacCfml@ColdFusionCan you post your queries athttp://t.co/8UF4uCajTCfor all cfclient and mobile queries.— Anit Kumar Panda (@anitkumar85)April 29, 2014
    This particular question is not regarding <cfclient>, hence posting it on the regular forum, not on the mobile-specific one as Anit suggested. I have edited this in places to remove language that will be deemed inappropriate by the censors here. Changes I have made are in [square brackets]. The forums software here has broken some of the styling, but so be it.
    G'day:
    Remember this one: "ColdFusion 11: preventing files from being included? [WTH], Adobe?". I can confirm this verymoderatelyslightly contentious feature has been changed in ColdFusion 11, but the docs have not been updated to reflect the change.
    The issue is summarised thus (from the article linked-to above):
    [...]out of the box ColdFusion 11 will only allow the inclusion of CFML and HTML files. Why? They cite "for security reasons". Here's a quote (posted in the bugtracker, originally from the pre-release forums):
    "Vamseekrishna Manneboina: Yes, this was done as part of a security measure. You can now only include CFM/CFML files by default. You can specify additional extensions via a property called allowedextforinclude in neo-runtime.xml. By default, HTM and HTML file extensions are already added to this list/property, thereby allowing for inclusion of HTM and HTML files too by default."
    OK, I disagree there's merit in this, some others agree, others disagree. But... so be it. I actually thought - if I was in a charitable mood - that the people that were "for" this change made a reasonable case for its inclusion, so - whilst not agreeing with them - I was content to just shrug and go "yeah, oh well".
    Now this feature is still in the docs: "New in ColdFusion 11 - Restrictions", but this is not the way it now works. Initially I thought it had been removed completely (and I am now in the midst of retooling this article from saying that... as I only worked out what was going on 2/3rds of the way through writing it).
    I did a secure install the other day, and one of the first things I tested was this:
    <!---test.cfm---> <cfset message = "before"> <cfoutput> #message#<br> <cfinclude template="code.inc"> <cfset message = "after"> #message#<br> </cfoutput>
    <!--- code.inc ---> <cfset message="within"> <cfoutput> #message#<br> </cfoutput>
    And this all runs fine, as one would expect:
    before
    within
    after
    Next I checked neo-runtime.xml to see if the settings had been augmented to switch this off by default: but I'm buggered if I can see any reference to it anywhere.
    So I then checked ColdFusion Administrator to see if there was any hint of it there, as this was one of the things Adobe said they were going to do in their solution to this. And there it is:
    So by default now, anything is allowed. I figured I must have missed the setting in neo-runtime.xml, so changed the setting to "FOOBAR" so I could easily spot it, and there it is down @ /wddxPacket/data/array/*[16]/var[@name="compileextforinclude"] in neo-runtime.xml:
    <var name="compileextforinclude">    <string>FOOBAR</string> </var>
    And - having changed it back to something sensible: CFM, then the feature now "works":
    before
    #message#
    after
    However this is probably a worse security hole than the one they were trying to fix! It looks OK when looking at the render in the browser, but look at the actual raw mark-up:
    before<br> <cfset message="within"> <cfoutput> #message#<br> </cfoutput> after<br>
    We have unparsed CFML source code sent to the browser. This is awful. What if someone switches this on, and doesn't spot one of their old includes which has less-than-trivial CFML in it? It's now publicly accessible. Adobe have created a feature which has the possibility to leak source code to the outside world. How is that a security feature?
    Also interesting is that with the super-secure profile installed, this is still off by default? I would have thought it'd be on in this case?
    I still don't think this feature has been implemented properly, and it all still points even more to the fact the Adobe ColdFusion bods don't really know what they're doing.
    Anyway, I'll nudge Adobe to at least get the docs sorted out.
    Time for work (3min ago)...
    Adam

    Hi Adam,
    Regarding "What if someone switches this on, and doesn't spot one of their old includes which has less-than-trivial CFML in it?", yeah I agree that'd be a problem.  Hmm, maybe both this.allowedextforinclude *and* this.compileextforinclude should've been supported (instead of replacing the former w/ the latter as was done)?  Example:
    this.compileextforinclude="cfm,cfml,inc";
    this.allowedextforinclude="cfm,cfml,inc,txt";
    That way an exception could be thrown if cf|included file's extension wasn't in the this.allowedextforinclude list.
    Perhaps the above could be shortened to:
    this.compileextforinclude="cfm,cfml,inc";
    this.allowedextforinclude="txt";//implicitly includes * from this.compileextforinclude (since -compile- implies -allowed-)
    Dunno if that'd be confusing.
    Anyhow, just some thoughts..
    Thanks!,
    -Aaron

  • In the new iOS-7 Safari, has the "reader" function been changed to eliminate the option to modify font size (and hence to modify the number of words per line), or is it just that I can't find how to do that?

    In the new iOS-7 Safari, has the "reader" function been changed to eliminate the option to modify font size (and hence to modify the number of words per line), or is it just that I can't find how to do that?

    iOS 7
    Seperate text size modification is no longer available in Safari Reafer.
    Use Settings.
    Settings >General > Text Size

  • Hi Im using os 10.7.5 and i can't see the progress status in the launch pad and in purchase tab in mac app store. PLEASSSSSEEEE HELP!

    Hi Im using os 10.7.5 and i can't see the progress status in the launch pad and in purchase tab in mac app store. PLEASSSSSEEEE HELP!

    HI guys! can anyone help me with this?!?

  • BAPI/FM for setting the user status for the Project definition and WBS elem

    Hi,
    I have to set the User Status for the Project Definition and the WBS elements in that project.
    The User status to be set is the same for the project and wbs elements.
    Please let me know if there is any BAPI/FM to set the user status..
    Thanks in advance.
    Regards
    Shiva

    Hi Shkithija,
    There is a dump encoutered in the form "PS_FLAG_GET_GLOBAL_FLAGS" for 'chk_precommit_ok' in the "BAPI_PS_PRECOMMIT".
    But it is showing SY-SUBRC = 0 when used along with BAPI_TRANSACTION_COMMIT.
    May i know what are input parameters we need to pass it to "BAPI_PS_PRECOMMIT".
    Do you have any idea.
    Please let me know
    Regards
    vishnu

  • Status and Tracking System Authorization Objects

    Hello,
    I'm having questions on how to create roles for users to access the Status and Tracking System.
    I've assigned the following Authorization Objects to my user
    R_STS_PT
    Activity: 16 Execute
    Subplan: *
    Planning sequence: *
    R_STS_CUST
    Activity: 16 Execute
    R_STS_SUP
    Activity: 16 Execute
    And still when i try to execute STS (T-Code: BPS_STS_START) or Customize (T-Code: BPS_TC) i get an error saying "Without Authorization for the transaction BPS_STS_START" and "Without Authorization for the transaction BPS_TC"!
    Can anyone help me, please! Waht am i missing?
    Thanks

    Hello Stephen
    Thank you very much for the help.
    Still i have some other questions that you or someone can help me.
    By now, my Planning Coordinator can already access to BPS_TC, and my Planning Responsible access to BPS_STS_START.
    The "normal" users must onle have the Authorization Object R_STS_PT.
    I still have this issue that i'm not getting at.
    I have created a user where i've assigned total access to Execute STS and Customizing.
    Assigned the 2 transactions BPS_TC and BPS_STS_START and gave them the Auth. Objects R_STS_SUP and R_STS_CUST.
    Issue: When my user tries to "Define Subplan" and "Define Planning Session" i get this error:
    "No maintenance authorization for requested data
    Message no. SV052
    Diagnosis
    You have attempted, in change mode, to access data for which you have no authorization."
    Can anyone help me on this please.
    Thanks
    Vitor

  • Session Out Error in Status and Tracking System (BPS) Execution

    Hi,
    I am getting the Session timed out error in Status and Tracking System (Open Planning). The reason I found is:
    In STS (Configuratioin) the web link that I have added is valid for one time. Meaning that ever time I visit Web Interface Builder (Execution), it is generating a different web link. Therefore, it is only valid for a single time.
    Is there any way, that I can make the web string that is generated every time I visit Web Interface Builder (Execution) for a particular report, so that I can use that web link in the configuration of STS (Open Planning). In this case the web link every time that generated is dynamic.
    But, this is not the case with Open Report. I prepared a query and attached the web link of the query into (Open Report). The number of times even if I open the report, there is no issue as the web link is static.
    Any inputs on this will be appreciated.
    Regards,
    Ravi

    Hi,
    This has been solved.
    In STS Configuration the web link (URL) that is to be inserted is not the web link that has dynamically generated. However, it is the web link (URL) on the Web Interface Builder (WIB) - Property - URL BSP Application.
    If you use this URL in the STS (Open Report), this will ask the User for User ID and Password to reach that Web Planning Layout and a dynamic code will then be generated. Every time, user visits it generates new dynamic URL.
    Anyway, Thanks in advance.
    Regards,
    Ravi

  • Status and Tracking System Documentation

    Hello Experts,
    I have decided to implement Status and Tracking System.
    Besides the SAP Help i don't have any other documentation.
    Could you send me all the documentation possible to [email protected]
    I will award points.
    Best regards,
    João Arvanas.

    Joao,
    There was a document / presentation on status and tracking by Gerd Schoeffl from the RIG that got officialized into the following how do guild
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/c04de690-0201-0010-919d-c64ad7e5af8a
    Check SDN and OSS on STS or "Status and Tracking"
    Hope this helps,
    Mary

  • Status and Tracking System and JAVA AS

    Hello!
    Is it possible to run STS (Status and Tracking System) and BW-BPS without JAVA AS?
    Regards
    Alex

    Will it work not in 3.5 but in NW2004s?
    I'll try to clear situation: we are upgrading SEM 3.1B to NW2004s BI
    It worked in 3.1 but now get errors:
    Diagnosis
    The system was not configured for SAP logon tickets:
    At least one of the two parameters login/create_sso2_ticket and login/accept_sso2_ticket currently has the value 0.
    System Response
    It is not possible to use SAP logon tickets.
    Therefore, there is also no single sign-on support when using SAPGUI HTML Control and calling local ICF services (see SAP note 612670).
    It looks like integration between JAVA and ABAP.
    That's why I want to know - should I try to solve this problem without JAVA ot it's impossible?
    I saw similar problem in another message (Status and Tracking System and JAVA AS), but it's still not answered
    Best Regards
    Alexey

  • Sap (Status and Tracking System) manual.

    Hello I already researched to find a user manual of Sap (Status and Tracking System), where everything´s explained step by step, and how to use the STS to, but I didn´t find any, does anyone can help me? Thanks
    Best regards,
    MJ

    Hi,
    You can find the STS user manual learning guide in the following mentioned link:
    http://help.sap.com/saphelp_sem60ep1/helpdata/en/05/242537cedf2056e10000009b38f936/frameset.htm
    This link would help you in understanding STS wrt BPS.
    Hope this helps.
    Pls award points.
    Regards,
    Poonam

  • BPS Status and Tracking System

    Hi,
    I am trying to configure the status and tracking system in BW BPS. Can somebody please let me know if there is any documentation on STS?
    Regards,
    Daya

    HI
    Check these links
    http://help.sap.com/saphelp_nw04/helpdata/en/b6/92bc7479fb11d5b3df0050dadfb23f/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/0f/969340a966b80ee10000000a155106/frameset.htm
    Documents in STS
    http://help.sap.com/saphelp_nw04/helpdata/en/0f/969340a966b80ee10000000a155106/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/26/fe7b4070ebd462e10000000a155106/content.htm
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/documents/a1-8-4/how%20to%20use%20sap%20gui%20planning%20folders%20with%20the%20status%20and%20tracking%20system.doc
    Regards
    N Ganesh

  • Present Status button  is unusable  in Status and Tracking System

    Hi everybody:
      In Status and Tracking System  the   Present Status is unusable. It involved  set for processing ,send for approval and retrieve .  They are all unusable. They are not  locked, but are gray !
      why ??
       thanks!

    What sort of user is this for? If a Super user, press the Edit button first.
    If another user, or this action does not enable the buttons, probably another user is blocking. Click on the 'status' link to check.
    Sephen

  • Report for abserving changes made to the customer master and moniter

    Report for abserving changes made to the customer master and moniter and detail
    Please send with t. code.

    Hi Dhari,
    Well the requirement seems very simple but its not as simple as it looks.
    i have an idea not sure whether it gonna work or not. you need to build a history cube as if i understand your requirement then for any selected period you wanna see the change in wage type or pay rate for each employee if any.
    1. pick up an cube that builds on emp transaction data.
    2. add the 0empoyee Md, wage type and pay rate from MD to the cube and fill the cube
    3.so now every day or in scheduled time interval the MD will load and the corresponding the TD will be loaded to the cube.
    4. create a info object say indicator and add it to the cube
    5.while loading the data to the cube everyday in tranformation check if for same employee there is a change or not in the wage type and pay rate. If so set the indicator to 1.
    4.now build one more cube for holding the changed records from this cube and call it say zhrchange
    5. now pull the date, year and related emplyee information for the emplyee to the zhrchange for those with indicator 1.
    6. before the next load happen, rememrbe to set the indicator to 0 before checking the conditoin in the transformation routine , so that only if the conditoin satisfy then only it will be 1 else it will be 0.
    now the cube zhrchange has all the changed records with time stamp and you can base your query on that to get the changed values in specific time period
    hope this helps.

Maybe you are looking for