F-54 field "item"

Dears,
someone could explain to me if the field item (BSEG-REBZZ) is compulsory and when in transaction F-54?
Thanks
Vittoria

Hi,
No, I dont think it is compulsaty at the clearing of the down payment.
Regards
Ravi

Similar Messages

  • How to show the field Item foreign name in Inventory Audit Report

    Hi
    I can't find the field Item foreign name showing in Inventory Audit Report.I want to link with the table OITM in PDL in order to show Item foreign name in paper report,but whatever I do, it seems doesn't work.
    plz tell me how  to do .thx.
    Edited by: Kam on Mar 13, 2009 10:37 AM

    ALD - Advance Layout Designer
    QLD - Query Print Layout Designer
    You could search the forum for the links to those two tools.
    Thanks,
    Gordon

  • Excel 2007 accessing PivotItem.Visible gives error if the field item value is a DATE

    I have VBA code to manipulate the content of a pivot table - essentially it hides all but the first N items in a pivotfield.  Under Excel 2003 the code works fine, as expected irrespective of the data content of the pivot field item.  Under Excel
    2007, if the data content is a date, the VBA code generates one of several error conditions.
    pivotItems(i).Visible = True
    Generates error 1004 - Unable to set the visible property of the pivot class
    If pivotItems(i).Visible = True then...
    Trying to test the visibility generates error 13 - type mismatch
    ?pivotItems(i).Visible
    Trying to determine the visibility of the pivot item in the VBA immediate window, this generates error 2042
    I have an illustrative spreadsheet which permits the code to process two different pivot tables, one using a field containg dates; the other a field containing text.  Under Excel 2003, the code works on both pivot tables.  Under Excel 2007 it works
    on the text field table, but fails on the date field table.
    I have looked for answers on numerous support forums including answers.microsoft but found not found any answers... only the same or similar unanswered question.

    Hi Herbert,
    Thank you for your continued interest; please find a revised illustration of the problem here -
    http://www.mediafire.com/download.php?zc6ty9ctl1n7yd9
    I have made the following changes / additions to the problem illustrator:-
    Adopted the use of lists for the data source of the pivot table
    Removed reference to '(blank)' as a reserved item not hidden by the VBA code to avoid the possibility of hiding all items
    In respect of my original code (MK1), utilised a 'real' item name to be the
    reserved item
    Added a new (MK2) macro to alter the number of visible items which
    hides all but one of the VisibleItems collection
    makes the first N items in the collection visible
    checks that there are only N items visible (the position of the reserved item
    might be greater than N)
    The code still executes as expected under 2003, but fails (the same as before) under 2007 when the data type of the PivotItem is date.
    The MK1 code fails when testing the current visibility of the Item before trying to set the visibility with:- RTE 1004 Unable to
    get the PivotItems property of the PivotField Class
    The MK2 code fails when trying to set the visibility with:- RTE 1004 Unable to
    set the Visible property of the PivotItem Class as reported above.  Note - given that MK2 avoids trying hide invisible items or unhide visible items, I no longer believe that this error is due to the attempt
    to set visibility to current state as seen under Excel 2003. I am deeply confused by this now!
    I observe with care the different CLASSES on which these failures are reported even though in each case the operations are on the PivotItem.Visible property - MK1 queries it / MK2 attempts to alter it. 
    Just in case you have been wondering where this is going, this spreadsheet has no prupose beyond illustrating the Excel 2003 / 2007 problem being encountered elsewhere when manipulating pivot table items whose value are dates.  The requirement
    is to provide a simple user interface to a complex managing reporting spreadsheet consisting of a significant number of pivot tables and charts - altering one cell causes the VBA code to modify the collection of pivot tables to deliver a revised view of the
    data.  All works fine for 2003 users of the model, but not 2007 users.  I need one spreadsheet which will work correctly on both 2003 & 2007.
    Regards.

  • How to validate an text field item using javascript for numbers only.

    hi,
    how to validate an text field item using javascript for numbers only.please help me on this urgent
    please mail me solun if posible on [email protected]

    Hi,
    Page HTML header
    <script>
    function onlyNum(evt) {
      // Usage: onKeyPress="return onlyNum(event)"
      evt = (evt) ? evt : window.event;
      var charCode = (evt.which) ? evt.which : evt.keyCode;
      if (charCode > 31 && (charCode < 48 || charCode > 57)) {
        var status = 'This field accepts numbers only!';
        alert(status);
        return false;
      var status = '';
      return true;
    </script>Item HTML Form Element Attributes
    onKeyPress="return onlyNum(event)"Br,Jari

  • Set optional field item category text in component material in PO Subcont

    Hi experts,
    I would like to set field item category text (MDSB-POSTP) in PO subcont - component material. could anyone help me with the IMG configuration steps?
    Thanks
    rgds,

    Hi Ramesh,
    if we using item category "L"(subcontracting) for PO, we have to fill component (tab material data). In component view, there's one field called item category text. and currently set as display. I would like to change the field into optional. please advice.
    Thanks

  • How to hide text field item based on true or false cases in oracle apex

    Hi,
    I have a set of text Field items in oracle apex:
    Order Number
    Revision Number
    When we open the report, revision should be hidden.
    Only when the user enters unique order number (non-duplicate order numbers), revision number should be visible.
    If he enters duplicate order number, revision number should be hidden.
    Please help.

    Hi 2932464,
    2932464 wrote:
    Hi,
    I have a set of text Field items in oracle apex:
    Order Number
    Revision Number
    When we open the report, revision should be hidden.
    Only when the user enters unique order number (non-duplicate order numbers), revision number should be visible.
    If he enters duplicate order number, revision number should be hidden.
    Please help.
    Giving you example how to achieve this.
    Step 1. Create three Page Items
        1) P1_ORDER_NO - Text Field
        2) P1_REVISION_NO - Text Field
        3) P1_ENABLE_DISABLE_REVNO  - Hidden,Value Protected - No
    2. Create 3 Dynamic Actions
    1) Disable revision number on page load
        Event - Page Load
        Action - Disable
        Fire When Event Result Is  - True
        Selection Type - Item
        Item - P1_REVISION_NO
      2) Check duplicate order number
        Event - Change
        Selection Type - Item(s)
        Item(s) - P1_ORDER_NO
        Condition - is not null
        Action - Execute PL/SQL Code
        Generate opposite false action - Unchecked
        Fire When Event Result Is  - True
        Fire on page load - Unchecked
        Stop Execution On Error - Checked
        Wait for Result - Checked
        PL/SQL Code -
    declare
    l_count number;
    begin
      select count(*) into l_count
        from emp
       where empno = :P1_ORDER_NO;
    if l_count > 0 then
      :P1_ENABLE_DISABLE_REVNO := 1;
    else
      :P1_ENABLE_DISABLE_REVNO := 0;
    end if;
    end;
    Page Items to Submit = P1_ORDER_NO
    Page Items to Return  = P1_ENABLE_DISABLE_REVNO
    3 ) Enable and Disable Revision Number
        Event - Change
        Selection Type - Item(s)
        Item(s) - P1_ENABLE_DISABLE_REVNO
       condition - greater than or equal to
       value  - 1
       Action - Disable
       Fire on Page Laod - Unchecked
       Generate opposite false action - checked
       Selection Type = Item(s)
       Item(s) - P1_REVISION_NO
    Hope this helps you,
    Regards,
    Jitendra
    DER_NO

  • How to show valid field items based on previous selected field

    I am trying to use BC Web Apps to help my customers find products for their specific motor vehicle.
    By selecting the vehicle make and then the model. e.g. Chevrolet and then Camaro.
    This will then bring up a table with all the cosponsoring equipment part numbers.
    At the moment the closest I can get is two dropdown lists one with all the vehicle makes and another with every vehicle model.
    If I select Chevrolet I only want to see Chevrolet models in the dropdown list.

    Hi 2932464,
    2932464 wrote:
    Hi,
    I have a set of text Field items in oracle apex:
    Order Number
    Revision Number
    When we open the report, revision should be hidden.
    Only when the user enters unique order number (non-duplicate order numbers), revision number should be visible.
    If he enters duplicate order number, revision number should be hidden.
    Please help.
    Giving you example how to achieve this.
    Step 1. Create three Page Items
        1) P1_ORDER_NO - Text Field
        2) P1_REVISION_NO - Text Field
        3) P1_ENABLE_DISABLE_REVNO  - Hidden,Value Protected - No
    2. Create 3 Dynamic Actions
    1) Disable revision number on page load
        Event - Page Load
        Action - Disable
        Fire When Event Result Is  - True
        Selection Type - Item
        Item - P1_REVISION_NO
      2) Check duplicate order number
        Event - Change
        Selection Type - Item(s)
        Item(s) - P1_ORDER_NO
        Condition - is not null
        Action - Execute PL/SQL Code
        Generate opposite false action - Unchecked
        Fire When Event Result Is  - True
        Fire on page load - Unchecked
        Stop Execution On Error - Checked
        Wait for Result - Checked
        PL/SQL Code -
    declare
    l_count number;
    begin
      select count(*) into l_count
        from emp
       where empno = :P1_ORDER_NO;
    if l_count > 0 then
      :P1_ENABLE_DISABLE_REVNO := 1;
    else
      :P1_ENABLE_DISABLE_REVNO := 0;
    end if;
    end;
    Page Items to Submit = P1_ORDER_NO
    Page Items to Return  = P1_ENABLE_DISABLE_REVNO
    3 ) Enable and Disable Revision Number
        Event - Change
        Selection Type - Item(s)
        Item(s) - P1_ENABLE_DISABLE_REVNO
       condition - greater than or equal to
       value  - 1
       Action - Disable
       Fire on Page Laod - Unchecked
       Generate opposite false action - checked
       Selection Type = Item(s)
       Item(s) - P1_REVISION_NO
    Hope this helps you,
    Regards,
    Jitendra
    DER_NO

  • Webcam live preview in my field item

    Hi Experts,
    I am using Developer 6i, I want to view webcam output into my field item, without using java
    my webcam is plug n play and directly connected to my PC via USB cable,
    I already search for solution but didn't got result oriented solution
    any body help me?
    Thanks in advance
    awaiting.............
    Masroor

    >
    I am using Developer 6i, I want to view webcam output into my field item, without using java
    my webcam is plug n play and directly connected to my PC via USB cable,
    I already search for solution but didn't got result oriented solution
    >
    You need a webcam with a ActiveX bidirectional control. If you have it that is ActiveX is the object to use in Forms 6i.
    Cheers,

  • BADI BBP_UI_CONTROL_BADI for disabling fields item wise in PO!

    Hi all,
    We are working on SRM 5.0(SP12),ECS.
    I need to disable the account  assignment fields like G/L account,Cost centre  for the PO in Process PO transaction only for users with the role BUYER for all line items in the PO.
    For users with the role of EMPLOYEE/REQUISITIONER,i need to disable the a/c assignment fields mentioned above only for all the line items in the PO except the first line item.
    Can anyone confirm  whether this can be  achieved using the BADI "BBP_UI_CONTROL_BADI".
    I have earlier disabled/enabled fields using this BADI but irrespective of the number of line items in the document.CAn i achieve the disabling effect at the  line item level i.e. can i control the table control display for multiple lines in the PO?

    Yes..I think you can..but not sure...Try to debug the BADI and play around and see if you are able to do it, then you can code it accordingly.
    Regards, IA

  • Restricting Fields (Items in a Page) based on Userid

    I have an opportunity to replace a bunch of departmental MS Access DB's with HTMLDB. I have HTMLDB 1.6.1 running in a 9.2.0.6 database on Solaris with the 10g (R1) app server. I am very impressed overall with this product. I have created a bunch of samples apps based on existing Oracle DB tables (from existing pl/sql toolkit and jsp/servlet based apps).
    I have a requirement to develop a page where some users can see/update all fields and some users can only see/update specific fields. I may put these requirements in a database table (userid, table,field_name,access_type - None, Read,ReadWrite).
    In the Edit Page Item screen has anyone used the Authorization, Conditional Display, and/or Read Only Display settings to accomplish this?
    Thanks, Dave

    > I tried going into the
    > template and adding an editable or optional region
    within the <body> tag, but
    > it won't let me do that, and inserts it after the tag.
    editable regions can't contain the head or body tag.
    select the body tag in the quick tag selector (bottom left
    margin of design
    window)
    then go to Modify-->templates-->add editable attribute
    and add an onload attribute.
    in the child page, use modify->Template parameters to add
    the preload.
    Or- use some other javascript preloader inside of an editable
    region in the
    head section.
    Alan
    Adobe Community Expert, dreamweaver
    http://www.adobe.com/communities/experts/

  • User defined field:item master

    Hi,
    In item master data, I want to create a user defined field which is linked to an external table wherein the end-user can automatically upload new item master details into the sap appl frm an external table.

    Dear Ayesha,
    As far as I understand, what you would like to do is the following :
    1. A user adds some data into an external table.
    2. The user defined Field in SAP B1 is automatically updated with the data in the external table.
    If you would like to achieve the above, then I would suggest you to use one of the following methods :
    1. DTW to import the tables' content.
    2. Import/export option from Excel
    3. or an Addon created via the SDK.
    If I understood the issue incorrectly, please let me know.
    Regards
    Arshdeep

  • Field item properties

    I am using Oracle App Form 6i. When displaying a form, I would like to bring my mouse into a field then discover its properties via menu: Help|Diagnostics|Property|Item.
    Is there any other way to get the properties for all fields on the form when it is displayed ?

    hi,
    We are using Oracle database.
    Here is the portion of the query log.
    SELECT DISTINCT '01',COUNT (DISTINCT (CASE WHEN MONTHS_BETWEEN ( To_Date( ('01')|| '01' || To_Char(Sysdate,'YYYY'),'MMDDYYYY'), HIRE_DT ) <= 12
    THEN PNUM
    END
    )), COUNT (DISTINCT (CASE WHEN MONTHS_BETWEEN ( To_Date( ('01')|| '01' || To_Char(Sysdate,'YYYY'),'MMDDYYYY'), HIRE_DT ) > 12
    THEN PNUM
    END
    Each of this query are union by according to Calendar month.
    Here is another query log
    SELECT '01', COUNT (DISTINCT (CASE WHEN '1' - TO_CHAR(LAST_DAY_DT,'mm') < 12 THEN PNUM END )),
    COUNT (DISTINCT (CASE WHEN '1' - TO_CHAR(LAST_DAY_DT,'mm') > 12 THEN PNUM END ))
    FROM EMPLOYEE
    WHERE (BEG_DT<='01-01-2009 00:00:00' AND END_DT>='01-01-2009 00:00:00') GROUP BY '01',
    is the information enough? Thanks.
    regards,
    lieming

  • Why SAP keEp editable Contract FIELD /ITEM in the workarea sourcing cockpit

    Hi All
    Why SAP kept editable (easy to enter) a contract in the work area of the sourcing cockpit.
    since buyer may enter irrelavant contract w.r.t shopping cart right.
    Any specific reason?
    Unfortuntaely buyers enter any contract which is not relavant to contract details to create a PO...
    PO also successfully created w.r.t contract and PO release values are updated in contract too.
    Hope that for specific reason SAP kept the same as easy enter. why?
    buyers can use  propose source of supply right? why SAP made it editable entry here .Why design kept CONTRACT entry become manual. here . it really confuses me .
    Thanks
    Muthu

    Thanks SAP 1290196  :-No Validation of Material Group in Contract item in Sourcing
    muthu

  • Fetch data from IR to form in UPPER CASE format for text field items

    Hello,
    Can anyone please help with this issue. I have a IR report with form and I want to fetch the data to upper case when I go to the form level to edit the details from the IR report. I am using the Oracle APEX in built automatic row processing DML to update, create or delete the records. Is their any way, where I can convert the data to upper case whenever user creates a new record or updates the existing record using the in-built automatic row processing DML.
    Please help.
    Thanks,
    Orton

    Jari,
    I have tried your option but no luck. The thing is the text is getting converted from lower to upper case when i navigate from report to form level. But I want to save the data to the database all upper case, even if the user enters data in lower case and this applies for both inserts and updates. Whenever i tried to create or update a record, all the data should be converted to upper case before inserting or updating to the database.
    Please help.
    Thanks,
    Orton

  • Unable to capture field values in Master agreement  Line Items

    I am trying to get the field values from master agreement line items page. I have written the following code to get the line item details which is working fine to capture part number and quantity->
    agreementBean = doc.getRootParentIBean();
    lineItemCollection = agreementBean.getLineItems();
    collectionsize = lineItemCollection.size();
    for(i=0;i<collectionsize;i++){
         collectionbean = lineItemCollection.get(i);
         partNum = ""+collectionbean.getPartNumber() ;
         Quantity = ""+collectionbean.getQuantity();     
         throw doc.createApplicationException(null,partNum + " , " + Quantity );
    Now, my problem is that I am unable to capture the following field item values in the master agreement > line items page.
    1. Price Unit
    2. Unit Price
    3. Product Category
    4. Plant
    Please help me to find the values.
    Thankx in Advance.
    Su
    Edited by: subrataindra on Aug 10, 2010 11:11 AM

    This will return the name of the plant.
    .getExtensionField("PLANT").get().getDisplayName(session);
    Check if this returns the product category
    collectionbean.getExtensionField("ITEM_CAT").get().getDisplayName();
    This will Return the Price
    collectionbean.getExtensionField("PRICE").get().getPrice();
    (return type :BigDecimal)
    This will return the currency
    collectionbean.getExtensionField("PRICE").get().getCurrency;
    (Return type:String)
    Similarly to retrieve other fields for which there are no standard functions, use .getExtensionField("Field ID")
    Hope this helps
    Regards,
    Immanuel

Maybe you are looking for