Hide textfield in masterpage

hello I have a problem 
in the master page I have a textfield 
this textfield must be visible within the pdf document 
and up to here no problem 
within the document there is a button that makes a series of checks 
if these checks are successful the textfield, in the masterpage, has become invisible 
if I write this script 
form1.pageSet.Page1.TextField2.presence = "hidden"; 
The textfield is not shown for only the first page 
for all other pages can be seen 
how can I do ????? 
forgive me for my English 
thank's

hello paul, there is a strange thing
If you put it
for (j = 0 j <xfa.layout.pageCount () j + +) (
      xfa.resolveNode (form1.pageSet.Page1 [ "+ j + "]"). TextField2.presence =" hidden "
without further instructions to the event click of a button, everything works ok
if I post another statement at the event click of a button, for example:
for (j = 0 j <xfa.layout.pageCount () j + +) (
      xfa.resolveNode (form1.pageSet.Page1 [ "+ j + "]"). TextField2.presence =" hidden "
xfa.form.form1.pag2.comun.verifica.presence = "hidden";
not function
you can help me??

Similar Messages

  • Adobe Form in HRFORMS: Value of Textfield on Masterpage is not rendered!

    Hi all,
    I design a new form using HRFORMS. When I put a simple textfield on a master page and give the textfield a default value and render my form using transaction PC00_M01_CALC_SIMU, the value of the textfield is NOT rendered.
    I am using Adobe LiveCycle Designer 8.0 within SAP and the Adobe Acrobat 7.0.9 for rendering PDF documents.
    The ADS Server Version is: 800.20070708051308.406522
    The funny thing is, if you do the same things in Adobe Designer (stand-alone) it works perfectly as it should.
    Is this a known bug?
    Thanks.
    Maik

    I have figured out myself.
    It is a bug in SAP and has also been reported as a bug to SAP.
    It works fine with all Adobe Designer stand-alone versions as well as Adobe LiveCycle Forms Server 7 and 8.
    As a workaround in SAP you should use STATIC TEXT with "FLOATING FIELDS" instead of TEXT FIELDS.

  • Value of Textfield on Masterpage is not rendered!

    Hi all,
    I design a new form using HRFORMS. When I put a simple textfield on a master page and give the textfield a default value and render my form using transaction PC00_M01_CALC_SIMU, the value of the textfield is NOT rendered.
    I am using Adobe LiveCycle Designer 8.0 within SAP and the Adobe Acrobat 7.0.9 for rendering PDF documents.
    The ADS Server Version is: 800.20070708051308.406522
    The funny thing is, if you do the same things in Adobe Designer (stand-alone) it works perfectly as it should.
    Is this a known bug?
    Thanks.
    Maik

    I have figured out myself.
    It is a bug in SAP and has also been reported as a bug to SAP.
    It works fine with all Adobe Designer stand-alone versions as well as Adobe LiveCycle Forms Server 7 and 8.
    As a workaround in SAP you should use STATIC TEXT with "FLOATING FIELDS" instead of TEXT FIELDS.

  • Visual JSf: textField hide or disable, when selecting dropDown list

    Hello everyone,
    I am new to this forum, I am working on Visaul JSF, I have a question,
    When i select a value dropDown List, i want to disable or hide textField depending on the selected item in the list.
    I have put javascript for dropDown list. I am not able to do this. Can any one help me please...
    <webuijsf:script>
                        function fun(sel){
                            var state = sel.options[sel.selectedIndex].value;
                            alert(state);
                            if(state == 2){ alert("if");  document.getElementById('form1:textField2').disabled='true' }else{ alert("else"); document.getElementById('form1:textField2').disabled='false'}
                    </webuijsf:script>for downdown, i have added this..
    onChange="fun(this)"In dropdon list
    name value
    One 1
    Two 2
    Three 3
    Jsp code:
    <jsp:root version="2.1" xmlns:f="http://java.sun.com/jsf/core" xmlns:h="http://java.sun.com/jsf/html" xmlns:jsp="http://java.sun.com/JSP/Page" xmlns:webuijsf="http://www.sun.com/webui/webuijsf">
        <jsp:directive.page contentType="text/html;charset=UTF-8" pageEncoding="UTF-8"/>
        <f:view>
            <webuijsf:page id="page1">
                <webuijsf:html id="html1">
                    <webuijsf:script/>
                    <webuijsf:script>
                        function fun(sel){
                            var state = sel.options[sel.selectedIndex].value * 1;
                            alert(state);
                            if(state == 2){ alert("if");  document.getElementById('form1:textField2').disabled='true' }else{ alert("else"); document.getElementById('form1:textField2').disabled='false'}
                    </webuijsf:script>
                    <webuijsf:head id="head1">
                        <webuijsf:link id="link1" url="/resources/stylesheet.css"/>
                    </webuijsf:head>
                    <webuijsf:body id="body1" style="-rave-layout: grid">
                        <webuijsf:form id="form1">
                            <webuijsf:textField id="textField2" onChange="" style="height: 18px; left: 174px; top: 258px; position: absolute; width: 216px"/>
                            <webuijsf:button id="button1" onClick="return fun()" style="position: absolute; left: 228px; top: 324px" text="Button"/>
                            <webuijsf:dropDown id="dropDown1" items="#{Page3.dropDown1DefaultOptions.options}" style="position: absolute; left: 312px; top: 90px" onChange="fun(this)"/>
                        </webuijsf:form>
                    </webuijsf:body>
                </webuijsf:html>
            </webuijsf:page>
        </f:view>
    </jsp:root>Thanks in advance
    Neha
    Edited by: Neha_540 on Apr 5, 2009 11:02 PM
    Edited by: Neha_540 on Apr 5, 2009 11:05 PM

    Hi Neha,
    Hope this helps.
    function changeMarital()
                                var marital = document.getElementById('form1:drpMarital_list').value;
                                if(marital == "Others")
                                    document.getElementById('form1:lblOtherMarital').style.display='';
                                    document.getElementById('form1:txtOtherMarital').style.display='';
                                else
                                    document.getElementById('form1:lblOtherMarital').style.display='none';
                                    document.getElementById('form1:txtOtherMarital').style.display='none';
                            }

  • Simple Javascript, difficult placement

    Hi guys,
    I have a very simple requirement for which Ive spent the last 3 days trying to figure out.
    Requirement:
    Show "JAVASCRIPT DISABLED" on form when Javascript is disabled.  Show "" otherwise.
    What I've done:
    I placed a TextField on MasterPage with default text "JAVASCRIPT DISABLED". 
    In event "data::docReady - (JavaScript, client)" wrote a line Page1.StaticText3.rawValue = ""; in order to hide the message.
    Problem:
    For some reason, this script executes even when Javascript is disabled which completely defeats the purpose of the assignment.. Where should I place this Javascript such that it executes ONLY when Javascript is actually enabled....
    Please help! Thanks!

    Guys, thanks for the reply.
    Jono - I've tried to follow the steps from your  document 'Javascript and version test.pdf' but the following problem occurs.  My Javscript code runs even when Javascript is disabled! I know this sounds insane, but please look at the snapshots.
    Note: For the sake of showing you the problem, I've reversed the visible/hidden.
    Initially the TextField is set to Hidden.  Then, in the initialize event - I set it to Visible... 
    As you can see below, even when the bar says "Javascript is currently disabled", it sets the TextField to Visible.
    I've been hacking at this for days now, is there something that I'm missing.  This shouldnt be this difficult, right?
    Thanks again for your help.

  • Open Add Item Form as Dialog

    Hi All - I have a custom button on the click of which I am trying to open a Add Item form. When the display form opens I want to hide all the masterpage items( viz. Quick Launch, header, foooter, etc). I tried below but it's not opening and giving error
    when the masterpage is Oslo. It works fine when masterpage is Seattle. 
    <asp:LinkButton OnClientClick ="javascript:SP.UI.ModalDialog.showModalDialog({ url: '../Lists/AddAccount/NewForm.aspx', title: 'Add Account' }); return false;" CausesValidation="false"   CssClass="orange-btn" Text="Post"
    runat="server" ID="btnPost"></asp:LinkButton>
    Does anything know why is it happening?
    Regards,
    Khushi
    Khushi

    You need to set the URL of SharePoint link button like this
    http://<Site Name>/Lists/AddAccount/NewForm.aspx?isDlg=1
    to open that in modal dialog use below jScript.
    <script type="text/javascript">
    function openDialog(listUrl, frmTitle) {
    var options = {
    url: listUrl,
    title: frmTitle,
    allowMaximize: false,
    height: 500,
    width: 600,
    showClose: true
    //SP.UI.ModalDialog.showModalDialog(options);
    SP.SOD.execute('sp.ui.dialog.js', 'SP.UI.ModalDialog.showModalDialog', options);
    </script>
    And your anchor tag should be like
    <asp:LinkButton OnClientClick ="javascript:openDialog('/Lists/<List Name>/NewForm.aspx?IsDlg=1', 'Add Account')" CausesValidation="false" CssClass="orange-btn" Text="Post" runat="server" ID="btnPost"></asp:LinkButton>
    Adnan Amin MCT, SharePoint Architect | If you find this post useful kindly please mark it as an answer.

  • How to change a list/menu to a text field when 'Other' is chosen?

    Hi there. I've been trying to solve this for a week now and I have depleted all my resources, that is why I'm here. I even went to jquery but nothing works and I think I was over-complicating this way too much.
    In short: I have a contact form, which have a list/menu with validation, and one of the options of that list/menu is "other". What I want is that when the user select "other" automatically change to a text field in order to let the user put his custom color. This is what I have:
    <form method="post" action="process.php">
    <span id="spryselect1">
    <label for="colors"></label>
    <select name="colors" id="colors">
    <option selected="option1">Blue.</option>
    <option value="option2">White</option>
    <option value="option3">Red</option>
    <option value="other">other</option>
    </select>
    <span class="selectRequiredMsg">Please select a colour.</span></span>
    <input type="submit" value="Send">
    </form>
    I know now that the approach is to show/hide a separate textbox besides the other... well. I don't know how to implement that, I think I really need your help guys. I'm completely frustrated.
    Thanks in advance.

    Have a look at the following
    <!DOCTYPE HTML>
    <html>
    <head>
    <meta charset="utf-8">
    <title>Untitled Document</title>
    <link href="http://labs.adobe.com/technologies/spry/widgets/selectvalidation/SpryValidationSelect.css" rel="stylesheet">
    <link href="http://labs.adobe.com/technologies/spry/widgets/textfieldvalidation/SpryValidationTextField.css" rel="stylesheet">
    <style>
    .hidden {display:none;}
    </style>
    </head>
    <body>
    <form action="" method="post">
      <span id="spryselect1">
      <label for="colors">Colours:</label>
      <select name="colors" id="colors" onchange="MyOnClickHandler(this.value)">
        <option value="">Please select...</option>
        <option value="blue">Blue</option>
        <option value="white">White</option>
        <option value="red">Red</option>
        <option value="other">other</option>
      </select>
      <span class="selectRequiredMsg">Please select a colour.</span></span><span id="sprytextfield1">
      <input name="other" id="other" class="hidden" type="text">
      <span class="textfieldRequiredMsg">A value is required.</span></span>
      <input name="" type="submit">
    </form>
    <script src="http://labs.adobe.com/technologies/spry/includes_minified/SpryDOMUtils.js"></script>
    <script src="http://labs.adobe.com/technologies/spry/includes_minified/SpryValidationSelect.js"></script>
    <script src="http://labs.adobe.com/technologies/spry/includes_minified/SpryValidationTextField.js"></script>
    <script>
    var spryselect1 = new Spry.Widget.ValidationSelect("spryselect1");
    var sprytextfield1;
    function MyOnClickHandler(value) {
         if(value =='other') { //show text field and set validation
              if(!sprytextfield1){
              sprytextfield1 = new Spry.Widget.ValidationTextField("sprytextfield1");
              Spry.$$('input#other').removeClassName('hidden');
         } else { //hide textfield and destroy validation
              if(sprytextfield1 && sprytextfield1.destroy){
                   sprytextfield1.resetClasses();
                   sprytextfield1.destroy();
                   sprytextfield1 = null;
              Spry.$$('input#other').addClassName('hidden');
         return false;
    </script>
    </body>
    </html>
    Gramps

  • Problem masterpage hide text based on data (LC Output)

    Hi,
    (This is a combined LC Designer and LC Output problem - but post it in Designer because most clever head in this forum.. most heads that is
    I have great trouble creating a form with a variable header on my MasterPage. I use LC Designer and LC Output
    I create a flowing header block subform that contains 3 subforms on my Masterpage =
    subform 1: contains date > allways visible
    subform 2: contains label and text stating salesperson > visible if data, hidden otherwise
    subform 3: contains label and text stating contractnumber > visible if data, hidden otherwise
    All 3 subforms are in a flowable container subform, so subforms flow nicely up if salesperson subform has no data and is hidden
    First I tried with 'repeat subform for each data element' - but only works on first page the masterpage is used and NOT 9 other pages if 10 pages total - no go!
    Second I tried with script code that hide the subform if no data. Works fine when testing the rendering in Acrobat but NOT when merged with LC Output.There will just be an empty space if salesperson subform is hidden - as the layout is fixed and will not flow nicely. Tried all possible events but nothing works with LC Output.
    There must be someone how had a similar challenge and nailed it - so please share your insights. Thanks in advance
    Please ask if questions if something is not clear
    Best,
    Thomas Groenbaek

    Hi Thomas,
    I can't say in relation to LC Output, but in relation to Master Page objects, there are a few things to bear in mind.
    While you may only have one Master Page with the subforms, when the form is rendered there are 10 instances of that Master Page. So it depends on how you are referencing the presence of the subforms and in what event. For example if you have the script in the textfield pointing out to the subform it may not work. Try having the script in the subform looking into the .rawValue of the textfield. That way it will work for all of the subforms in their own instance of the Master Page. You may have to use the layout:ready event, which is my least favourite.
    See how you get on,
    Niall

  • Is it possible to hide an object on a masterpage dynamically?

    hello,
    is it possible to hide an object on a masterpage dynamically?
    I tried to define a formula in the script editor with FormCalc, but it doesn't work. I made a similiar definition within the content area and this definition is working.
    It is a HCM form and the following formular is defined in the initialization event of the object:
    if( Exists($record.DIM_EMPLOYEE.DATA[*].FIRE_DATE[0]) == 0 ) then
    $.presence = "hidden"
    endif
    Can anybody help me , please?
    Regards,
    Tanja

    Well YES it is possible to hide an object of master page. Couple of things you can try:-
    1. Use quotes around zero. i.e.
    if( Exists($record.DIM_EMPLOYEE.DATA[*].FIRE_DATE[0]) == "0" ) then
    2. Use fully qualified names for the object of Master Page and place the event in form:ready event of the subform instead of master page.
    Also I tried a small example and it worked. Sample Hierarchy is shown below
    form1
    |-- Master Pages
         |-- Page1
              |-- Content Area
              |-- TextField1
    |-- (untitled subform) (page1)
         |-- TextField2
    JS code on the exit event of TextField2
    form1.#subform[0].TextField2::exit - (JavaScript, client)
    if(this.rawValue == "1")
         form1.pageSet.Page1.TextField1.presence = "hidden";

  • How do I hide JLabel and TextField???

    I am trying to hide my start JLabels and TextFields. I thought that if I use an if statement it would work but it doesn't. I have been at this for awhile now. So here I am. Any help would help a lot.
    Thanks,
    Roman03
    JLabel inName = new JLabel("Enter Your Name: ");
    JLabel pName;
    TextField inText = new TextField( 14 );
    JLabel outText = new JLabel();
    public mainStation()
         getContentPane().setLayout( new FlowLayout() );
         if ( name == 0 )
         getContentPane().add( inName );
         getContentPane().add( inText );
         getContentPane().add( outText );     
         inText.addActionListener( this );
    void copyText()
    Characters newName = new Characters( inText.getText() );
    outText.setText( newName.someName() );
    public void actionPerformed( ActionEvent evt )
         name = name + 1;
         copyText();
         repaint();

    inName.setVisible(false);

  • How to hide a TextField when clicking another button

    Hello!
    I've been able to generate a TextField to appear when clicking a button, but when I click on another button, to display some more information, I still have the first TextField displayed.  I've had a look around, but not been able to find anything to help me with getting the first to disappear.  Can anyone provide any ideas for this?
    The code I'm using for displaying the TextField is:
    button10.addEventListener(MouseEvent.CLICK, fl_ClickToPosition);
    var fl_TF:TextField;
    var fl_TextToDisplay:String = "Send disply to the right screen/projector";
    function fl_ClickToPosition(event:MouseEvent):void
    fl_TF = new TextField();
    fl_TF.autoSize = TextFieldAutoSize.LEFT;
    fl_TF.background = true;
    fl_TF.border = true;
    fl_TF.x = 300;
    fl_TF.y = 100;
    fl_TF.text = fl_TextToDisplay;
    addChild(fl_TF);
    Many thanks in advance

    all your buttons should call the same function. 
    because each button probably triggers different text to be displayed, you can use an object or dictionary to associate the buttons and their text:
    // execute these two lines and your function once at the start of your app
    var dictionary:Dictionary=new Dictionary(true);
    var fl_TF:TextField;
    function fl_ClickToPosition(event:MouseEvent):void
    if(fl_TF&&fl_TF.parent){  /
    fl_TF.parent.removeChild(fl_TF);
    fl_TF=null
    fl_TF = new TextField();
    fl_TF.autoSize = TextFieldAutoSize.LEFT;
    fl_TF.background = true;
    fl_TF.border = true;
    fl_TF.x = 300;
    fl_TF.y = 100;
    fl_TF.text = dictionary[e.currentTarget];
    addChild(fl_TF);
    ////////// and for each button use something like:
    button10.addEventListener(MouseEvent.CLICK, fl_ClickToPosition);
    dictionary[button10] = "Send disply to the right screen/projector";

  • Hide/show an textfield depending  on the value of two other textfield.

    hi,
    I have two textfield i.e grade_code and travel_policy
    now let me explain what these field are...
    grade_code is field like E4,M4,M1 ETC. WHERE
    travel_policy is field like AIRWAYS,RAIL - 1AC,RAIL -2AC etc i.e mode of transport.
    now.....
    as person of grade E4 is allowed to travel ONLY in RAIL - 2AC,IF GRADE E4 TYPE PERSON is travelling in Airways.then he have to give REASON FOR THAT.....
    what I required is ,that depending on grade_code and travel_policy textfield the,another textfield REASON should be hidden and shown dynamically
    GRADE - ALLOWED TO TRAVEL MODE
    M4 ---- AIR,RAIL - 1AC.
    M3 ---- AIR,RAIL - 1AC.
    E4 ----- RAIL - 2AC.
    Edited by: Shirish on Jan 31, 2012 9:19 AM

    I still think that a function that returns Boolean is the way to do that.
    Straightforward option is to enumerate all possible combinations. A better choice is to find out whether there are more "display" combinations or "don't display" ones, so you'd name those that require less typing while the others would be "others".
    Here's an example:
    if :P1_GRADE_CODE = 'E4' and :P1_TRAVEL_POLICY = 'AIRWAYS' then
       return (true);
    elsif :P1_GRADE_CODE = 'M4' and :P1_TRAVEL_POLICY = 'AIRWAYS' then
       return (true);
    elsif :P1_GRADE_CODE = 'M1' and :P1_TRAVEL_POLICY = 'AIRWAYS' then
       return (true);
    else
       return (false);
    end if;Even better option would be to create a table in between GRADE_CODE and TRAVEL_POLICY values which would contain valid combinations. Then you'd just have to check whether entered values exist in that table and return (true) or (false).

  • Hide or remove textfields

    Hi,
    I've created a form on a JTabbedPane, where the user enters info, clicks Enter Data, and the data appears on the pane in JLables. That works great, but the JTextfield remains beside it.
    Do I need to hide or remove the variable to the JTextField? How can this be done?
    Here my actionPerformed method:
    public void actionPerformed(ActionEvent evt)
    if (evt.getSource() == enter)
    String nameText = name.getText();
    lname.setText("Name: " + nameText);
    String streetText = street.getText();
    lstreet.setText("Street: " + streetText);
    String cityText = city.getText();
    lcity.setText("City: " + cityText);
    String statezipText = statezip.getText();
    lstatezip.setText("State & Zip: " + statezipText);
    Thanks!!!

    Yes, except I want my JLables to remain.
    I tried this, but it didn't work:
    public void actionPerformed(ActionEvent evt)
    if (evt.getSource() == enter)
    String nameText = name.getText();
    lname.setText("Name: " + nameText);
    name.removeAll(); //This does not remove the name textfiled as I'd like it to
    String streetText = street.getText();
    lstreet.setText("Street: " + streetText);
    String cityText = city.getText();
    lcity.setText("City: " + cityText);
    String statezipText = statezip.getText();
    lstatezip.setText("State & Zip: " + statezipText);
    No errors, but the textfiled name is still there. I also tried remove(name);, but that didn't work either. Am I doing something wrong?

  • Problem with preprint/postprint on masterpage and forms

    good morning!
    hope you can help me...
    on my masterpage i have a textfield that must be displayed, but must not be printed, so i hide it in the prePrint-event and make it visible again in the postPrint-event. works perfect so far.
    BUT if i use the same system for hiding e.g. a dropdown-list in a form using this masterpage, the dropdown-list is hidden in print mode, but the textfield on the masterpage is printed and i have absolutely no idea why
    hope you understand my description, my english isn´t that perfect...

    I use normally patch 15 in my projects against 8i and 9i. patch 17 against DB 10g Rel. 1 and 10g Rel. 2 has no official patchset for Forms 6i.
    you have to migrate if you must compile against the newest version of the DB

  • Buttons linking to masterpages and designs do mistakes (or i did)

    Hi there,
    i produced this form and while the "Kopfgrafik" Checkbox is supposed to switch the top layout off, the "Fussgrafik" Checkbox is supposed to switch the bottom(masterpage) layout off.
    That sounds simple and the code so far is too:
    [[letter.master.page_1.chb_head::change - (JavaScript, client)]]
    if (this.rawValue == true) {
    letter.head.img_head_1.presence = "visible";
    letter.head.img_subject_1.presence = "visible";
    } else if (this.rawValue == false) {
    this.rawValue = false;
    letter.head.img_head_1.presence = "invisible";
    letter.head.img_subject_1.presence = "invisible";
    [[letter.master.page_1.chb_foot::change - (JavaScript, client)]]
    if (this.rawValue == true) {
    letter.master.page_1.img.img_foot_1.presence = "visible";
    letter.master.page_n.img.img_foot_n.presence = "visible";
    } else if (this.rawValue == false) {
    this.rawValue = false;
    letter.master.page_1.img.img_foot_1.presence = "invisible";
    letter.master.page_n.img.img_foot_n.presence = "invisible";
    b Try following: Uncheck "Fussgrafik" and then uncheck "Kopfgrafik", which causes "Fussgrafik" to appear again(?!) How is it possible?
    Note1:
    Actually i don't want these buttons to be seperated, but it was the only way to get it working like it does now.
    Note2:
    When using that method of setting an object invisible in the beginning and then by script again visible, that object just disappears when another page is created (the content is extensible).
    Note3:
    Link to the pdf file: http://www.file-upload.net/download-1379569/maf.pdf.html
    Note4: I use LiveCycle ES and Adobe Reader 9
    Thanks,
    Helge

    there is a workaround(in general found out by Paul), to just hide the headlayout with the button, and for the footlayout to have invisible textfield with white backgroundcolor above that is set visible on the calculate event:
    letter.master.page_1.hide_foot_1::calculate - (Javascript, Client)
    if(letter.head.img_head_1.presence == "invisible") {
    letter.master.page_1.hide_foot_1.presence = "visible";
    } else {
    letter.master.page_1.hide_foot_1.presence = "invisible";
    i think the important thing about this is that the two commands (one in masterpage, one in designsubforms) are seperated and each located in it's part of the document
    mysterious..

Maybe you are looking for

  • The folder "iTunes" cannot be found or created, and is required.

    Hello, I cannot start iTunes. When I do, I get the following error message: The folder "iTunes" cannot be found or created, and is required. the default location for this folder is inside the "My Music" folder. I have reviewed and gone through the re

  • Stock transfer from a Depot to a manufacturing plant

    Hi All I am doing a stock transfer from a Depot to a manufacturing plant. I have transfered the material from depot to plant and captured the excise in register RG23D using transaction J1IJ.Now a goods receipt in done in the receiving plant in refern

  • Using SharePoint WebServices in APEX

    Hi, I'm trying to use sharepoint webservice in apex. But sharepoint webservices uses NTLM authentication, and there is no such option in apex web service config. I tried to put authentication data in soap header, but I didn't get any answer from the

  • Why does the Apple password banner pop up all the time for me now? It happens every 2 or 3 minutes.

    For the past couple weeks whenever I am using my phone the banner that pops up for you to type in your password pops up on the screen. It happens everytime I am using the phone, many times a day. Not sure if this is a bug or possible a hack.? I was t

  • Free samples

    I am getting some free samples from vendor of one material which is I am using regularly and material has certain cost in material master. I know I can get it by creating PO with free of charge indicator. But then when I will receive it and I want to