Defaulting Segment Values at Invoice Distribution using personalization

Hi,
My requirement is to default segment3 and segment4 values at invoice distribution gl account for manual invoices. Defualt values will be captured at DFF in user creation form.
Can any one suggest how to proceed or whether this is possible through form personalization, if so please post in breif how to acheive this.
Thanks,
Kumar.

Hi Khan
You are further than me! I can't work oput how to create a personalisation on the Distribution screen as the invoice screen defaults into the personalise name at the top and is greyed out so I'm not sure how you got far. Can you help?
thnaks for anything you are able to provide to point me in the right direction.
Beth

Similar Messages

  • AP Invoice Distribution - Form Personalization

    Hi all,
    In AP Invoice Distribution form, I have a requirement to change one of the the segment in account i.e 100.00000.10001.0000.000.0000.0000.0000 which has the CCID as 6007 based on some conditions.
    I have done personalization to change the segment in account i.e 100.99991.10001.0000.000.0000.0000.0000 in which the CCID remains the same as 6007 where as for this account combination CCID is 19001.
    Please help me if anyone has come across this type of requirement.
    Regards,
    Khan.

    This has nothing to do with forms itself, ask your question in an eBusiness-related forum.

  • How to dynamically create sql statement for Defaulting Segment Values?

    Hi,
    Navigation:
    1) Descriptive/Segments
    2) Query for DFF to be modified
    3) Uncheck “Freeze Flexfield Definition”
    4) (B) Segments
    5) Segments Summary form opens
    6) (B) open - Segments form opens
    Now, here I want to specify Default type as "SQL Statement" and in the default value field I want to use SQL statement with parameters (to evaluate the default value).
    The parameters should be pass at runtime from the form in which we have this DFF. The parameters value should be one of the values which get evaluated at runtime in the form window.
    Please suggest how we can achieve this?
    Or is there any alternative to achieve this?
    Thanks!!
    Regards,
    Narender
    Edited by: Narender Singh on Mar 30, 2010 7:47 AM
    Edited by: Narender Singh on Mar 30, 2010 7:48 AM

    Jason,
    it is possible, though not so simple as with a report.
    What you need to do is to create a pipelined function, that returns your date and count data. This pipelined function can be the base of a pseudo-table, which can be used in a select. For the pipelined function you need to define types for one row and a table to define the return-type for your function:
    create or replace type calendar_row as object (date_time date, description varchar2(250));
    create type calendar_table as table of calendar_row;
    Then you can create the package with the function:
    ================================================
    create or replace package dyn_calendar is
    procedure set_query(i_query in varchar2);
    function view_source return calendar_table pipelined;
    end;
    create or replace package body dyn_calendar is
    v_query varchar2(100) := null;
    procedure set_query(i_query in varchar2) is
    begin
    v_query := i_query;
    end;
    function view_source return calendar_table pipelined is
    TYPE cursor IS REF CURSOR;
    c_cal cursor;
    v_date_time date := null;
    v_description varchar2(100) := null;
    r_cal calendar_row;
    begin
    open c_cal for v_query;
    fetch c_cal into v_date_time, v_description;
    loop
    exit when c_cal%notfound;
    r_cal := calendar_row(v_date_time, v_description);
    pipe row(r_cal);
    fetch c_cal into v_date_time, v_description;
    end loop;
    return;
    end;
    end;
    ================================================
    Now you can set query in a PL/SL region before the calendar:
    dyn_calendar.set_query(SELECT count(*), ' || :P8_SOURCE_DATE || ' FROM ' || :P8_SOURCE_TABLE || ' GROUP BY ' || :P8_SOURCE_DATE);
    and you can base your calendar on the query:
    select * from table(dyn_calendar(view_source))
    Good luck,
    Dik

  • Mis-alignment of Variables when default alignment value (-xmemalign=1i) is used in 12.4 Beta

    Hi Steve,
    In Util.h file when compiling Mozilla Thunderbird 24.5 ESR / Firefox 24.5 ESR, the following code results in an warning under Solaris Studio C++ 12.4 Beta:
    #if defined(__GNUC__)
    #  define MOZ_ALIGNED_DECL(_type, _align) \
         _type __attribute__((aligned(_align)))
    #elif defined(_MSC_VER)
    #  define MOZ_ALIGNED_DECL(_type, _align) \
         __declspec(align(_align)) _type
    #else
    #  warning "We don't know how to align variables on this compiler."
    #  define MOZ_ALIGNED_DECL(_type, _align) _type
    #endif
    There is an #pragma align directive available, but I can't use it due to the variable must be defined as MOZ_ALIGNED_DECL, and there is no _Pragma definition available.
    For Intel architecture (both 32 & 64-bit), what options do I need to pass / headers to include to C++ Compiler to align the variables properly? I am using Solaris 11.2 Beta. This also applies to C Compiler as well. Thanks.
    Regards,
    Brian

    gcc version that relies on attribute aligned should work.
    regards,
      Fedor.

  • How to hide segment of keyflex fields using personalizations

    I would hide segments of key flex feilds using personalizations, I tried putting A|B and bounced Apache but still does not work, HELP please. I would like to hide 2 segments out of four.
    Thanks

    From Developer Guide: Flexfields - Key Flexfields:
    Key Flexfield Segment List
    You may fill in the Segment List property if you want to show some, but not all of the segments in your flexfield. If you leave this property empty, all segments are rendered. The syntax is similar to that described for descriptive flexfields, only you should use structure codes to replace context values. The format is:
    structure code1|segment1's name|segment2's name...||structure code2|segment4's name|segment5' name...
    Segments within a certain structure code are separated by a single pipe, "|", while data from a different structure codes is separated by a double pipe, "||". The example below lists segments for just one structure code:
    FWK Item Flexfield|Manufacturer|Product Family|Product
    -Anand

  • Defaulting % in search pages using personalizations

    Is it possible to default % in search pages of SSHR using personalizations?

    Hi,
    Try to extend the controller where the search region is there, and get the handle of the search item
    and set the value % in the process request.
    With regards,
    Kali.
    OSSI.

  • Balancing Segement Value set we can use it as Intercompany value set?

    Hi Gurus,
    We have requirement as follow.
    We have company values "001, 002, 003" which is balancing segment values
    we need to use the same Values for Intercompany transactions, can i use company value set as Intercompany or not.
    1) If yes do we need to create Values for intercompany one more time or values will be default from company
    2) If not please tell me exact reason and how to setup Dependent segement.
    Hi waiting for your reply
    Edited by: prasanthbabu on Mar 15, 2010 2:39 AM

    Hello,
    The same value set can be used for Intercompany but it is recommended to use a separate value set for the Intercompany if ever (in the future) u need to add additional information regarding the Intercompany value.
    Having a value set only for Intercompany, you can add DFF on it.
    Hope this helps..
    Vik

  • Default KFF segment value using Forms Personalization

    Hi All,
    Is there any way to default the KFF segment value based on other field value thru forms personalization?
    Thanks,

    Gareth,
    Sorry for taking so long to respond. I was on vacation last week. Your suggestion was exactly what I wanted. The '=' made all the difference. I tried it with the INITIAL_VALUE also and both work. Thanks a lot!
    Thu

  • AP Invoice Distribution Form - Changing the segment2 using personalization

    Hi all,
    In AP Invoice Distribution form, I have a requirement to change one of the the segment in account i.e 100.00000.10001.0000.000.0000.0000.0000 which has the CCID as 6007 based on some conditions.
    I have done personalization to change the segment in account i.e 100.99991.10001.0000.000.0000.0000.0000 in which the CCID remains the same as 6007 where as for this account combination CCID is 19001.
    Please help me if anyone has come across this type of requirement.
    Regards,
    Khan.

    Hi Khan
    You are further than me! I can't work oput how to create a personalisation on the Distribution screen as the invoice screen defaults into the personalise name at the top and is greyed out so I'm not sure how you got far. Can you help?
    thnaks for anything you are able to provide to point me in the right direction.
    Beth

  • By using personalization can we default the values as null in oaf

    Hi All,
    Can we change the default values to null....
    Actually i have from and to date fields....when ever page opens the vales are geting defaulting in that fields...
    I need to make this as null....by using personalization is it possible( if yes...need help) or i need to extend the co..
    Regards
    Harry

    Hi Harry,
    If the values are defaulting from the "initial value" property it can be set to null by removing those values from personalization, but I feel it will be defaulting from code if it is so, same can not be achieved by personalization.
    Regards,
    Reetesh Sharma

  • How to default the KFF segment values based on other field's value

    Hi,
    I would need to reset the 5th segment value of "Liability Account" field on R12 Supplier Page under "Accounting" link.
    Condition: And it has to be based on some other value like "GLOBAL CONTEXT VALUE and TaxPayer ID Type" under "Organization" link.
    Right now; as per the seeded page it defaults the Liability Account to "BL-130-0000-2110-0000-0000" under accounting link; I need to change this default value to "BL-130-0000-2110-2641-0000" based on above condition.
    I have tried using the below code:
    OAKeyFlexBean oakeyflexbean = (OAKeyFlexBean)oawebbean.findIndexedChildRecursive("LiabilityFlex");
    oakeyflexbean.setText()
    But this one does not work.
    Can anyone suggest me some option to acheive this requirement.
    Thanks
    Edited by: 880860 on May 21, 2012 2:23 PM

    Hi everyone,
    Any thoughts? any help is appreciated...
    Thanks

  • Default date using Personalization

    Hi All,
    Is it possible to default a date field with todays date using Personalization techniques , if yes please tell me how.
    I have to default 'Expenditure Item Date' in iProc checkout pages to current date.
    thanks
    Sudeep

    Hi Ramkumar,
    Thanks for your promt reply.
    Actually my requirement is to default the Expenditure date field to SYSDATE and also the Expenditure Org each time the Project LOV is modified.This is on the iProcurement Checkout page (CheckoutSummaryPG.xml)
    For this I extended the ProjectLovVO to include 2 attributes- one for the date field and the other for the Expenditure Organization field. I later created LOV mappings to default the values to these 2 fields. It happens correct for the first time but when I modify the Task Lov on the same page the value displayed in the Expenditure Date field is lost. However the Expenditure Org field retains its value.
    The Expenditure Org field was an LOV which I personalised and made Read Only and by setting the value for both the Expenditure Org name as well as the Form value for Expenditure Org Id I was able to retain the value even after the page was refreshed.
    The Expenditure Date field was a Message Text Input field which I made read only. I even attached a form value mapped to the same view object attribute as the message Text Input field but still it gets refreshed.
    Hope the requirement is clear. Please suggest a solution for this.
    Thanks in advance.
    Jasmine.

  • Balancing Segment Value assignment to Legal Entity using Account Setup Mgr

    Hello,
    This is on r12.06
    By mistake- I did not assign BSV at Legal Entity level, insteady I directly assigned at Ledger level. Now, I am getting following error when running "Accounting Program" standard program
    The subledger journal entry contains lines with balancing segment values that are not assigned to any legal entity.  Unassigned balancing segments cannot be used to balance a subledger journal entry with balancing segments already assigned to a legal entity.  Either update the balancing segment value assignments for the ledger ADP/Claims Solutions Group or update the balancing segment values used on the subledger journal entry Upon research, It was discovered that that the Balancing segment is assigned only at ledger level and it is not assigned at Legal Entity level in account setup manager.
    When I attempted to assign the BSV at LE level, it is not showing the BSV in list of values.
    I even end dated BS at ledger level and tried again but still the concerned BSV is not showing up in LOV at Legal entity level.
    Now I am completely stuck. Any idea what am I missing? Why, the new BSV is not showing up at LE level LOV when attempting to assign BSV at LE level?
    Thank you for reading this post in advance.
    Regards,
    R

    Once a BSV is assigned to the ledger it does not appear in the LOV of BSV-LE assignment field. Pl see if you can delete the BSV from ledger assignment, then only you can re-assign to LE. In my opinion, it allows you to delete the BSV from ledger level if you have not already used it in transactions. In your case, I wonder if it will allow you to delete it. If not, you have to raise SR with Oracle support.
    Thanks
    Tarun

  • How to use different default parameter value for different report subscriptions

    In ssrs is it possible to define different default parameter values for different subscriptions? In the following example I have a report which has two subscriptions with different start date and end date values:
    Report name – Testsubscription.rdl
    Subscription-1
    Input parameter (default values):
    start_date = first day of current Month
    end_date = till date
    Subscription-2
    Input parameter (default values):
    start_date = first day of current Quarter
    end_date = till date
    I know an alternative way of doing this would be to copy the rdl file with a different name but I am curious whether this can be done within a single report definition file. I am using SQL Server 2008 R2 Standard Edition.
    Thanks!
    spp

    Hi sppdba,
    As per my understanding, there is a report with two parameter: start_date and end_date, you want to configure subscription for the report, and set different default values for start date and end date. And you want to know if it is possible to achieve you
    goal by using a single report definition file.
    Since you are using SQL Server 2008 R2 Standard Edition, we need to achieve your goal by configuring two subscriptions for the report. For detail information, please refer to the following steps:
      1. In design surface, right click start_date and open Parameter Properties dialog box.
      2. In General pane, type Name and Prompt, set Data Type to Date/Time.
      3. Click Available Values in left pane, select Specify Values.
      4. Click Add button, in Label text box, type “First day of Current Month”, click (fx) button in Value section, then type the expression like below:
    =DateSerial(Year(Now()), Month(Now()), 1)
      5. Click Add button, in Label text box, type “First day of Current Quarter”, click (fx) button in Value section, then type the expression like below, then click OK.
    =DateSerial(Year(Now()), (3*DatePart("q",Now()))-2, 1)
      6. Right click end_date and open Parameter Properties dialog box.
      7. In Available Values pane, select Specify Values.
      8. Click Add button, in Label text box, type “Today”, click (fx) button in Value section, then type the expression =Today(), then click OK.
    Now that the parameters are created, we need to configure subscription for the report. For detail information, please follow these steps:
      1. Open Report Manager, and locate the report for which you want to create a new subscription.
      2. Hover over the report, and click the drop-down arrow.
      3. In the drop-down menu, click Manage. This opens the General properties page for the report.
      4. Select the Subscriptions tab, and then click New Subscription.
      5. Select the delivery extension and data source for the subscription.
      6. Select a method of delivery, then choose report delivery options.
      7. Specify conditions that cause the subscription to process and delivery to occur.
      8. Set start_date to First day of Current Month, end_date to Today, then click OK.
      9. Create a new subscription as step4 to 7, set start_date to First day of Current Quarter, end_date to Today, then click OK.
    The following screenshots are for your reference:
    For detail information about Creating Standard Subscriptions, please refer to the following document:
    http://msdn.microsoft.com/en-us/data/ms156307(v=sql.105)
    If you have any more questions, please feel free to ask.
    Thanks,
    Wendy Fu
    If you have any feedback on our support, please click
    here.

  • How to set default value of a table using sequence number

    Dear all,
    Does any body know that how to set default value of a table
    using sequence number.
    But I don't want to use trigger to do that.
    Please help!!!!
    Eldon

    Andrew is essentially correct. You can get around the trigger,
    but not the sequence, if (and this may be a very big if) you can
    guarantee that every time an insert is done into the table, from
    whatever source, the statement looks something like
    INSERT INTO tbl VALUES (sequence.nextval,other_columns_values)

Maybe you are looking for

  • Airport Express dropping out constantly so I can't print wirelessly

    I have an iMacG5 running OSX 10.3.9. I have a DLink wireless router which creates my wireless network that the iMac connects to. Also, as my printer as at the other end of the room, I have an airport express connected via USB to the printer so I can

  • Web Service Proxy DC in NWDS 7.3

    Hello, We are planning to upgrade our SAP NetWeaver Portal platform from 7.0 to 7.3. Currently, we have created following type of DCs in SAP NWDS 7.0: -            1. Portal Application Standalone (packed in SDA) : ( mainly JSPDynpage & custom UWL co

  • Trying to connect airport to Belkin

    I have set up a Belkin router and have attempted to connect wireless but the Airport will not activate. I know I have the airport card: AirPort Card Information: Wireless Card Type:     AirPort Wireless Card Locale:     USA Wireless Card Firmware Ver

  • T60 running Windows 8 won't extend display to monitor

    Hello, I checked the forums but couldn't find a similar topic. I have a T60 coming up on it's 8th birthday. About a year and a half ago I installed windows 8. Just recently I tried to extend my work space to a second VGA monitor, in addition to the T

  • Unable to route to Internet

    Hi, I'm having a few issues configuring my Cisco 1900 series router. A bit of background first! This is my first attempt at configuring a router, I've been working through my CCNA using ios images and they have all been fine but getting this router t