Custom DocLib Listdefinition (ListType 10000) show no Custom Action to configure incoming email

Hi,
I need to add a custom listdefinition based on a Document Library which has a listtype like 10000. Libraries created with this listdefinition do not show the custom action to configure incoming email (settings > incoming email). 
I heard that this custom action only shows with libraries created with listtype 101. How can I add this custom action to my custom document library.
Thanks
Cheers
Sven

Hi,
According to your description, my understanding is that you want to show the incoming email settings in your custom document library.
SharePoint only shows Incoming Email settings link for OOTB lists of type Announcements, Event, Document Library, Picture Library, XML Form, Discussion Board, Posts.
So, if you create a custom list, you need to create a custom email event handler and attach to your list and then Incoming Email settings link will be available.
Here is a detailed thread with the solution for your reference:
http://sharepoint.stackexchange.com/questions/36553/incoming-e-mail-settings-hidden-from-custom-document-library
Thanks
Best Regards
TechNet Community Support
Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
[email protected]

Similar Messages

  • A report to show 2008 Customer Sales by State.

    My customer needs a report to show 2008 Customer Sales by State.  I don't see any SAP reports that will do this.  Is the state held in any of the document files that I could use to create a query??  Or does anyone have a query that reports this information?

    Try using following query:
    SELECT T0.CardCode, T0.CardName, T0.DocNum, T0.DocDate, T0.DocTotal, T1.State
    FROM OINV T0
    INNER JOIN CRD1 T1 ON T0.CardCode = T1.CardCode
    AND T0.ShipToCode = T1.Address
    Though A/R Invoice, does not store the state code separately, it does store the addresscode, which was used for shipping, which could be linked to the Addresses table. Though if the user changes the address manually, than there is no other way, but to do some programming and find the address name, though it will be pretty difficult, because users might not always be correct with their spellings.
    Rahul

  • Show the custom popup window on clicking the people name in sharepoint people search result

    Show the custom popup window on clicking the people name in sharepoint people search result
    We are doing the below code to open a popup but while clicking on name link its postback the page and not opening the popup in first click but opening in second click.The same issue occurs while navigate to second page using pagination
    The below code used to show name in item template
    <button id="NameFieldLink" class="temp" style="font-size: 12px;text-decoration:none;color:#0072c6;border:0px solid #fff;background:transparent;margin-left: 1px;height: 15px;padding: 0 10px 17px 0px;text-align: left;cursor:pointer;font-family:
    Arial, Helvetica, sans-serif;" title="">_#= DisName =#_</button> 
    The below jquery code used to open popup in control search template
    ctx.OnPostRender = []; 
    ctx.OnPostRender.push(function () {
    $(".temp").on("click", function(event)
    event.preventDefault();
    $('#fadeout').show();
    $('#pop1').find('.tab-content-people').html($(this).closest('.emp-card').find('.pop-content').html());
    $('#pop1').show();
    return false;

    I believe the issue is that you are not actually searching against the result source you made in step #1.
    It's not enough to make a result source, you have to tell the search results web part to use it.
    Try this:
    1. Go to the Pages library of Search Center
    2. Create a new Search Results page
    3. Edit the page, then edit the search results web part
    4. Change the source for the search results web part to your source
    5. Add the page to your Search Center navigation
    6. Run the search on that page
    Scot
    Author,
    Microsoft SharePoint 2013 App Development
    Author,
    Professional Business Connectivity Services
    Author,
    Inside SharePoint 2013
    Blog, www.shillier.com
    Twitter, @ScotHillier
    SharePoint Trainer, Critical Path Training

  • Showing the custom train stop as default activity based on condition

    Hi Folks,
    I'm using JDeveloper version 11.1.1.5.0. I have requirement where in i have to show the custom train stop as default train stop based on some business logic instead of default activity mentioned as part of task flow with train.
    Test Case:
    I have a dynamic region where i'm loading diff task flows based on condition. Let us consider i have two task flows TF1, TF2 and One of these task flows (TF2) contains a train.
    TF2 task flows has a train with train stops as ts1, ts2 and ts3 and ts1 has been configured as default activity in TF2 task flow
    I'm loading these task flows into dynamic region based on my business logic. Currently i'm in TF1 and i'm doing some action in TF1 page. Based on my business logic in one of the button actions in TF1, i have to load TF2 into region and have to set either ts1, ts2 or ts3 as default activity. its not like every time only configured default activity as part of TF2 is shown.
    Consider this case. in IF1 i have 3 buttons b1, b2 and b3. When i click on b1, i have to load TF2 into region and ts1 as default activity. Like wise if i click on b2 in TF1, i have to load TF2 abd ts2 as default activity. Like wise if i click on b3 in TF1, i have to load TF2 abd ts3 as default activity.
    I have summarized my test case here. Its not exactly 100% same but it more or less like based on some business logic in TF1 i have to load TF2 with specific train stop as default activity.
    Please help me in this regard. Is this possible in ADF? if yes provide some pointers.
    NOTE:
    I'm able to show the specific trainstop as the selected one but its content is not showing. Though i'm able to see my intended trainstop selected but content is always the content related to the default activity configured as part of task flow.
    I have used below code to acheive ( setting atleast intended train stop as the selected on)
    TrainModel trainModel = TrainUtils.findCurrentTrainModel();
    trainModel.setCurrentTrainStop(activityId);
    [activity id i'm getting from model it self like java.util.Map<ActivityId, TrainStopModel> mapTrainStops = trainModel.getTrainStops(); and intended activityId is provided}
    // note end
    Thanks,
    Mahipal

    Hi Jobinesh,
    Thanks for your reply.
    When i try to do the navigation with in the task flow i.e. with in the train task flow, i'm able to navigate fine. But for different taskflow, i'm unable to do it.
    for ex: in my case i have three train stops ts1, ts2 and ts3. I have placed a button in ts3 and i'm returning the respective navigation el expression to navigate to either ts1 or ts2 in action method of this button. I'm able to do this successfully. but when i come from different taskflow, i'm unable to do this.
    I have tried this link as a workaround but it is not working.
    http://www.oracle.com/technetwork/developer-tools/adf/learnmore/97-deferred-trainstop-navigation-1528557.pdf
    i have tried this way, but it is not working.
    FacesContext fctx = FacesContext.getCurrentInstance();
    ExpressionFactory expressionFactory =
    fctx.getApplication().getExpressionFactory();
    ELContext elctx = fctx.getELContext();
    MethodExpression methodExpression =
    expressionFactory.createMethodExpression(elctx,
    "_adfcActivityRequest./WEB-INF/task-flow-definition.xml#task-flow-definition@*ts3*",
    String.class,
    new Class[] { });
    *//NOTE: ts3 is the activity id of third train stop*
    //queue action in region
    myspaceRegion.queueActionEventInRegion(methodExpression,
    null, null, false,
    0, 0,
    PhaseId.INVOKE_APPLICATION);
    Please let me know any pointers for this problem. is there any example with routers navigation rules which can be called from another task flow.
    Thanks,
    Mahipal

  • DSWP  not showing field Customer Number in Solution Information

    Hi Guru's,
    In transaction code DSWP  while Creating <b>New Solution</b> system not showing field Customer Number in Solution Information.
    It is showing <b>Solution Name</b> and <b>Original Language </b> only.
    Due to this I am not able to continue error coming <b>Please fill out all the fields</b> but required field is missing.
    Please help.
    I have installed Solman 3.2 on Win 2003, Oracle.
    Current patch level :
    SAP_BASIS   620                   0058     SAPKB62058
    SAP_ABA          620                   0058     SAPKA62058
    BBPCRM          310                    0011     SAPKU31011
    PI_BASIS        2004_1_620     0007     SAPKIPYI57
    ST-PI       2005_1_620     0005     SAPKITLQG5
    CPROJECTS   310_620     0004     SAPK-31204INCPROJECT
    ST       320                     0010     SAPKITL320
    ST-A/PI       01E_CRM315     0000          -
    ST-ICO       140                     0001     SAPK-14001INSTPL
    ST-SER       320                     0007     SAPKITLO77
    ST-SUP       320                     0010     SAPKITLC50
    TMWFLOW      320     0010     SAPK-32010INTMWFLOW

    Hello,
      check note  877547 - Cannot create new Solution in SAP Solution Manager.
    Hope it solves your problem.
    Regards,
    Raquel Cunha.

  • Show a custom component on button click in a view stack`

    Hello folks
    I have a view stack in which i have some custom components.
    Now there is one custom component in which there is one button. On the button click, i want to show another custom component but i dont know how to do it. Should i write the inline mxml click event in custom component?? If yes then how??
    Currently i am doing it as
    click="{customcomponent}"

    As you know, ViewStack  has containers, lilke VBox for its views.
    Assuming one of your views VBox has an id of myVBox, and that VBox has the Button that when clicked will display the component, just have the component in the view already, but you can make it invisible with visible=false and includeInLayout=false, and then upon button click set those two variables to true.
    You will probably want a show handler for the view VBox to make those properties false each time that view is displayed.
    Here is some simple sample code.
    If this post answers your question or helps, please mark it as such.
    ---------- MySimpleComponent.mxml ----------
    <?xml version="1.0" encoding="utf-8"?>
    <mx:VBox xmlns:mx="http://www.adobe.com/2006/mxml"
      width="100%" height="100%" horizontalAlign="center">
      <mx:Label text="My Custom Component"/>
    </mx:VBox>
    ---------- MainApp.mxml  ----------
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
      xmlns:comp="*" horizontalAlign="center" verticalAlign="middle">
      <mx:Script>
        <![CDATA[
        ]]>
      </mx:Script>
      <mx:LinkBar dataProvider="{vs}"/>
      <mx:ViewStack id="vs" width="100%" height="100%">
        <mx:VBox label="view1" width="100%" height="100%"
          horizontalAlign="center">
          <mx:Label text="View One"/>
        </mx:VBox>
        <mx:VBox label="view2"  width="100%" height="100%"
          show="myComp.visible=false;myComp.includeInLayout=true;"
          horizontalAlign="center">
          <mx:Label text="View Two"/>
          <mx:Button label="Make myComp Visible" click="myComp.visible=true;myComp.includeInLayout=true;"/>
          <comp:MySimpleComponent id="myComp" visible="false" includeInLayout="false"/>
        </mx:VBox>
      </mx:ViewStack>
    </mx:Application>

  • I want to be able to open up a file (from an app or mobile website) to show a customer, then be able to send it to them.

    I want to be able to open up a file (from an app or mobile website) to show a customer, then be able to send it to them. So add a 'Email this file to Client' link that opens up an email with file attached. Is this possible in any of the Adobe Creative Cloud Applications?

    Thank you for the feature request.
    Besides attaching the file to an email yourself, you can use file syncing and the Send Link feature to email a link to your customer.
    File syncing is built into the Creative Cloud desktop application that you use to download and install Adobe desktop applications. Files saved to the Creative Cloud Files folder on your computer are synced up to a cloud file storage. From the Files page in a browser at https://creative.adobe.com/files you can used the Send Link feature.
    The email will be sent and received more quickly since no file is attached, and your customer can download the file from the url you share.

  • Custom scan box does not show scan button due to my 13" screen.  Can't reach it.  How do i fix?  Thx

    Custom scan box does not show scan button due to my 13" screen.  Can't reach it.  How do i fix?  Thx.

    Try increasing the resolution of your screen.

  • Customer Details don't export when creating custom reports

    Hi everyone,
    For both orders and event bookings, you can type in some notes into the details field for customers. I went to the custom reports section of BC and chose "New Customer Report", then I chose "Customer and Orders" for the report type. Then under "Fields" I chose "Customer Name with details", but the results didn't show any of the details, ie. any of the text that I typed into the details field within the CRM, it only shows the customer name. I can only assume that "Customer Name with Details" means the details typed into those 2 fields within orders and event bookings because there's nowhere-else where you can type in something into a field called "Details".
    Has anyone noticed this or can anyone tell me if this is a bug or whether there is a workaround?
    Thanks so much.

    Hi everyone,
    For both orders and event bookings, you can type in some notes into the details field for customers. I went to the custom reports section of BC and chose "New Customer Report", then I chose "Customer and Orders" for the report type. Then under "Fields" I chose "Customer Name with details", but the results didn't show any of the details, ie. any of the text that I typed into the details field within the CRM, it only shows the customer name. I can only assume that "Customer Name with Details" means the details typed into those 2 fields within orders and event bookings because there's nowhere-else where you can type in something into a field called "Details".
    Has anyone noticed this or can anyone tell me if this is a bug or whether there is a workaround?
    Thanks so much.

  • Expose Data 0f 1 Custom object group them based on another custom object

    1. Custom Object 2: Call Report
    2. Custom Object 1: Customer
    3. Account:
    Fields: Account
    Account Id
    Call Report
    Created Date
    Row Id
    Subject
    Owner
    Status
    Customer
    Customer Name
    Using Real Time Reporting-> Call Reporting
    Hide Display of Distributor Id, prompt on dashboard
    Need to group customer name based on call report row id.
    Union of 2 reports, we cannot use Account Id as prompt(does not support).
    Report output as below
    Account id1, created date, object, status, owner, Customer name 1
    Customer name 2
    Account id2, created date, object, status, owner, Customer name 6
    Customer name 7
    Account id4, created date, object, status, owner, Customer name 9
    Thanks in Advance.

    Please add a question to your post. It is not clear what output you are trying to achieve that is not working.
    Thanks!

  • Customer Tax Classification : Missing entry screen in customer master

    Hi All,
    Anyone know if any customizing is required to activate the Customer Tax Classiification entry screen in the Customer Master of Sales Area (BillingT Tab)? I could not enter the customer tax classification as the entry screen doesn't appear in the customer master.

    Hi,
    You have to maintain few settings for this
    In OVK1 Enter the TAX CATEGORY for the Country
    In the OVK3 transaaction code enter the TAX CLASSIFICATION for the Tax category defined in OVK1
    after this assignment try to create the customer master , in the Billing tab the tax classification will appear.
    regards,
    santosh

  • Customer master creation or entering data into customer master.

    Hi Friends
    Can any give good example to create customer master from Account group to entering customer master data? so that to move forward.
    Thanks in advance.

    2.1     Customer Master
    2.1.1     Account Group
    2.1.1.1       Maintain Number Range for Account Group
    Use
    The purpose of this activity is to control number range of Account Group.
    Procedure
    Access the activity using one of the following navigation options:
    IMG --> Financial Accounting (New) --> Accounts Receivable and Accounts Payable --> Customer Accounts --> Master Data --> Preparations for Creating Customer Master Data --> Create Number Ranges for Customer Accounts --> Select the Icon to maintain Number Range
    Transaction Code: SPRO
    Data to be maintained:
    No | From      | To | Current No | Ext (Tick in Check Box)
    01 | 0000000001 | 0000099999 | 0 | No
    02 | 0000100000 | 0000299999 | 0 | No
    XX | A | ZZZZZZZZZZ |      Yes
    2.1.1.2       Assign Number Range to Account Group
    Use
    The purpose of this activity is to maintain number range of Account Group.
    Procedure
    Access the activity using one of the following navigation options:
    IMG > Financial Accounting (New) > Accounts Receivable and Accounts Payable > Customer Accounts > Master Data > Preparations for Creating Customer Master Data > Assign Number Ranges to Customer Account Groups
    Transaction Code     : SPRO
    Data to be maintained:
    Group | Name | Number Range
    0001 | Sold-to party | XX
    0002 | Goods recipient | XX
    0003 | Payer | XX
    0004 | Bill-to party | XX
    2.1.1.3       Define Account Groups with Screen Layout (Customers)
    Use
    In this step, you determine the account group of the customer.
    Procedure
    Access the activity using one of the following navigation options:
    IMG > Financial Accounting (New) > Accounts Receivable and Accounts Payable > Customer Accounts > Master Data > Preparations for Creating Customer Master Data > Define Account Groups with Screen Layout (Customers)
    Transaction Code     : SPRO
    The groups indicated below are a few examples. There are many groups in Standard SAP & if we require additional Group, it can be copied from appropriate group & maintained.
    Group | Name
    0001 | Sold-to party
    0002 | Goods recipient
    0003 | Payer
    0004 | Bill-to party
    0005 | Prospective customer
    0006 | Competitor
    Select Sold-to-party > go to Details > Double Click on General data / Company code data / Sales data. It will take to next screen which details Tab Pages of General data / Company code data / Sales data. Double Click on Tab Page for example: Address, Control, Marketing & so on. Here you can maintain whether the field is to be Suppress, Req. Entry, Opt. entry or Display
    2.1.2     Process to Create Customer Master
    2.1.2.1     Initial Screen of Customer Master Maintainance
    Use
    The purpose of this activity is to maintain Customer Master Data. Customer Master Can be created for Sales & Distribution, in which it will be possible to maintain General Data Tab & Sales Area Tab. Alternatively it is also possible to maintain Complete / FI, in which it is possible to maintain General Data, Company Code Data & Sales Area Data (Complete) or General Data & Company Code (F1)
    Procedure
    Access the activity using one of the following navigation options:
    SAP Easy Access >      Logistics > Sales and Distribution > Master Data > Business Partner > Customer > Create > Sales and Distribution / Complete
    Transaction Code     : VD01 / XD01
    Fields to be maintained in Initial Screen (referring Complete):
    Field - Functionality
    Account Group - Take a drop down & select appropriate Account Group
    Customer     Enter manually
    Company Code - Take a drop down
    Sales Organization - Take a drop down
    Distribution Channel - Take a drop down
    Division - Take a drop down
    A Customer can be created with reference to an existing Customer & necessary data can be changed.
    Reference
    Field - Functionality
    Customer - Enter manually
    Company Code - Take a drop down
    Sales Organization - Take a drop down
    Distribution Channel - Take a drop down
    Division - Take a drop down
    2.1.2.2     General Data of Customer Master Maintenance
    Use
    The purpose of this activity is to maintain General Data. General Data is applicable to the customer centrally. Incase of extending Customer to another Sales Area, General data will remain the same.
    Procedure
    Fields to be maintained are as under:
    <u>ADDRESS</u>
    Field - Functionality
    Title - Take a drop down
    Name - Enter manually
    Search Term - Enter Manually (Optional)
    Street - Enter Manually (Optional)
    House No - Enter Manually (Optional)
    Postal Code - Enter manually
    City - Enter manually
    Country - Take a drop down
    Region - Take a drop down
    <u>Control Data</u>
    Field - Functionality
    Vendor - Enter Manually (Optional) – To establish Customer Vendor Relationship.
    Trading Partner - To be maintained incase of Inter-company Customer,
    The above is for Illustration purpose. Please ensure to maintain the fields required.
    2.1.2.3     Company Code Data of Customer Master Maintenance
    Use
    The purpose of this activity is to maintain Company Code Data. This is maintained by an FI person.
    Procedure
    Fields to be maintained are as under:
    <u>Account Management</u>
    Field - Functionality
    Recon. Account - Take a drop down (Mandatory)
    <u>Payment Transaction</u>
    Field - Functionality
    Terms of payment - Take a drop down.
    The above is for Illustration purpose. Please ensure to maintain the fields required.
    2.1.2.4     Sales Area Data of Customer Master Maintenance
    Use
    The purpose of this activity is to maintain Company Code Data. This is maintained by an FI person.
    Procedure
    Fields to be maintained are as under:
    <u>Sales</u>
    Field- Functionality
    Sales Office - Take a drop down & maintain the appropriate SBU
    Currency - Maintain the local / export currency.
    Exch. Rate Type- Maintain ‘M’, incase of export / inter-company(if required) only.
    Cust. Pric. Proc -This is maintained to pick the pricing procedure in Sales Order & Billing Document. It should always be maintained.
    Customer Stat. Gr - This is recommended to be maintained to enable the data to flow to SAP standard report.
    <u>Shipping</u>
    Field -Functionality
    Delivery Priority - Take a drop down & maintain the appropriate for Delivery purpose.
    Order Combination - Maintain the tick
    Shipping Condition -Take a drop down & maintain the appropriate for Delivery purpose.
    Delivery Plant - Take a drop down & maintain the appropriate Plant.
    <u>Billing</u>
    Field - Functionality
    Incoterm - Take a drop down & select. Maintain the Description manually.
    Terms of payments -Take a drop down & select.
    Account assignment Group -Take a drop down & maintain the appropriate. This is very important to be maintained, else it will give an error to release the billing document to accounting.
    Tax - Take a drop down & select ‘0’ or appropriate.
    The above is for Illustration purpose. Please ensure to maintain the fields required.
    Regards,
    Rajesh Banka
    Reward points if helpful

  • CRM 2013: Custom button to Open multiselect lookup with custom view

    Hello Everyone,
    Looking for your suggestions to implement the following requirement.
    We want to implement a custom button on the sub grid of Custom Entity (Lets say, "PersonMapping"). The custom button should open another entity multi select lookup(Lets say, "Person"). Till here we could achieve by directly opening the
    multi lookup url of the Person using "Window.showModelDialog". But in this lookup, we want to set our custom view as default view. Please suggest some solution to achieve this.
    Thanks.

    Hi,
    First of all I would advice you to post this question in the new CRM 2007 forum.
    We have created our own button that calls an URL in a separate window. Here is some coding from the method CALLBACK~GET_BUTTONS which may inspirere you:
    CONCATENATE 'javascript:window.open'
                  lv_http
                  '","Print","resizable=yes,height=850,width=700,dependent=yes,status=1");'
             INTO lv_java.
      ls_button-type     = cl_thtmlb_util=>gc_icon_print.
      ls_button-tooltip  = cl_wd_utilities=>get_otr_text_by_alias( 'CRM_UIU_BT_SALES_QUOT/SALESQUOT_PRINT' ).
      ls_button-on_client_click = lv_java.
      ls_button-page_id  = me->component_id.
      ls_button-enabled  = abap_true.
      APPEND ls_button TO rt_buttons.
      CLEAR ls_button.
      ls_button-text     = cl_wd_utilities=>get_otr_text_by_alias( 'CRM_UIU_BT_SALES_QUOT/SORDER_CREATEFOLLOW-UP' )."#EC NOTEXT
      ls_button-tooltip  = cl_wd_utilities=>get_otr_text_by_alias( 'CRM_UIU_BT_SALES_QUOT/SORDER_CREATEFOLLOW-UP' )."#EC NOTEXT
      ls_button-on_click = 'FOLLOWUP'.                          "#EC NOTEXT
      ls_button-page_id  = me->component_id.
      ls_button-enabled  = lv_persistent.
      APPEND ls_button TO rt_buttons.
      CLEAR ls_button.
    /Anders

  • The days are gone when a customer service manager could actually serve the customer.

    I can remember a day when asking to "speak to a manager" actually meant you were talking to someone who the company entrusted the authority to think outside box and take care of a customer.  AT&T has created a system where there is no real authority.  My issue? I signed up for the next plan and selected a Galaxy S6 Edge.  After about a week I was really struggling with the phone and went to AT&T to talk to an expert.  They helped me with a few of my issues but I learned that the real issue was touchwiz.  Coming from an LG phone I didn't like some of Samsung's ideas of how a UI should work.  They talked me into sticking with it because the phone was the best.  After more time (maybe a week) I went back.  I had issues with my hands being too big for the phone.  I kept touching the edge of the screen inadvertently.  Again, I was talked into sticking with it. After a month, I was done. I took my pristine phone back to AT&T with all the original packing. It had been in a case and had a screen protector installed since day one.   I found out that I had kept it past the 14 day window and that I was stuck. I thought if I spoke to a manager they would hear my case and rule in my favor. This was to no avail. I contacted the support found through their website. No one could help. They were all powerless. Even after hearing my plight they couldn’t do anything. They “System” would not allow it. At the store they suggested I sell my phone and buy a different one. So, I found an LG G4 and loaded my SIM. Now, I am trying to sell my S6 and no one wants it because it is not “unlocked.” Wow, now I have a phone that I can’t sell. You would think that AT&T would help a person out who their own people encouraged to keep with a product they didn’t like. You would think that AT&T would step up and do something special for a long time customer like myself. R.I.P. Customer Service.

    You can easily unlock the phone. Send the request through the unlock portal.
    I recently unlocked 2 of my phones. After I confirmed the email and got the code, I went to a T-Mobile and explained I was unlocking my ATT phones so I could use them out of the country. They were great, popped in a sim, entered the code, done in 3 minutes.
    https://www.att.com/esupport/article.jsp?sid=KB414532&cv=820

  • Making Customer PO Line Filed Mandatory basing on Customer PO Number in SO

    Hi Gurus,
    I have the following requirement of making Customer Po Line Filed Mandatory basing on Customer PO Number at Sales Order Line level.
    We need to use Sales Order line "Customer PO" line level number to manage the "Cust PO Line" field.
    1.When ever "Customer PO" line level modified make Cust PO Line" field empty and as required field.
    2.When ever "Customer PO" at line level removed make Cust PO Line" field empty and as non required field.
    3.When ever "Customer PO" value at header level is also there,then Customer PO Line value should be Mandatory and Empty after REQUERYING.
    Please suggest me the possibilities as soon as possible.Please provide the soltuion steps as soon as possible clearly.
    which is the best one to accomplish the given requirement?
    1.CUSTOM.pll
    2.Form Personalization
    3.Form Customization
    Note:
    RDBMS : 11.2.0.1.0
    Oracle Applications : 12.1.3
    Oracle Forms Version : 10.1.2.3.0
    Thanks,
    RS

    Hi,
    Thanks for your Reply.I have gone through that metalink note 1309458.1.Can you please elaborate the step by step process so that i can complete my task.
    Thanks,
    RS.

Maybe you are looking for

  • 11g 64-bit unable to create ODBC connection

    Hello, I am currently facing issue related to ODBC connection. Details of configuration is as follows OS: Vista 64 Home Premium Oracle DB 11g 64bit: ver 11.1.0.6.0,plus the addition of the fix for bug 7389110 (as per release notes) ODBC driver locati

  • Some files on the server may be missing or incorrect. Clear browser cache and try again. If the problem persists please contact website author.

    I've been building a site in Muse successfully until today when I get this error message in the browser, publishing to business catalyst as a test bed: Some files on the server may be missing or incorrect. Clear browser cache and try again. If the pr

  • No HD to Select.. Cannot Find a related topic.

    Hi, i have a macbook pro g5 intel 2.5g duo. Have leopard 10.5.7 and had a pc formatted HD plugged in and it was pulled out and since the apple logo screen with the spinning circle is all i see. So i restart the computer with the osX DVD selected lang

  • Deleting Duplicate Rows in a list

    Hey folks, I've scowered around a bit for the answer to this and can't for the life of my figure it out. I've got a list of ~2,000-3,000 words in the following format: Fact Fiction Funny Funny Funny Funky etc etc. I am looking to make numbers delete

  • Payment Medium Workbench Query

    Hi I have implemented PMW for BACS payments and have 1 query with regards to how you get program SAPFPAYM in the Printout/Data Medium tab of the payment run.  Regards Claire