Customer statement output needs to take Bill to from partner functions

Hi,
when we create a standard customer statement - the form is taking the wrong "bill to" address.
It is taking it from customer master data, but instead it has to take it from "bill to" partner of that customer.
I need to write a spec for ABAPer on how to get the fix done, but i dont know how to explain it in SAP technical terminology.
Can anyone help?

Hello,
"The form which is assigned to correspondence program in OB96, picking up the address from KNA1 (customer master data - general segment), instead of picking up the same from "Bill to" Partner of that customer. The form is required to be modified and the address should not be picked up table KNA1, but should be taken from "Bill to" Partner."
Please ask the ABAPer to debug the same.
Regards,
Ravi

Similar Messages

  • I have the djay app on my ipad and i want to record the set i'm playing on my iphone through garageband. i need to take the sound from the headphone jack of the ipad, as the 30pin connector will be used to connect to the DJLive accessory. Is this possibl?

    i have the djay app on my ipad and i want to record the set i'm playing on my iphone through garageband. i need to take the sound from the headphone jack of the ipad, as the 30pin connector will be used to connect to the DJLive accessory. Is this possibl?reco

    You may get a better response in this community:
    https://discussions.apple.com/community/app_store/garageband_for_ios

  • What steps do i need to take to upgrade from OS X 10.5.8 to Lion?

    Hi
    Does anyone know what steps I need to take to upgrade from OS X 10.5.8 to Lion?
    Lisa

    First check to see if your Mac meets the basic system requirements for Lion:
    General requirements
    Mac computer with an Intel Core 2 Duo, Core i3, Core i5, Core i7, or Xeon processor
    2GB of memory
    OS X v10.6.6 or later (v10.6.8 recommended)
    7GB of available space
    http://www.apple.com/macosx/specs.html
    Once you have satisfied yourself that you have the hardware to run it then you can take the next steps which will be to get upgraded to Snow Leoppard in order to have the App Store on the computer.

  • What steps do I need to take before UPGRADING from v29 back to v28, so that everything be back where I WANTED IT b4 ur #$%@ Molly Maids disguised...

    ... as programmers decided to WASTE MY WHOLE GD DAY trying to find, fix, move things back into the place THAT I WANT THEM TO BE?
    I've already downloaded v28 but haven't installed it yet because I would like to know what will happen when I do? i.e. will all my bookmarks, tabs, addon's be automatically back in the place I originally had them??
    OMG I'm so pissed off right now, I already sent in my feedback and I don't do this often, but wtf?! seriously! Whoever came up with this gd idea... oh wait, it's not even an idea because that would take some gd creativity, it's copying what that other shitty browser has. Need I even state the fact that if I wanted the NON-EFFIN-FUNCTIONALITY of that other browser, I wouldn't be using Firefox in the FIRST PLACE??? oops tangent... that person and the person that signed off on this POS should be fired!
    Jeesus! I think a company should recognize who their customer is and I would hazard a guess and say that the Firefox user's aren't your typical, ladeedaaaaa, oh my goodness, there are too many options and buttons, they confuse me... can you just hide them all for me so it looks pretty....
    Seriously, you didn't make FF better, this is akin to me walking into your house emptying all your drawers, cabinets and closets and moving them to where the 92 yr old woman around the block said would be better. Then laughing at silly you because you still think the way you had things actually worked for you. Please stop with the lame excuses, and how you know better, and the dreaded security risks lol as if there is any such thing as security anymore, and while I'm at it... all these company's stressing the fact that they're non-profit, doesn't mean they don't get paid, and quite well in most cases.
    So when I install v28 will EVERYTHING be back to the way it was before? I've already backed up my profile from this crap version. If installing 28 again means I'm going to have to re-download all my addon's and bookmarks, etc...
    Then it's been nice knowing you and I'll probably cry for months over this break up, unlike my recent breakup with google which was suprisingly much more of a relief after it was over. Oh and one more thing. For the moderators and for Mozilla....
    Be thankful people are complaining, it means we still care about you. So please stop crying about the 'abuse' you take, try wasting a whole gd day looking for the silverware that used to be in the silverware drawer but is now buried underneath the 14th floor tile east of the front door because the old lady around the block said it would be %$^# safer there ARGHHHHHHH

    I don't understand why they feel the need to adhere to the styles and functions of other browsers, there is a reason why the vast majority does not use safari/opera/chrome/ie, simply because we linked having everything set OUR WAY.
    We want customization, without the hassle of having to FIX everything on update breaks.

  • Need to take a value from the csv file and query in a OAF page.

    Hello,
    I have a requirement to take the list of employee numbers in a csv file and display its corresponding job on the page.
    I have created a item 'MessageFileupload' where the user will upload the csv file containing the employee number and a Button 'Display Jobs' which will display the corresponding jobs on the page.
    Any idea how to take the values from the csv file and query it?
    Regards,
    den123.

    Hi ,
    Check
    http://oraclearea51.com/contribute/post-a-blog-article/csv-file-upload-for-oa-framework.html
    http://www.roseindia.net/jsp/upload-insert-csv.shtml
    Below code works from above blogs.
    package xx.oracle.apps.pa.Lab.webui;
    import java.io.BufferedReader;
    import java.io.IOException;
    import java.io.InputStreamReader;
    // import java.io.*;
    import oracle.apps.fnd.common.VersionInfo;
    import oracle.apps.fnd.framework.OAApplicationModule;
    import oracle.apps.fnd.framework.OAException;
    import oracle.apps.fnd.framework.server.OAViewObjectImpl;
    import oracle.apps.fnd.framework.webui.OAControllerImpl;
    import oracle.apps.fnd.framework.webui.OAPageContext;
    import oracle.apps.fnd.framework.webui.beans.OAWebBean;
    import oracle.jbo.domain.BlobDomain;
    import oracle.cabo.ui.data.DataObject;
    import oracle.jbo.Row;
    * Controller for ...
    public class deptCsvUploadCO extends OAControllerImpl
      public static final String RCS_ID="$Header$";
      public static final boolean RCS_ID_RECORDED =
            VersionInfo.recordClassVersion(RCS_ID, "%packagename%");
       * Layout and page setup logic for a region.
       * @param pageContext the current OA page context
       * @param webBean the web bean corresponding to the region
      public void processRequest(OAPageContext pageContext, OAWebBean webBean)
        super.processRequest(pageContext, webBean);
       * Procedure to handle form submissions for form elements in
       * a region.
       * @param pageContext the current OA page context
       * @param webBean the web bean corresponding to the region
      public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
        super.processFormRequest(pageContext, webBean);
        // Code Addition Started for CSV upload
        OAApplicationModule am = (OAApplicationModule) pageContext.getApplicationModule(webBean);
        OAViewObjectImpl vo = (OAViewObjectImpl) am.findViewObject("deptCsvVO1");
          //if ("GoBtn".equals(pageContext.getParameter(EVENT_PARAM)))
           if (pageContext.getParameter("GoBtn") != null)
          System.out.println("Button Pressed");
              DataObject fileUploadData =(DataObject)pageContext.getNamedDataObject("FileUploadItem");
              String fileName = null;
              String contentType = null;
              Long fileSize = null;
              Integer fileType = new Integer(6);
              BlobDomain uploadedByteStream = null;
              BufferedReader in = null;
                      try
                      fileName = (String)fileUploadData.selectValue(null, "UPLOAD_FILE_NAME");
                      contentType =(String)fileUploadData.selectValue(null, "UPLOAD_FILE_MIME_TYPE");
                      uploadedByteStream = (BlobDomain)fileUploadData.selectValue(null, fileName);
                      in = new BufferedReader(new InputStreamReader(uploadedByteStream.getBinaryStream()));
                      fileSize = new Long(uploadedByteStream.getLength());
                      System.out.println("fileSize"+fileSize);
                      catch(NullPointerException ex)
                      throw new OAException("Please Select a File to Upload", OAException.ERROR);
                      try{ 
                      //Open the CSV file for reading 
                      String lineReader=""; 
                      long t =0;
                      String[] linetext; 
                      while (((lineReader = in.readLine()) !=null) )
                      //Split the deliminated data and
                      if (lineReader.trim().length()>0)
                      System.out.println("lineReader"+lineReader.length());
                      linetext = lineReader.split(","); 
                      t++;
                      //Print the current line being
                      if (!vo.isPreparedForExecution())
                              vo.setMaxFetchSize(0);
                              vo.executeQuery();
                        System.out.println("Trimmed "+  linetext[1].replace("\"", ""));
                      Row row = vo.createRow();
                      row.setAttribute("Deptno", linetext[0].trim());
                      row.setAttribute("Dname",linetext[1].trim().replace("\"", ""));
                      row.setAttribute("Loc",linetext[2].trim().replace("\"", ""));
                      //row.setAttribute("Column4", linetext[3].trim());
                      vo.last();
                      vo.next();
                      vo.insertRow(row);
                      catch (IOException e)
                            throw new OAException(e.getMessage(),OAException.ERROR);
              //else if (pageContext.getParameter("Upload") != null)
              am.getTransaction().commit();
              throw new OAException("Uploaded SuccessFully",OAException.CONFIRMATION);     
    }Thanks,
    Jit

  • Help needed to take control back from sqlplus for expired password

    Hi,
    I am executing the following line for Oracle 11g in Windows from my application
    sqlplus -L "aaaa"/"aaaa" @connectonly.sql >>"D:\tempDBlogs\connectonly.log"
    connectonly.sql file contains the following code:
    whenever sqlerror exit 1
    whenever oserror exit 2
    exit
    This piece of code executes fine for both correct & incorrect userid & password and gives proper messages. Now the problem is when password of the user in DB gets expired. The controls waits for user input. But my problem is I am runinng this code from an application which waits for sqlplus.exe to end, as it can't proceed without validation. But sqlplus runs as background process and the command prompt never comes to user. Moreover I dont want to give the user the option to change DB password from my application front end.
    So I need to find a way so that if password is expired sqlplus will return the control and will not wait for user input. Or atleast my application gets to know that the password is expired so that it can kill sqlplus process.
    Can somebody help me in this.

    interesting question. I tried something on unix and this seems to work. I simply piped a line through this which leads to an error with the expire-prompt and doesnt do any harm when there is no such prompt:
    oracle@oracle:~$ echo "" | sqlplus brost/secret @test.sql
    SQL*Plus: Release 10.2.0.1.0 - Production on Tue May 19 10:18:36 2009
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    ERROR:
    ORA-28001: the password has expired
    Changing password for brost
    New password:
    Retype new password:
    ERROR:
    ORA-00988: missing or invalid password(s)
    Password unchangedSomething similar should be possible on windows. Of course, the real solution would be flag for sqlplus that makes it absolutely non-interactive.

  • Need to take Print out - PL SQL Program / Unix

    Hi,
    I need to take print out from a file already created in Database Server in a specific path to a printer. Any PL SQL program or any shell script is there to do this??
    Thanks,
    Neil

    Neil_80 wrote:
    I need to take print out from a file already created in Database Server in a specific path to a printer. Any PL SQL program or any shell script is there to do this??Not enough information.
    {message:id=9360002}
    It's perfectly possible, but will depend on where your data is and whether it's already a printer output file etc.
    e.g. you could use the dbms_scheduler package to call a command line that sends the file directly to the printer device
    However, the specifics of that will depend on your database version and your operating system, and what file you're trying to send.

  • Partner functions in Customer master

    Hi,
    Can we maintain partner functions with out maitain customer sales area data, we need to maintain only general and company code data.
    Business scenario - 1. We have some certain customers like carrying only address purposses we dont need maintain company code and sales area, so is sytem creates partner functions once save this type of customers.
    2. same as said in point one some customers need general and company code data, dont need sales area, can system creates partner functions for this.
    regards
    Satish

    Hi Satish C,
                As already expressed by all other friends,
    Just would like to add,
    SAP has given 3 levels to maintain cusotmer relevant data ( General , Company Code & Sales area) & you are already aware of the same.
    But each level has its own importance & it can be based on how you would like to use the respective partners in specific transactions.
    for eg:
    in Billing- Bill to / Payer is required to have Company Code data & Ship to doesnt need to have Company Code data.
    In FI transactions- Customer doesnt need to have Sales area data.
    similarly, it all depends on how you want to use.
    NOte: if any partners using in Sales documents, should have General & Sales area data is mandatory. Company data is in billing.
    Just to maintain the address, if its ok with your client, you can go for different partner function ( if required in sales transactions) & add in sales area data.
    Regards,
    Reazuddin MD

  • Sales order list by Partner Function "Customer Contact"

    Hi, I can see I can get a list of sales orders out of SAP based on Customer, but I want to obtain the same list for the Partner Function "Customer Contact". Any idea how to do this?
    Regards

    Hi,
    You can get a list of sales order by any type of partner, by making the configuration / customizing changes.
    This since you can select the partner function to use in transaction VA05.
    In SPRO there is a function for reports (sorry if I'm wrong on that), where you need to maintain the index per function (either inquiry, sales order, delivery or billing document) and the partner function (sold-to, ship-to, etc).
    Once the customizing change has been made you might have to execute a report to update the appropriate indexes. I believe the help function in the customizing transaction tells you which report to execute (RVV50 IB or something in that nature).
    Regards,
    Jan Pel

  • How to take Auto backup from External Network Drive to Mac pro internal Dri

    Hi,
    I have a External Network Drive (Buffalo 1TB) which i use as a server, now i need to take auto backup from that external drive to the Mac i am working on, which has 2TB Internal hard Disk.
    Please could anyone help me on this.....
    Thanks in advance

    If you are looking to actually integrate what you have on the external one terabyte hard drive with the 2 TB hard drive you're using inside the Mac the best move for you if you want access to that data when using the Mac Pro server is going into utilities click on the top bar where it says go fall that down to the utilities told them that folder quickly once you are there you will see migration assistant click on that you will be asked to type your admin password to that. It will ask you "how do you want to transfer your information" then select from a Time machine backup or other disk when it asks you will be transferring information to your Mac Pro from your 1 Tb backup external hard drive once it's finished eject the drive or reformat it and use it again if your objective was to infect keep compress the data on the external so you have more space but do not have access to it I strongly recommend Carbon Copy Clone 3.3.1 is 100% free and does a fantastic job here is the link http://www.pure-mac.com/downloads/carboncopyclonerdl.html of copying every block to create an exact replica of your source hard drive. If you want something different and don't mind paying SuperDuper! is a great product as well this WebSite will have many options I would stick to carbon copy clone http://www.pure-mac.com/backup.html I also like EMC Retrospect backup and recovery software for the Mac it is a great product but very much on the expensive side for backup utilities although if you need word offers this might be right up your alley.
    I hope I wasn't help,
    Sincerely,
    Thomas

  • Partner function for customer through IDOC

    Hi All,
    I have a requirement in which I need to create the customer master through IDOC. I am using DEBMAS basic type for that. In its functionality, I need to assign different partner functions to it.
    When I create customer without giving any partner details,  4 entries get created by default with partner functions as BP, SP, PY, SH and KUNN2 value as INTERNAL or the same customer number which is getting created. But I want that the customer number provided by me should be assigned as partner function. Is there any way to change the default entry which is getting created so that I can replace the INTERNAL customer number with the one provided by me.
    I identified the segment as E1KNVPM in it at hierarchy level 3. I passed the partner function in the PARVW field of it and provided the customer number which I want to assign as partner function in the KUNN2 field. But I am getting error Customer INTERNAL already exists for function <Partner function>.
    Am I missing something. Any msgfn or any other input.
    Please help me on this.
    Thanks
    Natasha

    Hi,
    Im facing similar problem
    Im trying to create the customer master through IDOC.
    I am using DEBMAS06 Idoc. 
    I need to assign two partner functions to it.
    When I create a customer with  giving  two partner details, 
    6 entries get created by default with partner functions as BP, RP, EM, SH and KUNN2 value as INTERNAL,
    two others entries (ZC,ZV) are created because this partner roles i defined to be created but KUNN2 hasnt assined value and request to fill it.
    I identified the segment as E1KNVPM in it at hierarchy level 3.
    I passed the partner function in the PARVW field of it and provided the customer number which I want to assign as partner function in the KUNN2 field.
    But I am getting error when  "Customer INTERNAL already exists for function <Partner function>".
    Am I missing something. Any msgfn or any other input.
    How can avoid this error?
    Please help me on this.
    Thanks
    Armand

  • Partner function not determined if not made mandatory in customizing

    Hi!
    I have never come across this issue before so maybe it is standard system behaviour. My client is on a ECC 5.0 system and has the need to set upp an new partner function on the ship-to-party which should be derived on the delivery. I have set up the partner function to be available on the ship-to -party and also on the delivery document. However even if the ship-to-party master record has an entry for this new partner (whih is a contact person by the way), the partner is not determined at all on the delivery document unless I make the pertner function mandatory in partner determination for the delivery. This works, but I would rather only get the partner derived when there is a parnter stored on the ship-to. In the current case there will be an entry in the ship-to partner tab with the new partner function and number zero for all cases when the ship-to does not contain a record for the new partner.
    Any advice would be appreciated
    BR
    /Björn

    Hi Eric and Eduardo!
    This issue is not really to get the contact persons created in the customer master partner tab. The issue is that I want the partner if available in the ship-to-pary partner tab to be added in the delivery partner tab. If no partner is available, nothing should happen at all.
    I seem to remember that this behaviour is standard in the sales order, but I could be wrong. I did a similar set-up years ago and I think that the partners were derived without having to set them as mandatory in the partner determination.
    The note of FAQ unfortunately did not solve the problem.
    BR
    /Björn

  • Restrict billing document from saving

    Dear Gurus,
    One our clients' demand is that they need to restirct billing docuements from saving if accounting documents cannot be generated. In standard process as you know, if a proper GL account is not assigned, or an inappropriate condition type is given we are able to save a billing document, but with an accounting error. In such case, is there any way to stop this document from being generated if its gonna result in an accounting error?
    Regards
    Sidhu

    Hello Sindhu,
    I doubt whether the functionality you need is available in SAP Standard.
    You will have to apply a User Exit which will check the succesful Account Determination & only then create (save) Invoice.
    Probably the following Ueser Exits will help:
    1. EXIT_SAPLV60B_001
    2. USEREXIT_ACCOUNT_PREP_KOMKCV
    Hope this helps,
    Thanks,
    Jignesh Mehta

  • Take an input from the dashboard to the data base

    Hi all
    I need to take a text from the dashboard and insert it to the database
    is there anyone experienced about that ?
    thanks in advance

    Hey Mohammed,
    Dashboard is used to view the industries KPI, I really don't understand the need of pushing the data from reporting side to DB. If the customers are not clear about that, as a developer we need to explain them the process. On top of all this, if its really helpful for the analysis, then go with them.
    I never tested this, though i have heard about this scenario. Below mentioned links can helpful for you to understand the data flow.
    Writing Data from Dashboards to Database using XML
    http://support.dundas.com/Dashboard4.Write_back_to_database.ashx
    How to send data from Xcelsius Dashboard to dat... | SCN
    Hope this helps.

  • Deletion of Billing Factor from MEK2 T.Code.

    Hi,
    User needs to delete Billing factor from MEk2 transaction code for condition type 'ZP01' for profit center 2002. He is able to delete from VK12. But he is not able to delete from MEk2 or MEK4.
    Thanks
    Ravi

    Hi ravi prasad,
    Again you are in PLM tread, your problem seems to be related to MM, Kindly post it on appropriate thread to get quick and correct replay.
    Suhas

Maybe you are looking for

  • Lost remote for Apple Tv 1st generation.

    Hi,      I've lost my remote for my 1st generation Apple TV and can no longer navigate through the menus.  Can the 1st generation remotes still be purchased. If so where??!  If not can a different remote work to navigate through the menus of a 1st ge

  • My iphone 4s works, but the screen is completely black... does anybody know how to fix this?

    Hi i woke up three days ago to my iphone 4s not working, assuming it had no charge i plugged it in and fully charged the battery. when i returned the screen was still black, but the phone was functioning (ringing and accepting text messages etc)... T

  • Fire wire file transfer to new G5: No OSX files found on old computer?

    I am doing the fire wire file transfer from my old G5 (10.3.9) to a new G5 with 10.5. Upon restarting my old Mac I get a message that no OSX files can be found on the old computer to transfer. I have done this many times on old computers. What's goin

  • How to create new client  in SAP IDES

    Hi Experts,           I have messed up with the existing 800 client in some configuration, Now i want to create a new client and want to set the configurations again, And which client we have to copy 000 or 800, because i did lot of configurations in

  • 403 forbidden you don't have permission to access / on this server Error

    I just deployed my server 2012 & exchange 2013.  Serv#1  domain name is xyz.com.  and Serv#2 exchange server: mail.xyz.com.  My server is  also hosting DHCP Server.  After installing the servers, every time when i go to my website - www.xyz.com (it i