Create a client using SD_CUSTOMER_MAINTAIN_ALL and account group

Hi all,
I´m using the bapi SD_CUSTOMER_MAINTAIN_ALL  to create a new client with good result, now in transaction XD01 the functional consulter are using the field account group RF02D-KTOKD, they are using this field to activate the Hierarchie in SAP. Now I don´t known how to use the bapi SD_CUSTOMER_MAINTAIN_ALL  using this field account group. Can you help me?
Message was edited by:
        leonardo celis

hi
also refer to the links below might get u some idea along with the other rplys for this post..
http://www.sapfans.com/sapfans/forum/intface/messages/3949.html
http://www.sapbapi.com/bapi-list/
Create customer using SD_CUSTOMER_MAINTAIN_ALL
https://www.sdn.sap.com/irj/sdn/profile?userid=756062&start=0
Reward if USeful
Thanx & regards
Naren..

Similar Messages

  • Use of Different Account Groups?

    Hi Gurus,
    Please tell me what is the use of making different Accounts groups?
    If we make different account groups, what will be the impact in balance sheet?
    Please revert asap.
    Thank YOu

    Hi Gverma,
    You can define any number of hierarchical structures of accounts for use in the information system, allocations and planning. These structures are called "account groups". You can create new account groups as well as display or change existing ones. If you want to use the same account groups in Profit Center Accounting that you have already created in Cost Center Accounting, you can copy them to Profit Center Accounting. The same goes for balance sheet account groups that you already created in Financial Accounting.
    Each account group is assigned to a chart of accounts. You can only use an account group in multiple controlling areas if those controlling areas use the same chart of accounts.
    please also check the  following links:
    http://help.sap.com/saphelp_47x200/helpdata/en/53/c98647ca3711d2b494006094b9114a/frameset.htm
    http://help.sap.com/saphelp_47x200/helpdata/en/eb/13717743c411d1896f0000e8322d00/frameset.htm

  • How to create a list of Vendor's Account group, to call by a macht -code?

    Hi All,
    Could anyone tell me how to create a list of Vendor's Account group, to call by a macht -code?
    Thanks
    Gandalf

    Hi,
    Use this report S_ALR_87012086 and select the account group single or multiple ranges from dynamic selection.
    Thanks
    Javed

  • How can I launch a site that I designed for a client using their MobileMe account? Can they 'open' my iWeb files on their iWeb software?

    How can I launch a site that I designed for a client using their MobileMe account? Can they 'open' my iWeb files on their iWeb software?

    If you give them the Domain.sites2 file that iWeb used to create the site  they will be able to open it with iWeb application (it has to be the same version as you have) and make changes.  But if you're expected to also make changes you'll need a way to send that file back and forth between the two. 
    Also there's an online MacWorld article that describes a way that both of you could manage the site using Dropbox.  Look at Managing an iWeb site from multiple Macs.
    OT

  • Vendor address and account group

    Hi experts, could you tell me where can I find the vendor address and account group as well. So I need one table or transaction which contains all the data which I need.
    Thanks in advance.

    Hi
    You can use a Query transaction code is SQVI
    select table join
    Select table LFA1 and LFB1
    join the table on field LIFNR
    Your will get the desired output.
    If the answer resolve kindly assing points
    Thanks & regards
    Mahesh

  • How to create a user using XML and specifying addional attributes that are objects

    I'm trying to create a user using XML and specifying some attributes that are objects and not sure how to do it. How would I set the DirectoryUserAcl to Public?
    Here's the xml file:
    <?xml version = '1.0' standalone = 'yes'?>
    <SimpleUser>
    <UserName>mike2</UserName>
    <Password>abc123</Password>
    <AdminEnabled>false</AdminEnabled>
    <HomeFolderRoot>/home</HomeFolderRoot>
    <HasContentQuota>false</HasContentQuota>
    <DirectoryUserAcl> ??? </DirectoryUserAcl>
    <DefaultAclBundleAcl> ??? </DefaultAclBundleAcl>
    <HomeFolderPolicyBundleAcl> ??? </HomeFolderPolicyBundleAcl>
    </SimpleUser>

    I figured out the answer:
    <?xml version = '1.0' standalone = 'yes'?>
    <SimpleUser>
    <UserName>mike2</UserName>
    <Password>abc123</Password>
    <AdminEnabled>false</AdminEnabled>
    <HomeFolderRoot>/home</HomeFolderRoot>
    <HasContentQuota>false</HasContentQuota>
    <DirectoryUserAcl classname="SystemAccessControlList" refType="name">Public</DirectoryUserAcl>
    </SimpleUser>
    null

  • URGENT:Creating customer master using Sd_Customer_Maintain_all

    hello all ,
    I am creating customer master using SD_Customer_Maintain_All.I will be thankful if somebody Can  tell me how to pass data to this function module.Better if somebody can provide code.
    Thanks.
    Sandeep.

    hello all ,
    I am creating customer master using SD_Customer_Maintain_All.I will be thankful if somebody Can  tell me how to pass data to this function module.Better if somebody can provide code.
    Thanks.
    Sandeep.

  • Want To create Zip file  using java,And Unzip without Java Program

    I want to create a zip text file using java, I know Using ZipOutputStream , we can create a zip file, , But i want to open that zip file without java program. suppose i use ZipOutputStream , then zip file is created But for unZip also difftrent program require. We cant open that zip file without writing diff java program.
    Actually i have one text file of big size want to create zip file using java , and unzip simply without java program.Its Possible??
    Here is one answer But I want to open that file normal way(
    For Exp. using winzip we can create a zip file and also open simply)
    http://forum.java.sun.com/thread.jspa?threadID=5182691&tstart=0

    Thanks for your Reply,
    I m creating a zip file using this program, Zip file Created successfully But when im trying to open .zip file i m getting error like "Canot open a zip file, it does not appear to be valid Archive"
    import java.io.*;
    import java.util.zip.*;
    public class ZipFileCreation
         public static void main (String argv[])
         try {
         FileOutputStream fos = new FileOutputStream ( "c:/a.zip" );
         ZipOutputStream zip = new ZipOutputStream ( fos );
         zip.setLevel( 9 );
         zip.setMethod( ZipOutputStream.DEFLATED );
    //     get the element file we are going to add, using slashes in name.
         String elementName = "c:/kalpesh/GetSigRoleInfo092702828.txt";
         File elementFile = new File ( elementName );
    //     create the entry
         ZipEntry entry = new ZipEntry( elementName );
         entry.setTime( elementFile.lastModified() );
    //     read contents of file we are going to put in the zip
         int fileLength = (int)elementFile.length();
         System.out.println("fileLength = " +fileLength);
         FileInputStream fis = new FileInputStream ( elementFile );
         byte[] wholeFile = new byte [fileLength];
         int bytesRead = fis.read( wholeFile , 0 /* offset */ , fileLength );
    //     checking bytesRead not shown.
         fis.close();
    //     no need to setCRC, or setSize as they are computed automatically.
         zip.putNextEntry( entry );
    //     write the contents into the zip element
         zip.write( wholeFile , 0, fileLength );
         zip.closeEntry(); System.out.println("Completed");
    //     close the entire zip
         catch(Exception e) {
    e.printStackTrace();
    }

  • How to create customer By using SD_CUSTOMER_MAINTAIN_ALL function module

    Hello all,
    I want to create customer By passing( T_CUST_HIER_IP - customer no, account group, company code, distribution channel, division, name1, search team, city, country).
    using BAPI or function module I am using SD_CUSTOMER_MAINTAIN_ALL
    LOOP AT T_CUST_HIER_IP INTO W_CUST_HIER_IP.
        MOVE-CORRESPONDING W_CUST_HIER_IP TO W_KNA1.
        MOVE-CORRESPONDING W_CUST_HIER_IP TO W_KNB1.
        MOVE-CORRESPONDING W_CUST_HIER_IP TO W_KNVV.
      CALL FUNCTION 'SD_CUSTOMER_MAINTAIN_ALL'
       EXPORTING
         I_KNA1                              = W_KNA1
         I_KNB1                              = W_KNB1
         I_KNVV                              = W_KNVV.
    ENDLOOP
    But it gives error SALES_AREA_NOT_VALID.

    Hi,
       Check in TVKO and TVTA  master tables, for Sales Area (Sales OrganizationDistribution ChannelDivision) is vaild or not..
       If no entreis availble , it will raise the exception SALES_AREA_NOT_VALID.
    -somesh
    reward points if it is helpful

  • Sales district and account group

    how to create a new sales district for a customer?
    and for creating a customer can i assign existing customer account groups? or should i create a new account group like sold to party X.
    And how to create and assign number ranges in account groups?

    Hi
    To Create Sales District:
    IMG - Sales and Distribution - Master Data - Business Partners - Customers - Sales
    1. Define Sales Districts
    No assignment required here, the details will automatically available in Customer Master Sales view screens.
    Create customer account groups:  OBD2
    SAP Customizing Implementation Guide | Financial Accounting | Accounts Receivable and Accounts Payable | Customer Accounts | Master Records | Preparations for Creating Customer Master Records | Define Account Groups with Screen Layout
    (Customers)
    Creat number ranges in account groups: XDN1
    SAP Customizing Implementation Guide -- Financial Accounting --   Account Receivables & Payables -- Customer Accounts
        Master Data --  Create Number Ranges for Customer Accounts
    Assign number ranges in account groups: OBAR
    Financial Accounting -- Account Receivables & Payables -- Customer Accounts -- Master Data -- Assign Number Range to customer account groups
    for creating a customer can i assign existing customer account groups?
    if there is no need of creating new account group then yes u can use the same else create new one

  • How to create the screen varient for specific Account group in FBL3N T.Code

    Hi,
       i am having one scenario like in T.code FBL3N Account group one selection parameter is there ,if we enter the one reconciliation Account group that user able to see the different output screen that is created by me (Customized) but not all other account group.please any one give the suggestion me.
    Thanks,
    Harinath.

    HI ,
    It looks lilke we need to use the FM like 'G_SET_LIST_SELECT' to get the Profit
    Here ais note from the forums to get profit center group from table
    From Table SETLEAF,  Field SETCLASS  =  '0106'. Field SUBCLASS with controlling area. Profit center in Field VALFROM.
    You will get Group name in Field SETNAME.
    Regards,
    Sathya

  • Problem in creating Info record for vendor -AFFI account group

    Hi experts,
    I am trying to create a info record for a material for a vendor -1000 which is of AFFI account group.
    system in giving me an error saying that the material is not maintain in the plant 1000. However the plant i am working is for 2000 and the master data is maintained. I dont know why the system is giving a weird message taking the vendor code as the plant and giving the message " Material is not maintained in the plant"
    I have created an info record for this same material with another vendor code of the same AFFI account group. I think i am missing something in the master data of the vendor.
    Can anybody throw some lights on this.
    regards
    DP

    I got the solution. Thread closed.

  • How to create Proxy CLIENT USING .WSDL ?

    I apologize if i have posted this question in the wrong forum.My question is concerned with WSDL.
    Recently i came across a question in as :
    Write a command to Create proxy client by using .WSDL and set of XSD file.
    Can anyone provide me some pointers as to where i can find more information on this.
    Thank you for your consideration.

    sunjava84 wrote:
    I apologize if i have posted this question in the wrong forum.My question is concerned with WSDL.
    you did. Try http://www.rentacode.com next time.
    Can anyone provide me some pointers as to where i can find more information on this.
    The documentation of any web services client stack.

  • How do you create a client using static libraries?

    We are trying to create a client that does not use shared libraries.
    We have tried to use a -Bstatic option when linking the libraries but,
    we get the error /usr/local/tuxedo/lib/libtux.a(libtux.so.60): fatal
    error: input shared object in static mode
    We have tried several variations like moving the .a files, changing
    the options around and got no where.
    Any suggestions would be greatly appriciated.
    Thank you.

    Hello,
    If you are using JSF, you can create a LOV by using the selectItem
    component.
    Look at this sample code:
    <h:form binding="#{backing_test.form1}" id="form1">
    <h:selectOneMenu binding="#{backing_test.selectOneMenu1}"
    id="selectOneMenu1">
    <f:selectItem itemLabel="option1" itemValue="1"
    binding="#{backing_test.selectItem1}" id="selectItem1"/>
    <f:selectItem itemLabel="option2" itemValue="2"
    binding="#{backing_test.selectItem2}" id="selectItem2"/>
    <f:selectItem itemLabel="option3" itemValue="3"
    binding="#{backing_test.selectItem3}" id="selectItem3"/>
    </h:selectOneMenu>
    </h:form>
    Regards,
    Luis R.

  • How to create an InputSelect using ADF and JSP

    I looking for some docs/instructions on creating "an InputSelect using ADF with JSP".
    Thanks,
    BG...

    Ok here are the Steps
    1) Open the JSP editor for the page in Question.
    2) In the Data Control palette select the item that you want to become the poplist and change the "Drop As" poplist to "Single Select List"
    3) Drag the field into the page. You'll get an empty poplist which implements the <html:select> and <html:optionsCollection> tags.
    4) With the JSP editor still open click on the "UI Model" sub-tab in the Structure pane
    5) Select the field you've just dragged in - then right click to get the context menu and choose "edit"
    6) Change the List Binding Mode poplist to "LOV Mode"
    You're then taken into a couple of screens where you can select the Source VO for the poplist, and the destination dataset, along with the thing you want for the Label and the Value.

Maybe you are looking for

  • Car bluetooth not displaying contacts after upgrading to iOS4??

    After upgrading my iphone 3GS to OS4.0, my 2010 Grand Cherokee will no longer display names when using the built in UConnect hands free bluetooth system. It worked fine before the upgrade. Now when I get a call, it will only show "incoming call" or a

  • CRM Related Questions for Configuring Service Desk in Solution Manager

    Hi All, We have 3 requirements while configuring service desk in solution manager: 1) Is there any possibility that we can restrict view of messages in solman for different teams. E.g: Finance Support team should not view message raised for Material

  • Opening files created in a newer version of Illustrator

    I use illustrator CS version 11, is there a way to open illustrator files saved and created in a newer version of illustrator?

  • MATLAB R12 in SOLARIS 10 6/06

    Again I only see this problem in Solaris 10 6/06 The first time matlab R12 is started in solaris 10 6/06 it takes several minutes to start, the system freezes until the matlab splash screen comes up then normal operation resumes.

  • UUP - ProfileNotFoundException

    We have implemented UUP successfully using a custom EJB as per the weblogic documentation. We have been able to successfully log in and obtain properties from that custom EJB. But in some cases (too complicated to describe here) it seems our custom E