How to make Charc into time dependant

Hi Gurus,
i have a Characterstic like A which dont have any attributes but i want to make it time dependant when i right click and select change i don;t find any option...to make it timedependant...
so i want to know is it possible if yes plz suggest me
thanks in advance
harish

Hi harish
Can u elaborate more ur question
what whether matno is changing with time?
Check these links also
http://help.sap.com/saphelp_nw04/helpdata/en/80/1a634be07211d2acb80000e829fbfe/content.htm
http://help.sap.com/saphelp_nw04/helpdata/en/13/c3e7379899d06fe10000009b38f8cf/content.htm
may answer ur question
regards
NR

Similar Messages

  • Extraction into Time dependent info object

    Dear all,
    In r/3 the field is time independent and want to extract the data into time dependent infoobject in bw.
    what is the procedure to do it.
    Regards,
    BPNR.

    Hi BPNR,
    You have two options:
    1. Make the info-object time independent and pull the data from R/3.
    2. Hard code the Date to and Date from fields in the infopackage to extreme values say 01/01/1900 to 31/12/9999 and extract the data from R/3.
    Hope this helps.

  • Trying to figure out how to make a countdown timer...

    Okay, so I finished my Java class for the semester (I got an A) =) and I'm trying to learn to make a countdown timer in my spare time. I just want something that I can add the date and time of what I'm counting down to into it and then just a simple GUI that sits on my desktop counting away. Of course the problem is I've never used time before in any of my assignments and so I'm really not sure how any of it should work. Anyone know any tutorials or methods/classes that could help me with something like this?
    Thanks

    I made something similar to that, it counts down in either seconds/minutes/hours/days to a specific date. I ended up doing a Google search and found a useful class called DateUtil that someone had written. It was very useful for doing all the nasty Calendar work and that kind of thing.
    Besides that, the GUI should be really easy, especially if you have already done a semester of Java. I used an uneditable TextField.
    Anyhow, I can put up some more detail if you need it, just ask.

  • How to make a one time payment

    My paypal account is low temporarily, how can I make a one time payment with a card?

    Hey there , welcome to the community!
    There's two ways you can do this:
    Buy a Spotify premium gift at a local store (if available) or online here then you can redeem it here.
    Or you can change your payment details to your card then have it process to it then you can change it right back to your Paypal through the same link.
    Let me know which way you decide and if you need any further help! :)

  • How to make this into a SWC?

    I have 1 movie clip and four buttons, along with a layer for actionscript. selecting evrything and going "convert to symbol - movie clip" breaks the application as the code cannot find the specified componets such as button 1, 2,3,4 and the movie clip.
    How do I take this project and make it into a swc so I can use it in flash builder? Publishing as is, as a swc, doen't work as I cannot then call it in flashbuilder because I have no class to call.

    select the on-stage objects only and convert to a movieclip symbol.  then copy and actionscript in the actions panel, go to your movieclip's timeline, click the first frame and paste that code into the actions panel.
    now find your new movieclip in the library, right click and click export swc.

  • How to make labview real time understand sequence context

    Does anyone know how to make Labview RT to understand teststand sequence context? My sequence context is defined as "TS.SequenceContext" as the screenshot in the attachment.
    If we need to point a VI for this Sequence Context then which VI from teststand to use? and do we need to add this VI to the Labview Projectr Explorer in RT System to build the project?
    I'm using Labview 2009 and teststand 4.2.1.
    Thank you very much
    Solved!
    Go to Solution.
    Attachments:
    LVRT_TS.SequenceContext error.doc ‏132 KB

    LabVIEW RT does not support ActiveX which is required for TestStand.

  • How to make Planned working time Override Substitution ?

    Dear Friends,
    The User wants to make Planned working time to always OVERRIDE / PREVELANT on substition.
    Is it possible ?
    Thanks,
    Sri

    Dear Friends,
    The User wants to make Planned working time to always OVERRIDE / PREVELANT on substition.
    Is it possible ?
    Thanks,
    Sri

  • How to use a BW Time-dependent Master Data with a UNX

    Hello All,
    I would like to use a BW master data which is time-dependant with WebIntelligence.
    My WebI query is based on a universe (not on a Bex Query). It seems that a relational universe des not support time dependent object.
    Has someone found a work-around to use these objects with an UNX ?
    BI platform = BI4.0 SP4.
    Thanks a lot.
    Regards,
    Sebastien

    Hello Jothi,
    thank you.
    (Unfortunately for me, it's not really the expected answer. )
    Regards,
    Sebastien

  • How to make net due date dependent on Payment Terms in credit memo FB75

    Hi Experts,
    In our system currently when we create credit memo using tcode FB75 system makes the invoive due immediately.
    We wanted to make this net due date dependent on payment terms given by us. Please let me know how can I achieve this..
    Please let me know if there is any user exit there or the configration path to achieve this...
    Regards,
    Vidya

    Hi,
    "vbdkr-zterm. is nothing but Payment terms
    *   Fetching Payment term details
        SELECT SINGLE * FROM t052 INTO w_t052 WHERE zterm = vbdkr-zterm.
        IF sy-subrc = 0.
          CLEAR i_faede.
          MOVE-CORRESPONDING w_t052 TO i_faede.
          MOVE: w_t052-ztag1 TO i_faede-zbd1t,
          w_t052-ztag2 TO i_faede-zbd2t,
          w_t052-ztag3 TO i_faede-zbd3t.
          i_faede-bldat = BKPF-budat.                         "this is Importnat posting date
          i_faede-koart = 'D'.
    *     Fetching Due date using Function Module
          CALL FUNCTION 'DETERMINE_DUE_DATE'
            EXPORTING
              i_faede                    = i_faede
            IMPORTING
              e_faede                    = e_faede
            EXCEPTIONS
              account_type_not_supported = 1
              OTHERS                     = 2.
          IF sy-subrc <> 0.
          ENDIF.
          w_invdate = e_faede-netdt.              "this field contains Net due date...
        ENDIF.
    Prabhudas

  • How to make INSERT INTO multitable

    Hello everybody, Could you please to explain me how can I make insert in both different table (SQLite)
    private void save_ButtonActionPerformed(java.awt.event.ActionEvent evt) {                                           
    try{
    String sql="Insert into employee, values(?) into department, values(?)";
    ps=con.prepareStatement(sql);
    ps.setString(1, txt_Surname_Last.getText());
    ps.setString(1, txt_Dep.getText());
    ps.execute();
    }catch(Exception e){
    JOptionPane.showMessageDialog(null, e);
    Edited by: 999667 on Apr 11, 2013 11:13 PM

    I suggest you insert into both tables separately, with both in the same transaction so you can rollback all changes if one of the inserts fails.
    Also, put all your code in a try/catch/finally block, and close the resultSet, preparedStatemnt, and connection in the finally block.
    You can search Google for examples of how to do the above.
    I also suggest you form the sql statments as follows
    String sql1 ="Insert into employee (employeeId,name), values(?,?);
    String sql2 = "Insert into department (departmentId,name) values(?,?)";

  • How to make x-scale (Time) readable?

    Hello,
    i pass a timestamp-array and measurement-array into an XY-graph.
    The only thing is now that the values of the x-scale or not very readable.
    How can i change this to something that can be read?
    Thanks for help
    Solved!
    Go to Solution.

    Use "Display Format" to change the numeric time stamp display to the desired format like hh:mm:ss.
    Norbert
    CEO: What exactly is stopping us from doing this?
    Expert: Geometry
    Marketing Manager: Just ignore it.

  • HT1766 If updating ios6 was not finish yet because of my connect to Internet was poor then how to continue and how to make shorter the time update?

    How to proper update iOS6 to 3GS if unfinished and how long its take to complete update? Because I can't finish yet due my Internet connection was poor, but   I try again to update and the time it make longer than the first time I tried?! Help pls! Thanks

    Get a better internet connection.

  • Netflix app. How to make the battery/time status bar disappear?

    When I watch a streaming movie on my iPad the little bar at the top of the window which shows wi-fi strength, time and battery status is constantly there and annoying. During one movie it disappeared and watching the movie was more enjoyable. I don't know why it disappeared and wondered if anyone has found a preference to make that bar go away when the movie is running? It can be done, I just don't know how.
    Thanks

    Aah! So simple! One less annoyance in my meager existence. Thanks Bizzle555!

  • Fade after animate and how to make 3 into 1?

    OK - progressing very slowly but surely - if you go to
    http://www.enhancedwireless.net/Technology/keyMechtest.shtml
    This is just a test page - but how do I get rid of one of the
    swf files?
    Also, The Flash 8 Prof questions are:
    a.) how can I make the "click to play" button fade out once
    the animation starts?
    b.) how can I make the 3 layers of yellow rings (around the
    antenna named B) into one layer or movie clip so I can
    simultaneously use this on all labeled antennas and looped for the
    whole of the animation, never stopping it's ripple movement?
    Thanks very much
    KB

    OK - progressing very slowly but surely - if you go to
    http://www.enhancedwireless.net/Technology/keyMechtest.shtml
    This is just a test page - but how do I get rid of one of the
    swf files?
    Also, The Flash 8 Prof questions are:
    a.) how can I make the "click to play" button fade out once
    the animation starts?
    b.) how can I make the 3 layers of yellow rings (around the
    antenna named B) into one layer or movie clip so I can
    simultaneously use this on all labeled antennas and looped for the
    whole of the animation, never stopping it's ripple movement?
    Thanks very much
    KB

  • How to make numbers into exponents and superscripts?

    How do you make a number into an exponent and superscript using the keyboard?

    Google it to find exactly what you're looking for.

Maybe you are looking for

  • OS Language change

    I have purchased a G710 Laptop in France and was told I could change the OS to English, I have downloaded  Windows 8.1 in English but how do I change the OS from French please 

  • All photos duplicated after restoring Photoshop Elements 11 catalog

    I recently had my computer reformatted and notice that following Photoshop Elements reinstall and catalog restore all my photos have been duplicated in the Adobe/digital photos folder. I have read that this is due to my computer tech restoring all ph

  • Bookmarks in iPad2

    How can I manage the Bookmarks in Safari on iPad 2? Once placed on the Bar or in the folder, I'm not able to either modify or delete them. Thanks!

  • Merging files in VBscript

    Hello, all. I have a question regarding using VBscript and using the adobe acrobat SDK. I'm fairly new at using it, so I'm sure i'm missing something important. I have acrobat 9 pro installed, and I've read over the API documentation and I have set u

  • Process order instruction sheet

    I am creating a process order instruction sheet from transaction COHVPI and CO02. How do i check the standard SAPSCRIPT that is being printed ?? and also the PRINTPROGRAM ???