Field only check box

Hi Friends,
what is the use of field only check box iam littelebit confused, could you explain me clearly.
Thanks and Regards
Venkat.Marneni

Hi,
If you do enhancement for a datasource it will be used:
The indicator Field known only in Exit is set for the fields in an append structure, meaning that by default, these fields are not passed to the extractor in the field list and the selection table.
So by default it won't get data, so remove the tick mark and then do the mapping in BW.
Thanks
Reddy

Similar Messages

  • Field only check box in extraction

    Hi
    what is use of field only check box in extraction
    for selection its reflect data selection tab at infopackage
    hide menas its wont reflect
    inversion menas multiple with -1
    field only is anothe one
    what is use of field only
    regards
    suneel.

    HI Suneel,
    Hide and filed only are depend on each other... For example u have done the enhancement to the data source with the Revenue field. And revenue is nothing but Price * Quantity. And price and quantity u have these fileds in data souce already but u dont want them in BW. U want them in the calculation.
    So we select Hide to not to come into BW and Field only to use them in the calculations.
    Khaja

  • Char Only check box in Transfer structure

    Hi Gurus,
    I am new learner of SAP. I would like to know what is Char Only check box in transfer structure.
    Regards,
    Arun

    Hi
    I think if u opt that option u will only have to map the characteristic infoobjects to ur data target.Transfer structure is the one which denotes the fields we select from extract structure
    For ex if we select 70 records out of 100 rec in extract structure in datasource,then those 70 records are transfer structure

  • Saved text fields and check-boxes empty when 3D window activates

    I've created Text Fields and Check-boxes in a pdf template, using LiveCycle Designer.
    I create the 3D work in Reviewer, and use the pdf template during Export to 3D pdf.
    Using 'Extend Features in Adobe Reader' the user can fill in the text fields, and click the check-boxes then save them with the pdf  - just using Reader.
    So far this is great!
    The problem comes when the pdf is opened again and the 3D window (A3DR_3DFrame) activated.
    All the completed fields empty!
    This is not great at all!
    I've did some tests and found that the filelds only clear if I include the Configs selection list box with the special name 'A3DR_Configs' in the template pdf. (A3DR_Configs lists the Configs stored in the 3D Reviewer file and the user can select the config from that list).
    This is unfortunate, as the A3DR_Configs window is useful since it indicates to the user which 3D config is currently being viewed (ie the name of the current config stays highlighted).
    Is this a bug that can be fixed or is there a workaround?
    thanks,
    Ian

    Would you mind to post your commenton the the approriated Adobe forum page ?
    This one is dedicated to Acrobat 3D
    The correct forum page for Designer is:
    http://forums.adobe.com/community/livecycle/livecycle_es/livecycle_designer_es
    Thanks in advance
    William

  • Value of a read only check box is always null

    Hi,
    I have a read-only check box in my form which fetches its values using Y or N value from table. If the value fetched from the table is 'Y' then check box is checked.
    But when I tried to assign the value of this check box to some other item it is always showing null. When I made the check box editable then it started showing the value.
    I appreciate if some one can share their thoughts if dealt with similar kind of issue.
    Thanks in advance.
    -Raj.

    Read-only items often have the "disabled" attribute which prevents them from being POSTed so you can't pass their values from the browser to the application. Since you get the value from the database, why not simply fetch that value again after the page is submitted using a computation to set the other item's value?
    Scott

  • How to update field when check box checked

    Hi All,
    I am using oracle Forms 10g,
    I have a block with 20 fields.So first 10 Fields are not updatable and remaining are Editable. So the user will enter the Data and changes the data.And check the Check box and save the data.
    Inside the save button i have written the update code.
    When the user Edit two or three records and click three Check box and click the save button only one record is getting entred in my custom table.
    This is my code please correct me where i went worng.
    This is my code inside my button
    declare
    Begin
    If :ASSEMBLIES_BLOCK.CHECK_IN_OUT='Y' THEN
    IF SHOW_ALERT ('UPDATE_ALERT') = alert_button1 THEN
    LOOP
    XXTLX_PO_LOGOSTICS.XXTLX_PO_LOGOSTICS_UPDATE;
    EXIT WHEN :SYSTEM.LAST_RECORD = 'TRUE';
    NEXT_RECORD;
    END LOOP;
    STANDARD.COMMIT;
    fnd_message.set_string ('Transaction Saved Successfully');
    fnd_message.show;
    ELse
    NULL;
    END If;
    END IF;
    EXCEPTION
    WHEN NO_DATA_FOUND
    THEN
    NULL;
    WHEN OTHERS
    THEN
    NULL;
    END;
    I have write a procedure in program unit.
    XXTLX_PO_LOGOSTICS.XXTLX_PO_LOGOSTICS_UPDATE
    Assemblies block is my current block that user enter the data and click the check box and save the data.
         Update XXTLX_PO_ASSEMBLIES set CASE_NO=nvl(:assemblies_block.CASE_NO,Null),
              PACKAGE_TYPE=nvl(:assemblies_block.PACKAGE_TYPE,null),
              PACKAGE_QTY=nvl(:assemblies_block.PACKAGE_QTY,Null),
              GROSS_WT=nvl(:assemblies_block.GROSS_WEIGHT,Null),
              OPI_DATE=nvl(:assemblies_block.OPI_DATE,Null)               
              Where ponum=:DETAIL_BLOCK.PO_NUMBER
              AND PO_LINE_NUM=:DETAIL_BLOCK.LINE_NUM          
              AND BOM_NO=:assemblies_block.BOM_NO;
    So when we click the multiple check box and save the data only one data is entering.
    Thanks & Regards
    Srikkanth

    I guess I don't understand.
    >
    ... my requirement is only the checked fields need to get updated. If in a block there are 10 records means ill update only the 3rd and 4th record and then click the check box.. and then ill click the save button.
    >
    Is this block a database block or a non-database block? If it is a database block then Oracle can handle updates to that block for you because if keeps tabs if a record was updated or not and you wouldn't need to do an UPDATE statement.
    If it is a non-database block, and you are looping through each record and only updating the items that have checkboxes next to them you would still have to go to the first record then step through each record and see if it needs to be updated. I am just guessing here because I don't think I have a good grasp on what you are doing, but you could change your XXTLX_PO_LOGOSTICS.XXTLX_PO_LOGISTICS_UPDATE package to only update the items that have checkboxes next to them, by checking each checkbox:
    -- Check Case No
    if nvl(:assemblies_block.chase_no_check,'N') = 'Y' then
      update xxtlx_po_assemblies
         set case_no = :assemblies_block.case_no
       where ponum = :detail_block.po_number
         and po_line_num = :detail_block.line_num
         and bom_no = :assemblies_block.bom_no;
    end if;
    -- Check Package Type
    if nvl(:assemblies_block.package_type_check,'N') = 'Y' then
      update xxtlx_po_assemblies
         set package_type = :assemblies_block.package_type
       where ponum = :detail_block.po_number
         and po_line_num = :detail_block.line_num
         and bom_no = :assemblies_block.bom_no;
    end if;
    -- Check Package Qty
    .

  • Calculate only checked boxes that are checked. Other "lines" of boxes do not have a value. HELPPPPPP

    I have say 6 possible lines. Each line will allow the user to enter employee goals. Then to the right of that, there are radio buttons that the user will check, marking the percentage that particular goal is complete. However, not every employee will have 6 goals, they may only have 3 and some may have all 6 or say, 2. What I want to do is only calculate those lines which have a goal and a percentage marked. So in the end, I want to total the checked boxes which will each have a value and then divide that by the number of goals for that particular employee.
    PLEASE, explain this to me so I can understand it. Like I said, I am extremely new to creating forms and LiveCycle. I really hope I can get the answer to this.
    Thank you in advance.

    And NOW, when I am attempting to put in my script for the radio buttons that have values, the area where it should total is NOT correct. This is my script:
    $=Page1.RadioButtonList.unlead1+xfa.resolveNode("Page1.RadioButtonList.#field[1]")+xfa.resolveNode("Page1.RadioButtonList.#field[2]")+xfa.resolveNode("Page1.RadioButtonList.#field[3]")+
    xfa.resolveNode("Page1.RadioButtonList.#field[4]")
    The area that has the total, only has the number 5 in it when I click on the first checked box. (radio button) however, the value is set at one. PLEASE help, I am about to rip my hair out.

  • Interactive fields and check boxes don't stay in tab order

    Hi everyone. I'm creating a census form for my parish which contains questions and check boxes. I've laid out the first section of this form (called Household Member 1), then gone back and added all the text fields / check boxes in the order in which I want the user to be able to tab through the form. When I open the Tab Order dialogue box to make sure the user will be able to tab through the form correctly, all the fields / check boxes are in the correct order. Now I need the exact same sections repeated... Household Member 2, Household Member 3, etc. In total, there will be 7 sections on the form that request the exact same information. So after I get the first section the way I want it, I copy and paste, or drag and duplicate the section with all it's fields onto the next page. However, when I check the Tab Order on this subsequent sections, all of my check boxes have moved to the end of the list, requiring me to have to manually move each check box back into its correct position in the section. This happens every time I duplicate the section... I have to manually put the tabs in their correct order. I tried duplicating the entire page rather than just duplicating the section, and the same thing happens. These fixes are tedious to say the least. Any thoughts about how to fix this would be appreciated.
    I'm using CS6 on a Mac with OS 10.8.3

    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]
    If it does work in Safe-mode then disable all your extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    You can use "Disable all add-ons" on the ''Safe mode'' start window.
    You have to close and restart Firefox after each change via "File > Exit" (on Mac: "Firefox > Quit")

  • Cannot get acrobat to autodetect text fields and check boxes

    I am attempting to take an existing pdf document (life insurance application) and turn it into a fillable form that I can use interactively to complete and sign on screen instead of having to print and fill out by hand.  The document has multiple pages including one page 18 that already has fields in it.  The rest of the document does not have fields in it.  When I attempt to create a form, it does not detect any of the other fields before page 18.  It does detect fields after page 18 where the previously fields were already in the original document.  What can I do to get Acrobat to detect the fields needed in the first 17 pages of the document and automatically insert them?  This is the reason I'm purchasing the software, for the automation of field insertion.  If it doesn't do that, there's many other software options that I can build a form in and insert the fields one at a time manually.  I don't want to do that because of the volume of documents I am going to be working with.  I can email the original document if that will help.
    Thanks in advance,
    Josh

    - You can't run the Fields Detection Wizard on a file that already has
    fields in it.
    - The reasons why the Wizard does or does not recognize a field, and what
    type of field, are not made public by Adobe. So basically if it works,
    great, if not, then you're out of luck...
    At any rate, be prepared to do some manual adjusting after running it
    because even when it works it often creates unwanted fields, fails to
    create wanted fields or creates fields with the wrong type (text boxes
    instead of check-boxes is a common problem).

  • Display text fields from check box?

    Hi
    Is there a way to display hidden text fields in a form
    whenever the check
    box is clicked?
    For example I have an option which asks how may we be of
    service to you?
    One option is 'estimates on conveyancing' , once this is
    clicked I need to
    display further text fields (estate agent, name of property,
    price of
    property etc)
    Thanks for any help

    Nope.
    First, I had trouble figuring how to apply the Form Calc to the Button, as opposed to the Button List.
    I actually had to edit the first line in the Script Editor, which seems pretty lame.
    That is to say, I just don't see how to get to the radio button, not the Object named RadioButtonList
    BUT, I can't UNCHECK the field once it's been checked. That is, if I click "on" the Radio Button, it won't revert to unchecked if I try to click it "off".
    In other words, if the person unchecks the Radio button due to some error, I need it to click off and the TextFiled to go back to being hidden.
    Like I said, this can't be that hard, or maybe I'm just missing what you're trying to explain. Any other ideas?
    Steve

  • How to disable/read-only check box in Receiavbles receipt application forms

    HI,
    1- I am trying to freeze the check box of apply in receipt application form but it  is not working properly some times its working fine and some time it is not. I am using when new record instance when I am using up arrow and down arrow key it is working fine, but if I am on first record and click the mouse on second row or third row using mouse It is not working and user can un- apply the receipt
    2- Due to 1 point I tried using disable that check box but it is show some error 'frm-41017 cannot set update allowed attribute of non-enabled item'.
    Please advice how can I achieve this.
    Requirement is if a receipt is related to some order then user should not allow to un apply this line from applications if it is manually applied to some invoice or credit memo then user can un apply this line from receivable application lines.
    Thanks & Regards

    Looks like your question is about the E-Business Suite version of Receivables.  As this forum is dedicated to the Fusion line of applications, please repost your question in the EBS forums to increase your chances of getting a helpful reply.
    thanks,
    Oliver
    Fusion Apps Developer Relations

  • How can I make a check box active ONLY if another check box is activated?

    How can I make a check box active ONLY if another check box is activated?
    I have an editable PDF for a client, which contains text fields and check box fields.
    There are three main check boxes (let's call them A, B and C) that the user is required to choose from, and I have given all three the same name in the Name tab of the General tab menu but different export values in order that ONLY one of the boxes can be checked at any time. Ticking one will deactivate another if it is already checked, etc.
    However, I then have a further two check boxes which I wish to become available ONLY if the second one of the above three boxes is checked. Other than that I do not wish the user to have access to them.
    I'm guessing it requires some kind of Action Script or Javascript, which is not my forté! Any help would be much appreciated.
    Regards
    Tony

    See Disabling (graying-out) Form Fields by Thom Parker. It covers both Acrobat and LiveCycle forms.

  • I/O field grayed out after check box checked ( Dynpro)

    Hi ,
    I have dynpro  dialog screen  with several check boxes linked with input/output field
    When check box is checked the I/O field is editable when check box is empty I/O field should be grayed out.
    I am trying to find the way how checking the check box can trigger the change of attribute of I/O field.
    The IO field should be gray out after checking check box without hitting enter or any other button.
    Please advice
    Chris

    Hi ,
    Thank you for your answer. I was missing Functional code of my check boxes.
    Now i have still issue my I/O field do not turns in gray ( only output) In loop
    I dide like you said ( this is example from my PAI module user-command)
    when 'CB1'.
          loop at screen .
            if screen-name = 'LT_FORMAT_IO'
              and lt_format_cb is initial.
              screen-input = '0'.
              screen-invisible = '1'.
              modify screen.
            endif.
          endloop..
    Once screen is displayed again , the IO field stll remains non grayed out.
    Please advice
    Chris

  • Goods Movement Not allowed(XWAOK) check box - for SRM Reservations.

    Dear Experts,
    We are working on Extended Clasissc sceanrio however certain materails we are creating reservation switching from ECS to Classic Scenario. System is Creating Reservation successfully in backend but Goods movement reservation allowed (FIELD XWAOK) check box not checked only for SRM Reservations
    Please note that ECC reservations checking this checkbox automatically based on Configuration. Is there any setting we have to do in SRM to pass the check box value to ECC? or How Can i check what data is passing from SRM to ECC......
    Thanks
    Ravi

    Dear Ravi,
    Could you please check if you have added the value '201' against the attribute movement type (forgot the attribute name) for the purchasing group or user group who created the shopping cart in SAP SRM. Once you have added the attribute, the problem should be resolved.
    Thanks and regards,
    Ranjan

  • Printing "Form Fields Only" not working correctly in Adobe XI

    I have a pdf form with fields including check boxes. If I print this form with all fields it prints correctly, but if I select "Form Fields Only" then all check boxes print as checked regardless of whether or not they are checked. When I use this form in earlier versions of Adobe I do not get this problem. Any ideas or solutions?

    Also the "PrintParams" properties require version 6 or above of Acrobat/Reader.
    One has to review the Acrobat JavaScript API for all sorts of version variations in the way Acrobat's JS object works. And the documention is not always correct.

Maybe you are looking for

  • Missing content, again!

    I don't get this! As an administrator of 15 workstations I keep getting this 'missing content' info. With the 10.07 update everything was downloaded and installed. 'Download additional content' is greyed out. So, nothing much to do here, right? But t

  • Palm Centro Sync

    Three hours later, I'm turning to you.  Centro on Windows XP.  "Synchronized datebook gets to 2 of 12" and then freezes.  Have downloaded and the sync will connect and complete,  but Not update.  Then after making a change the second sync will freeze

  • Help Urgent!!Connection response of primary WS with request of secundary WS

    I am conecting the response of primary wsdl with the request of secundary wsdl. The values are same (iBASE and iNSTANCE). how I can do with developer studio? can be done with some wizard? I explain it in detail: I have a View1 that communicates with

  • Upgrading RAM for MacBook Pro (Retina, Mid 2012)

    I want to upgrade RAM , currently 8 GB, to 16 GB . Is it possible to upgrade ?

  • Windows 8.1 VM Turning Off By Themselves

    I am running some Eval Windows 8.1 VMs on Hyper-V 2012 R2. The VMs are added to a domain, and nothing fancy setup - just a standard domain configuration (no replication, clustering, etc). After about 10 minutes (maybe longer), I come to find the VMs