Time buckets edit/display mode

Hi
We have requirement as first two time buckets of the planning book would be in editable mode to the user and from the 3rd bucket onwards the time buckets should be in display mode.
How can we make the portion of the future time buckets as editable ?
Thanks & Regards
KPN Murthy.
Edited by: p narasimha murthy konidena on Mar 24, 2011 1:59 PM

KPN
Look at the SAP help here:
http://help.sap.com/saphelp_scm70/helpdata/EN/4b/755bee3bf75a18e10000000a421937/frameset.htm
Look at SAP standard Macros in Macro book 9AEXAMPLES.
Rishi Menon

Similar Messages

  • Determining Edit/Display Mode from Within Freestyle Component

    I am new to FPM.  We are running ESS.
    I have enhanced a new Web Dynpro Component onto an Edit page of an OVP (as a Freestyle Component).
    I want the new WDC to behave differently based on the mode I am in.
    How, from within the new WDC, can I tell if I have entered the Edit page in Edit (pencil) or Display mode?
    Thanks...
    ...Mike

    Hello Mike,
    Firstly, welcome to the wonderful world of FPM
    Well, usually with FPM, you have an Edit (or Read-only) button in the top, underneath the title (Identification Region, IDR). This, being standard, has some standard FPM events behind it.
    In your freestyle WD component, you implemented IF_FPM_BUILDING_BLOCK interface, and with it you have some additional methods in your COMPONENT CONTROLLER, such as FLUSH, PROCESS_EVENT, and so on...
    In your PROCESS_EVENT method, you can basically catch all FPM events at application level. Usually you have a big CASE, something like:
    case io_event->mv_event_id.
         when ...
         when 'FPM_EDIT'. "you can find some constants behind CL_FPM_EVENT=>GC... Right now I'm not sure how it's called exactly. But it's advised to use this constants!
              You can write your code here in order to change the behavior, basically, you can do whatever.
              also, it's the same with 'FPM_READ_ONLY'
         when others.
              return.
    endcase.
    I strongly recommend you download the latest version of FPM Cookbook, or the one that is suited with your SAP NW version.
    FPM Developer's Handbook SAP NetWeaver 7.03/7.31 SP4
    Hope I made things a little more clear!
    Tudor

  • Time bucket not displaying in planning book

    When I opened planning book, the time bucket is not displaying as it used to be. I tried to select CVC to be displayed in the planning book and got the following error message:
    @5C\QError@     Insufficient information about read period transferred
    @5C\QError@     Error reading data - Planning book cannot be processed further
    Insufficient information about read period transferred
    Message no. /SAPAPO/TSM231
    This internal error should not occur during normal processing. However if this message is displayed, contact your system administration or the SAP hotline quoting the message number.
    Any idea what went wrong?

    Hi Nic,
    Either someone deleted the time bucket profile, or else the periodicities in the time bucket profile are not in line with the periodicity allowed in your planning area.
    Go to Advanced Planning and Optimization-> Demand Planning -> Environment -> Current Settings -> Maintain Time Buckets Profile for Demand Plng and Supply Network Plng, or directly use the tcode "/SAPAPO/TR30".
    Check that your time bucket profiles ZDP_PBP_9Q & ZDP_PBP_5Q exist by using F4 help, and also select them to see what periods are used in the time bucket profile e.g. weeks, days, etc.
    If you don't find the time bucket profile, then they need to be created (based on names, my guess is that *9Q will contain 9 quarters, and *5Q will contain 5 quarters). I expect that issue lies here itself.
    If time buckets profile exist, then check the following:
    1) Go to /sapapo/msdp_admin, select your planning area. See the storage bucket profile name in the "info" tab.
    2) Go to /SAPAPO/TR32  (Periodicities for Planning Area). Give the name of the Storage bucket profile that you see in 1.
    3) Check what periods are used in storage bucket profile.
    4) Storage bucket profile needs to have lower periods maintained than the time bucket profile. e.g. assuming that your time bucket profile has quarters, then you need to have at least quarter maintained in storage bucket profile. Even if you have day or week or month selected in storage bucket profile, it's ok because these are smaller periods than quarters what you have in time bucket profile.
    Also make a note if "post period" is checked. Note the name of "fiscal year variant" if that is maintained along with this tick. I hope you don;t need to go further but if above don;t resolve your issue, then we need to check the fiscal year variant.
    Thanks - Pawan

  • Make only the new row in a table editable and other rows display mode.

    Hiii all,
    I am working on the component GSWISET, there is a table view for substitutes, the requirement is to show all the rows in the table view in display mode. Whenever the user clicks the button (Add employee), a search popup triggers and the user selects an employee from that and it will come as a new row in the table view. Here I need to be able to make only the new row editable and all the other rows in display mode.
    Could you please suggest a way to achieve this. Thanks for your time..

    Hi,
    Try with  the code below in.htm page
    data: lv_displaymode  TYPE string.
      IF controller->view_group_context->is_view_in_display_mode( controller ) = abap_true.
        lv_displaymode = 'X'.
      ELSE.
        lv_displaymode = ' '.
      ENDIF.
    if lv_displaymode = 'X'.
    <chtmlb:tableExtension tableId = "Substitutes"
                           layout  = "FIXED" >
      <chtmlb:configTable actions               = "<%= controller->gt_button %>"
                          id                    = "Substitutes"
                          onRowSelection        = "select"
                          selectedRowIndex      = "<%= substitutes->SELECTED_INDEX %>"
                          selectedRowIndexTable = "<%= substitutes->SELECTION_TAB %>"
                          table                 = "//Substitutes/Table"
                          width                 = "100%"
                          selectionMode         = "<%= substitutes->selection_mode %>"                    
                          visibleFirstRow       = "<%= substitutes->VISIBLE_FIRST_ROW_INDEX %>"
                          usage                 = "ASSIGNMENTBLOCK"
                          headerText            = "<%= controller->gv_header_text %>" />
    </chtmlb:tableExtension>
    else.
    <chtmlb:tableExtension tableId = "Substitutes"
                           layout  = "FIXED" >
      <chtmlb:configTable actions               = "<%= controller->gt_button %>"
                          id                    = "Substitutes"
                          onRowSelection        = "select"
                          selectedRowIndex      = "<%= substitutes->SELECTED_INDEX %>"
                          selectedRowIndexTable = "<%= substitutes->SELECTION_TAB %>"
                          table                 = "//Substitutes/Table"
                          width                 = "100%"
                          selectionMode         = "<%= substitutes->selection_mode %>"
                          allRowsEditable       = "TRUE"
                          visibleFirstRow       = "<%= substitutes->VISIBLE_FIRST_ROW_INDEX %>"
                          usage                 = "EDITLIST"
                          headerText            = "<%= controller->gv_header_text %>" />
    </chtmlb:tableExtension>
    endif.
    Regards,
    Gangadhar.S
    Edited by: gangadhar rao on Dec 24, 2010 12:49 PM

  • Key figure display in planning book with respect to Time bucket profile

    Hi,
    I am loading a key figure to planning area from the info cube for the current month. When I review the key figure in planning book with monthly time bucket profile it shows 85 for the current month. In the same planning book with weekly bucket profile, it shows 55 from the current week and future weeks and the remaining 30 goes into the past weeks of the current month.
    How to make the total quantity 85 to show in the current and future weeks only.
    thanks and regards
    Murugesan

    Hi Murugesan,
    Within the Planning Area, the data is stored at the lowest level granularity that you maintain in storage bucket profile. Then during display, system will decide what data to show depending on what kind of time bucket profile you use in the planning view, and the time based disaggregation that you maintain for Key Figure.
    In this below case, what time characteristic do you have in cube? Is it date, week or month?
    If it's date, check how much KF data is maintained on the dates which belong to week which has days both in this month/last month e.g. if I talk about Dec 2011, how much data is stored 1,2,3 & 4 th of Dec, 2011.
    This data would appear in Dec in monthly view, but in week, it would appear in the week starting 28th November.
    If data is maintained in cube in weeks, then you need to calculate how time based disaggregation would show it to you in months.
    If it's months, then you would need to find out how much data would go to the days in the past week of the month.
    The time based disaggregation may be causing you some issues, but in that case, I would not expect 30 out of 85 to go in the past week, unless you have data in cube in days.
    Data shown in weekly view for week starting 28th Nov should ideally be a small proportion of 85, unless you are using a time stream/fiscal year variant, due to which most of December is in holidays.  The only other exception I can think of is that you have data in teh days mentioned above.
    It would be best to help the business understand this disaggregation logic, rather than thinking of manipulating the data to shift to a later week.
    If this logic doesn't explain your situation, then please provide the date/week/month at which you have data in cube, and what quantity.
    Thanks - Pawan

  • Item field to non-editable mode(display mode) in Purchase Order(ME22n).

    Hi SDN,
    Based on the Comany code i need to modify the item level fields like <b>Item, Account Assignment, Material</b> to non-editable mode(display mode) in Purchase Order(ME22n).
    So i modifed in the method MODIFY_SCREEN_TC_LINE of class CL_TABLE_VIEW_MM and set the value L_FIELD_STATUS = *  for the screen filed MEPO1211-EBELP. When i execute, the whole column changed to display mode and the empty rows filled with 0(zero). But i want only grey mode for the line items that are present for that PO but not for the whole column. So can any one guide me to do so. I am using 4.6c.
    Thanks in Advance
    Regards
    Basha

    Hi Ramesh,
    Normally you can change the currency field, after entering information in Data base's table, go to Detail's table and change the rate as you want, then directly choose your PO number.
    so the system accept the rate entered aven though the PO had another rate.
    Regards.

  • Condition record in display mode (Non editable)

    Hi,
    We have upgraded our system from 4.7 to ECC 6.0.
    In ECC 6.0 We have below condition types in case of India import having
    different delivery vendor (Customs.) other than supplier.
    1.JECV 2.J1CV 3.JADC 
    In old version it was not there.
    Now ,for old pending Import POs vendor tab is in display mode,while in case of new import PO I am able to edit the vendor.
    Please guide  me , why the old import POs are not editale and t
    Regards,
    Gitesh
    Edited by: gitesh mahamuni on Nov 1, 2010 12:16 PM

    Hi SAP FC ,
    PO is still not processed , also neccassary changes done to condition types like : C Manual entry is priority.
    Is there any note for above.
    Regards,
    Gitesh

  • Switch between Edit and Display mode in an input layout?

    Hi,
    I want to create a button in my planning layout which is input ready,  that makes it able to change between display mode and edit mode.
    I'm on BI 7.0. And I am using Analyzer/Workboook.
    Is this possible using 'SET_DATA_ENTRY_MODE' command?
    If Yes,  Where should I put this  command ? I can't  find this in Button Properties.
    Please explain in detail.
    Thanks,
    Srini.

    Hi,
    This is the correct command. In the button properties, you need to select 'command via command wizard'. There you should select this command and customize it according to your requirement (on/off).

  • Change from edit mode to display mode

    Hi ppl
    In transaction CO11N , I want to change the quantity (COWB-ERFME) column of a table control
    from edit mode to display mode. I created a badi implementation for WORKORDER_GOODSMVT.
    This gets triggered before the screen with quantity (COWB-ERFME) is displayed. How to code, to change the column from edit mode to display mode.
    I tried using transaction variant and it is working , but I want it to be plant specific. So I m trying badi.
    Need ur help to go abt the coding

    Hi
    U make sure a method of the BADI WORKORDER_GOODSMV is called in PBO while looping table control, if it's so u can use the statament LOOP AT SCREEN.ENDLOOP:
    LOOP AT SCREEN.
      IF SCREEN-NAME = ....
         SCREEN-INPUT = 0.
         MODIFY SCREEN.
      ENDIF.
    ENDLOOP.
    Max

  • Performance Issues with Debugging even in Display Mode

    Hi not certain if this would sit in Security, ABAP or Basis, but lets start here as it is security related.
    S_DEVELOP with any activity on DEBUG on a production system is a concern, but what are the performance related issues when a super user has to go into debug in display only on a production system because of a really complex issue?
    I've heard in the past of a scenario where system performance was impacted, and we have notes around the allocation of S_DEVELOP display DEBUG access to this point. (I've summarised these below)
    The risk with debug is associated with the length of time that the actual debugging process is being performed.
    u2022     Work processes are dedicated solely to the users for the duration of the debug. If these are being performed for a long time, these can cause issues with not enough work processes being available.
    u2022     It can cause DB2 locks. If the debug session last awhile, DB2 locks are not released. This impacts the availability of tablespaces, thus, affecting various transactions running across the system.
    Even with these concerns, security will often get asked for debug display access.
    As security is about risk identification, assessment and then controlled access what do other organisations do?
    Options (not exhaustive) are "No Debug ever" or "Debug display only via a fire fight or super user on a time limited basis".
    We are currently in the "debug display only via fire fight" camp, but would like to canvas opinion on this.
    As one of the concepts of security is Availability of data (and to an extent ensuring the systems are up and running) do the performance risks push the security function to the "No Debug Ever" stance.

    If you need to debug in production, then 9 times out of 10 you need to do root-cause analysis: The developer is the problem.
    Writing sloppy code and not testing properly should not be an excuse for debugging in production.
    But of course, there are exceptions even when you do try to keep them to a minimum.
    To add to Jurjen's comments, also note that the debugger only has a limited capability of doing a rollback. So you can quite easily and unintentionally create inconsistencies in the system - also in display mode - which is an integrity problem, and typically more critical than availability problems or even potential confidentiality concerns.
    Cheers,
    Julius
    Edited by: Julius Bussche on May 15, 2009 10:50 AM

  • Sold TO party in display mode

    Hi All,
    Its a fresh impleemntation and We have created new sales document type, maintained proper sales area no incompletion procedure is assgined
    at VA01
    we r giving order type
    Sales area
    ENTER
    till this time its working fine
    but Sold-to-party and ship-to-party is in display mode
    can you please advice why it is in display mode

    hi vishal,
    goto SPRO - SD - set up partner determinatin procedure- set up PDP for sales document header & select your PARTNER DETERMINATION PROCEDURE & check  partner determination procedure assignment - which determination procedure is assigned to it.
    balajia
    Edited by: balaji timmampalli achari on Dec 21, 2010 4:58 PM

  • Ship-to-party field in display mode in TC va02 for some users.

    Hi Sap Gurus,
    My client requirement is this ,he wants the ship-to-party field in TC Va02 to be in display mode for some lower level user and at the same time she wants the ship-to-party field for higher level users to be editable.
    Can anybody tell me how to do this .Va02 TC will be given to lower level users where they will be able to edit other fields except ship-to-party.
    Thanks N Regards,
    Siddhartha

    Hello Siddhartha ji,
    I think you can proceed in this way:-
    Create TCode zva02 by copying from VA02 .
    Then Create Screen Variant and assign that screen variant to transaction variant .
    Then Create Variant Group for that Tcode and then assign this variant group to those particular users.
    Even you can proceed with out creating the ZVA02 Tcode.
    All Will be done in SHD0 TCode.
    @ others :- i am basicaly into ABAP...so I may be wrong...pls Help him out ..
    Regards,
    jeevan kumar Medimi.

  • Change item category Display mode  in sales order (Third Party )

    Hi all,
    I am creating sales order with reference to sales contract but at the time of sales order we don't have enoff stock to deliver to customer , so we have deiced to Third party sales process
    But the problem is while creating a sales order with reference to Sales contract the line item of the sales order in grad Mode ( Not changeable mode )
    Can any one guide me how sales order line item should be in active mode  so i can change the Item category as a TAS third party item category
    Help me regards this
    Thanks
    Rajesh

    Hi all.
    Thanks for response
    I maintain all configuration, But the problem is while creating Sales Order with reference to Contract
    the Sales Order line item in grad Mode i am unable to change item category as TAS
    i mean TAN is on Display Mode
    and we are using Varient config  for that material
    Please guide me where i need to Configure so system should allow me change item category in sales order please guide me
    Thanks
    Rajesh
    Edited by: RAJESH KUMAR on Jun 16, 2009 10:23 PM

  • List editing display

    hi
    guys i have few queries
    1/ when i put any fied apart some standard field like plant,planner group,oredertype or notification type like iw38,iw28 or 29 or in il03,iho6
       i am geting error
    NO OBJECTS SELECTED   WHAT DOES IT MEAN AND WHY IT COMES
    2/IN CONFIG, THE SETTING FOR LIST EDITING I COULD NOT UNDERSTAND WHAT IS IT FOR
    like
    1/ influencing field
    2/fielsd selection and other tabs
    i go through several times in sap help but i could not find what is the purpose
    many times i get reply dont do any setting change on this      
    why and how can we use all list editing in a better way
    thank you

    hi
    iw39 is for slecting the order in display mode for the required parameters for example you can execute the search based on the order details,general data/adminstrative data/location data/account assignment .
    you can select the select based on the specific inputs , if the inputs are not matched then it will show No objects were selected
    selection screen display./change mode you have different transaction for different transaction you can have different slection parameters, for this you can create your own variant
    influencing is nothing but you are specifying with respect to some field,for example as i said before if you want to make the manufacture field mandatory then you can influence that field with repsect to equipemnt category,object type ie you can make the field mandatory for particular equipment catefory say M or Q
    regards
    thyagarajan

  • Price in P.O should be in Display mode while refering contract

    Hi Experts,
    I created a contract with material X and unit price Rs. 10.
    I am creating Purchase order refering the above contract. Now the price adopted from the contract is in changeable mode.
    I want the price should in non changeable mode ( display mode).
    Have you come across any configurations, BADIs and etc??
    Thanks in advance for your time and suggestions
    Kr
    Senthil

    Hi Nazrin,
    Thanks for your quick reply..
    I already tried this option, If we change the field selection as display mode, system marks the price as display but still in item tab PB00 is editable.. If we change PB00, it automatically changes the price. so the later one defeats our purpose.
    I know we can change PB00 condition type as unchangeable in Config but I think its not advisable to change the condition type. Or we need to create a new condition type for this scenerio which is again is headache..
    Is there any other way or exits available? P.O price should in display while refering to a contract.
    Thanks in advance
    Senthil

Maybe you are looking for

  • How do i get the option for Bypassing when i get a "this connection is not trusted"? This is my company SSO sign on web site

    the only 2 options i have are: Get me out of here and Technical Details. The documentation shows a third option to bypass, but this is not available to me. I am trying to get an SSO passed into a website that uses my corporate SSO in our SaaS subscri

  • X200 Vista to Windows 7 Clean vs. Upgrade - Software License Concern

    I bought an X200 with Vista (before the free upgrade) and have now purchased the Windows 7 upgrade software.  Most of the tech forums recommend a clean install instead of an upgrade.  Should I worry whether the software I have purchased (e.g. MS Offi

  • XI - Jump starting

    Hi guys, Iam new to XI and while going through all the books & courses,I have some questions in my head which needs to be cleared. Its quite a few questions.Would appreciate if some one has the patience to go through it all [1] How is the plain Http

  • Groups and Importing Addresses

    I would really like to meet, in person, the perverse people who write Apple's Help files. I went to Help to figure out how to create address groups. Help told me I could, indeed, do this: Open Address Book and then go to Address Book Help. Of course,

  • IChatAV with WRT54GS

    I am having an odd difficulty. I am not able to connect with another user using iChat AV (audio and video, text ok) if the user on the other end has a linksys router. Previously, I was able to connect to user when user had D-Link. Both ends have the