Item Texts Is Not Being Created in BAPI_BILLINGDOC_CREATEMULTIPLE

Hi.
I am Using Bapi TO Create Invoice, Every thing is created successfully , but item text is not being created. Code is as below.
DATA: s_vbap TYPE vbap,
            t_billing TYPE STANDARD TABLE OF bapivbrk WITH HEADER LINE,
            t_datain TYPE STANDARD TABLE OF bapikomfktx WITH HEADER LINE,
            t_return TYPE STANDARD TABLE OF bapireturn1 WITH HEADER LINE,
            t_success TYPE STANDARD TABLE OF bapivbrksuccess WITH HEADER LINE.
      SELECT SINGLE * FROM likp
      WHERE vbeln = v_del_doc_no.
      SELECT SINGLE * FROM lips WHERE
      vbeln = v_del_doc_no.
      t_billing-salesorg = likp-vkorg.
      t_billing-ref_doc = likp-vbeln.
      t_billing-ref_item = lips-posnr.
      t_billing-doc_number = v_del_doc_no.
      t_billing-itm_number = lips-posnr.
*      SELECT SINGLE fkarv FROM tvak
*            INTO  t_billing-ordbilltyp
*            WHERE auart EQ zsoa_so_header-auart.
      SELECT SINGLE auart FROM vbak
                  INTO  t_billing-ordbilltyp
                  WHERE vbeln EQ order_num.
      t_billing-price_date = sy-datum.
      t_billing-ref_doc_ca = likp-vbtyp.
      t_billing-material = lips-matnr.
      t_billing-plant = lips-werks.
      APPEND t_billing.
      BREAK-POINT.
      CLEAR: t_datain.
     t_datain-ref_doc = v_del_doc_no.
      t_datain-ref_item = '000010'.
      t_datain-applobject = 'VBBP'.
      t_datain-text_id    = '0001'.
      t_datain-langu      = sy-langu.
      t_datain-format_col = '*'.
      t_datain-text_line  = 'FSG 2829'.
      APPEND t_datain.
      CALL FUNCTION 'BAPI_BILLINGDOC_CREATEMULTIPLE'
        TABLES
          billingdatain = t_billing
          textdatain    = t_datain
          return        = t_return
          success       = t_success.
      CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
        EXPORTING
          wait = 'X'.
      LOOP AT t_return.
        itab_msg-type = t_return-type.
        itab_msg-msg =  t_return-message.
        APPEND itab_msg.
        CLEAR  itab_msg.
      ENDLOOP.
      READ TABLE t_success INDEX 1.
      p_i_bill_doc = t_success-bill_doc.
    ENDIF.
  ENDIF.
  CLEAR: itab_so_items, itab_so_items[] , delivery_no , itab_return[].
So Text FSG 2829 is not being created in Item Text.....

Hi Tahir,
You can check with the below thread
A question of BAPI_BILLINGDOC_CREATEMULTIPLE
Regards,
Pawan

Similar Messages

  • Why the hyperlink blue text is not being created for .cat & .ad domains? Is it for using Catalan language on them?

    I was just trying to share a catalan website with a friend and I realized that the .cat domain was not being hyperlinked. Then I tried with a lot of domains such .es, .fr, .pt ...  Finally I got that all domains are working well except for those with a catalan speaking like .cat or .ad (.ad is the domain for adorran websites, Andorra is a country dude!). As a Catalan speaker I'm really upset with you.
    Usage details:
    Device: iPhone 4s 16GB
    Software version: iOS 8.2
    Software language: Catalan & Spanish (I tried with both)
    Tried apps: Whatsapp, iMessage, Notes & other Apple Apps.
    PS: This is not happening with Android, I've asked for...

    http://freelance-it.com.mx/forma-correcta-de-utilizar-la-pestana-drivers-dentro-de-mdt-2013/
    Freelance-IT http://www.freelance-it.com.mx

  • Request For Quotation - ME41 - Item texts are not getting copied

    Hi,
    I created one RFQ (Request For Quotation) by copying from the existing one (through t-code ME41). But item texts are not copied.
    How can this issue be resolved..?
    In menu path ( Item --> Texts --> Adopt Text ), "Adopt Text" option is available. But its in disabled mode.

    just use F4 to get a valid entry, it is only grey to prevent manual typing

  • PO item text does not display in form at first. Only after saving PO

    Hi Guys,
    We're facing a peculiar situation. We print line item texts of a PO in the smartform. However what we noticed was that as soon as the PO is created and we choose to print the po, the item texts do not appear. When we checked in tables STXH and STXL theese texts were not even registered in the tables. All this time the PO is saved.
    Then we went back into the PO in ME22n, made a slight change somewhere and saved the PO. Now these texts appear in the tables STXH/STXL and also in the print out. What could the reason be?
    Regards,

    Hi
    You should check your PO customizing, probably the text is set to be loaded in modification only
    Max

  • Class not being created when running from jar

    Hi all,
    Tech info first:
    IDE: Sun Java Studio Enterprise 8
    Plaform: windows xp
    I have created a Swing app, that connects to a com port(using the RXTXcomm). now, when I run the app in the IDE, everything is fine and dandy, but, when I run the jar file, the application loads, but the class in the app which deals with the com port is not created. here is the code:
        private static void createAndShowGUI() {
            //Make sure we have nice window decorations.
            JFrame.setDefaultLookAndFeelDecorated(true);
            Main receiver = new Main();
            receiver.getPropertiesFromFile();
            //Create and set up the window.
            frame = new JFrame("R�FILOG RFID Empf�nger");
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            frame.setContentPane(receiver.mainPanel);
            frame.setJMenuBar(receiver.createMenuBar());
            frame.addWindowListener(receiver);
            frame.setLocationByPlatform(true);
            //Display the window.
            frame.pack();
            frame.setVisible(true);
            portListener = new RFIDReaderComm(receiver, "COM3");
            portListener.getConfiguration();        
        public static void main(String[] args) {
            //Schedule a job for the event-dispatching thread:
            //creating and showing this application's GUI.
            javax.swing.SwingUtilities.invokeLater(new Runnable() {
                public void run() {
                    createAndShowGUI();   
    portListener in the createAndShowGUI() function is an interface level parameter and is the class that is not being created. There is no error message.
    If I move the two lines that deal with the port listener before the frame.pack() line, then the GUI is not even loaded, and when I view the processes in the task manager, the process starts and then quits without anything becoming visible. So from this I guess there is a problem with creating the class when running from a jar, but without any error messages, I have not a clue where to start...can anyone help?
    thanks in advance.

    Well, some more info, so maybe someone can come up with some tips for me...this is really important, and any help is greatly appreciated.
    This is obviously a classpath problem. After running the my jar file with java -jar I finally got the error NoClassDefFoundError
    Kind of obvious I suppose. But, I cannot seem to get the two jar files I need into the classpath. I have tried the following:
    Updating my computers CLASSPATH with the relevant paths - not working
    Trying to get the Sun Java Studio Enterprise to build the required jar files into the final package - cannot get this to work
    Tried updating the manifest.mf in the following way:
    Created a text file Manifest.txt with the lines:
    Class-Path: RXTXcomm.jar
    Class-Path: BrowserLauncher2-10rc4.jar
    ran the command (in the same directory as Manifest.txt):
    jar cfm RUFILOGScanner.jar Manifest.txt classes/*.class
    but this does not work either. When I run: jar tf RUFILOGScanner.jar all I get is:
    META-INF/
    META-INF/MANIFEST.MF
    classes/
    classes/CRCCalculator.class
    classes/Main$1.class
    classes/Main.class
    classes/RFIDReaderComm.class
    classes/URLDialog$1.class
    classes/URLDialog$2.class
    classes/URLDialog.class
    the classes I want added are not there. Plus, (I think this is because I am running SE8) the manifest.mf is not in a folder called META-INF. In fact, I have no folder called META-INF. Is this significant?
    Please, can anyone help me?

  • My 4S has stopped ringing. Voicemail's disabled but if you call me, you'll hear it ring your end but it does nothing at mine and freezes if I make a call. Texts are not being delivered or coming through delayed. Ringer is on, tone enabled - help!

    My iPhone 4S has stopped ringing altogether. Voicemail is disabled but if you call me, you'll hear it ringing at your end but it does nothing my end and freezes in the phone app if I make a call (doesn't ring or connect and doesn't freeze the phone, just the calling part). Texts are not being delivered or coming through delayed. Ringer is on, tone enabled - help!
    I've disabled roaming so it only runs on wifi (this after getting a £4k phone bill...) and I can use Skype, Viber and WhatsApp with no problem at all.
    Would really appreciate any help at all!
    Many thanks.

    Hi there - am with Orange and they said nothing wrong with account and service running normally.  They said if they had cut me off I would've received a text (debatable with current message receiving situation!) and when I called out it would say 'calls from this number are barred'.  Also if you called me it would say something similar.  But it doesn't, it will ring and ring until it rings off but nothing happens at all on my handset. Not even a missed call notification.  If I call out, it will display that it is calling the number but that's it.  If I cancel the call it will constantly display 'ending call'.  If I come out of the phone and go to another app then revist phone it will start calling that last dialled number - without ever getting as far as ringing or connecting.

  • XMP files not being created with DNGs...

    I'm used to using Bridge with ACR to process Nikon NEFs. But a recent camera update has me experimenting with converting the D3's NEFs to DNG files and editing them with CS2 and Bridge 1.04 which works better on my system. I've also experimented with CS3 and Bridge 2.1.1.9 with the same DNG files.
    In both cases XMP files are not being created when working with DNG files. I have enabled "Save image settings in : Sidecar ".xmp" files" turned ON. But they do not seem to be generated and I assume the ACR adjustments are being embedded in the DNG file. Meanwhile doing edits on NEF files continues to create .xmp files as expected.
    I find .xmp files to be very useful and I'm wondering why they're missing with DNG files? Are they hiding somewhere other than in the same folder that the images reside in?
    Thanks.
    Russell

    > The information contained in the XMP file is stored in the DNG file so there is no need for a separate file.
    Aww, yuck!! That's a real drag...
    When editing lots of files (yesterday's shoot produced 8GB) I back everything up to off-line storage and then, after doing all my edits and crops in ACR, I only have to copy over the small XMP files which takes no time at all.
    So if I re-edit the DNG with ACR I have to re-copy ALL the files again to the off-line storage.
    I used to sometimes even save 2 versions of the xmp files when I needed 2 different crops of the same images, such as doing a wide screen 'cinema' crop for a corporate client's Intranet presentation of their event, as well as more standard crops to be used for their newsletters.
    Guess I won't be using DNG any more..
    Thanks for the help Kees :-)
    Russell

  • Group Folders not being created

    Hi folks,
    i think this is a simple question: i got Mac OS X 10.4.4 Server with OD and Mobile Homes configured. I set up some custom Groups but the Group Folders are not being created automatically. I think there is a terminal command to do this. Does anyone know that command?
    Greets

    Is it the CreateGroupFolder command?
    (15297)

  • Inbox folders not being created from msf files

    Last week, I noticed that my Inbox folder files weren't appearing in my profile. I posted a generalized question here: https://support.mozilla.org/en-US/questions/996903
    The response I received didn't help that much. The folder I created appeared on the remote mailbox as empty folders.
    My mail account is synced via IMAP to a remote Zimbra mail client using STARTTLS. I can view my Inbox. The other folders in my Inbox account are not visible. I can send and recieve messages from my INBOX.
    When I select "Manage folder Subscriptions" In the account options, I can see the folders. When I select them, and click the "Subscribe" button, nothing happens.
    Inspecting my IMAP directory, I see the following structure:
    ~/.thunderbird/13zr0oo0.default/ImapMail/mail.<zimbra_account>.com:
    -rw-r--r-- 1 matthewe matthewe 1238 May 2 10:38 Archives.msf
    -rw-r--r-- 1 matthewe matthewe 1235 May 2 10:38 Drafts.msf
    -rw------- 1 matthewe matthewe 47500385 May 2 09:56 INBOX
    -rw-r--r-- 1 matthewe matthewe 375885 May 2 10:36 INBOX.msf
    -rw-r--r-- 1 matthewe matthewe 25 May 2 08:58 msgFilterRules.dat
    -rw-r--r-- 1 matthewe matthewe 1233 May 2 10:38 Sent.msf
    -rw-r--r-- 1 matthewe matthewe 0 May 2 10:38 site-errors.msf
    -rw-r--r-- 1 matthewe matthewe 0 May 2 09:59 Templates.msf
    -rw-r--r-- 1 matthewe matthewe 2275 May 2 10:33 Trash.msf
    The msf files are created when I click the "Subscribe" button but subsequent Mail files containing the mail data are not (note that non-msf files exist only for "INBOX".)
    Removing .msf files and restarting Thunderbird has no affect.
    When I launch, the errors console reports the following three errors:
    "Could not read chrome manifest 'file:///usr/lib/thunderbird/extensions/%7B972ce4c6-7e08-4474-a285-3208198ce6fd%7D/chrome.manifest'.
    -- There is no chrome.manifest file in my filesystem under /usr/lib/thunderbird/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}"
    "While creating services from category 'profile-after-change', could not create service for entry 'Disk Space Watcher Service', contract ID '@mozilla.org/toolkit/disk-space-watcher;1'"
    This is reported as https://bugzilla.mozilla.org/show_bug.cgi?id=883621 and has been resolved at https://bugzilla.mozilla.org/show_bug.cgi?id=895964 but my system still throws the error. (I have plenty of disk space. Permissions perhaps?)
    [JavaScript Warning: "Calendar https://mail.zimbrahostedemail.com/home/matthewe@<zimbra_client>.com/Calendar has a dangling E-Mail identity configured."]
    I'm not sure what that means.
    I am using Thunderbird 24.5.0 on Ubuntu 13.10

    Is your question about files not being created, or because you cannot send and receive mail, or both?

  • Itunes 11 shows zero photos in Aperture and ApertureData.xml not being created in library

    I've tried to do some trouble shooting of this problem. I've rebuilt permissions, I've repaired and rebuilt the Aperture library, I've made sure sharing previews is always for iLife and iWork, I've created a new library, switched to it and switched back and I can't get iTunes to see my albums and pictures from my iPhoto library when I try to sync through Aperture. What I have found is when I created the new temporary library and loaded one pic into it, a file in the package contents called ApertureData.xml is created, which isn't created in the iPhoto libary, it has AlbumData.xml. iTunes does recognize the temp library and photo. I deleted the AlbumData.xml, but it was just recreated. It seems Aperture is supposed to be creating a file that it isn't. Any help would be appreciated, I'm trying to migrate from iPhoto to using Aperture exclusively to manage photos and sync with devices. All software is up to date. Thanks. 

    in case anyone searches and finds this question, but importing by iphoto library to aperture into a new library, I fixed the problem. I do not know how to fix the original issue of the aperturedata.xml not being created in the origianl iphoto library.

  • Internal Order not being created in cProjects-Accounting Integration

    Dear All,
    We are working on cProjects 4.0 with ECC 6.0,
    Trying to do Accounting Integration.
    For only one Project I am able to create Internal Order,
    But I am getting following error.
    “Cost/revenue rate YP002 is not valid in organization 00000000   “
    Inspite of assigning these rates to the organization 00000000
    For other projects, when I click on accounting:
    I get following error
    "Single-Obj.Controlling on InternalOrders 0188993B3E343947A046B554FD886E03 000006000032 does not exist"          
    When I go to Controlling Cockpit, I see this Internal Order not being created.
    Have revisited all settings, project type, etc.
    How do I go about this.
    Kindly help,
    Navendu

    Dear All,
    I was able to solve the one of the problem, with the following settings,
    Assign Cost Elements & Activity Types:
    Choose Organization, Start & End Dates, Cost and Revenue Elements, Currency.
    The start and end date of the cost/ revenue did not fall within the start and end date of the Organization.
    Regards,
    Navendu Shirali

  • Tlanes not being created for all locations for one product

    Hello Experts - I need some advice on the following situation:
    We have a set of products where tlanes are only being created for 3 locations out of many.  What would cause the tlanes to not be generated for all locations if all master data elements are present?  We have a valid inforec, mrp views, etc.  I can't see anything different with the 3 locations that are working correctly.
    Any help would be much appreciated.
    Thanks!

    Thank you for your resopnse:
    To answer your questions, yes, we have done all of these things and the tlanes are still not being created.  We have been using SPP for 6 months and this is the first time we've seen this problem.  Do you have any other suggestions or is there any more information I can provide you that would be helpful in solving.
    Thanks in advance for your advice.
    AAF1999

  • Nodes not being created?

    I am having a problem with my laptop. I had this issue with my USB stick which was fixed by manually creating nodes (discussed here http://bbs.archlinux.org/viewtopic.php? … highlight=). However, upon trying other usb devices that work just fine on my desktop, I have the same result as I did with the usb stick. The nodes are not being created in /dev/ even though dmesg shows that the usb device was connected. I have a custom kernel and hotplug is NOT installed.
    Any ideas on where to look with this? I have tried reinstalling udev and upgrading the kernel. Thanks for any help,

    jftaylor21 wrote:
    hey jskier, what exactly did you have to enable in the kernel to get it working? I am having the same problem and cannot figure it out.
    Thanks.
    First, my apology for not mentioning what I did. My laptop is in for repairs, but from what I recall I just enabled CONFIG_HOTPLUG located at General Setup >> Support for hot-pluggable devices. I use 2.6.14, so if you can't find it there it may be somewhere else for different kernel versions. Good luck!

  • IOR files not being created

    I'm currently experimenting with using the InDesignServerService (windows service) as our means of starting and managing instances of InDesign Server.
    I seem to have it working for the most part but the IOR files are not being created and I cannot figure out why. I have been messing around with the command line arguments in the InDesignServerService MMC for quite some time with no luck. The instances seem to startup fine and show "running" in the event viewer info message.
    Command line arguments used -
    -pluginpath Server/Corba -iorfile c:\IDSQueues\Default\ior1.txt -previews
    I've made sure the account the service is running under has writes access to the ior file path. I truely don't know what else to try or why this is happening.
    Any help would be great! thanks!
    FYI
    Using InDesign Developer Server CS5 (for testing) on Windows 7 64bit.

    Thanks for the response.
    However, this will not work because I am using InDesignServerService to startup the instances. With the service, there is a field to specify a port number in so you do not include it in the command line.
    Also, I have tried specifying this in the Command Line argument as well -
    InDesignServer -pluginpath Server\Corba -iorfile c:\IDSQueues\Default\ior1.txt -previews
    InDesignServer.com -pluginpath Server\Corba -iorfile c:\IDSQueues\Default\ior1.txt -previews
    I've also tried
    InDesignServer -iorfile c:\ior.txt -pluginpath Server\Corba
    which is what the Intro to InDesign Server PDF says to use and it does not work.
    I have tried many variations and nothing works.  The IOR file is still not created.
    I'm still trying to solve this, any help would be great!
    Thanks,

  • XMP Sidecar Files not being created.

    I have selected the tick box in the preferences, but when importing files the XMP data files are not being created, any ideas??? Also can they be automatically created at a latter date?

    James-
    They are created now only for RAW files. The xmp data for the other formats is now written into the files themselves' header space, either automatically, or when you tell it to, which you set in Prefs.

Maybe you are looking for

  • What is wbs elment

    hi, i wont to now what is the field wbs elment (WBS Definition) ? regards

  • Notes on TAXINN

    Dear All,              I worked on taxinj but now i have to work on TAXINN.so anyboday tell / mail me the steps to configure TAXINN & also some give me idea about taxcode which i have to created in ECC 6.0. My e-mail is [email protected] Thanks & reg

  • Find custom oracle reports and forms

    Hi all, I would like to know the table names where I would be able to find all oracle forms and reports? Thanks in advance,

  • Query taling 01:40:38 to execute

    Dear All, I am facing a lot of issue with this query. There are multiple session waits are present with this query. Here I am attaching the Explain plan of my query. [code] PLAN_TABLE_OUTPUT Plan hash value: 967177145 | Id  | Operation               

  • Authorization Variables ready for input

    I have a problem whit a variable, is an authorization variable and ready for input, but when i use this variable and clean the input box this variable don't works as an authorization variable... I hope that this variable return all the values where t