DFF on AP Payment not editable for quick payments

We are using R12 12.0.6
We opened a DFF on AP Payments but it only enables for manual payment type
And we only use Quick Payment Type..For quick Payment, this DFF appears disabled althoiugh its enabled and compiled from Setup>flexfields>descriptive>segments
Please Help
Thanks

Hi,
As you see from Bug 6696171 (referenced in the same document) that there is no workaround, and this is standard product functionality.
I would suggest you log a SR, and see if Oracle support can help.
It would be great if you edit your previous post as copying Metalink notes contents is illegal.
Regards,
Hussein

Similar Messages

  • Spotlight Comments not editable for App Store Apps

    I'm liking the app store and the ability to download apps quickly and efficiently. However, I'm not able to edit spotlight comments for downloaded apps. I've tested editing spotlight comments for my regular assortment of apps that were not downloaded from the App store and didn't have a problem. Nor did I have a problem editing spotlight comments for regular files. I've just been locked out of editing app store apps. The permissions for App Store Apps appear to be set identically to other apps I have. I'm wondering if this has something to do with the built in update process for these apps, and now they are locked out for any modification by end users? Anyone else have this problem, or know of a workaround?

    Good:
    Unlocking the application and adding the privilege allowed me to edit the spotlight comment.
    Bad:
    After updating the application (Sparrow Mail for my example), I'm in a worse spot.
    I changed the privileges again, and unlocked the application.
    I can not edit the comment.
    Spotlight is not finding the comment.
    Reindexing Spotlight
    Still not finding it.
    Anyone have suggestions on this one?

  • Machine not authorized for Quick Play

    I have a slimline S3430f machine. When I insert a DVD it says check for updates? I say yes and it tries to authorize my computer. It then forces me to download a 67MB file which I have (HP-CPC.v7029_2319_HQP090821-02_Normal). It then tries to update but then I get a message saying "the software can only be installed on authorized machine".
    I have tried to install the latest version of Quick play to no avail (quick play_23.exe) and nothing happens.
    I have also installed SP35813.exe and nothing happens.
    I am going nuts trying to authorize my PC so I can update it and watch movies!
    Help?! Thanks!

    Toast 6.0.7 or Toast 6.0.9 should work if using QuickTime 6.5.x (but I'm not quite sure about 6.0.7)
    If using a more current release of QT (e.g. 7.x) or Toast (or a release of Toast prior to that) you will receive the mentioned error, as burning purchased tracks through Toast got prohibited.

  • E3200 - USB port does NOT work for more than one device

    We needed a new router that had the dual band connectivity as our previous router stopped working properly when we started using a baby monitor operating on the same 2.4 GHz. The choice was between E3200 and E2500. We chose the E3200 mainly because it also offered a USB port. We were hoping to use that to connect our printer and two external drives (thus bypassing our old desktop that's been working as a server). However, it turns out that the USB port on E3200 does NOT support USB hubs! So, you can ONLY use ONE device - either a printer or one external storage drive. That wasn't really clear at all from the description. I feel like we wasted the extra $50 hoping to get functionality that just isn't there. Can't believe that in this day and age, Cisco thinks we all have only ONE USB device we might want to connect to the network! The router itself is fast enough, but the extra $50 for a USB port that doesn't do much and some speedboost phantom ability is just not worth it. 

    Just to save time to you all, after numerous attempts to install a USB hub to my E3200,
    I wrote to Cisco Customer Service (live chat) and I specifically requested how to set up the usb hub or the virtual USB port and they said that they do not have a software to install a USB hub.
    Hope this help
    Massimo
    (Mod note: Edited for guideline compliance.)

  • Username field in BP not editable

    Hello,
    In my SAP CRM 5.0 field user name in tcode BP on business partner in role employee "bup003" is not editable.
    This is not editable for BPs with numbering EM.... .
    For others it is editable.
    Numbering EM is set in HRALX configuration in table T77S0.
    What could be the reason?
    My config in T77S0 looks like this: (pbphr, 0prol, 0subg were changed today, and it still does not work )
    HRALX     HRAC     X
    HRALX     MERID     X
    HRALX     MSGRE     0
    HRALX     OADBP     
    HRALX     OADRE     
    HRALX     OBPON     ON
    HRALX     OBWIG     X
    HRALX     ONUMB     3
    HRALX     OPROL     BUP004
    HRALX     OSUBG     OR
    HRALX     PALEO     
    HRALX     PALEP     
    HRALX     PBPHR     ON
    HRALX     PBPON     ON
    HRALX     PCATS     
    HRALX     PINAC     
    HRALX     PLEVE     3
    HRALX     PNUMB     3
    HRALX     PPROL     BUP003
    HRALX     PQUAL     
    HRALX     PRTON     
    HRALX     PSUBG     EM
    HRALX     PSYNO     
    HRALX     PSYNP     
    HRALX     USRAC     X

    According to SAP note 934372 point 6 this behavior is standard in CRM 5.0 for Employees transferred from HR in order to prevent inconsistencies in data.

  • CustomDatumExample.java does not work for more than 2 attributes

    The CustomDatumExample.java only works
    if the Employee object has 2 attributes -
    (EmpName and EmpNo). If I try to add
    another attribute to the Employee object I get java.lang.ArrayIndexOutOfBoundsException: 2 on the getAttr3 method.
    Anyone know why?
    Employee object
    CREATE TYPE employee AS OBJECT
    empname VARCHAR2(50),
    empno INTEGER,
    attr3 VARCHAR2(50)
    Custom object class
    public class Employee implements CustomDatum, CustomDatumFactory
    public static final String SQLNAME = "EMPLOYEE";
    public static final int SQLTYPECODE = OracleTypes.STRUCT;
    MutableStruct _struct;
    static int[] _sqlType =
    12, 4
    static CustomDatumFactory[] _factory = new CustomDatumFactory[3];
    static final Employee _EmployeeFactory = new Employee();
    public static CustomDatumFactory getFactory()
    return _EmployeeFactory;
    /* constructor */
    public Employee()
    struct = new MutableStruct(new Object[3], sqlType, _factory);
    /* CustomDatum interface */
    public Datum toDatum(OracleConnection c) throws SQLException
    return struct.toDatum(c, SQL_NAME);
    /* CustomDatumFactory interface */
    public CustomDatum create(Datum d, int sqlType) throws SQLException
    if (d == null) return null;
    Employee o = new Employee();
    o._struct = new MutableStruct((STRUCT) d, sqlType, factory);
    return o;
    /* accessor methods */
    public String getEmpname() throws SQLException
    { return (String) _struct.getAttribute(0); }
    public void setEmpname(String empname) throws SQLException
    { _struct.setAttribute(0, empname); }
    public Integer getEmpno() throws SQLException
    { return (Integer) _struct.getAttribute(1); }
    public void setEmpno(Integer empno) throws SQLException
    { _struct.setAttribute(1, empno); }
    public String getAttr3() throws SQLException
    { return (String) _struct.getAttribute(2); }
    public void setAttr3(String attr3) throws SQLException
    { _struct.setAttribute(2, attr3); }
    null

    Just to save time to you all, after numerous attempts to install a USB hub to my E3200,
    I wrote to Cisco Customer Service (live chat) and I specifically requested how to set up the usb hub or the virtual USB port and they said that they do not have a software to install a USB hub.
    Hope this help
    Massimo
    (Mod note: Edited for guideline compliance.)

  • When using quick edit for compressed CSS, edge code does not jump to the particular class but displays the whole thing. This destroys the whole purpose. Does anyone know a fix or extension for that.

    When using quick edit for compressed CSS, edge code does not jump to the particular class but displays the whole thing. This destroys the whole purpose. Does anyone know a fix or extension for that.

    I suspect that beautify doesn't touch CSS that it is not aware  of (e.g. new properties/syntaxes, vendor-prefixes). See if there's a newer version available.
    Which compressed CSS are you using? Most CSS libraries come with both compressed and original stylesheets, so use the original one during development/debugging, and switch to the compressed one for deployment.
    Randy

  • HT1918 Trying to edit my payment info.  I keep getting the message that my number is not valid for the type of card I have selected.  I have a VISA card.  I have typed in the number 4 times, but same message pops up.

    Trying to edit my payment info.  I keep getting the message that my number is not valid for the type of card I have selected.  I have a VISA card.  I have typed in the number 4 times, but same message pops up.
    Thoughts?

    You are probably entering your Visa's security code incorrectly.  Here's how to find it:
    http://support.apple.com/kb/HT3541

  • Special G/L indicator L is not defined for down payments

    Hi,
       While i am doing in the F-47 transaction i am trying to post down payment then i am getting the following error : --
    Special G/L indicator L is not defined for down payments
    Message no. F5053
    Diagnosis
    The specified special G/L indicator is not classified as "down payment" or not listed in the list of the target special G/L indicators for indicator "F".
    Regards,
    Rajesh

    Hi
    This error is due to non-assignment of G/L Accounts.
    Go to OBYR or FBKP and double click sp. g/l. indicator F for Vendor type K and assign Reconciliation account and sp. g/l. account(advance to Vendors account) and save.
    Also for sp. g/l. indicator L you might have done this as that Indicator you are using for Down Payments
    and sp. g/l indicator F for Requests.
    Regards
    Venkat
    Edited by: Venkat Dara on Jun 6, 2009 2:44 PM

  • Opportunity payment status is not editable

    Hi,
    In WEBUI opportunity payment status filed is not editable, Is that security issue or configuation issue?
    Please suggest which authorization object can allow for allow change or edit the filed.
    Please guide me to improve the security skills for CRM.
    (I am new to CRM security and doesn't have the crm guide or documents - Need you suggestion)
    Thanks,
    SK

    Hi,
          Please check with the functional person if it is supposed to be editable in standard.
      From technical point of view, there could be multiple things:
    1. press F2 on the field -> open component -> view -> check view config -> field properties (if field is disabled)
    2. go to context node -> field -> GET_I method of the field and check why is it disabled
    3. it may be coming as read only though genil
      It would require some technical expertise to check above things.
    I hope it helps.
    Thanks,
    Rohit

  • IR not balance was posted but not blocked for payment

    Dear all,
    Kindly help.
    I have PO , with GR amount of 1000, then tried to post IR amount higher than the 5%  tolerance limit
    PO/GR amount = 1,000
    IR amount  =  1,500.00
    in this case when i simulate and check, i get the message Balance Not Zero , so I cannot post.
    But when i use the function in this path  EDIT > ACCEPT and POST  , i am able to post and NOT Blocked for Payment.
    Why is this so?
    Please help. Hope i explained this clearly.
    thanks in advance.

    Hello
    Please note that in MIRO if you post invoices choosing Edit- >Accept and
    Post, then this procedure overwrites all other settings. Your invoice
    will be posted regardless of the tolerances, etc.
    Please, check the attached notes:
    394370   FAQ: Invoice release - frequently asked questions
    333930   MR3M/MIR4: Display of payment block
    377306   MIRO/MRBR: System behavior in the case of invoice
    SAP's explanation on this is as follows:
    The system design is such that it only checks the blocking reasons at
    the initial invoice verification. This was to avoid the release
    functionality being too complicated and hence difficult to design. In
    this case, the system still recognises the block as being valid as it
    is referring to the initial invoice and it will have to be manually
    released only. I hope this has cleared up any confusion you may have
    regarding this issue.
    In conclusion, it is only possible to automatically release invoices
    if their blocking reasons are no longer valid. This can be the case for
    invoices blocked due to quantity, price, or schedule variances, or due
    to quality inspection.
    You can only use the function Release automatically for the blocking
    procedure Blocked due to variances.
    However, please note that if the 'GR-Based IV' indicator is set in the
    line item of the PO, the invoice can not be released automatically.
    The reason behind this s that with GR-based IV the system only
    makes checks against each individual goods receipt rather than
    against the invoice as a whole. If you need to use GR-based IV, then the
    invoice will have to be released manually in MRBR.
    I hope this clarifies the system behaviour
    regards
    Ray

  • File too large for quick edit mode

    just bought a 12 mega pixil camera. using the photoshop album has been great until now. i can not use the files for quick edit. i can import the files from my camera after doing the recomended steps but in quick edit mode i am not able to do anything with the files. I can totogglento CS and that's the only way to do any editing but it is time consuming. After a wedding i have about 2000 photos to edit and it's just fufrustratingo have to toggle each time for a quick fix like auto balance, i have 1G of RAM and i have version 3 and have had no luck.
    Thank you for your help. if you have been successful in editing a 12 megapixil file please let me know....
    Zoya

    More information on this issue....
    I am importing them as JPEG.
    I have cropped the photos by 1/100th of it's original size so by definition i am reducing the pixels.
    ie, original jpg file is 3.5 MG photo:4368x2912 file type is jpg
    camera canon eos 5d
    error message is: "the photo you are tying to edit is too large and cannot be eidited. please try usign adobe photoshop or adobe photoshop element s to eidt this photo."

  • Payment method(s) are not allowed for this program / Program RFFOAVIS_FPAYM

    Dear Friends,
    In Se38  abap editor, I entered the program RFFOM100, i entered the details program run date,identification future,paying company code,payment methods T, House bank, Account Id and executed the program. I am getting the error 'Payment method(s) are not allowed for this program'.
    Payment method S is not used in F110, It was not mentioned in vendor master or vendor invoice.It is not mentioned in fbzp in bank determination. When i tried to delete payment method 'S' the system shows a message Payment Method S is being used in the company code.
    In  the program RFFOAVIS_FPAYM, i entered the details program run date,identification future,paying company code,payment methods T, House bank, Account Id and executed the program. I am getting the error  'Program RFFOAVIS_FPAYM: No records selected'. But there open items or invoices.
    Please suggest how to resolve the errors.
    Regards
    Sridhar

    Hello,
    Why are you directly executing these programs?
    You will not expect these program to execute directly by going to SE38.
    I would have configured the relevant payment methods in the country with DME structure or classical RFFO* programs, which in turn pick up the inherent programs at the time of running F110.
    For example, if you need to generate BACS file for country GB, either you copy the GB_BACS to ZGB_BACS or use GB_BACS directly in FBZP settings.
    Make sure that you have maintained OBPM1 / OBPM2 / OBPM3 and OBPM4 settings properly.
    The system automatically gives the access to system RFFOAVIS_FPAYM. Prepare a variant against this program in F110. Relevant file gets generated to folder path mentioned in OBPM4 will get generated. The file get generated can be seen in AL11.
    Hope this is informative and solves your issue.
    Regards,
    Ravi

  • Payment order are not defined for extended withholding  tax

    Hi Gurus,
    Would you please help me with the message below. It appears on F110 when I try to pay a vendor open item with extended withholding tax:
    Message FZ626 -Payment orders are not defined for extended withholding tax
    In my company payment orders are created in F110 for accounts payable, as we use another ERP system (Baan) to perform the local accounts payments, and now I've just activated Extended withholding tax functionality With accumulation (necessary in Brazil) but I get this error.
    Is it not possible to user payment order with extended withholding tax + accumulation? I find it hard to believe...
    I've tried to unflag the payment order only for the payment method I'm using in FBZP t.code, but then no payment order were created but instead a payment document were posted with the withholding tax accumulation, but this is not the way we are working, and nothing is sent to Baan
    any help is welcome

    The payment method "Y" the option "payment order only" was marked?
    For a withholding tax type with accumulation in a company code with extended withholding tax payment
    methods that create only payment orders can´t be used. Payment orders can only be created only if there are
    no tax types with accumulation involved in the paid items of the payment run.
    The functionality extended withholding tax works fine for Brazil
    however, you can´t use the payment order with this functionality.
    Please, review your customizing for payment method 'Y" in transaction
    FBZP.
    Best regards,
    Leonardo Vedovelli
    FI Support Engineer
    SAP Active Global Support

  • Line item not relevant for payment release

    Dear Expert,
    When I select payment block : 'Payment Request' in FB60. Error Message appear "Line item not relevant for payment release".
    I also have set payment block in master vendor and  OBB8.
    Can you tell me why the error message still appear?
    Kindly need your help
    Thanks and Regards,
    YL

    Do you have any workflow variant in place?
    Moreover, when you have already set the Payment block at Master level, you need not to fix it in transaction level.
    Vendor itself will not get paid until unless you remove the block option
    Thanks

Maybe you are looking for

  • Is it possible for Apple to make one more software update for iPod Touch 3G to fix the music library?

    My iPod Touch 3G is running ios 5.1.1 and the music library isn't aphabetical. It's all messed up. I could post a picture if needed. I wanted to see if Apple could create a ios update just to fix this.

  • For ipod touch 4 .

    I suggest , Why not make the Apple an accesories to connect and get internet access anywhere in the iPod touch in connection where the charger connected. So it liked be an iphone.

  • Using EXIT_SAPLMEKO_001 - how to force re-pricing in purchase order?

    Hello, I am using user-exit EXIT_SAPLMEKO_001 to change the value of a field in KOMK in the purchase order, but the pricing does not change - the user has to go in and manually reprice.  Does anyone know of a way I can programmatically trigger a repr

  • Diferent Date Formats

    Hi, I am facing a problem with the date format in the dashboard prompt. The same link shows different date format (dd/mm/yyyy or mm/dd/yyyy) in different systems. is there any way i can have a single format (mm/dd/yyyy) in every system? Thanks in Adv

  • Repartitioning Problem - Indexes Rebuild

    Hi, I decided a QA Repartitioning Test prior to any Production activities and I am ending up with an index problem on my InfoCube.  The Repartitioning Monitor Shows everything Green as a final result.  Deeper in the logs there is a yellow warning tha