Auto PO at GR ( POs getting created with Acc *** Cat. "U")

Hi SAP Gurus,
I'm trying to set up my auto PO at the time of GR. I make all necessary config changes for creating Auto PO at the time of GR and I was successfull in getting the Auto PO created with these config changes
THowever,the Auto PO are getting created with account category "U" is there any way we can create the Auto PO with the desired account assingment category ( in this case I would like to have the PO created with Acc. Assi. Cat. "W")
I just wanted to pick your BRAINS on this and would appreciate any feedback to resolve this issue.
Cheers,
Dhava;

Hi Ramesh,
Thanks for chiming in. Yes - I have maintained the info reocord for the vendor and material combination and PO is getting created with the standard price from this info records.
However the problem is that system automatically defaults account assingment category "U" while creating this auto PO. So is there anyway we can have the system to pick the desired account assingment category while creating the auto PO??
Any heads up will be highly appreciated.
Cheers,
Dhaval

Similar Messages

  • Locks getting created with lock owner field ##

    Hi
    We are using ECC 6.0 system. We are facing a typical pronblem. Locks are getting created with ## in the user name field. Because of which updates are not happening. I solved this problenm by applying note 857439 but the problem again occurs after some days (That is locks getting created with ## in user name field)
    Can anybody help me solving this problem permanently
    Thanks in advance

    <p>There&#39;s not enough details to get a good understanding of your scenario, but it sounds like you&#39;re using some kind of date control to retrieve the date value and pass it to the report&#39;s parameter field at runtime. </p><p>If this is correct, it sounds like the format of the date value from the control may not be what the report is expecting. To debug, I would first use hardcoded values when you set the report parameter fields to see what works. Then compare that to what the return value is from the control to see if they match. I suspect the formats differ. </p><p>I did a quick search on the BOBJ kbase and found a couple of articles that may help you. I recommend searching as there are lots of information on how to set parameter fields at runtime. </p><p><span style="margin-left: 5px"><a href="http://technicalsupport.businessobjects.com/KanisaSupportSite/search.do?cmd=displayKC&docType=kc&externalId=c2010247&sliceId=&dialogID=8582434&stateId=1 0 8584068" target="_blank">c2010247</a></span><span style="margin-left: 5px"><span style="margin-left: 5px"><a href="http://technicalsupport.businessobjects.com/KanisaSupportSite/search.do?cmd=displayKC&docType=kc&externalId=c2010251&sliceId=&dialogID=8582434&stateId=1 0 8584068" target="_blank">c2010251</a></span></span></p><p>-MJ</p>

  • New account gets created with wrong permissions (777 instead of 755)

    Hey Apple and Forum people, looks like there's a pretty bothersome error in the way that user permissions get set when you set a user's home folder to a drive partition.
    By default, a user's home folder is supposed to get 755, with all of its subdirectories (excluding Public and Sites) as 700. But if you set up a new user and point his/her home folder to a partition or a separate drive, the folder is set to 777 - meaning that anyone can read, write, and execute any file they'd like to from that drive.
    Given the sensible defaults of 755 during normal user creation, I can't believe this was intentional. And if it was intentional, then it's wrong and ought to be changed.

    Set the permissions on the other volume's root directory the same as the boot volume.
    owner:root
    group:admin
    chmod 1775
    Make a /Users directory on the other volume and
    set permissions same as on the boot volume,
    owner:root
    group:admin
    chmod 755
    create your new user directory in the /Users directory on the other volume.

  • Datasource is not getting created with jndi name though ANT

    Please help me to come out of this problem. JDBC DATA SOURCE is getting created without jndi name when iam executing below ANT Script.
    <?xml version="1.0" ?>
         <project name="deploy" default="createDataSource" basedir=".">
         <property name="weblogic.jar" location="C:/Oracle/Middleware/wlserver_10.3/server/lib/weblogic.jar"/>
         <property name="wls.username" value="weblogic" />
         <property name="wls.password" value="weblogic" />
         <property name="wls.url" value="t3://000.00.000.000:7001" />
         <property name="wls.targetServer" value="AdminServer" />
         <property name="wls.targetServer" value="soa_server1" />
         <property name="wls.domainName" value="SOA" />
         <property name="database.url" value="jdbc:oracle:thin:@000.00.000.000:7001:DEV" />
         <property name="database.driver" value="oracle.jdbc.xa.client.OracleXADataSource" />
         <property name="database.user" value="user" />
         <property name="database.password" value="password" />
         <taskdef name="wldeploy" classname="weblogic.ant.taskdefs.management.WLDeploy" classpath="${weblogic.jar}"/>
         <taskdef name="wlconfig" classname="weblogic.ant.taskdefs.management.WLConfig" classpath="${weblogic.jar}"/>
         <target name="createDataSource">
         <wlconfig username="weblogic" password="webfsaD1" url="t3://000.00.000.000:7001:7001">
         <query domain="SOA" type="Server" name="AdminServer" property="x" />
         <create type="JDBCConnectionPool" name="TestScriptDS" >
         <set attribute="CapacityIncrement" value="1"/>
         <set attribute="DriverName" value="oracle.jdbc.xa.client.OracleXADataSource"/>
         <set attribute="InitialCapacity" value="1"/>
         <set attribute="MaxCapacity" value="10"/>
         <set attribute="Password" value="Password"/>
         <set attribute="Properties" value="user=user"/>
         <set attribute="RefreshMinutes" value="0"/>
         <set attribute="ShrinkPeriodMinutes" value="15"/>
         <set attribute="ShrinkingEnabled" value="true"/>
         <set attribute="TestConnectionsOnRelease" value="false"/>
         <set attribute="TestConnectionsOnReserve" value="false"/>
         <set attribute="TestTableName" value="SQL SELECT 1 FROM DUAL"/>
         <set attribute="URL" value="${database.url}"/>
         <set attribute="Targets" value="${x}" />
         </create>
         <create type="JDBCTxDataSource" name="TestScriptDS">
         <set attribute="JNDINames" value="jdbc/testScriptDS"/>
         <set attribute="PoolName" value="TestScriptDS"/>
         <set attribute="Targets" value="${x}"/>
         </create>
         </wlconfig>
         </target>
         </project>
    Thanks in advance,

    Thank u very much for ur quick reply.
    C:\ANT_DataSource>ant -v
    Apache Ant(TM) version 1.8.2 compiled on December 20 2010
    Trying the default build file: build.xml
    Buildfile: C:\ANT_DataSource\build.xml
    Detected Java version: 1.6 in: C:\Oracle\Middleware\jdk160_24\jre
    Detected OS: Windows 7
    parsing buildfile C:\ANT_DataSource\build.xml with URI = file:/C:/ANT_DataSource/build.xml
    Project base dir set to: C:\ANT_DataSource
    parsing buildfile jar:file:/D:/ANT/apache-ant-1.8.2/lib/ant.jar!/org/apache/tools/ant/antlib.xml with URI = jar:file:/D:/ANT/apache-ant-1.8.2/lib/ant.jar!/org/a
    pache/tools/ant/antlib.xml from a zip file
    Build sequence for target(s) `makeDataSource' is [makeDataSource]
    Complete build sequence is [makeDataSource, ]
    makeDataSource:
    Property "AdminServer" has not been set
    Property "SoaServer" has not been set
    Property "AdminServer" has not been set
    Property "SoaServer" has not been set
    [wlconfig] QUERY -pattern SOA:*,Name=AdminServer,Type=Server
    [wlconfig] Set size is 1
    [wlconfig] QUERY -pattern SOA:*,Name=soa_server1,Type=Server
    [wlconfig] Set size is 1
    [wlconfig] Created MBEAN: SOA:Name=SampleDS,Type=JDBCConnectionPool
    [wlconfig] SET -mbean SOA:Name=SampleDS,Type=JDBCConnectionPool -property Capa
    cityIncrement 1
    [wlconfig] Ok
    [wlconfig] SET -mbean SOA:Name=SampleDS,Type=JDBCConnectionPool -property Driv
    erName oracle.jdbc.xa.client.OracleXADataSource
    [wlconfig] Ok
    [wlconfig] SET -mbean SOA:Name=SampleDS,Type=JDBCConnectionPool -property Init
    ialCapacity 0
    [wlconfig] Ok
    [wlconfig] SET -mbean SOA:Name=SampleDS,Type=JDBCConnectionPool -property MaxC
    apacity 50
    [wlconfig] Ok
    [wlconfig] SET -mbean SOA:Name=SampleDS,Type=JDBCConnectionPool -property Stat
    ementTimeout 600
    [wlconfig] Ok
    [wlconfig] SET -mbean SOA:Name=SampleDS,Type=JDBCConnectionPool -property Pass
    word USER
    [wlconfig] Ok
    [wlconfig] SET -mbean SOA:Name=SampleDS,Type=JDBCConnectionPool -property Prop
    erties user=PASSWORD
    [wlconfig] Ok
    [wlconfig] SET -mbean SOA:Name=SampleDS,Type=JDBCConnectionPool -property Refr
    eshMinutes 0
    [wlconfig] Ok
    [wlconfig] SET -mbean SOA:Name=SampleDS,Type=JDBCConnectionPool -property Shri
    nkPeriodMinutes 15
    [wlconfig] Ok
    [wlconfig] SET -mbean SOA:Name=SampleDS,Type=JDBCConnectionPool -property Shri
    nkingEnabled true
    [wlconfig] Ok
    [wlconfig] SET -mbean SOA:Name=SampleDS,Type=JDBCConnectionPool -property Test
    ConnectionsOnRelease false
    [wlconfig] Ok
    [wlconfig] SET -mbean SOA:Name=SampleDS,Type=JDBCConnectionPool -property Test
    ConnectionsOnReserve false
    [wlconfig] Ok
    [wlconfig] SET -mbean SOA:Name=SampleDS,Type=JDBCConnectionPool -property Test
    ConnectionsOnCreate true
    [wlconfig] Ok
    [wlconfig] SET -mbean SOA:Name=SampleDS,Type=JDBCConnectionPool -property Test
    TableName SQL SELECT 1 FROM DUAL
    [wlconfig] Ok
    [wlconfig] SET -mbean SOA:Name=SampleDS,Type=JDBCConnectionPool -property URL
    jdbc:oracle:thin:@100.10.000.100:1601:DEVDB
    [wlconfig] Ok
    [wlconfig] SET -mbean SOA:Name=SampleDS,Type=JDBCConnectionPool -property Targ
    ets SOA:Name=AdminServer,Type=Server;SOA:Name=soa_server1,Type=Server
    [wlconfig] Ok
    [wlconfig] Created MBEAN: SOA:Name=SampleDS,Type=JDBCTxDataSource
    [wlconfig] SET -mbean SOA:Name=SampleDS,Type=JDBCTxDataSource -property JNDINa
    me jdbc/SampleDS
    [wlconfig] Ok
    [wlconfig] SET -mbean SOA:Name=SampleDS,Type=JDBCTxDataSource -property PoolNa
    me SampleDS
    [wlconfig] Ok
    [wlconfig] SET -mbean SOA:Name=SampleDS,Type=JDBCTxDataSource -property Target
    s SOA:Name=AdminServer,Type=Server;SOA:Name=soa_server1,Type=Server
    [wlconfig] Ok
    [wlconfig] QUERY -pattern SOA:*,Name=AdminServer,Type=WebServer
    [wlconfig] Set size is 1
    [wlconfig] SET -mbean SOA:Name=AdminServer,Type=WebServer,Server=AdminServer -p
    roperty LogFileName logs/access.log
    [wlconfig] Ok
    BUILD SUCCESSFUL
    Total time: 41 seconds
    Edited by: soa.dev on 12-Sep-2012 02:09

  • Inbound Activity not getting created with Campaign Response

    Dear Experts,
    I am working in a scenario where we are using Campaign Automation for sending Email Survey to business partners.
    Mails are reaching the BPs, survey response also coming to the survey tables, But the Inbound activity is not getting created in the system.
    I am using standard Transaction type ''0000'' for inbound activity. . which is ''Appointment'' and Category type ''Date'',  direction  ''inbound''
    The Action profile for this activity is Campaign_Automation_Activity. . .
    I have done questionnaire determination is customizing too.. .
    Am I missing a something??
    Some linking of this Activity with Campaign element?
    Please suggest!!

    Hello Naresh,
    Thanks for the reply, but can u explain me in details.
    1. I am using the MKTCA PBO n PAI,
    2.I have checked the BAdI CRM_SVY_MKTCA_PAI and checked the Transaction type ''0000'' hardcoded, so using the same Transaction type,  the Category is hrdcoded as ''002''
    3. Transaction type ''0000'' is active.
    Please suggest?

  • Delivery get created with one line item from sale ord having two line item

    I have an issue when delivery is created with reference to a sales order.
    The sale order consist of a header with customer group VBKD-KDGRP = '01'. There are two line item for this header with item 10 having customer group '01' and line item '20' having customer group '02'.
    When delivery is created with reference to this sale order the delivery contains only one line item corresponding to line item 10 having customer group '01' of the sale order. But I need to have both the line item in the delivery irrespective of difference in customer group.
    What makes this split up of delivery? Is there any configuration or user exit that need to be applied in order to adress this.
    <REMOVED BY MODERATOR>
    Thanks in advance
    Ramachandran Babu
    Edited by: Alvaro Tejada Galindo on Jun 13, 2008 5:45 PM

    Check if there is any copy routine applied in the copy control from order to delivery - transaction VTLA. The routines themselves can be found in transaction VOFM (Data transfer -> Deliveries). LIKP-ZUKRL field contains the split criteria (by the way, check what's in that field on your deliveries).
    It's possible that there is something in the current routine that is forcing the delivery split. Otherwise you can probably use similar approach to make it stop splitting.
    Hope this helps.

  • Installed release PRE 9.0 but still get "created with ...9 trial..

    I created a small project using the trial version.
    The project is 1440x1080. After removing the trial version I installed the released version from DVD with serial numbers.
    When I open the small project I still see the "created with  ... 9 trial .." message on the video clips.
    I deleted all of the rendered file in directory Adobe Premiere Elements Preview Files. Then I rerendered the entire project and all is well.
    Dennis

    From the FAQs to the right of this forum.
    http://forums.adobe.com/thread/433730?tstart=0
    Happy moviemaking!

  • EM respository getting created with number of errors

    I tried creating EM repository on 11gR2 database.
    The repository created but there are many errors in the log files and EM URL is not accessible.
    Errors:
    emctl.trc file:
    012-05-07 15:06:23,792 Thread-1 ERROR main: nmectla_agentctl: Error connecting to _https://10.150.227.133:3938/emd/main. Returning status code 1
    2012-05-07 15:06:23,840 Thread-1 WARN http: nmehl_connect_internal: connect failed to (10.150.227.133:1530): Connection refused (error = 79)
    2012-05-07 15:06:38,888 Thread-1 WARN http: nmehl_connect_internal: connect failed to (10.150.227.133:1530): Connection refused (error = 79)
    2012-05-07 15:06:41,197 Thread-1 WARN http: nmehl_connect_internal: connect failed to (10.150.227.133:1530): Connection refused (error = 79)
    database is configured using service IP 10.150.227.133 and the IP of the server is different which is 21.6.76.220.
    Output for wget:
    wget _http://10.150.227.133:1530
    --15:47:22-- _http://10.150.227.133:1530/
    => `index.html'
    Connecting to 10.150.227.133:1530... connected.
    HTTP request sent, awaiting response...
    15:47:22 ERROR -1: Malformed status line.
    Please assist.

    can u provide me more details on this. Are you installing EM12c ? Was the install successful ?

  • PO is getting created but showing error is address with status of IDoc - 51

    Hi Experts,
    I am using IDoc type  - PORDCR103
    Process code - copy of  IDOC_INPUT_PORDCR1 (Function Module)
    After processing through WE19 it is generating an IDoc number with status - 51 showing error in Address , But it is creating a PO.
    My requirement is In status -51 It should not create PO.
    Inside IDOC_INPUT_PORDCR1 a Bapi  'BAPI_PO_CREATE1' is used for creating PO. Here In RETURN parameter of BAPI a Row is comming with Message type - E.  Some other messages are also there of type 'S' and 'W'.
    After processing ,  PO is getting created with staus - 51.
    Please help me .
    Thanks
    Susanta
    Edited by: Susanta22 on Oct 11, 2011 12:29 PM

    Hi,
    in ur code ur filling the idoc data rcord, control record ryt ..before u append data to idoc data , u r also validating and u might be doing in loop for appening the idoc data.
    if there is any error in idoc then it won't distribute the data, it will be in error status only..u can only see the data in WE02. Then u can also change the data in WE02 and redistirbute it via BD87.
    if u have any conerns let me know
    Regards,
    Nagaraj

  • BP not getting created while creating employee

    Hi,
    When I Hire an employee a BP should be created for it. It used to happen earlier in the system but after we moved to another system this is not working.  Can someone please let me know the necessary config for this?
    I've the following settings:
    HRALX   ONUMB  = 2
    HRALX   OSUBG = MD
    The MD number range is from 90000000 to 9999999999. Should this number range be internal or external?
    When I use the HR_SYNC_PERSON report for an employee I get the error as
    "Determination of connections to object 'BP' of 'CP' '50000201' failed"
    "Object of type 'US' with ID '1122' does not exist or is inconsistent"
    "Determination of connections to object 'BP' of 'O' '50000101' failed" etc
    Also I need to upload the employee master data using LSMW and BP does not get created with LSMW also? Is there some specific config while using LSMW?
    Please help.

    Whenever you are uploading employees using LSMW, you need to run program HR_SYNC_PERSON.
    Pls refer to the following thread for further info:
    Assignment: Business partner for person '50000029' is not unique
    Regards,
    Dilek

  • Zip file is created with 0 bytes

    In my below code, I am trying to zip a folder containing files and folders. But the zip file is getting created with 0 bytes.
    Could anyone please tell me what is wrong in my coding.
    private void jButton5ZipActionPerformed(java.awt.event.ActionEvent evt)
         File sgm=new File(jTextField1Text);//jTextField1Text is the filename I am selecting from the jTextField
         File tempXML=new File(sgm.getParent());
         String[] children = tempXML.list();
         for(int i=0;i<children.length;i++)
              File renamingFile=new File(tempXML,children);
              CreateZipFile czf=new CreateZipFile();
              try
                   czf.doCreate(renamingFile);
              catch (FileNotFoundException ex)
                   ex.printStackTrace();
              catch (IOException ex)
                   ex.printStackTrace();
    ==============================
    void doCreate(File dir) throws FileNotFoundException, IOException
         String[] filenames=new String[]{dir.toString()};
         byte[] buf = new byte[1024];
         try
              // Create the ZIP file
              String outFilename = "C:\\outfile.zip";
              ZipOutputStream out = new ZipOutputStream(new FileOutputStream(outFilename));
              for (int i=0; i<filenames.length; i++)
                   FileInputStream in = new FileInputStream(filenames);
                   // Add ZIP entry to output stream.
                   out.putNextEntry(new ZipEntry(filenames[i]));
                   // Transfer bytes from the file to the ZIP file
                   int len;
                   while ((len = in.read(buf)) > 0)
                        out.write(buf, 0, len);                    
                   // Complete the entry
                   out.closeEntry();
                   in.close();
              // Complete the ZIP file
              out.close();
         catch (IOException e)
    Message was edited by:
    Simmy

    If I give File [] filenames =
    dir.listFiles();an error is thrown for the line
    out.putNextEntry(new
    ZipEntry(filenames)); as
    cannot find symbol
    symbol: constructor ZipEntry(java.io.File)
    location: class java.util.zip.ZipEntry
    There's no constructor that accepts a File as argument. There's only this
    ZipEntry(String name)
              Creates a new zip entry with the specified name.
    ZipEntry(ZipEntry e)
              Creates a new zip entry with fields taken from the specified zip entry.
    Check the API
    http://java.sun.com/j2se/1.4.2/docs/api/java/util/zip/ZipEntry.html
    regards,
    MAnuel Leiria                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Freight line item not getting created in Invoice

    Hi,
    We are using Inbound IDOC to create invoice with freight line items in it, The message type used is INVOIC and the standard inbound function module is IDOC_INPUT_INVOIC_MRM, The invoice which is getting created does not hold the freight line item in it. Actually we hope the indicator Goods Item/Delivery costs/Both which is present in the invoice (RM08M-XWARE_BNK) determines the creation of freight items or not. In our case the invoice is getting created with the indicator value as 1 but we hope the value 3 would be required for frieght items.
    Please let me know if the above message type and the standard function module would be able to handle the creation of frieght line items or we need to look for some other option.
    Regards,
    Prabaharan.G

    Hi Prabaharan,
    i have the same request for posting planed freight costs with the IDOC.
    Do you have a solution or workaround meantime ?
    Thanks and best regars,
    Roman Zimola

  • Sales order not getting created in background.

    I am using user exit to write my code to create sales order of basic type ORDERS05 with function module idoc_input_orders, and process code ORDE with my own message type.
    If I run the program in foreground message KUWEV-KUNNR is not an input field comes.
    IF I press enter the sales order is getting created with staus 53..
    But in background ERROR MESSAGE comes as:
    Function module not allowed: IDOC_INPUT_ORDERS.
    Please give suggestions.

    Dear Sir,
    Please check the FI Period is opened and FI account Number is opened.
    Thanks and Regards
    N.soma Sundaram

  • TLB STO's created in ECC via cif are being created with Intercompany Markup

    STO's created using TLB in APO when cif'd over to ECC6 get created with an Intercompany Markup.  When created manually in ECC6 using ME21N the markup is not part of the pricing and is correct.  Has anyone had this same situation?

    Abhishek,
    ECC Route is is part of ECC Transportation and Delivery scheduling,
    ( http://help.sap.com/erp2005_ehp_02/helpdata/EN/dd/5607e7545a11d1a7020000e829fd11/frameset.htm )
    and is not directly linked to SCM means of transport in standard SCM.  The analogue to Route in SCM is found in shipment scheduling in SCM.  If you wish to link route to alternative Means of Transport, you will need to use an enhancement.
    If you elect to use the more standard 'shipment scheduling' functionality to schedule your STOs instead of an enhancement, you do not need to implement the entire TLB or TPVS, you can pretty much implement just the shipment scheduling functionality.
    http://help.sap.com/saphelp_scm700_ehp02/helpdata/EN/05/f8923945b12c4de10000000a114084/frameset.htm
    Best Regards,
    DB49

  • Multiple beans getting created for a single jsf page

    Hi all,
    I am developing UI pages using JSF in 'IBM Websphere studio Application developer.'
    Suddenly I have started facing some weired problem.
    I have one jsp file 'Schedule_Process.jsp' and
    corresponding bean file 'Schedule_Process.java'.
    Everytime I run the jsp page a new bean file gets created with suffixes as 1,2,3...
    So i have 'Schedule_Process1.java', 'Schedule_Process2.java'.....for a single jsp file.
    The jsp file gets mapped to the newly created bean file. The mapping entry automatically comes in faces-config.xml file.
    Thus my bean code is divided into multiple beans.
    Sometimes this code run but sometimes it doesnot.
    To get everthing working i have to remove extra mapping entires from faces-config.xml. Also have to delete all new versions of bean files except the latest one. and then i have to rename the latest file(with number as suffix) to remove the suffix.
    This works sometimes but there no guarantee that it will work.
    I desparately want to know the reason behind this problem.
    Any help on this issue will be greatly appreciated.
    Thanks a lot in advance!!!

    Make sure in the faces-config.xml file you have
    your managed bean set a session.
    <managed-bean-scope>session</managed-bean-scope>
    and assure that you have the follwoing lines of code in the web.xml file
    <context-param>
    <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
    <param-value>client</param-value>
    </context-param>
    Hope this helps

Maybe you are looking for