Screen Field Attributes When Cannot be Accessed Through SCREEN-NAME

Hello,
I have a couple a fields that control what is loaded into a table on a screen (same screen).  When entering 'edit' mode on the table, I want to disable (protect) the contents of the fields that controlled the table load.  Since these fields are not apart of table-control, I cannot access attributes (INPUT) via SCREEN.
How can I prevent input into these field until after exiting 'edt' mode?
Thanks in advance for any assistance.
Dean.

I have been away too long from this stuff.  I was caught in the TC loop and needed to check these outside of that loop.  It works now.

Similar Messages

  • We have created shared folder on multiple client machine in domain environment on different 2 OS like-XP,Vista, etc. from some day's When we facing problem when we are access from host name that shared folder is accessible but same time same computer when

    Hello All,
    we have created shared folder on multiple client machine in domain environment on different 2 OS like-XP,Vista, etc.
    from some day's When we facing problem when we are access from host name that shared folder is accessible but same time same computer when we are trying to access the share folder with IP it asking for credentials i have type again and again
    correct credential but unable to access that. If i re-share the folder then we are access it but when we are restarted the system then same problem is occurring.
    I have checked IP,DNS,Gateway and more each & everything is well.
    Pls suggest us.
    Pankaj Kumar

    Hi,
    According to your description, my understanding is that the same shared folder can be accessed by name, but can’t be accessed be IP address and asks for credentials.
    Please try to enable the option below on the device which has shared folder:
    Besides, check the Advanced Shring settings of shared folder and confrim that if there is any limitation settings.
    Best Regards,
    Eve Wang
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Samba server cannot be accessed through Finder's 'Network'

    Hi,
    First off, I'm not sure that this is the right forum for me to post this topic, but all the Samba related questions seemed to be coming from here. I don't own a computer with Windows, so I'm not interested in Windows compatibility per se, but I am interested in having my Mac Powerbook connect with a Linux Server (using Samba).
    So I think Samba is working fine. I believe this to be the case because I can run:
    smbclient -L morbo
    from my Mac and get a list of shares (the linuxbox is called morbo).
    I can also access a share using:
    smbclient //morbo/nanoo
    and I can see the files in the /home/nanoo directory of the linuxbox.
    So far so good. However my reason for setting up Samba was to be able to find shares in the 'Network' section of my Finder. I use the commandline a lot on the linuxbox, but on the Mac I prefer not to open a terminal if I don't have to. Here is the where the problem occurs. Morbo will show up in the Network section (although this takes quite some time), however trying to connect to it inevitably crashes my finder. I have tried this several times and each time Finder crashed and had to be relaunched.
    Any idea what could be wrong here? It would seem to be that Samba can't be to blame seeing as the shares can be accessed through smbclient - is it a configuration problem on the Mac?
    Many thanks in advance,
    nanoo

    I'm having the same issues. Which Linux/Samba versions are you running? (Ubuntu 6.04/Samba 3.0.14a here), apparently a bad combo!
    Here's the results of the "hang" from my server's Samba log:
    [2006/03/21 01:02:24, 0] rpcparse/parse_prs.c:prs_memget(537)
    prsmemget: reading data of size 2 would overrun buffer.
    [2006/03/21 01:02:24, 0] rpcserver/srv_pipe.c:api_pipe_bindreq(919)
    apipipe_bindreq: unable to unmarshall RPCHDRRB struct.
    This seems like the most likely candidate:
    http://www.stillhq.com/samba/000002.commentform.html
    Bugfix information from Samba:
    https://bugzilla.samba.org/show_bug.cgi?id=2973
    So, if you're not running Samba 3.0.20, give that a shot.
    Colin
    12 iBook 1.33 G4   Mac OS X (10.4.2)  

  • Ref Cursor - how to access through parameter name

    Hi,
    I'm using the below table and sample data. The below script named 'Script1' works well, my concern is values for the first and second parameters need to be used for the thrid and fourth one as well.
    When I try with 'Script2' it gives "ORA-01008: not all variables bound ORA-06512: at line 17" error. I know Paramterized cursor can handle this effecively, since it is a dynamic SQL, I need to use from a parameter table, I don't have any control over the number of parameteters, parameter name, type and other things. So, I cannot go for parameterized cursor.
    As of now, for my requirement, Script1 works fine, is there any way to make Script2 to work as well, I need to pass paramters by name, not by position, please give your suggestions, thank you.
    CREATE TABLE T1
    F1 NUMBER(5),
    F2 VARCHAR2(100),
    F3 DATE
    Insert into T1
    (F1, F2, F3)
    Values
    (1, 'One', TO_DATE('08/02/2012 07:43:34', 'MM/DD/YYYY HH24:MI:SS'));
    Insert into T1
    (F1, F2, F3)
    Values
    (2, 'Two', TO_DATE('08/02/2012 08:15:24', 'MM/DD/YYYY HH24:MI:SS'));
    Insert into T1
    (F1, F2, F3)
    Values
    (3, 'Three', TO_DATE('08/02/2012 08:16:34', 'MM/DD/YYYY HH24:MI:SS'));
    COMMIT;
    Script1:
    declare
    TYPE t_ref_cursor IS REF CURSOR;
    v_cursor t_ref_cursor;
    v_query_str varchar2(3000);
    v_f1 number(5);
    v_f2 varchar2(100);
    v_f3 date;
    begin
    v_query_str := 'SELECT f1, f2, f3 from t1 where f1 = :p1 and f3 = to_date(:p2, ''DD-MON-YYYY hh24:mi:ss'') union ';
    v_query_str := v_query_str || 'select 1, ''c1'', sysdate from dual where not exists (select 1 from t1 where f1 = :p3 and f3 = to_date(:p4, ''DD-MON-YYYY hh24:mi:ss''))';
    --dbms_output.put_line(v_query_str);
    open v_cursor for v_query_str using 1, '02-AUG-2012 07:43:34', 1, '02-AUG-2012 07:43:34';
    loop
    fetch v_cursor into v_f1, v_f2, v_f3;
    exit when v_cursor%notfound;
    dbms_output.put_line(v_f1 || ' ' || v_f2 || '' || v_f3);
    end loop;
    dbms_output.put_line('rowcount ' || v_cursor%rowcount);
    close v_cursor;
    end;
    Script2:
    declare
    TYPE t_ref_cursor IS REF CURSOR;
    v_cursor t_ref_cursor;
    v_query_str varchar2(3000);
    v_f1 number(5);
    v_f2 varchar2(100);
    v_f3 date;
    begin
    v_query_str := 'SELECT f1, f2, f3 from t1 where f1 = :p1 and f3 = to_date(:p2, ''DD-MON-YYYY hh24:mi:ss'') union ';
    v_query_str := v_query_str || 'select 1, ''c1'', sysdate from dual where not exists (select 1 from t1 where f1 = :p1 and f3 = to_date(:p2, ''DD-MON-YYYY hh24:mi:ss''))';
    --dbms_output.put_line(v_query_str);
    open v_cursor for v_query_str using 1, '02-AUG-2012 07:43:34';
    loop
    fetch v_cursor into v_f1, v_f2, v_f3;
    exit when v_cursor%notfound;
    dbms_output.put_line(v_f1 || ' ' || v_f2 || '' || v_f3);
    end loop;
    dbms_output.put_line('rowcount ' || v_cursor%rowcount);
    close v_cursor;
    end;
    /

    This link shall answer your Question. PL/SQL Dynamic SQL.
    If it had been an Anonymous Block, your code would work through.
    Please see demonstration below:
    create or replace procedure emp_data (dep_id    number, sal   number, emp_id    number)
    is
      l_cnt   number;
    begin
      select count(*)
        into l_cnt
        from hr.employees
       where department_id = dep_id
         and salary >= sal
         and employee_id > emp_id;
      dbms_output.put_line('Count :: ' || l_cnt);
    end;
    declare
      l_cnt           number;
    begin
      execute immediate 'begin emp_data(:1, :2, :2); end;' using 20, 100;
    end;
    anonymous block completed
    Count :: 2
    --Trying the Similar example as in your OP.
    --Execute the same Select statement as in emp_Data with Bind Variables;
    declare
      l_cnt           number;
    begin
      --execute immediate 'begin emp_data(:1, :2, :2); end;' using 20, 100;
      execute immediate 'select count(*)
        from hr.employees
       where department_id = :1
         and salary >= :2
         and employee_id > :2' into l_cnt using 20, 100;
      dbms_output.put_line('Count :: ' || l_cnt);
    end;
    Results in error :- ORA-01008: not all variables bound

  • Java Files inside the jar file cannot be read or accessed through Eclpse

    The Java File inside the jar file of the eclipse cannot be accessed through the Eclipse . It shows error for the modules in the jar file .
    But when compiled with adding the jar files to the class path the compilation is successful .
    How can i browse through the files in the jar like going into the function definition .
    TIA ,
    Imran

    Open MPlayer OSX and show the playlist (command-shift-p) then drag the file into the playlist. Click the file in the playlist and click the "i"nfo button. What does it list for file, video and audio format?
    Not all of the codecs used in avi and wmv files are available for OS X so I'm guessing your file happens to be using one that isn't...

  • Field Attribute Error

    Hi All,
    i am working on a upgrade project from 46c to ECC 6.
    we are facing field attribute error "No write access to reference CONTROL takes place".
    the error is been pointed in data declaration ' DATA: CONTROL  TYPE REF TO I_OI_OLE_CONTAINER_CONTROL."
    can anyone suggest solution for this?

    Hi,
    I am using table element, I would like to explain my problem with an example.
    now suppose there are 5 rows and 3 columns in my table element with all the fields mandatory, and at runtime i fill up the table columns while keeping any fields empty. Now my requirement is to highlight those perticular cells which are empty.
    I have written my validation code in one of the component controller method.
    Pls suggest.
    I am pasting teh code snippet.
    * get all declared attributes
      node_t_bknvi->get_static_attributes_table(
        IMPORTING
          table = tabl_t_bknvi ).
      LOOP AT tabl_t_bknvi INTO stru_t_bknvi.
        IF stru_t_bknvi-taxkd IS INITIAL.
    *     report message
          CALL METHOD l_message_manager->report_attribute_error_message
            EXPORTING
              message_text   = 'Input Required Fields'
              element        = elem_t_bknvi
              attribute_name = 'TAXKD'
    *        PARAMS         =
    *        MSG_USER_DATA  =
        ENDIF.
      ENDLOOP.

  • My itunes account cannot be accesed through my computer adn is picking up some one elses account via wifi. bc of this its deleted all my contacts, photos, music and i cannot get it back..

    this phone is a piece of **** and now that it is 5 months old i have to pay 70 dollars for help ... its deleteing all my contacts , music, photos and now all of a sudden my itunes account cannot be accessed through my computer and its picking up someone elses via wifi

    this phone is a piece of **** and now that it is 5 months old i have to pay 70 dollars for help ... its deleteing all my contacts , music, photos and now all of a sudden my itunes account cannot be accessed through my computer and its picking up someone elses via wifi

  • I cannot access Content Library in iMovie - Content Library doesn't show on the iMovie screen and is greyed out when accessed through "windows" tab at the top. Also unable to update the projects/events (a suggested solution for a similar question).

    I cannot access Content Library in iMovie - Content Library doesn't show on the iMovie screen and is greyed out when accessed through "windows" tab at the top. Also unable to update the projects/events (a suggested solution for a similar question). I haven't had this issue before, I have always used the content library on the screen but haven't used this for about a month. How can I make the Content Library available?

    Thanks so much! I am backing up the entire computer now with an external hard drive - this should be fine right? And surely if I am backing up the whole computer these projects/videos will be backed up too? I wasn't sure how to do this any other way and I am clearly not great with tech issues. Once this is done and I am sure my projects/videos are safe I will do the delete and reinstall bit. Thanks for taking the time to help

  • UWL giving "Page Cannot be Displayed" when accessed through Internet

    Dear  all,
    We have exposed our portal to Internet and are currently testing the functionality.
    All applications are working fine except UWL and Identity Management. UWL is working fine if I'm not using the Webdynpro UI for display.
    Later we checked. Only the Webdynpro based applications are having problem when accessing through Internet.
    What can be the reason for this? Please help. We are stuck up  because of this.
    Best Regards,
    Aparnna
    Edited by: Aparnna Prasad on Aug 13, 2008 2:48 PM

    Dear Aparna,
       Please check the following things
       1. Enter the Hosts enteries of R/3 and EP server.
       2. Try to ping the r/3 & EP server outside your network.
    Regards
    Ponnusamy

  • HT2188 I bought my iPhone 4s Nov. 20.  I updated immediately to ios6.0 and cannot make it through even 1 day without the battery going down to almost zero.  Thats with apps closed, wifi off, screen off, etc.  It's a horror.  I have to constantly keep char

    I purchased an iPhone 4s on Nov. 20th.  I immediately had to update the software to ios 6.0.1.  I cannot even get through 1 day without the phone battery losing all power.  It loses 10-20% per hour, and that's with apps closed, wifi off, bluetooth off, screen dark, updates current, etc.  You can hold the phone in your hand and watch the power go down.  It also gets very warm.  I have to charge it once or twice a day so I have it when I need it.
    I took it in to the Sprint store for diagnostics to see if there was something wrong with the phone.  They said the phone is ok, but one of the agents said it's the last update - he has had problems ever since.  He said he thought they are working on fixing it & we should be getting another update to fix it.  Is this true?  I sure hope so!  They also showed me how to reboot the phone, especially when it gets so warm.  Is there anything else I need to do?  Please help!
    This is my first iPhone and I am very frustrated and disappointed in Apple.  If it's the software, I would think they would be frantically trying to fix it.  This phone was not the cheapest phone, so the battery life should be better!

    After some troubleshooting, I decided to order a new battery.  I replaced the battery and was then able to get it to restore, however--after I restore it and it comes time to restart the phone, it gets stuck and doesn't turn on.
    Sorry, your repair ruined the iPhone.
    She does not have apple care and even though she loved this device, she isn't going to buy another iPhone because of all the problems shes had with this one (it's just over a year old).
    After you ruined the iPhone with DIY, Apple won't touch it anymore. You should have asked before all these had happened.
    I'm an android user myself and I love rooting/flashing new ROMS, so if jailbreaking her phone or doing some kind of super-restore with 3rd party programs might help, I'm all for it-
    Yeah, all Android user can think of is Jailbreaking, read this: http://support.apple.com/kb/HT3743

  • Error for the fact table while processing the cube - attribute key cannot be found when processing

    Please help as I am new to SSAS and this is urgent requirement. This is a MOLAP cube and below is the error that I am receiving when processing the cube. The cube is set to Prrocess Full. Several similar errors are popped up for various dimensions.
    "Errors in the OLAP storage engine: The attribute key cannot be found when processing: Table: 'Fact_Table', Column: 'ID', Value: '1'. The attribute is 'Id'. Errors in the OLAP storage engine: The attribute key was converted to an unknown member because
    the attribute key was not found. Attribute Id of Dimension: 17 - Ves - PoC Cont from Database: DB, Cube: IPNCube, Measure Group: iSrvy, Partition: Partition1, Record: 1."
    Thanks in advance.

    Thanks for the recommendations David.
    It will be really great if you can clear some of my doubts:
    To my information, all the dimensions need to be processed first and then the fact table will be processed.
    So if the ID's are not present in the dimension tables, then it should not be present in the Fact table either.
    Here we found null values in the dimension table and the ID's were present in the Fact table. What might be the reasons causing such situation?
    Also how frequently the cube needs to be processed? Currently the ETL which processes the cube, is scheduled in a SQL Job Agent on hourly basis everyday. 
    Is there any possibilty that the cube might be under processing state and the SQL job for the next run getting executed trying to access and process the cube while it was still processing?

  • I used to look my photos in my tv using apple tv, now i can't when i access through apple tv/ computer/ my library  photo option is not available, i check home sharing and which photos i'm sharing from my mac/itunes but i still can share photos w/apple tv

    I used to look my photos in my tv using apple tv, now i can't when i access through apple tv/ computer/ my library  photo option is not available, i check home sharing and which photos i'm sharing from my mac/itunes but i still can share photos w/apple tv

    Morning JJFH,
    Thanks for using Apple Support Communities.
    If after setting up Home Sharing, you cannot access your shared iTunes library over your home network from your Apple TV, take a look at this article:
    Troubleshooting Home Sharing
    http://support.apple.com/kb/ts2972
    Best of luck,
    Mario

  • HT1923 When trying to access i tunes store when in I Tunes i cannot connect to the internet - any thoughts?  i have tried un-installing and re-installing but no joy

    When trying to access i tunes store when in I Tunes i cannot connect to the internet - any thoughts?  i have tried un-installing and re-installing but no joy

    Close your iTunes,
    Go to command Prompt -
    (Win 7/Vista) - START/ALL PROGRAMS/ACCESSORIES, right mouse click "Command Prompt", choose "Run as Administrator".
    (Win XP SP2 n above) - START/ALL PROGRAMS/ACCESSORIES/Command Prompt
    In the "Command Prompt" screen, type in
    netsh winsock reset
    Hit "ENTER" key
    Restart your computer.
    If you do get a prompt after restart windows to remap LSP, just click NO.
    Now launch your iTunes and see if it is working now.
    If you are still having these type of problems after trying the winsock reset, refer to this article to identify which software in your system is inserting LSP:
    iTunes 10.5 for Windows: May see performance issues and blank iTunes Store
    http://support.apple.com/kb/TS4123?viewlocale=en_US

  • How to fill properly PA fields when creating FI document through BDC sessio

    Hello Guys,
    I got a problem filling PA fields properly when creating an FI document via FB01 with BDC session. There is no problem filling PA fields properly with bapi 'BAPI_ACC_DOCUMENT_POST' as background and document is being created succesfully but when I try to create FI document via Batch input session and when Profitibality segment screen comes , PA field values don't fill the appropriate PA fields in this screen and cannot be created document. There is no problem sending appropriate values to related fields in the program code because I debugged and seen it. Do you have any idea for solving this issue?

    mehmet gullu wrote:
    Hello Guys,
    > I got a problem filling PA fields properly when creating an FI document via FB01 with BDC session. There is no problem filling PA fields properly with bapi 'BAPI_ACC_DOCUMENT_POST' as background and document is being created succesfully but when I try to create FI document via Batch input session and when Profitibality segment screen comes , PA field values don't fill the appropriate PA fields in this screen and cannot be created document. There is no problem sending appropriate values to related fields in the program code because I debugged and seen it. Do you have any idea for solving this issue?
    In some scenarios when the program is run in the background then some screen numbers are different. Maybe you can try to simulate the program in background mode.

  • [network access] User cannot access through network

    Hi!
    I'm facing a strange problem now.
    One of the users of my WD Personal Cloud cannot access through network share. When he tries to login the same fails and the login is prompted again. This happens in Windows but happens also in Linux.
    When the same user tries to login in the mobile cloud app or in the browser (only in windows because after all this years the browser cloud funcionality still not works for Linux users, a shame...) it works as it should be.Also i tried to create a new users and happens the same, in the app or browser works great in network share simply refuse to login! I already rebooted, turn off, disconnected and did other things but nothing worked.
    There are 9 users and 10 share in he cloud and the firmware version is v04.01.04-422. The diagnosis is OK!
    Thanks for the help. Best Regards. 

    Hi again! There is no error. When i enter the share ask for the login credentials, i insert user and password and when i click ok simply ask the credentials again, and again, and again... It's the same compotment as if the credentials are wrong but they are not, i use them for online login in wd2go.com or mobile app and they work.And another thing is that if i create a new user happens the same, i can login in mobile app and wd2go.com but in the windows share (or samba share if in Linux) it fails without any error, simply ask for the credentials again and again and again... The old users works fine. The comportment is same with IP or name. Thanks for the help, Best Regards.

Maybe you are looking for