Is there any t.code for getting list of deliveries not yet invoiced?

Hi,
Is there any t.code or report where we can get the list of outbound deliveries not yet invoiced, and also the value for how much it will be invoiced.
For example, I have one order with net price as 100, and it has outbound delivery created and not yet invoiced. I want a list of those deliveries with the net price of the quantity delivered.
Do anybody have any idea on this ?
Thanks
Surya

Hi All,
In VF04 and VL06F we will get list of outbound deliveries, but I want the information in such a way that if that delivery is invoiced for how much value it will be invoiced? so, the list should contain the delivery number the value for how much the invoice will be created.
Thanks
Chandramouli

Similar Messages

  • Is there any function module for getting distribution list name

    Hi all,
    Is there any function module for getting distribution list name when there is same description for two distribution list name.
    or
    help me how to fetch the correct distribution name when there is same description.
    In order to send mails.
    Tell me ASAP.
    thanks
    sagar.

    http://www.sapbrainsonline.com/REFERENCES/FunctionModules/SAP_function_modules_list.html
    list of Fms

  • Is there any transaction code for uploding logo in ALV reports.

    is there any transaction code for uploding logo in ALV reports.

    hi,
    call function 'REUSE_ALV_COMMENTARY_WRITE'
           exporting
                it_list_commentary = t_header.
                i_logo             = 'Z_LOGO'.
    endform.
    Upload Logo for REUSE_ALV_COMMENTARY_WRITE
    For those who wish to upload and use a picture in your ALV abap reports.
    Steps for uploading Logo :-:
    1. Goto the transaction OAER
    2. Enter the class name as 'PICTURES'
    3. Enter the class type as 'OT'
    4. Enter the object key as the name of the logo you wish to give
    5. Execute
    6. Then in the new screen select Standard doc. types in bottom window
    Click on the Screen icon
    Now, it will ask for the file path where you have to upload the logo
    7. Now you can use this logo in REUSE_ALV_COMMENTARY_WRITE
    or
    Import Logo and Background Picture for Reporting
    In this step, you can import a customer-specific logo and a background picture into the R/3 System. These will be displayed in the header area of reports in HR Funds and Position Management.
    From the SPRO:
    HR Funds and Position Management --> Dialog Control --> Customize Reporting Interface --> Import Logo and Background Picture for Reporting.
    Activities
    1. Enter the Name of your logo/background picture as an object key in the initial screen.
    2. Make sure that the class name is PICTURES, and the class type is OT.
    3. Choose Execute.
    4. Double-click the document type Picture on the Create tab page. A dialog box will appear in which you can enter the path in which the logo/background picture can be found.
    5. Enter the path and choose Open. The logo will be uploaded into the current R/3 System. If the logo/background picture is to be transported into other systems as well, choose Transport.
    6. Return to the initial screen and repeat the procedure after having entered the Name of your background picture as an object key.
    Please note that the logo/background picture can only be displayed in ALV-based reports with an HTML header. Manually programmed reports such as business distribution plans are not based on the ALV.
    If you have selected several initial objects, ALV-based reports in HR Funds and Position Management will automatically use a hiearchical-sequential display. A logo is not displayed here either. Note also that the logo cannot be printed (see print preview in program).
    Make sure that the logo does not exceed a height of 100 pixels because it would mean that the header of the report will be scrollable.

  • Is there any transaction code for Report Designer,Query Designer and WAD

    HI Gurus,
    please tell me s there any transaction code for
    1 Report Designer
    2 Query Designer
    3 WAD
    Thanks in advance
    Prashant

    Hi Prashant,
    We don't have any Transaction Codes for these.
    Since these are installed along with the SAPLOGON BI components, it cannot be called using a standard transaction.
    You have to use only .
    Goto Start -> Programs -> Business Explorer -> Web Application Designer/Report Designer/Query Designer.
    Hope it helps.
    Reward with points if helpful.
    Regards
    Hemant Khemani
    Edited by: Hemant Khemani on May 16, 2008 5:39 PM

  • Is there any T-codes for all these............

    Hello all
    I came to know that there are T-codes for all these like
    Infoprovider,Infosource,PSA and etc.........
    pl let me know
    regards
    balaji

    Hi Balaji,
    the tcodes are
    rsa11   InfoProvider
    rsa12   InfoSources
    rsa15   PSA
    Have a look in Tabele TSTCT, select your language an filter for transaction RS* to get a list of most BW-related Transactions
    regards
    Robert

  • How to optimize code for getting list of portal GP erroneous processes

    Hello,
    In our Web Dynpro application for Java we got the list of GP processes with status Erroneous which match the following criteria (initiator, processName, blockName, actionName, startDate, endDate, instanceName, actionProcessor) by loop of all portal users. The problem is that it takes too much time for execution. In example with 200 users it takes about 5 min. Any idea how to optimize execution?
    <br>
    <br>
    <br>
    <br>
    public java.util.List getListOfUser( )  {<br>
        //@@begin getListOfUser()<br>
         List<IUser> usersList = null;<br>
            try {<br>
              ISearchResult uniqueIDs =  UMFactory.getUserFactory().getUniqueIDs();     <br>
              if (uniqueIDs.getState() == ISearchResult.SEARCH_RESULT_OK)     <br>
              {     <br>
         usersList = new ArrayList<IUser>();     <br>
                 for (Iterator<?> it = uniqueIDs; it.hasNext();) {     <br>
                     usersList.add(UMFactory.getUserFactory().getUser((String)it.next()));     <br>
         }     <br>
               }       <br> 
            } catch (UMException ex) {     <br>
            msgMngr.reportException("Unable get list of users!");     <br>
         }          <br>
         return usersList;     <br>
        //@@end     <br>
      }     <br>
    <br>
    <br>
    <br>
    public void getErrorProcessAllUser( )  {     <br>
    IUser currentUser = null;     <br>
              try {        <br>
                    if (wdContext.nodeUsers().currentUsersElement().getLogonId() == null){     <br>
                         List<IUser> userList = getListOfUser( );     <br>
    <font color="red">//{this loop is extremely slow</font>     <br>
                             for(int n = 0; n < userList.size();n++){       <br>
                                     String logonID =  userList.get(n).getUniqueName();     <br>
                                    currentUser = UMFactory.getUserFactory().getUserByUniqueName(logonID);     <br>
                                  viewProcessDetails(currentUser);     <br>
                         }     <br>
    //}     <br>
                     }else{     <br>
                         currentUser = <br>     UMFactory.getUserFactory().getUserByUniqueName(wdContext.nodeUsers().currentUsersElement().getLogonId());
                         viewProcessDetails(currentUser);<br>
                     }<br>
                   } catch (UMException e) {<br>
                    msgMngr.reportException("No user with this logonId!");<br>
                   }<br>
    }<br>
    <br>
    <br>
      public void viewProcessDetails( com.sap.security.api.IUser currentUser )  {<br>
        //@@begin viewProcessDetails()<br>
             List<IProcessInfoElement> bindableResult = new ArrayList<IProcessInfoElement>();<br>
                 try {   <br>
                    IGPRuntimeManager rtManager = GPProcessFactory.getRuntimeManager();<br>                           
                    IGPWorkItem[] workItems = rtManager.getWorkItems(GPWorkItemStatus.WORKITEM_STATUS_COMPLETED_BY_SYSTEM,<br> GPContextFactory.getContextManager().createUserContext(currentUser));<br>
                     for(int i = 0; i < workItems.length; i++){<br>
                               IGPProcessInstanceInfo processInfo =  rtManager.getProcessInstanceInformation(workItems<i>.getProcessID(), currentUser);<br>
                               if(GPBlockInstanceStatus.getStatusForCode(processInfo.getStatus()) == GPBlockInstanceStatus.BLOCK_INSTANCE_STATUS_ERROR){ <br>
                                    IGPProcessInstance instance = rtManager.getProcessInstance(processInfo, GPContextFactory.getContextManager().createUserContext(currentUser));  <br>                           
                                    IGPActivityInstance[] blocksList = instance.getChildrenInformation();    <br>
                            for(int j = 0; j < blocksList.length; j++){    <br>
                                     IGPActivityInstance[] actionsList = ((IGPBlockInstance)blocksList[j]).getChildrenInformation();
                                for (int k = 0; k < actionsList.length; k++){<br>               
          DO SOMETHING

    got the answers ..
    we have use IndexedRecord instead of MappedRecord
                   IndexedRecord input = rf.createIndexedRecord("input");
                   boolean flag = input.add("/FolderpathValue");
                   flag = input.add("CampusCodeValue");
    <b>Thanks</b>,
    Saravanan

  • Any T.codes for Replenished and Non-Replenished Inventory Stock/Value ??

    Hi
    Are there any T.codes for getting the
    1. Replenished Inventory value/stock
    2. Non-Replenished Inventory Value/Stock in SAP-MM. ?
    Thanks
    Maruthi Ram

    Hi,
    For both you can check with T.Code:MD04, by selecting fields in "Collective access" tab and "filter" fields.
    or
    try with T.Code: MCBZ by giving different MRP types.
    Regards.
    Chinna
    Edited by: Chinna Veerappa on Jan 23, 2009 5:46 AM

  • Any sample code for an Extractor to read in a flat file?

    Hi SAP gurus,
    Are there any sample code for an extractor to read in a flat file?
    Are there any documentation on custom coding an extractor to dump
    information into an info source?
    Are there any documentation on the pit falls and contraints using Solution
    Manager, the BI tools, particularly on the Info Source?
    Thanks,
    Steve

    Thanks Muppet Mark
    I forgot to mention that I had also tried just fileObject.read() as well and it didn't work either.  It was the same run on sentence result I got with the script I showed above.  Seems odd.  However, the \r instead of \n did the trick.  I had some recollection of another line feed character but couldn't remember what it was, so thanks for that.
    Doug

  • Any Sample code for recording+playing streaming live video?

    Hi all,
    I'm new to FMS3,
    I wanna create a page for webcam live recording and playing,
    is there any sample code for reference (i can only found the code
    for live recording but do not have live record+play)?
    Many thanks.
    I have installed FMS3.0 and FME2.0 on my machine, so is it
    capable to do so?
    Many thanks.

    Thanks for your reply, but I have another question:
    My live file (test.flv) is recorded under this path:
    C:\xxxx\FMS3\applications\path\streams\_definst_\
    But seems FMS3 can only play video under this path:
    C:\xxxx\FMS3\applications\vod\media\
    My only success is on this source path rtmp://ip/vod/test in
    the component FLVPlayBack.
    So is it happen to all free version of FMS3 or I have to type
    sth more?
    Many thanks.

  • Is there any t-code in which the List of Customers Display?

    Hi SDN,
    Is there any t-code in which the List of Customers Display?
    Like the MKVZ, this is the t-code for List of Vendors Display.
    Thanks,
    Sumit.

    Hi,
    Following tcodes are related to List of customers.
    MER5                   List of Customer Rebate Arrangements
    RBPCT                  List of Customer Contacts
    SWU5                   Consistency Test for Customer Task
    S_ALR_87009951         List of Customer Open Items
    S_ALR_87009952         List of Customer Open Items
    S_ALR_87009958         List of Customer Addresses
    S_ALR_87009963         List of Customer Open Items
    S_ALR_87009975         List of Customer Line Items
    S_ALR_87009976         List of Cleared Customer Items
    S_ALR_87012173         List of Customer Open Items
    S_ALR_87012174         List of Customer Open Items
    S_ALR_87012180         List of customer addresses
    S_ALR_87012185         List of Customer Open Items
    S_ALR_87012197         List of Customer Line Items
    S_ALR_87012198         List of Cleared Customer Items
    S_ALR_87015021         List of Customer Open Items with Ren
    VC/1                   List of Customers
    VXBC                   SLS: List of Blocked Customers
    Thanks,
    RKP

  • Is there any way I can get my play lists back to my iPod itouch as the last time I snyc my itouch it deleted them from my itouch and from my pc

    is there any way I can get my play lists back to my iPod itouch as the last time I snyc my itouch it deleted them from my itouch and from my pc

    While I can't help you get back Playlists that have been deleted (by iTunes!), I can hopefully help you stop that happening again. The latest version of iTunes (on 4th July 2012) is 10.6.3.25 and this version fixes the bug that has been present (in iTunes) for the last few updates.
    So first of all, make sure you have iTunes 10.6.3.25 installed.
    For any Playlist you created, you will simply have to compile them again from memory, or by starting again.
    For the built-in Playlists that came with iTunes:
    Recently Added - see the contribution from Jolly Giant in this post https://discussions.apple.com/thread/3022568.
    For other Playlists, tell us which one(s) you're after and we should be able to post instructions here for you.

  • How to do advance payment against PO for this is there any T.code

    Hello,
    Lt's say for ex: Once Po is created how to pay the advance payment against PO to the vendor, for that is there any transaction code.
    Once advance payment is made against PO, again system should not allow for ammendement
    So like this to control the system what are the configuration settings need to be done please explain
    Early action in this matter will be highly appreciated.

    Hi,
    Apply the user exit : EXIT_SAPMM06E_016
    Following Logic can be use:
    1. Validate the company code (BUKRS ) & Purchasing document type (BSTYP = F) from EKKO table for the Purchase order number (EBELN).
    2. Check the entries for the Purchase order and the item number in the Purchase order history table ( EKBE) and also Validate if there is any down payment document exists (VGABE = 4)
    3. If we find down payment doc in EKBE table then display the warning or error message as POP - UP by using functional module POPUP_TO_CONFIRM.
    Step 1: Validate Company code and Purchasing Document type from EKKO table
    Step 2: Check the Purchasing document history from EKBE table
    Step 3: Check whether any down payment exists.
    Step 4: Display popup message to user:
    Use the function module u201CPOPUP_TO_CONFIRMu201D to display the below message u201CPo cannot be changed, Down payment already exists for this PO item u201D.
    Edited by: redriver on Nov 27, 2011 10:06 AM

  • Are there any good tool for checking security risks, Code review, memory leakages for SharePoint projects?

    Are there any good tool for checking security risks, Code review, memory leakages for SharePoint projects?
    I found one such tool "Fortify" in the below link. Are there any such kind of tools available which supports SharePoint?
    Reference: http://www.securityresearch.at/en/development/fortify/
    Amalaraja Fernando,
    SharePoint Architect
    Please Mark As Answer if my post solves your problem or Vote As Helpful if a post has been helpful for you. This post is provided "AS IS" with no warrenties and confers no rights.

    Hi Amalaraja Fernando,
    I'm not sure that there is one more tool that combines all these features. But you may take a look at these solutions:
    SharePoint diagnostic manager
    SharePoint enterprise manager
    What is SPCop SharePoint Code Analysis?
    Dmitry
    Lightning Tools Check
    out our SharePoint tools and web parts |
    Lightning Tools Blog | Мой Блог

  • I have forgotten my restrictions passcode and i dont want to lose any media on my iphone, or any apps, i am scared to back up my media for restore in future as these photos and videos mean a great deal to me, is there any way i could get around it? Thanks

    I have forgotten my restrictions passcode and i dont want to lose any media on my iphone, or any apps, i am scared to back up my media for restore in future as these photos and videos mean a great deal to me, is there any way i could get around it? Thankyou if you can help; oh and last time i restored my iphone it didnt restore ALL the media only some and very improtant photos went missing :(

    All media and apps on the device should already be in iTunes on the computer.
    If you have forgotten the restrictions passcode, the ONLY option is to restore as new.
    Then sync back any media, apps, contacts, etc back to the device.
    You can not restore from backup as the restrictions passcode is included in the backup.

  • Is there any way I can get IDVD for my new IMac?

    Is there any way I can get IDVD for my new IMac?

    Why is there no iDVD on my new Mac? How do I get it and how do I install it?
    https://discussions.apple.com/docs/DOC-3673
    To burn a DVD with iDVD from the latest version of iMovie, you have to export the movie using the Export button and select 480p as the size. Open iDVD and start a new project, then drag that exported movie file into the iDVD menu window, avoiding any drop zones you see.

Maybe you are looking for

  • How to print an email with link on a pdf output

    Hi, I have requirement to print an email with link like mailto: ...at...com I created a hyper link in my text element which created a <%W> ... </> tag. this message in this text element will be sent as a body of an email. I want to know to do the lin

  • Problem in digitally signing a particular element of an XML Document

    hi all!! I was trying to sign a particular element of an XML document using JSR105 (XML Digital Signatures) API. For which i used +#xpointer(id('idvalue'))+ and +#idvalue+ as the URI for the reference i create as below : Reference ref = fac.newRefere

  • Data Object - sourceSet

    While following a turorial from pfdScritping I found that the data object "sourceSet" not available in script editor after entering "xfs.", a dropdown menu appears with a list of available objects but does not include sourceSet, can anyone tell me wh

  • Table function

    Hi, 1 . what is table()? 2. Can you please explain the below line of code? PROCEDURE ins_alias ( pv_app_o OUT t$app.app%TYPE, pv_name_i IN t$app.name%TYPE, pva_apps_i IN id_vt AS lv_app t$app.app%TYPE; lv_userid t$app.userid%TYPE; lva_new_apps t$app.

  • Please Help! Flash Template Problem

    Hello all. I am in desperate need of some help with coding problems. I recently bought a flash template for a photography website. I know flash a bit... (been through about 300 pages in the flash book) but i'm by no means a pro. Only problem is I don