DFF Segments not appearing

Hi
I have added a couple of segments to the Job Attributes and deployed it successfully. However when I go back to the Manage Job screen I cannot see the two segments that I have created. I am assuming after deploying the DFF the segments should be shown automatically when I go to the Job Creation page. Any idea why or how I can show the DFF segments
Thanks

Hi Pavan,
I shall check this now and let you know.
Thanks

Similar Messages

  • FDMEE: EBS segments not appearing in the FDMEE Load Rule window

    I have configured FDMEE to load GL data from specific E-Business 12 segments. This has been working fine.
    Recently, additional segments were defined in EBS. Unfortunately, these new segments do not appear in the Load Rule box (whereas the original segments do appear).
    Is there an option/trigger somewhere in FDMEE (or EBS) to force the new segments to appear in the FDMEE Load Rule selection segment box? (I have re-initialised the source system, with no effect.)
    Ian

    Hi,
    You need to make sure that you are adding them to the Import Format defined between the Source and Target system. Have you done this yet?
    Are there target dimensions in the app to point to?

  • Custom Segment is not appearing in orders05

    Hi ,
    I am trying to extend IDOC type ORDER05.I have followed all the steps But even then segment is not appearing after i generate IDOC and test in we02.
    The two fields has to extended in EKKO and same has to extened in ORDER02 at the time PO creation.
    This is the requirement. Right now iam not passing any data in the custom segment but i have done all the initial configuration..
    Idoc also generated succssfully..but its having my custom segment..Pls advice

    Yes, that include need to be created. By double clicking on it you will get a prompt to create the object (provided you have developer access), choose yes and you should be able to create the include and put a break point on it.
    In IDOC_OUTPUT_ORDERS function module that creates the outbound ORDERS05 IDoc.
    --> EXIT_SAPLEINM_002 will be called repeatedly for each IDoc segment while the IDoc is still building
    --> EXIT_SAPLEINM_011 will be called once for the whole IDoc, once SAP finished building it
    So yes, you can use any of these user exits to manipulate the output IDoc.
    Also, the break point won't get triggered when output type is set to trigger immediately (dispatch time 4) when you issue the output from ME22N / ME23N, because the IDoc will be triggered asynchronously in this mode by the system and not in your session, so your session break points are ineffective.
    What you need to do is go into the ME22N output page (Click Messages on ME22N screen, select the condition type in yellow color (not yet processed), click on "Further data"and set "Dispatch time" to 1 (Send with periodically schedule job). After doing this issue the output (by saving the PO etc). This will mean that the output IDoc is not triggered immediately.
    Now put the break point in the suggested user exit.
    Come to SE38 and execute RSNAST00 program, give "Output application" as "EF", object key as your PO number (format it with leading zeros for full 10 digits) and enter your output type. Run it and then you will see that your break point is hit.

  • How to enable some DFF segments on AR Trx form for specific context only

    I have a requirement to enable 3 of many DFF segments on AR Transactions line DFF for particular context only. I am not able to figure out how to achieve it.
    When we query for an Invoice and navigate to lines DFF I want these fields to be allowed to update. Currently they appear as read-only. These are interface line attributes used across many different contexts but I need them as update allowed only for few contexts.
    I went through different forum topics and was trying to use security rules but these segments do not have the security enabled flag checked under DFF segments and when I try to check it it throws an error as to update not allowed.
    Form personalization doesn't work on DFF, so that is out too.
    Any help would be appreciated.
    Thanks.
    Shivang

    Hi,
    My requirement is a little different. We already have context and reference setup when we implemented Oracle 3 yrs back but what I need is to enable few segments / attributes inside a context that too when the invoice is queried for not when it is being created manually. The same attributes are being used by different contexts but I need to enable only for a few and not all contexts.
    Appreciate if you are able to help on this.
    Thanks.

  • Unable to default DFF segment based on selection of other field value.

    Hi Gurus,
    *I have a requirement on 'Create Work Request' page (Oracle EAM), where during creating complaint, when user selects Asset Number, based on this selection, a DFF enabled to capture Tenant Info must be populated. [For testing now, I'm writing my code in PR and not in PFR to populate some thing while page loads.]*
    I have extended my CO and tried many ways (from simple to little complex) but to no success.
    Simpler way:
    *=======*
    OAApplicationModule am = oapagecontext.getApplicationModule(oawebbean);
    OAViewObject vo = (OAViewObject)am.findViewObject("RequestDetailsVO");
    Row row = vo.first();
    row.setAttribute("Attribute1","Attribute1"); //Attribute1 is the View attribute in above VO. But this doesn't work.
    row.setAttribute("DepartmentCode","CRC MAINT"); //DepartmentCode is a view attribute as well. And this works.
    This code doesn't work.
    Understanding that, DFF segments can't be set as simple bean, I have done below:
    *===================================================*
    OADescriptiveFlexBean oadescriptiveflexbean = (OADescriptiveFlexBean)oawebbean.findIndexedChildRecursive("WorkRequestDesc");//("WorkRequestDFF_p13n");
    oadescriptiveflexbean.processFlex(oapagecontext);
    if (oadescriptiveflexbean != null){
    ContextMap contextmap = oadescriptiveflexbean.getNamedChildMap();
    if(contextmap != null){
    Enumeration enumeration = contextmap.keys(oapagecontext.getRenderingContext());
    if(enumeration != null){
    do
    if(!enumeration.hasMoreElements())
    break;
    Object obj = enumeration.nextElement();
    OAWebBean oawebbean1 = (OAWebBean)contextmap.get(oapagecontext.getRenderingContext(), obj);
    oapagecontext.getParameter("WorkRequestDesc1")
    //String str = (String)oapagecontext.getNamedDataObject("WorkRequestDesc1")
    if(oawebbean1 != null)
    if(oawebbean1 instanceof OAMessageTextInputBean)
    OAMessageTextInputBean oamessagetextinputbean = (OAMessageTextInputBean)oawebbean1;//.findIndexedChildRecursive("WorkRequestDesc1__xc_");
    //oamessagetextinputbean.setReadOnly(true);
    oamessagetextinputbean.setText("Jawad");
    } while(true);
    Now the issue with above code is, during the page load, all the segments are populated with value 'Jawad'. I want to populate only the first segment.
    More info:
    *======*
    VO: RequestDetailsVO
    DFF Regions ID: WorkRequestDesc
    Attribute1 (DFF segment1) ID: WorkRequestDesc1
    Appreciate your responses,
    Jawad

    Dear Guys,
    I found out a workaround for this case (If this helps others): :)
    *1. Create a Message Text Input type field (representing each DFF segment) and map them to View Attribute (over which DFF was created) and VO instance.*
    *2. In the extended CO, in PFR, get the handle of these created fields.*
    *3. Set the values as required.*
    Since these fields are mapped onto the same view attributes as DFF was, the data goes in fine.
    But I still am hunting for the possibility of setting a single segment.
    Thanks and Regards,
    Jawad
    Edited by: Jawad on Apr 19, 2012 3:36 AM
    Edited by: Jawad on Apr 19, 2012 3:38 AM

  • Default Value in a DFF is not getting populated in Self Service Page

    I had an issue in Self Service Page.
    In the SS page there is hidden mandatory field in DFF segment,which should get populated with a default select statement.
    But this field is not getting populated with the default values.
    But this is working fine in Forms , i.e the default value is populated in forms.
    Why the default value is not populated in Self Service Pages?
    For Eg: If there is a DFF "SAMPLE_DFF" which has some context with segment
    Context Code : GB_CODE
    Segment : "Enter the Group"
    and this segment is made required and defaulted with a select stmt (select stmt returns 'XXXXX')
    In forms if am not entering any value, then its defaulted to 'XXXXX'.
    But in Self Service this is not happening.
    Can anybody help me out...

    Actually, I have narrowed down the problem. It is not quite the same.
    DFF is Receivables, Address Information (Release 12). We have 2 attributes defined and we want the default value of the 2nd to be dependent on what the user selects in the 1st.
    So the default value of the 2nd is defined as a SQL Statement, select :$FLEX$.INDUSTRY_CODE from dual (where INDUSTRY_CODE is the value set name from the 1st).
    We know the syntax is correct because if we actually hardcode a default value in the 1st attribute (select 'BLAH' from dual), then we do see that the default value for the 2nd attribute fills in with BLAH as well. However, we do not want that. We want the user to choose a value for the 1st attribute from the LOV, and then have the 2nd attribute default to that same value. This is the part that does not seem to work in OAF, but definitely used to work in Forms.
    Any thoughts?
    Thanks much!

  • Business area not appearing in mateial document

    Hi,
    I have created a new plant. and have made all assignment.
    while doing  testing  by making PO and doing MIGO.
    Business area is not appearing in material document posting.
    ( more over in my existing plants at the time of MIGO no account assignment tab appears.but  for this new plant account assignment tab appears though i have not assigned any thing in account asignment in PO)
    Please help.
    Regards,
    Vijay

    Hi,
    Use T.code:OMJ7 and link plant and division to your business area.
    Active Business area in T.code: OBC4 , in material management segment in ur field status group.Also Consult with your FICO team.
    Regards,
    Biju K

  • VPRS cond type is not appearing after creating a sales order

    Dear Friends,
    I have copied pricing procedure from Std pric procedure i.e from RVAA01.
    In Material master in Accounting 1the following things are maintained,
    Valuation Class--7920 ( Finished products)
    VC Sales Order Stock--7920 ( Finished products)
    Pricing Control-V ( Moving average Price/Periodic unit price)
    Standard Price--- Blank
    Price Unit--1
    Total stock--100
    In Pricing procedure VPrS cond type is included and settings are as follow,
    Statistics---Relevant
    Subtotal-- B ( carry over value to KOMP-WAVWR (cost))
    Requirement--4
    Item Catg is TAN and in Business data it is relevant for Determine Cost.
    Activated cost determination for item categ TAN
    But when I am creating sales order VPRS cond type is not appearing.
    Analysis is saying
    The requirement 004 is assigned to this condition in the pricing procedure. This requirement was not met and so the condition was excluded from further processing.
    Can anybody tell me where I am going wrong?
    Regards,
    Shrikant

    Hi Friends,
    Thanks for your reply as per your instruction I have maintained cond type and also in Pric procedure I removed 4 from Requirement column.
    Now I am getting following error,
    Diagnosis
    This condition has not been determined using condition records. The amount or value should be determined from another data source. For cost (condition category 'G') it is read using conditions from the material valuation segment, for a cash discount condition it is read using conditions from the terms of payment table.
    In this transaction an error occurs - the material valuation segment or the terms of payment table could not be read or a currency translation has failed.
    System Response
    The condition has been provided with the deactivated indicator 'X'.
    Procedure
    Refer to the messages in the status line of the condition overview screen.
    Regards,
    Shrikant

  • DFF segment Issue

    Hi All,
    I have added a new attribute to existing DFF in standard forms, and that DFF is there on standard OA Page. But the newly added attribute is not visible on OA Page. pls Help
    Regards,
    Raghava

    Hello Raghav,
    How did you acheive this. I am putitng below below text in the segment list in personilization window. Below are segment display names of my DFF. But it is now reflecting in OAF page. Last 2 field i added new in DFF segments.
    Addl Info Line 1||Addl Info Line 2||TAN Number||*Addl Info Line 3||Addl Info Line 4*

  • Disable updating of DFF segment in PO form using Form Personlization

    Hi All,
    I have to make a dff segment in PO form non-updatable after the PO number has been generated.
    I tried to do form personalisation of item PO_HEADERS.ATTRIBUTE2 making its property(update_allowed) as false.
    But when I test the form, I get an error cannot set attribute of a null canvas item.
    How can I make DFF segment disabled after PO Number is generated in Form
    Regards
    Prajesh

    One approach you can try is using the custom.pll.
    You can write code that makes the attribute non-updatable if the po_num is not null.
    If that does not work, you can consider writing a before-update database trigger on po_headers.
    In the trigger, if :old.attribute1 != :new.attribute1, then you can raise an error.
    Typically, I avoid writing database triggers but if you must, this could help you achieve it.
    Hope this helps,
    Sandeep Gandhi

  • How to enable the DFF segment in Forms

    Hello everyone,
    I want to enable the DFF segment i.e. Attribute12 when schedule_ship_date get changed. Means if schedule_ship_date changes then with reason we want to store it. In DFF segment we want to store the reason.
    The record should not save if the date changed and reason not entered.
    Please can you tell me the steps how i can enable the DFF segment in Oracle forms or how i can do it mandatory if date changes.
    Thanks

    JAK,
    Please post your question in the E-Bus Suite forum. This forum is dedicated to non E-Bus Suite Forms development. Also, you might want to include the what version of EBS you are in when you make your post. More than likely, you will need to code for this event in the Custom Library (CUSTOM.PLL), but you might be able to do this with Forms Personalization - if you are on 11.5.10 or higher. The folks in the EBS forum will be able to tell you for certain which method to use.
    Craig...

  • How to make a DFF segment mandatory only in one page?

    Hi All,
    We have added a DFF in 2-3 pages. One of the segments in that DFF should be made mandatory only for one particular page. Is there any way to make it mandatory via personalization?
    I can't make it mandatory in DFF settings as it will make the field mandatory in all pages where the DFF is used.
    I m aware that I can extend the controller and check wehther the value has been entered or not. But does anyone have idea whether this can be achieved without any customization?
    Regards,
    Pradeep

    We can achieve this requirement using Java script but this script is fired for every event in the page. You need to carefully choose the event(i.e. when the script should be fired).
    Sample code:
    1. create a rawText item
    2. .in text property of the rawtext item use below sample code
    <SCRIPT>if (document.getElementById("DFFFlex0").value != null) {alert('This field is required');} </SCRIPT>
    // here DFFFlex0 is the ID of the specific DFF segment-Anand

  • DFF segment as LOV return item

    Hi ,
    I have a requirement to default the value in the fields in the page depending on LOV on another field in the Page.
    But the field that needs to be defaulted is one of the fields in the DFF.
    As such i am not sure what should i give in the "Return Item" property while defining the LOV mapping
    Could someone please guide me in this
    Thanks and Regards,
    Akash

    Hi Sumit,
    Niot sure what you mean when you say to save the record.
    I have this requirement in the iRecuitment Create Vacancy page and when i select the organization in that page , one of the segments of DFF should get autopupualted from the organizaton LOV.
    Not Valueset is associated in the DFF segment
    Could you please suggeest where i may be going wrong.
    Thanks,
    Akash

  • Sales order Number not appearing in CO-PA report painter

    Hi
    I have prepared profitability report through report painter through t-codes KE34 and KE31-
    Characteristics I have chosen is Sales order No/Plant/sales organization/product and customer-
    In the report Sales order Number is not appearing?
    We are able to see plant number/sales organization no/product no and customer no-
    Where I have committed mistake
    Thanks in advance
    joseph david

    HI,
    In order for you to see Characteristics in KE34 form definition, they have to be defined as 'Segment level' in KEQ3, as also metioned by Christian. However, it is not advisable to define 'Sales order #' as a Segment level, considering that 'Sales order #', changes frequently and also owing to performance issues with huge number of Segment level records which gets created in the course of time.
    If you want to report based on Sales order, then please consider using line item form/report KE94/KE91 or check if KE24 is sufficient.
    Hope this helps.

  • A Field need to be Freezed based on DFF Segment field.

    Hi,
    I have 4 DFF Segments on a page.
    And the 1st segment is having many values including "Others" in its LOV.
    The second segment (Field) is only for "Others". if some one will select "Others" from the 1st segment in that case second segment (field) should be enabled else it should be freezed.
    This can be handled if it's not a DFF. Any one has faced such kind of issue.
    Please suggest what can be done in this scenario.
    Thanks
    Bachan.

    hi
    can u please elaborate your requirement in a detailed manner ,if you want to freeze a DFF field on the basis of the value of other field then it is not possiblle after page rendering ,but yes if u want to do the same at time of page rendering then it is possible .
    thanx
    Pratap

Maybe you are looking for

  • My hard drive removed from a laptop  no photograph files left can I recover them?

    Please HELP with advice someone if you can. I had a white unibody laptop which was snow leopard but upgraded to Lion. A couple months ago my daughter splashed a small amount of water on it whilst it was unplugged when I was working on it. No apparent

  • DGE-550SX on Solaris 10?

    Has anyone tried using the D-Link DGE-550SX PCI-X Fiber 1000BASE-SX Network Adapter (any other fiber gigabit low profile pci-x card) on Solaris 10 X86? Thanks.

  • Sorting the values in a column in a Web Template Report

    Hi All, I have a report build on WAD in which a table is displayed with certain rows and columns and have certain text values in one column and few numeral values in the other few columns. When i right click on the 1st column(having text values) and

  • CD headings keep disappearing

    Hi I'm having a massive problem at the minute. Everytime I put a CD in, iTunes will only show the song title. No Album name, Artist name, etc. I can bring them up using the view options but as soon as the CDs ejected and put back in, it defaults back

  • JDeveloper 11, Business Rules availability

    Hello, I'd like to test Business Rules 11 functionalityfor our poject. What I've seen so far in viewlets looks a lot better then the Business 10 version. We are in the process evaluating what Business Rule Engine to take. In JDeveloper 11 I'm not abl