Disable date from F4 help

Hi All,
     I have a screen field of type DATS, during F4 based on some condition I want to disable some dates, i.e user cannot select that date and also I want to set some max. date limit.
Regards,
bharani

LOOP AT SCREEN.
IF screen-group = 'XYZ'
screen-input = 0 or 1....check in debugging mode
modify screen.
endif.
ENDLOOP..
That doesn't work for dates inside calendar controls!!!
To the poster, take a look at class CL_GUI_CALENDAR and the demo programs that use it.  I don't know that you can stop certain dates from being picked though.  I've only used it for formatting the way a calendar is displayed.

Similar Messages

  • Need to know the sqluery to find the disabled date from OIM 9.1.0.1

    Hi Experts,
    Need very urgent inputs from you all for the preparation of our audit.
    We are using OIM9.1.0.1
    We need to know the sqlquery for finding the Disabled date in OIM given the user ids, as currently we are unable to get the exact data from Historical Reports Option in OIM.
    I need to give in this format:
    select usr_login, usr_disabled from schemaname.tablename where usr_login in
    ('aaa','bbb'..... etc)
    We have three attributes :USR_DISABLED_BY_PARENT,USR_DISABLED,USR_DEPROVISIONING_DATE,but none of them give the exact date,
    USR_DISABLED gives just a flag as 1 or 0.
    Also there are no other fields in the corresponding usr table.
    So how to fetch the exact Disabled date from OIM system when I input the user ids.
    Your immediate response is appreciated.
    Thanks
    SS

    In the entire thread many experts have given nice queries in different formats...
    The best approach would be to open up the SQL Developer, connect with the OIM Database and experiment with all sorts of SQL queries provided by all the experts..
    Learn some SQL techniques, like Inner Join etc...
    Then you yourself will be able to figure out what you need, in exactly which format, for which users and for whom you have to restrict
    Then not only this question, you would be able to solve dozens of similar such issues yourself...
    And trust me, nothing can match that...
    Just in case, you are not familiar with SQL Developer,
    http://www.oracle.com/technetwork/developer-tools/sql-developer/downloads/index.html
    Oracle SQL Developer 3.2.1 (3.2.10.09.57)
    September 24, 2012
    The Disabled DATE will be the creation date of that entry in the UPA_FIELDS table when Users.Status changed to Disabled.
    SELECT USR.USR_LOGIN, UPA_FIELDS.CREATE_DATE
    FROM UPA_FIELDS
    WHERE UPA_FIELDS.FIELD_NAME='Users.Status'
    AND UPA_FIELDS.FIELD_NEW_VALUE='Disabled'
    AND UPA_FIELDS.UPA_USR_KEY=USR.USR_KEY
    AND USR.USR_LOGIN NOT IN ('XELSYSADM', 'XELOPERATOR', 'WEBLOGIC');

  • HT1766 can i recover my data from the help of apple id

    dear sir
    I was using my Iphone 4 from last year.sir i have lost my data from my i tunes and fone.
    sir please tell me that can i recover my data with the help of my apple id or not. that was my important data .Spesioley my contacts
    i will wait ur earlier response
    thanx

    I am not all that tech savy but I am trying ot understand what you are saying. I have a similar problem. After IOS5 update my address book is gone. What do you mean synch with outlook, windows yahoo, google? I have created all of my contatcs directly on the iphone and do not use those other addressbooks you are referring to. Yes I haev email but I do not email all the contatcs I had in my phone book on my phone nor do I need them there. When i save a new contacts it automatically gets assigned a photo from the old address book in alphabetical order. Those pics are not saved in my camera roll. Leads me to believe the address book is somewhere. This should not be this difficult.... takes a long time to compile these address books.

  • OWB 11gR2 extracting data from SAP - HELP

    Hi everyone,
    I have a question regarding the way OWB 11gR2 uses its SAP connector. I will present the scenario.
    OS on Server: Windows Server 2003 64bit
    DB: 11gR2 - 64bit
    SAP JCO 2.19 (64bit)
    OS on Client: Windows XP 32bit
    Oracle Client 11gR2 - 32bit
    SAP JCO 2.19 (32bit)
    We are trying to get the data from SAP and it is simply not working. The error that we receive is:
    20B40EC4][OWBWS.OWB] java.lang.Exception:
    Starting Execution of ABAP Report CSKS_CSKS_TBL on Thu Jul 01 18:48:42 CEST 2010
    JOBCOUNT = 17484201
    $JOB_NAME
    Completing Execution of ABAP Report CSKS_CSKS_TBL on Thu Jul 01 18:48:44 CEST 2010
    2010/07/02-10:20:23-CEST [18987A33][OWBWS.OWB] Foreground Execution
    2010/07/02-10:20:24-CEST [18987A33][OWBWS.OWB] Foreground Execution deployment failed
    2010/07/02-10:20:24-CEST [18987A33][OWBWS.OWB] java.lang.Exception:
    Starting Execution of ABAP Report ZOWB on Fri Jul 02 10:20:23 CEST 2010
    ERROR: The file C:Öxxxxx.dat is already open
    Exit on error: Execution of ABAP Report ZOWB on Fri Jul 02 10:20:24 CEST 2010
         at oracle.wh.runtime.platform.operator.sap.NativeSAPOperator.execute(NativeSAPOperator.java:224)
         at oracle.wh.runtime.platform.adapter.rtp.NativeExecutionAdapter.execute(NativeExecutionAdapter.java:43)
         at oracle.wh.runtime.platform.service.controller.ExecutionController.execute(ExecutionController.java:70)
         at oracle.wh.runtime.platform.service.controller.ExecutionController.execute(ExecutionController.java:23)
         at oracle.wh.runtime.platform.service.ExecutionManager.run(ExecutionManager.java:36)
         at java.lang.Thread.run(Thread.java:595)
    Thank you.
    Edited by: user8916416 on 02-Jul-2010 03:57

    Problem solved by recreating the mapping. Strange though.
    Edited by: user8916416 on 02-Jul-2010 03:56

  • REG : restrict in a way that user has to enter data from f4 help

    hello,
    i have problem that i have to restrict the user in a such a way that he can enter data that is in F4 help.
    or it is blank .
    i am using it in DIALOG PROGRAMMING. it i put attribute as input NOT POSSIBLE itwill become gray but my user doesn't want it.so how can i restrict. them to write data in it.

    Hi Prathap,
           As you said one way could be to make it a Drop down...but if values are more than 10, it is definitely going to be the worst UI element user has to face..
       Other way is to make the field input disabled. Please note that the F4 still works in these cases EXCEPT that it cannot copy value when user selects it in F4. This can be addressed by handling the F4 rather than leaving it to dynpro framework.
       Use
    PROCESS ON VALUE-REQUEST.
            field GV_TEST_VAR MODULE  get_value_on_F4.
    This will trigger the module get_value_on_f4 when user chooses F4 on the field( where he cannot Enter Manually). Now you can even put a simple screen showing values of the length you desire, Get it back after user selects and PUSH the value into the variable.So User cannot Enter , F4 is available also with values shown as long as you want,,,
    Hope this helps.

  • Selection from Input help different from PA30 IT0014

    Hi Guys,
    Need advise as i'm trying to get the same result data from input help in IT0014 (wage type). I'm using normal selection from table but the result set are diffrent.
    I'm noticed more value appeared than the input help in IT0014 PA30.
    I checked on the input help seems no parameter passing.
    Attached is the screen for input help .
    Brgds
    Badz

    Finally after few debugging the logic and google searching .
    The answer is because in they wage type appeared in the search help already filtered by employee group and subgroup also personnel area.
    So each user will have different search result/input help  based on their group or pers area.

  • How to retreive data from disabled iPhone 4

    Hi.
    I have permanently disabled iPhone 4. it is my wife`s phone who passed away.
    i need to get photos and videos from the phone. The original computer which i  synced it with doesn't help.
    I have 2 computer and don't remember which one was that i synced it with,on one of them i had hard drive which crashed so i installed new one, so basically when i am connecting to iTunes on both computer it says "enter your pass code before connecting to iTunes" but on the phone there is no keypad to enter pass code, it says only "iPhone is disabled connect to iTunes"
    i have all paperworks and proof that phone and phone number belongs to me.
    So far nothing works.
    1.  I tried iFaith to dump SHSH blobs, but later found out that building IPSW is only for restoring, that it will not retrieve my data.
    2. I tried iPhone Browser but it doesn't see my device
    3. i did not try this yet, not sure how to do this
      "     http://modmyi.com/forums/file-mods/237321-how-iphone-data-recovery.html      "
    any suggestion, is there any body who have gotten data back from disabled iPhone?
    please help me, i will really appreciate it. and will pay $$$$
    i have all paperworks and proof that phone and phone number belongs to me.
    here is my E-mail: [email protected]
    Albert.

    Hi,
    Maintenance view will be created for database tables only.
    Just display the maintainence from SE11 and click Tables tab in the screen
    Here you can find the list of tables used to created for Maintainence view.
    YOu can use these tables to write SELECT.
    If you give us the maintainence table, we will help you.
    Thanks,
    Ramakrishna

  • Verizon is using the Elipsis tablets to steal data from their customers.  The only way to stop data from registering as cellular data is to pull the SIM card.  This occurs with wifi enabled and cellular,dara disabled.  If,you take your tablet to a Verizon

    Verizon is using the Elipsis tablets to steal data from their customers.  The only way to stop data from registering as cellular data is to pull the SIM card.  This occurs with wifi enabled and cellular,dara disabled.  If,you take your tablet to a Verizonstore they will upgrade your data plan to cover the overage and credit the upgrade.  You will then have to remember to downgrade your plan or continue to pay for more data.  Verizon, how would you feel if I walked into one of your stores and started filling my pockets with merchandise?  If cought can I just give the product back and say "oops, sorry"

    Today, my FCC complaint hit the same person working on the BBB complaint.  Jimmie has been very nice and seems willing to work with this problem.  We have been able to come to an agreement.  I paid the purchase price for the phone and he returned my upgrade and unlimited data plan.  This is what would have occurred if Verizon had given me correct information to begin with.  I am happy with this result.  He also brought quite a few instances concerning the handling of my transfer and upgrade that did not follow proper procedure.  I am also confident that I would not have resolved this without complaining to BBB and or FCC.  Verizon had no interest in solving the problem nor did they show any propensity to keeping a 20 year client.  Even though this last CSR was very polite and helpful, his sole job is to respond to formal Federal and State complaints.  He is required by law to address every complaint and report the reporting agency the agreed upon results - good or bad.  Again, I suggest - If you are not getting the proper customer service, complain to someone outside of Verizon.  Jimmie had not received any complaints registered with Verizon directly and I still have not had any contact with any other management representative that I was told would call.

  • Open HUB ( SAP BW ) to SAP HANA through DB Connection data loading , Delete data from table option is not working Please help any one from this forum

    Issue:
    I have SAP BW system and SAP HANA System
    SAP BW to SAP HANA connecting through a DB Connection (named HANA)
    Whenever I created any Open Hub as Destination like DB Table with the help of DB Connection, table will be created at HANA Schema level ( L_F50800_D )
    Executed the Open Hub service without checking DELETING Data from table option
    Data loaded with 16 Records from BW to HANA same
    Second time again executed from BW to HANA now 32 records came ( it is going to append )
    Executed the Open Hub service with checking DELETING Data from table option
    Now am getting short Dump DBIF_RSQL_TABLE_KNOWN getting
    If checking in SAP BW system tio SAP BW system it is working fine ..
    will this option supports through DB Connection or not ?
    Please follow the attachemnet along with this discussion and help me to resolve how ?
    From
    Santhosh Kumar

    Hi Ramanjaneyulu ,
    First of all thanks for the reply ,
    Here the issue is At OH level ( Definition Level - DESTINATION TAB and FIELD DEFINITION )
    in that there is check box i have selected already that is what my issue even though selected also
    not performing the deletion from target level .
    SAP BW - to SAP HANA via DBC connection
    1. first time from BW suppose 16 records - Dtp Executed -loaded up to HANA - 16 same
    2. second time again executed from BW - now hana side appaended means 16+16 = 32
    3. so that i used to select the check box at OH level like Deleting data from table
    4. Now excuted the DTP it throws an Short Dump - DBIF_RSQL_TABLE_KNOWN
    Now please tell me how to resolve this ? will this option is applicable for HANA mean to say like , deleting data from table option ...
    Thanks
    Santhosh Kumar

  • I have a VI and an attched .txt data file. Now I want to read the data from the .txt file and display it as an array in the front panel. But the result is not right. Any help?

    I have a VI and an attched .txt data file. Now I want to read the data from the .txt file and display it as an array in the front panel. But the result is not right. Any help?
    Attachments:
    try2.txt ‏2 KB
    read_array.vi ‏21 KB

    The problem is in the delimiters in your text file. By default, Read From Spreadsheet File.vi expects a tab delimited file. You can specify a delimiter (like a space), but Read From Spreadsheet File.vi has a problem with repeated delimiters: if you specify a single space as a delimiter and Read From Spreadsheet File.vi finds two spaces back-to-back, it stops reading that line. Your file (as I got it from your earlier post) is delimited by 4 spaces.
    Here are some of your choices to fix your problem.
    1. Change the source file to a tab delimited file. Your VI will then run as is.
    2. Change the source file to be delimited by a single space (rather than 4), then wire a string constant containing one space to the delimiter input of Read From Spreadsheet File.vi.
    3. Wire a string constant containing 4 spaces to the delimiter input of Read From Spreadsheet File.vi. Then your text file will run as is.
    Depending on where your text file comes from (see more comments below), I'd vote for choice 1: a tab delimited text file. It's the most common text output of spreadsheet programs.
    Comments for choices 1 and 2: Where does the text file come from? Is it automatically generated or manually generated? Will it be generated multiple times or just once? If it's manually generated or generated just once, you can use any text editor to change 4 spaces to a tab or to a single space. Note: if you want to change it to a tab delimited file, you can't enter a tab directly into a box in the search & replace dialog of many programs like notepad, but you can do a cut and paste. Before you start your search and replace (just in the text window of the editor), press tab. A tab character will be entered. Press Shift-LeftArrow (not Backspace) to highlight the tab character. Press Ctrl-X to cut the tab character. Start your search and replace (Ctrl-H in notepad in Windows 2000). Click into the Find What box. Enter four spaces. Click into the Replace With box. Press Ctrl-V to paste the tab character. And another thing: older versions of notepad don't have search and replace. Use any editor or word processor that does.

  • Pls Help me with steps to add data from xml file to SAP B1 through B1iSN.

    Pls Help me with steps to add data from xml file to SAP B1 through B1iSN. I  am getting stuck in xsl transformation. not able to understand where the mapping code needs to be added.
    Pls explain me the steps for adding data from xml to B1 quotation step by step.
    thanks and regards
    Priya

    Hi,
    Have you checked this: https://sap.na.pgiconnect.com/p45508295/?launcher=false&fcsContent=true&pbMode=normal ?
    Thanks,
    Gordon

  • Help with exporting data from pdf form

    I have about 100 pdf forms that I created in adobe forms central and distributed as a pdf form (rather than on the web). I am trying to export the data into a spreadsheet but when I export it, the fields are all jumbled in the csv file, as in they are not in the same order. I need to export the data all together so I'm going to the forms menu and selecting "manage form data" and then selecting "merge data files into spreadsheet". I tried exporting a single file but that gave me something really weird.
    Please help, I have a deadline next week to analyze this data and can't make sense of it once it is exported to a spreadsheet.

    Would you please share your form with me and send me one of your pdf forms and some of the csv files?
    You can share your form by doing the following:
    1. Click on the “Share” icon on the bottom left corner.
    2. Click on “Add Collaborator” on the popup menu.
    3. Enter [email protected] under “People to share with”.
    4. Set subject to "Export data from pdf form"
    5. Click the “Share” button on the bottom right of the dialog.
    Thanks
    Ken

  • Help needed with loading data from ODS to cube

    Hi
    I am loading data from an ODS to a cube in QA. The update rules are active and definition seems right. I am getting the following error, in the update rules.
    "Error in the unit conversion. Error 110 occurred"
    Help.
    Thanks.

    Hi Chintai,
    You can see the record number where the error occured in the monitor (RSMO) for this data load > goto the details tab and open up the Processing area (+ sign). Try it out...
    Also about ignoring the error record and uploading the rest, this is done if you have set Error Handling in your InfoPackage (Update tab), but this would have to be done before the load starts, not after the error happens.
    Hope this helps...
    And since you thanked me twice, also please see here:-) https://www.sdn.sap.com/irj/sdn?rid=/webcontent/uuid/7201c12f-0701-0010-f2a6-de5f8ea81a9e [original link is broken]

  • Help Required -- Can we use SQL Query to READ data from SAP MDM Tables

    Hi All,
    Please help.........
    Can we use SQL Query to READ(No Creation/Updation/Deletion  just Read) Data from SAP MDM tables directly, without using MDM Syndicator.
    Or direct SQL access to SAP MDM tables is not possible. Only through MDM Syndicator can we export data.
    Thanks in Advance
    Regards

    All the tables you create in Repository comes under A2i_CM_Tables in Database named as your repository name. So the tables names are fields of table A2i_CM_Tables. Now i tried it but cant make it.
    Now, I dont think its possible to extract all fields in tables and there values using select query. May be pure sql guy can do that or not.
    But there is no relation of data extraction and syndicator. Data is viewed in Data Manager. and you can also store data in a file from DM also.
    BR,
    Alok

  • PLEASE HELP ME AND SEND DATA FROM CORRUPTED HARD DICS... ITS VERY IMPORTANT PLS PLS PLS

     Dear Sir,
    I had purchased laptop “pavalion DV4/WR717PA” on 25th august 2010 from  LAPTOP WORLD ,BHILAI, Dist- DURG. My system hard drive got corrupted as stated by the service centre people. They had given 15 days time limit to replace it. The problem is that my all documents, study material and presentation have been with the corrupted HARD DICS. Your service centre engineer is telling that system is not detecting HARD DISC.
    AND NO RECOVERY DVD IS GIVEN TO ME AT THE TIME OF PURCHASING LAPTOP; EVEN THEY DON’T INFORM ME THAT SUCH CD IS PROVIDED BY COMPANY…
    I request to you to please get my data’s with that HARD DISC as my examinations are starting from 2nd week of June. I am helpless without that study materials’ had worked very hard on the documents and presentations. Please get me those data’s any how…. Other wise I am unable to pass this year.
    I had very much on faith your company’s laptop had purchased hour’s company laptop in spite of many lo-cost laptop present in the market.
    Now I am seriously disappointed on hearing from your qualified engineers that they can not get my data back, and Telling that laptop is within the warranty period and we can only replace HARD DISC.
    Isn’t useless to purchase products of your company by paying high amount. Don’t let us to loose our faith on your international brand company….
    Please don’t be like cheap businessmen…and telling that laptop is within the warranty period and we can only replace HARD DISC.
    Don’t you have any engineers who can recover data stored in the DISC.Please understand the seriousness of the matter
     But within purchase of few months a fatal problem occurred. Sir what to do if there is no means of recovering data from your system… It is the failure of your product is going to spoil my one acedimic year…
    I request you to please do some thing to get me out of this situation.
     Please recover data and send me the data stored to my mail ID or a send in a DVD to my address.
     I am sending the details of system and hard disc to you. As corrupted hard disc is send to your company as told by the service center engineers to us. Please follow-up the HARD DISC. I am sending all details related to my system..
    Please don’t disappoint me, I know that you people can definitely do it… human values are also important along with business …
    With regards
    Priyanka
    Details
    Model No: Pavilion DV4/WR717PA
    Serial No: {Removed for privacy}
    CASE ID: 4629610593
    Hard disc No: 2BAZBCL83YMDGX
    Optical Drive: 7AWPNOLVBY
    Cartage: 6AQEFO5BY9W FDD-5A
    Date of purchase: 25th August 2010
    Dealer: “LAPTOP WORLD”, Supela, Bhilai, District DURG (CHATTISGARH)
    {Personal Information Removed}

    Welcome to the HP Consumer Support Community. This is a peer-to-peer community for customers to connect and share solutions regarding their HP products. If you have additional or direct feedback for HP about their products or services, please use the link below.
    http://welcome.hp.com/country/us/en/wwcontact_us.html
    If you have other questions and concerns about using the forum, please feel free to send me a private message.
    Thank you.
    Clicking the "Kudos star" to the left is a great way to say thanks!
    When your problem has been solved, accept the solution by clicking the "Accept as Solution" button to help other members in the future!
    Rules of Participation

Maybe you are looking for

  • White bar shows at the top of the screen when dvd played on a mac.

    Hi, I am using DVDSP 3. When I play the dvd on a mac there is a white bar at the top of the screen saying the marker names. If I watch the same dvd on the dvd player hooked up with my tv, it plays fine and does not show any extra area the white bar a

  • PDF Printer stopped prompting for output filename

    I use the Adobe Acrobat PDF Printer to create PDFs from a variety of applications. My version of Acrobat Pro is 10.1.6. The printer is configured to prompt me for the output filename, but never does. It used to work, but I can't figure out what has c

  • BlazeDS Java to ActionScript

    Hello, I am trying to send certain data types from a Java back-end through BlazeDS to my Flex clients. I wrote a ant script that takes JAXWS generated types and converts them into ActionScript types. One problem that I am facing is that the Seq class

  • Include a jsp in another

    I wanr to include a jsp into another, but dinamically. I have a file named Inicio.jsp. This file has a link that calls the servlet "ServletMenu". This servlet decides which jsp page to load. But I want to load "inside" the Inicio.jsp. Here a send som

  • How to perform a complete "unconditional wipe" on OS 10 powered Q5?

    Hello, I am having two issues with my Q5 (10.2.1). It is a standard, officially unlocked phone, purchased in India. It has nothing to do with any of the service providers/carriers. Because of the two issues I am facing as mentioned in following post,