Adding LIFNR to LFB3N. Blank LIFNR problem.

I had a requirement to add an offsetting account “Vendor acc #” field to the LFB3N output. I had implemented note 112312.
We are running 4.6c support package  SAPKH46C48, so in FIBF I created a custom product and activated it as per instructions and then I linked the BTE-00001650 to FM LINE_ITEMS_GET_GKONT.  I also created a new screen variant including the new field. The result is the LIFNR is displayed blank on the screen. How do I populate it? While debugging I see  FM LINE_ITEMS_GET_GKONT is exporting the correct LIFNR, but it is not getting to the screen. Any ideas?
Best regards,
Michael.

LIFNR is at the header level in the invoice screen . I think you are trying to pass it to item level . Whether u are talking about FBL3n report....
REgards
Mani

Similar Messages

  • Adding More than 30 Blank Pages in Editor

    I have never had any trouble adding more than 30 blank pages in Photoshop Editor.  Usually on page 29 or 30 instead of clicking add a blank page I'll click the option underneath it to add a blank page using that layout and it'll let me make blank page ad intinitum.  Is there something I have to click or do?  Jeannie

    I don't think in Photoshop 8 PSE that you can create more
    than 30 pages at a time.  However in Photoshop 7 PSE you
    can create page 31 if at page 30 you click create another blank
    page using this format.  But it does not work in Photoshop 8 unless
    there is some answer other than this one.

  • Extra blank space problem in af:selectOneChoice

    Hi All,
    I m using <af:selectOneChoice> to display few items in combo box. Now the problem is when the page gets load 1st time, its show an extra blank space in item list, but after selecting any item from the list page gets refreshed and reload again, now it does not have any extra blank space in the list.
    How do I remove this blank space from the combo box ???

    Hi Usha,
    1. Remove the Condition from you Context tab.
    2. In the Driver Program check for the condition and fill the value in the internal table which is passed to
        the adobe form.
    3. Make the subform (under which the field is added in the hierarchy view) as flowed.
    4. In the script editor, Select the 'javascript' and write the script to hide the form field specifying the condition here.
    for e.g
    if (xfa.form.FORM.SUB_FORM.matnr == "123") {
        xfa.form.FORM.SUB_FORM.Region = "hidden";
    NOTE: Javascript is Case sensitive and stops working immediately after the line of code where an error occurs.
    Hope this proves to be useful.
    Thanks,
    Swar.

  • Adding Selection menu has caused burning problems

    I'm using iMovie9 version 8.0.4 with iDVD version 7.0.4. I first burned a project with only the Play button. Was able to change the title (ie, used a different title in iDVD than the one used in iMovie) with no problem. However, after adding chapter markers and having a Scene Selection menu I find that if I change the title of the DVD (the Play button) it will spit out the blank DVD when I try to burn. If I allow it to keep the title imported with the iMovie project it will do a burn. Has anyone else experienced this? I don't see a way to change the title of the iMovie project to match the one I want to use in iDVD without creating a new iMovie project. I thought of doing that then...what? importing my existing project to the new one and renaming it? Is that possible? Don't want proceed any farther without getting some advice because I fear losing the project that I have put so much work into and having to start anew. Any suggestions?

    Ah. File/Save as Disc Image. Too easy. After waiting about an hour I fired up the MacBook and tried again. Burn went fine. So I guess the limit, at least on this computer, is two consecutive discs. However, back to my original problem of changing the title in iDVD so that it differs from the one in iMovie. At that particular juncture I hadn't tried to burn any discs. I simply opened iDVD, changed the title, (same project I had burned the day previously using the same title from iMovie) tried to burn and the disc was rejected. If no one else has had a problem with a burn after changing the title when there is a Scene Selection menu, then maybe it's something else. However, it burned OK after I changed the title in iMovie to match the one I wanted to use in iDVD then republished (had to make a few minor changes first in iMovie because it wouldn't allow me to publish the same movie again with only a title change). I really appreciate your help and will give you "Helpful" credit for your responses but can't mark this solved until I'm certain that there isn't some kind of eccentric incompatibility issue using iMovie9 version 8.0.4 with iDVD version 7.0.4 involving the title change. Many thanks to you and all the people who have been so helpful in the forum.

  • IIS, Javascript, Signed Applet and ASP Blank Page Problem

    Hi,
    I'm having a problem using a Signed Applet in a site that runs in a IIS (Windows Server 2003).
    My aspx web page uses the applet to read my smart card and get information from it.
    This applet uses an auxiliar dll (stored in a second Signed Jar file) in order to read the information from my smart card.
    The way the solution is design:
    1) Aspx page is asked from server
    2) Internet Explorer recieve the page and asks the server for it content (images, applet, javascripts, etc)
    3) After this the JVM runs (console opens)
    4) After the Aspx page render fully a javascript register onload fires and call an applet method
    5) Applet receive the call and run the logic of the method:
         - reads the smart card;
         - calls Javascript function in order to fill aspx fields with information from smart card
         - calls Javascript function the simulates a click in a botton of aspx page (in order to call server side part sending data readed from smart card to server)
    5) The server makes some logic with the information receive and responds to client registering in aspx page a call to another Javascrit function
    6) The client received the asnwer from server and runs the Javascript function registered on step 5)
         This Javascript calls another method from applet and runs the following logic:
         - reads more information from smart card;
         - call javascript function in order to fill more fields of aspx page with the information readed
         - calls Javascript function the simulates a click in a botton of aspx page (in order to call server side part sending data readed from smart card to server)
    7) The server makes some logic and call another pages with no Applets
    8) Client asks for a second page with the same applet and we start with another logic express on steps 1);2);3),4);5) and then 7).
    This is all ok, until sometimes the server stop responding correcly for requests regarding this two pages with the Applet.
    When this happens the server just responds with a blank page.
         - with fiddler I can seer the request for the aspx page (that uses the applet)
         - but server responds with a blank html page
    The JVM doesn't fire.
    The IIS log don't show errors.
    The eventviewer doesn't show errors.
    The problem is solved with an IIS reset or a Application Pool reset.
    After a while the problem returns.
    This problem occours for other user in another machine, the server just stops responding correcly to request regarding pages with applets, the other pages still continue to work.
    If we disable Java Control Panel->Advanced->Java Plug-in->Enable the next-generation Java Plug-in the problem seend to stop, but we can't force all clients to disable this option right?
    Or there is a way to force the Applet to run with this option disabled?
    As anyone experience similar problem?
    Regards,
    OF

    This is all ok, until sometimes the server stop responding correcly for requests regarding this two pages with the Applet.
    When this happens the server just responds with a blank page.
    - with fiddler I can seer the request for the aspx page (that uses the applet)
    - but server responds with a blank html pageWell, if http requests look identical in case of success and failure (pay attention to cookies, etc) then it has to be something on the server side.
    It could be that server gets into this wrong state because of previous requests made by applet but it is hard to tell.
    I am not clear how old/new plugin can make a difference unless your applets run in the legacy mode (i.e. you are actually trying to reuse SAME instance of the applet when
    it is loaded next time).
    I'd start with
    1) carefully comparing good/bad sessions
    2) checking whether server will serve correct response to another client when it serves "bad" page for current client
    3) add debug statements to aspx - it is scripted page, may be some condition is not met and then it returns blank?
    4) record all http requests in one session until you get to "error" state and then use any http server testing tool to "replay" this set of requests.
    You should be able to get server into the same state without use of applet. Then you can try to tweak set of requests to see what makes a difference.

  • How to downgrade kernel 3.10 - blank screen problem after upgrade

    After a recent upgrade, which included kernel 3.10, my ASUS zenbook ux21a boots into a blank screen as reported in these topics:
    https://bbs.archlinux.org/viewtopic.php?id=167411
    https://bbs.archlinux.org/viewtopic.php?id=167463
    https://bbs.archlinux.org/viewtopic.php?id=167518
    How do I downgrade to kernel 3.9, please?
    On this laptop I only have dual boot Arch and Win8 (but also a vacant partition). My grub timeout is set to 0 seconds because I almost never use windows, hence my problem is to get any control of the PC. I have attempted a fresh install from USB, but it takes me into exactly the same blank screen. I also attempted install of the older arch version, which went ok until post-installation reboot, following which I ended up with the same blank screen - probably because during the installation the new kernel 3.10 was downloaded.
    I read in the above topics that people solved the problem by downgrading the kernel - somehow via chrooting from live arch usb. I lack knowledge on how to perform the kernel downgrade - perhaps someone can give instructions or at least tips how to get started.
    Interestingly, the same kernel 3.10 upgrade did not cause problems on a very similar predecessor model ASUS us21e - this info may help the advanced guys to diagnose the source of the problem.
    Last edited by latgarf (2013-08-04 21:18:04)

    Thanks, andrekp, but it didn't work on my UX21A.
    Here's what I did (screen stays black all throughout):
    1. Boot the computer. I believe this takes me to login promt at tty1.
    2. I login by blindly entering userid, <enter>, password, <enter>
    3. speaker-test <enter> - I hear noise. Ctl+c to get out (noise stops).
    4. Switch to tty2 by pressing ctl+alt+f2.
    5. In tty2, I login by blindly entering userid, <enter>, password, <enter>; then speaker-test successful on tty2.
    6. Switch back to tty1 by pressing ctl+alt+f1; speaker-test successful again on tty1.
    7. Type startx. I assume that X and openbox are started successfully: I start lxterminal by pressing my custom short-cut keys combo that I specified in openbox's rc.xml; and speaker-test gives me audible noise from within lxterminal.
    Again, screen stayed dark as night all the time, so the problem remains.
    As my time allows, I try to come up to speed and follow/replicate the attempts to identify/resolve this problem made by more advanced guys in other topics:
    https://bbs.archlinux.org/viewtopic.php?id=167411
    https://bbs.archlinux.org/viewtopic.php?id=167463
    https://bbs.archlinux.org/viewtopic.php?id=167518
    https://bbs.archlinux.org/viewtopic.php?id=167314
    The problem originally arose at # pacman -Syu, which included kernel upgrade from 3.9.9 to 10.3.3. After a later upgrade to 10.3.5, the problem remains. I've enabled 'testing' repositories on my other laptop, UX21E (which doesn't have this problem despite being the closest model!) - and I wait for the new 'testing' kernel to be released in arch, hoping to do a blind upgrade on UX21A and that it solves the problem. I also monitor https://www.kernel.org for when kernel 3.11 becomes available. If I manage to install kernel 3.11 even before it's released in arch-testing, maybe the problem will be gone...
    In the mean time, I keep using the UX21A computer having installed Lubuntu on another partition (it has kernel 3.8).
    Thanks again!

  • Blank Space problem in Adobe Form

    Hello Gurus,
    In my Adobe form, One field has to be displayed based on a condition. So, for that field, in Context tab, condition is specified and its working also i.e. It condition is true then data is not displayed in the layout but I find the blank space for it. I dont want that blank space to be displayed.
    Example:
    In layout, address is in format as shown below.
    Name
    Street
    City
    Region
    Postal code
    Country
    Here, I have a condition that, Region field should not be displayed only for Material eq '123' i.e. same address has to be printed as shown below.
    Name
    Street
    City
    Postal code
    Country
    But, If I give condition then address is shown as below.
    Name
    Street
    City
    >Here, am getting empty space & I dont need this blank space to there in the layout.
    Postal code
    Country
    So, Can anyone please help me for this.
    Thanks in Advance.
    Regards,
    Usha

    Hi Usha,
    1. Remove the Condition from you Context tab.
    2. In the Driver Program check for the condition and fill the value in the internal table which is passed to
        the adobe form.
    3. Make the subform (under which the field is added in the hierarchy view) as flowed.
    4. In the script editor, Select the 'javascript' and write the script to hide the form field specifying the condition here.
    for e.g
    if (xfa.form.FORM.SUB_FORM.matnr == "123") {
        xfa.form.FORM.SUB_FORM.Region = "hidden";
    NOTE: Javascript is Case sensitive and stops working immediately after the line of code where an error occurs.
    Hope this proves to be useful.
    Thanks,
    Swar.

  • Adding text to a text file problem

    I have used an Apple script to create a text file and I am having problems with it
    First the script creates a file containing text, as a example "ABCDE" then I enter test to the file, say "12345" and the file now has "ABCDE12345". At this point I run my Apple Script to add more data to the file, in this case "FGHIJ".
    The problem I am having is the file does not contain "ABCDE12345FGHIJ" as I expect, but instead has "ABCDEFGHIJ" because the EOF was not updated when I added "12345".
    I typed the additional text into the text window and saved it to the disk and even closed the window, quit TextEdit and reloaded the file but the results were "ABCDEFGHIJ" and not "ABCDE12345FGHIJ"

    At this point I think you should get Applejack...
    http://www.versiontracker.com/dyn/moreinfo/macosx/19596
    http://www.macupdate.com/info.php/id/15667
    After installing, Reboot holding down CMD+s, (+s), then when the DOS like prompt shows, type in...
    applejack AUTO
    Then let it do all 5 of it's things.
    The 6 things it does are...
    Correct any Disk problems.
    Repair Permissions.
    Clear out Cache Files.
    Repair/check several plist files.
    Dump the VM files for a fresh start.
    Delete old Log files.

  • Print extra blank pages & problem receiving faxes

    Hi -- My Photosmart C7280 All-In-One begins most printing jobs by printing out a blank page. Also, if I'm printing multiple pages, many of them will be blank (but the document prints in entirety) It doesn't matter if I'm printing a Word document (which I know has a conflict with HP, and which I also know does not have a blank second page at the end), or an attachment to an e-mail, or information from a web page, or even pritnting an envelope.  In fact, I have to let the envelope roll through blank, wait for the error message that there is no paper in the tray, then shoot it through again before I'll receive a printed envelope. Also, if I'm copying multiple pages I'll receive the extra blank pages, but not if I'm copying pages one at a time.
    Also, I used to be able to receive a fax automatically.  The call would go to my recorded message.  As soon as it ended, the incoming fax was recognized and it would print.  It doesn't do that any more.  I have to manually pick up the receiver of the phone before the machine will begin receiving the fax.
    My HP printer is on a network.  I can't remember if it still worked or not after we placed it on the network.  Also, I recently downloaded IE 8. 
    This has been frustrating me for months, but have not had the time to seek help till now.

    I have the same problem - print a document and a few seconds later a blank page comes out....  Any ideas?

  • Adding Subforms on Click + Page Breaks Problem

    Hi all,
    i made a form containing a few Sub forms and Text Fields which grow by the Number of Lines the User writes.
    However, I made one button to add a sub form containing 5 of these text fields
    and it works fine but when it comes to the end of the page and I click on the button again, it doesn't break to the next page, the new sub form is simply added below the last, half cut by the end of the first page...
    So my Question is how do I add a page break after the page is either full or a certain number of those sub forms exist?
    Kind Regards

    I have a similar problem. I have 2 subforms side by side that have independent columns of data. Either one of these subforms may expand onto a second page. I am stumped on how to keep the positioning correct (IE: If the content area flows western style it looks correct on page 1, but if I flow to page 2 the second column ends up on page 2. But if I position the two columns, then page break doesn't work).
    For a single row of data you need to make sure your positioned fields are in a subform that is inside a flowed subform that allows page breaks and adjusts to fit.

  • Adf blank page problem

    Hi,
    I am working on an ADF/JSF application using WebLogic server.
    When I run a jsfx page to test, the browser displays a blank page. Even the splash screen is not shown and i get no error.
    Do you have any solutions?

    John,
    Refresh button doesn't work. It gives the following error:
    Error 403--Forbidden
    From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
    +10.4.4 403 Forbidden+
    The server understood the request, but is refusing to fulfill it. Authorization will not help and the request SHOULD NOT be repeated. If the request method was not HEAD and the server wishes to make public why the request has not been fulfilled, it SHOULD describe the reason for the refusal in the entity. This status code is commonly used when the server does not wish to reveal exactly why the request has been refused, or when no other response is applicable.
    But when a blank page appears i can see the source of the page (from the browsers menu -> page source). But the problem is the source code of the page is the same as the code i developed in 11g. The scenario is the following;
    1) Run 'home.jspx'
    2) The blank page occurs in the browser
    3) When i right click the browser and select "view page source" it gives the following:
    +<f:view><af:document id="d1"><af:form id="f1"><af:pageTemplate viewId="/mainTemplate.jspx" id="pt1"><f:facet name="center"><af:commandButton text="commandButton 1" id="cb1"/></f:facet></af:pageTemplate></af:form></af:document></f:view>+
    which is exactly the same with the source code that i developed in JDeveloper.
    4) When i click the refresh button it gives the above error.
    But on a page that works fine, when i view the source of the page it gives the following:
    +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">+
    +<html class="p_AFMaximized" dir="ltr" lang="tr"><head><link rel="stylesheet" charset="UTF-8" type="text/css" href="/SemovieWeb-ViewController-context-root/adf/styles/cache/fusion-desktop-ua1gw8-ltr-gecko-1.9.2.13-cmp.css"></head><body class="x11f p_AFMaximized"><noscript>Bu sayfa JavaScript kullan&#305;r ve JavaScript etkin bir g&ouml;zat&#305;c&#305; gerektirir.G&ouml;zat&#305;c&#305;n&#305;zda JavaScript etkin de&#287;il.</noscript><div id="afr::Splash" class="x16g"><div class="x16h"><span class="x16i"><img src="/SemovieWeb-ViewController-context-root/afr/ss.gif"+
    So i think there is something going wrong when the source code of the page is converted into an html page. But why?

  • Blank Alarm Problem - Can't get rid of them

    Hi - first post. I'll dive right in. I have 2 alarms that open up when I start iCal. The problem is neither of them have any writing in them or any of the usual 3 buttons. The only option I have is to close the alarm using the red x in the top left. Of course, this means that every time I start up, the blank alarms come up. Any help would really be appreciated!

    Austin,
    I got a script error when I hit run. I decided to exercise the nuclear option. Problem is now fixed! Here is what I did:
    1 - I exported my 3 calendars: personal, travel and babies (expecting twins in a month!).
    2 - I created a new "temp" calendar and deleted the other 3. I quit and re-launched iCal app. No blank alarm... problem temporarily fixed!
    3 - I re-imported personal calendar (personal.ics). I quit and re-launched iCal app. The blank alarm re-appeared.
    4 - I went through every To Do item and did the following:
    a - check "due date"
    b - made sure "alarm" was set to "none"
    c - unchecked "due date"
    At least one "to do" event had an alarm set even though the "due date" had been unchecked. I probably set an alarm and then unchecked due date. I believe this may have caused a corruption somewhere.
    5 - I quit and re-launched iCal app. No blank alarm.
    6 - I re-imported my other two calendar files (travel.ics and babies.ics). I quit and re-launched iCal app. No blank alarm!
    Clearly the corruption was in the "personal" calendar.
    FWIW - here is the AppleScript Error I received when I ran the 2nd script you posted: "Can't make «class wr1s» of item 4 of every «class wret» of item 1 of every «class wres» of application "iCal" into type string."
    Thanks again for your help. It spurred me to dig deeper.
    Mark

  • Blank Canvas Problem - Newbie

    Just started using Motion today.
    When I start a Tutorial, Template or even a blank file the canvas stays white and won't display anything.
    If I set the video output to my second monitor the project plays back perfectly but still nothing on the canvas.
    I've reinstalled but it still doesn't work.
    I've been through al the prefs etc. and nothing seems to be out of place.
    Any help appreciated.

    I solved this through discussion with phone support.
    I swapped my two 30" monitors about.
    I connected my primary monitor to the second 7300 card.
    I then swapped the 'virtual layout' in monitor prefs so that even if the monitor was connected to card 2 it was set in software to be my primary monitor.
    This solved the problem !!

  • Adding two double numbers is a problem

    Hi friends..
    when we try to add the two double numbers say,
    119.52, 10.00
    here we should get 129.52
    but it is giving as 129.51999999999998
    Here i want to round this to two digits after decimal point
    if i round the above value i will get 129.52 and the problem will be solved.
    But we don't know exactly on what basis we are getting the sum as 129.51999999999998.
    Assume that, tomorrow when we are adding some other numbers we may got like
    129.51444444444448
    when we round this we get 129.51
    but actually we have to get 129.52.
    If anyone know why the system is giving that wrong sum amount, please give solution to avoid this.
    To solve this problem, i tried by converting the double numbers to integers and adding these integers and finally converting the sum into double...like
    if
    d1= 119.52
    d2=10
    int x = (int)(119.52*100.00);
    int y = (int)(10.00*100.00);
    int z = x + y;
    double d = (double)(z)/100;
    This is working for this case...
    But when we are applying this approch to other numbers it is giving problem....
    i.e, if i convert like below
    int x = (int)(72.46*100.00);
    this should give x=7246
    but it is giving x=7245
    What is the solution for this problem...please give immediate reply.....

    Assume that, tomorrow when we are adding some other
    numbers we may got like129.51444444444448
    That isn't going to happen. The numerical computations are deterministic. The problem lies in your understanding of how numbers work.
    This has been repeated before so if you want more detail I suggest you search the forums for discussion on precision and double.
    Computers store numbers in binary. The number you are trying to represent is a decimal number. This produces an error in precision.
    The same problem exists in decimal notation. Decimal notation can not accurately represent one divided by three (in decimal 0.33333333.....).

  • HELP!! Blank DVD problems?

    I've never had a problem with this, but today when I desperately needed a DVD burned, DVDSP-2 will not take my blank DVD-R's. Cd's will burn, I can burn on to the blank DVD-R's in other programs, and I can even put my project on a DVD-RW. BUT every time I put in a DVD-R and hit Build and Format, or Format, or Burn (I've done it in all the orders) it ejects and tells me to put in a blank disc. Then I'll reinsert the disc and get the same thing. I've restarted and reinstalled DVDSP-2. I have it well below the 4.7 GB on the DVD
    And for some strange reason I no longer have QuickTime Pro (would this create a problem).
    I'm not the greatest on this program-But I've never had a problem.
    Thanks,
    Todd

    Hi Todd,
    I 'm experiencing the same problem as you've described above. Did you find out what went wrong and how to fix it?
    Any suggestion will be greatly appreciated.
    Ken

Maybe you are looking for

  • Creative Zen V is locked

    Hi, I am sorry I am posting this because i know there are more posts like this, but i could not find the answer. My Zen V froze up yesterday when i hooked it up to my pc, I know this because when I removed it (As i was getting an 'Player Not Connecte

  • RFC Error While Creating Technical System in SLD As Web AS ABAP

    Hi Experts, I was Posted This Thread in Most of the Modules like ABAP, Exchange Infrastructure. But there is No Such Right Answers . So Finally I Got Idea to Post it in SAP NetWeaver Administrator Module. For Creating a TS for  Web AS ABAP For R/3 in

  • SuperDrive - Archive and Install/Repair Disk/Permissions Unavailable

    Was told by an Apple "Genius" that an Archive and Install would fix the problem I am having with my MBA (shuts down while booting after performing the 10.5.4 update), but that it would take at "least a day or two" for them to fix it so I took it home

  • Invoke Runbook Activity doesn't finish

    Hello, I have a Problem with the Invoke Runbook Activity, if I just test the Child Runbook manually it works fine but if I want to start it via the Parent Runbook it gets stucks and never finishes. Parten Runbook: Child Runbook: The Child Runbook is

  • Configure security realm for external Access Manager in App server 8.1

    Hi All, I would like to protect my j2ee application using access manager running on an external host. I would like to configure the security realm in Sun app Server 8.1 for the external Access Manager external host & port of AM is: http://svrd234d.dn