In T code F-58 house not able to changing ?

Hi,
S C N  Friends.
when i am making the payment to vendor through t code F-58 i am not able to changing house bank it was Freeze mode how can i change is there any option like filed status group.
I have checked in OBC4, filed status  group there is no any control , how to d.
please find here attached screen short.
Regards
Jagadish

Mr. Day Kyung Jung.
Thanks for replay.
I have checked there also, my question is we can control filed in header level & transaction level but in that transaction how can I control below  screen.
Thanks
Jagadish

Similar Messages

  • Not able to change Company Code in f-58

    I have done a payment with T-code f-58 in Co. Code XXXX.
    Now I want to do a payment in Co. Code YYYY with f-58 but I am not able to change Co. Code.
    Co Code field is in display mode.
    I have searched on SCN but did not get any correct solution.
    Plz suggest

    Dear nisit shah,   Press F3 - then the company code will be in the edit mode and you can change the company code.    n.selvakumar.

  • Problem: Not able to change Signature field reason code Dynamically using signatureSetSeedValue

    Problem: Not able to change Signature Settings Dynamically.  
    What I want: Need to change the Signature Field Reason code Dynamically upon selecting Radio Button.
    Here is My Code:  
    var mydoc = xfa.resolveNode("FormData.P3_443.signature[2].ePadSignatureField3");
    mydoc.signatureSetSeedValue(
    reasons: ["Advisor"],
    flags: 8
    Error Message:
    TypeError: mydoc.signatureSetSeedValue is not a function
    9:XFA:FormData[0]:P3_443[0]:signature[2]:ePadSignatureField3[0]:validate'
       Source Code: Acrobat Code for Signature.
       // Obtain the signature field object:
    var f = this.getField("mySigFieldName");
    f.signatureSetSeedValue(
    { reasons: ["This is a reason", "This is a better reason"],
    flags: 8

    Problem: Not able to change Signature Settings Dynamically.  
    What I want: Need to change the Signature Field Reason code Dynamically upon selecting Radio Button.
    Here is My Code:  
    var mydoc = xfa.resolveNode("FormData.P3_443.signature[2].ePadSignatureField3");
    mydoc.signatureSetSeedValue(
    reasons: ["Advisor"],
    flags: 8
    Error Message:
    TypeError: mydoc.signatureSetSeedValue is not a function
    9:XFA:FormData[0]:P3_443[0]:signature[2]:ePadSignatureField3[0]:validate'
       Source Code: Acrobat Code for Signature.
       // Obtain the signature field object:
    var f = this.getField("mySigFieldName");
    f.signatureSetSeedValue(
    { reasons: ["This is a reason", "This is a better reason"],
    flags: 8

  • HT5188 I have 50 iPads and 50 codes, but I am not able to install the app on the last ipad.  One code in the spreadsheet says it's already been used but shows no serial number or device name.

    I have 50 iPads and 50 codes, but I am not able to install the app on the last ipad using Apple Configurator.  One code in the spreadsheet says it's already been used but shows no serial number or device name.

    Hi mafiose15,
    Thanks for visiting Apple Support Communities.
    Restoring your iPod to factory settings is the best way to try and get it back to working order. You can use the instructions below to restore it:
    How to restore iPod
    Verify that you have an active Internet connection, because you may need to download new versions of the iTunes and iPod Software.
    Download and install the latest version of iTunes if necessary.
    Open iTunes. Connect your iPod to your computer using the USB or FireWire cable that came with your iPod.
    After a few moments, your iPod will appear in the Source panel in iTunes.
    Select your iPod in the Source panel. You will see information about your iPod appear in the Summary tab of the main iTunes window.
    Click Restore.
    If you are using a Mac, you will be asked to enter an administrator’s name and password.
    A progress bar will appear on the computer screen, indicating that stage one of the restore process has begun. When this stage is done, iTunes will present one of two messages with instructions specific to the iPod model you are restoring.
    Disconnect iPod and connect it to iPod Power Adapter (typically applies to older iPod models).
    Leave iPod connected to computer to complete restore (typically applies newer iPod models).
    During stage two of the restore process, the iPod displays an Apple logo as well as a progress bar at the bottom of the display. It is critical that the iPod remain connected to the computer or iPod power adapter during this stage.
    Note: The progress bar may be difficult to see, because the backlight on the iPod display may be off.
    After stage two of the restore process is complete, the iTunes Setup Assistant window will appear. It will ask you to name your iPod and choose your syncing preferences, as it did when you connected your iPod for the first time.
    You can find the instructions in this article:
    Restoring iPod to factory settings
    http://support.apple.com/kb/ht1339
    All the best,
    Jeremy

  • Not able to change font

    Hi ,
    We need to print some text data in printer. As we print a report, with numbers, and columns, we need font widht to be constant for all the charecters for producing properly aligned reports. [ like in courier or monospace fonts]. In the code below, I am not able to set the font for my printer. In the print() method, I tried to set font as monospace for the graphics object, but it did not have any effect. It looks like it always print with Ariel font. For displaying in layouts, it works find. But not with printer. Please help.
    import java.awt.*;
    import java.awt.font.*;
    import java.awt.geom.*;
    import java.awt.print.*;
    import java.text.*;
    * The PrintText application expands on the
    * PrintExample application in that it images
    * text on to the single page printed.
    public class PrintText implements Printable {
    * The text to be printed.
    private static final String mText = "this is the string to be printed";
    * Our text in a form for which we can obtain a
    * AttributedCharacterIterator.
    private static final AttributedString mStyledText = new AttributedString(mText);
    * Print a single page containing some sample text.
    static public void doPrint() {
    /* Get the representation of the current printer and
    * the current print job.
    PrinterJob printerJob = PrinterJob.getPrinterJob();
    /* Build a book containing pairs of page painters (Printables)
    * and PageFormats. This example has a single page containing
    * text.
    Book book = new Book();
    book.append(new PrintText(), new PageFormat());
    /* Set the object to be printed (the Book) into the PrinterJob.
    * Doing this before bringing up the print dialog allows the
    * print dialog to correctly display the page range to be printed
    * and to dissallow any print settings not appropriate for the
    * pages to be printed.
    printerJob.setPageable(book);
    /* Show the print dialog to the user. This is an optional step
    * and need not be done if the application wants to perform
    * 'quiet' printing. If the user cancels the print dialog then false
    * is returned. If true is returned we go ahead and print.
    boolean doPrint = printerJob.printDialog();
    if (doPrint) {
    try {
    printerJob.print();
    System.out.println("successfully Printed");
    } catch (PrinterException exception) {
    System.err.println("Printing error: " + exception);
    * Print a page of text.
    public int print(Graphics g, PageFormat format, int pageIndex) {
    /* We'll assume that Jav2D is available.
    Graphics2D g2d = (Graphics2D) g;
    /* Move the origin from the corner of the Paper to the corner
    * of the imageable area.
    g2d.translate(format.getImageableX(), format.getImageableY());
    /* Set the text color.
    g2d.setPaint(Color.black);
    /* Use a LineBreakMeasurer instance to break our text into
    * lines that fit the imageable area of the page.
    Point2D.Float pen = new Point2D.Float();
    AttributedCharacterIterator charIterator = mStyledText.getIterator();
    int tabCount=100;
    int[] tabLocations = new int[tabCount+1];
    int i = 0;
    for (char c = charIterator.first(); c != charIterator.DONE; c = charIterator.next()) {
    if (c == '\n') {
    tabLocations[i] = charIterator.getIndex();
    System.out.println("found newline at tabLocations[" + i + "] = "+ tabLocations[i] );
    i++;
    tabCount=i;
    tabLocations[tabCount] = charIterator.getEndIndex() - 1 ;
    int currentTab = 0;
    float verticalPos = 20;
    charIterator = mStyledText.getIterator();
    LineBreakMeasurer measurer = new LineBreakMeasurer(charIterator, g2d.getFontRenderContext());
    TextLayout layout;
    float wrappingWidth = (float) format.getImageableWidth();
    while (measurer.getPosition() < charIterator.getEndIndex()) {
    if (currentTab < tabCount )
    layout = measurer.nextLayout(wrappingWidth,tabLocations[currentTab]+1,true);
    if (measurer.getPosition() == tabLocations[currentTab]+1) {
    currentTab++;
    else
    layout = measurer.nextLayout(wrappingWidth);
    pen.y += layout.getAscent();
    float dx = layout.isLeftToRight()? 0 : (wrappingWidth - layout.getAdvance());
    layout.draw(g2d, pen.x + dx, pen.y);
    pen.y += layout.getDescent() + layout.getLeading();
    System.out.println("Print result : "+ Printable.PAGE_EXISTS);
    return Printable.PAGE_EXISTS;
    }

    I don't see how it would have worked on the screen. Is that what you meant by "For displaying in layouts, it works find."? You never called setFont(...) on the Graphics or Graphics2D object in your paint method. Use g2d.setFont(new Font("Monospaced", Font.PLAIN, size)) and you should be fine.
    Jeff

  • Not able to change icons since OS 10.8.3

    Hi everybody
    I'm not able to change any icons, especially drive icons, since the update to OS 10.8.3.
    Could please  anyone help me? If also possible i would like to change the default drive icons to woodlike icons so they fit to my computer even better.
    To understand it a little better, take a look at screenshot of my desktop. ;-)
    Could someone please help me?
    My desktop:
    planned icons:

    Just browsing through the internet and I couldn't find a Tutorial which showed how to change the Finder icon in dock in SNOW LEOPARD. Here are the steps:
    (You will need to log in as root)
    1. Go on google and look for the icon you want and copy it
    2. Navigate to Macintosh HD>System>Library>CoreServices.
    3.Click on the Finder app and press "CMD+I" to open 'Get info' for Finder.
    4. On the top left there should be icon next to the text Finder.
    5. Click on the icon and Press "Cmd+V" to paste your new icon there
    6. Close the window.
    7. Go back to Macintosh HD>System>Library>CoreServices and look for the app called "Dock"
    8. Right click "Dock.app" and select "Show Package Contents" and open "Contents"
    9. Look for the Image called "finder.png" and copy it somewhere for back up.
    10. Go to the image u copied and change the name to finder.png
    11. Replace the finder.png in the Dock.app with your new one
    12. Close all the windows
    13. Open Terminal
    14. Type this code in:
    sudo rm /var/folders/*/*/-Caches-/com.apple.dock.iconcache
    15. Then kill Dock using this command:
    killall Dock
    16. Once the Dock reopens you're done!
    Enjoy
    (tried the code but they said "no such folder or diectory")
    going all nuts here trying

  • HT4847 I have a new iphone and cannot delete the backup from icloud.  It says that it is in use.  I have read some of the other threads and it only seems to be haphazard solutions. Is there a definite way to fix this? I am not able to change icloud accoun

    I have a new iphone and cannot delete the backup from icloud.  It says that it is in use.  I have read some of the other threads and it only seems to be haphazard solutions. Is there a definite way to fix this? I am not able to change icloud accounts.

    Follow the steps in wjosten's post here: https://discussions.apple.com/message/13356770#13356770 (for Windows, substitute Outlook in step 2).

  • Not able to change sales stage from requirtement to reqmt analysis

    in opportunity Not able to change sales stage from requirtement to reqmt analysis
    Error Message:SBL-DAT-00284
    Details error msg is:
    Unable to evaluate workflow rule for foll reason
    Update probability between 0 & 100%(SBL-ODS-00500)
    Edited by: user1074008 on Sep 22, 2010 10:17 PM
    Edited by: user1074008 on Sep 22, 2010 10:18 PM

    Looks like a bug...
    Previos Post Activity Status = Submitted - Access Denied

  • Not able to change exportfolders value in MBeans for FRConfig.cmd for Hyperion Financial reporting 11.1.2 version.

    I am not able to change exportfolders value in MBeans for FRConfig.cmd for Hyperion 11.1.2 Financial reporting .
    When I enter the value , it just vanishes. Am I missing something here.?
    I need to set export path for PDF generation in Hyperion financial report for batches.

    Edit FRConfig.cmd and update
    set EPM_ORACLE_INSTANCE=%MIDDLEWARE_HOME%\user_projects\epmsystem1
    update epmsystem1 to the correct epm instance name
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • How do I change the country for my iTunes account? I had purchased some itunes gift cards and i have about .75USD left in it. I am not able to change the country because i have to clear the account balance. there is any way I could spend that money???

    I would like to change my country from US to Thailand in the iTunes Account. I purchased some iTunes gift card to purchase some apps and since ever i was not able to change my account balance to 0.00USD which is needed in case I want to change my account country. I appreciate if some body can help with this

    1) Buy something 75c or greater and charge the balance to a credit card.
    or
    2) Contact Apple and ask them to keep the 75c
    iTunes Customer Service Contact - http://www.apple.com/support/itunes/contact.html > Get iTunes support via Express Lane > iTunes > iTunes Store

  • User not able to Change Password in Webaccess

    We are running GroupWise 7.0.3 HP3. We have one user who is not able to change her password in Webaccess. Whenever she tries, she get the following error message in Webaccess
    Ldap Password Change Failed. Contact your system administrator.
    When I look at the POA screen on the server, I see the following error message.
    LDAP Error: 53.
    Her account is not disabled, expired or locked. I get the same error message when the account has an unlimited number of network aconnections.
    If I change the password in ConsoleOne and log into the account, I get prompted change my password because it has expired.
    Thanks

    n,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://forums.novell.com/faq.php
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://support.novell.com/forums/

  • My iCloud is defaulting to an old Hotmail address that I no longer use, my apple ID is currently functioning fine with a gmail account.  I'm not able to change my iCloud email on my phone or on desktop... Any advice?

    My iCloud is defaulting to an old Hotmail address that I no longer use, my apple ID is currently functioning fine with a gmail account.  I'm not able to change my iCloud email on my phone or on desktop... Any advice?

    You would have to change your Apple ID back to your old hotmail address (https://appleid.apple.com ) in order to turn off "Find My iPhone" and change the iCloud ID. After you changed it back and verified your old hotmail address you should be able turn off "Find My iPhone" and to temporarily delete your iCloud account from your devices. After that you can change your Apple ID back to your gmail address again. After it is verfied, you could add back your iCloud account by using your gmail address.

  • My past billing adress of my apple ID is the states, presently i'm in montreal Canada and im not able to change the billing address because my balance is $ 0.68, any idea how can i change it?

    my past billing adress of my apple ID is the states, presently i'm in montreal Canada and im not able to change the billing address because my balance is $ 0.68, any idea how can i change it?

    You can contact iTunes support and request that they remove the $0.68 from your account here:
    http://www.apple.com/support/itunes/contact/
    They should respond within 24 hours.

  • Not able to change the the Contract Line Item Payer

    Hi there,
    I am not able to change the Contract Line item Payer and giving an error message '' Credit limit customer differs from credit limit customer in header''.
    I checked the credit management assignment and the Business partner is assigned with the required Payer.
    Request your help.
    Thanks,
    Renjith

    Hi Renjith
    So first of all  check with which customer you have created Contract. So go to CMR data and check wheather you have maintained multiple Payers or not. If not maintained maintain multiple payers.
    As you are getting error  '' Credit limit customer differs from credit limit customer in header'' , so check the payer at header level and item level also. the payer at header level and item level should be different.
    Regards
    Srinath

  • Not able to change vendor name while creating a DC under a track in NWDS

    Hi all,
    I am trying to create a new DC under a track in NWDS.I am not able to change the vendor name .It is showing sap.com and the field  is greyed out.Did anybody faced this issue earlier?
    Need your inputs.
    Thanks and regards,
    Rajesh

    Hi Rajesh
    Please check this thread.
    cannot create a new DC
    You can create new SC with your name reservation and add to your track.
    Hope this will help you.
    Thanks
    Arun

Maybe you are looking for

  • Images chopped off when creating a mobi file with kindlegen from inDesign epub

    I'm having difficulty with a reflowable ebook project which includes line drawing illustrations. They are mainly looking good all sized at 600px wide (all greyscale gifs under 127k) and exporting with object export options set to CSS: relative to tex

  • I can hear you, but you can't hear me...

    I've had my iPhone for about 2 weeks now. For the first 3-4 days it was working fine and dandy. And then last weekend a strange thing has settled in. I'll be talking with someone on the phone and then mid-conversation, they can't hear me anymore. I h

  • How to underscore a name in the to field when email?

    Need help on how to send a email and to underscore name in the to field, how is that done?

  • Lumia 822 has a Windows Boot error

    "Windows Boot Windows failed to start.  A recent hardware or software change might be the cause.  To fix the problem: 1. Insert your Windows Installation disc and restart your computer. 2. Choose your language settings, and then click "Next." 3. Clic

  • Undo() function... need advice

    Hi. in couple of days I have to start writing program in which has to be Undo() function (and it's service functions), that function as my lecturer says, have to be able do all undo operations from the start of the program. One of suggestions was to