CJ88 - AUC getting created - but without values

Hi all,
I have run CJ88 for settling WBS to CC to create an AUC. But the AUC asset is created without values. Please let me know the reason behind the same. Many thanks.
Regards,
S.Sumana

Hi,
U r question is little unclear...
If u settle WBS to Cost Center, all the values will be posted to cost center but not to AUC. check the settlement rule of u r wbs and make sure u have AUC asset as the receiver.
Regards
Sudhakar Reddy

Similar Messages

  • 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

  • Firefox4 gets websites, but WITHOUT SOUND

    I get video, but no sound from any website since installing FF4
    om my HP HDX 16-1140US (64 bit) running Vista. The sound is working fine on everything else.

    Check the Audio MIXER setting WHILE playing a flash video, see if the third mixer on the right is turned off. If so, set it to ON and move the volume slider up.

  • Measuring data mess! Meas.doc gets created,but doesn't update plan!

    Hi colleagues,
    During testing I have encountered weird problem..
    The measuring data, which I fill while TECO for work order stopped being consistent with measurement document list and maintenance plan counter reading in particular..
    So, when i enter measuring data when TECO, the measurement document gets greated (with number!), however it is NOT visible in IK17 and if i go to IK11, it shows the old counter reading (before I entered new data when TECO)..
    What is more, the counter reading field in IP10 DOES NOT get updated as well!!
    Do you have any idea, why that can happen?!
    Thanks in advance

    yes, when i create via IK11 it gets updated and it's visible in IK17 etc.
    while when create meas doc when doing TECO, even though the actual doc is created (with number, e.g. 617), when I go after that to ik11, it would show me prior value (last doc  616) and it wouldn't let me enter new value, issuing first warning message  "1subsequent doc was created"  and then error message "Counter reading in doc. 618 larger than in subsequent doc. 617".. the only way to see meas doc 617 is in IW32 via extras/doc for order/meas doc or via IK12. It is not visible with IK17..
    it's so weird...

  • When does a value help in Java webdynpro 2004s get created automatically

    HI All
    when does drop down value help get created automatically (without coding) in java webdynpro NW 2004s application for a view field mapped to a abap dictionary like currency(Domain:waers) having a value table  TCURC but has to be created for a field like UOM(Domain:meins) having a value table T006
    the only differnce I can see in the 2 domains in my current set up is, meins has a conversion routine & wears doesnt
    this is a question that applies to both java webdynpro & abap so please dont ask me to post it in another forum.
    Im sure some one has asked this question before. please guide me!!
    Thanks
    Prasad

    Question:
    If I start a java thread from the �main� thread of
    execution and that thread I just created finish�s
    executing its �run� method is that threads resources
    automatically clean up? Or do we have to do this
    clean up ourselves?Depends which resources you mean. There's nothing special about threads in that respect.
    Memory is automatically reclaimed when it is no longer reachable, so unless the run method set some member variables in some object that remains reachable after it completes, no worries there.
    Files, sockets, etc. remain open unless you close them.

  • Row created without value

    All,
    In my Jdev 11.1.1.5 application i have a VO created on top of EO(EO is not based on table or any database object). I am creating a row of the VO and assigning it some values like this
                            NameValuePairs nvp = new NameValuePairs();  
                            //values not printing  in the table row                    
                            nvp.setAttribute("Segment1", item);
                            nvp.setAttribute("Description", itemStockVORow.getDescription());
                            nvp.setAttribute("OrganizationName", itemStockVORow.getOrganizationName());
                            nvp.setAttribute("RetailPrice", itemStockVORow.getRequestedPrice());
                            nvp.setAttribute("Netprice", itemStockVORow.getNetprice());
                            nvp.setAttribute("RequestedPrice", new Integer(requestedPrice));
                            nvp.setAttribute("PackQty", itemStockVORow.getPackQty());
                            nvp.setAttribute("BoxQty", itemStockVORow.getBoxQty());
                            nvp.setAttribute("CaseQty", itemStockVORow.getCaseQty());
                            nvp.setAttribute("PcCode", itemStockVORow.getPcCode());
                            nvp.setAttribute("OnhandQty", itemStockVORow.getOnhandQty());
                            nvp.setAttribute("IsSuperseded", itemStockVORow.getIsSuperseded());
                            nvp.setAttribute("OrganizationCode", itemStockVORow.getOrganizationId()); //this is the key attribute
                            nvp.setAttribute("InventoryItemId", itemStockVORow.getInventoryItemId());//this is also the key attribute
                            //this value is printing in the table row
                            nvp.setAttribute("Quantity", qty);
                            _logger.fine("Creating a record for quotation for item table... ");
                            _logger.fine("Description: " + itemStockVORow.getDescription()); // value is getting printed here
                            getRequestQuotationForItem().insertRow(getRequestQuotationForItem().createAndInitRow(nvp)); However on the UI a row is created but he values are coming as blank. I have set the ppr on the table also. What could be wrong here ? Please advice......
    thnks

    Don't know whats wrong in the above code however this is working
                            ItemStockVORowImpl row = (ItemStockVORowImpl)getRequestQuotationForItem().createRow();
                            row.setSegment1(item);
                            row.setDescription(itemStockVORow.getDescription());
                            row.setOrganizationCode(itemStockVORow.getOrganizationCode());
                            row.setInventoryItemId(itemStockVORow.getInventoryItemId());
                            getRequestQuotationForItem().insertRow(row);Can someone please tell me what is the difference in the 2 codes ?

  • Empty files are getting created at receiver FTP server

    Hi Experts,
    I have an Idoc to File scenario where I am sending an XML file to receiver FTP server.
    Scenario is working fine but sometimes an empty file is getting generated at receiver FTP server.
    I have already selected ignore empty file at receiver channel so issue is not within PI system configuration.
    When I checked the message log I can see that almost all the files are getting created successfully without any issues, but
    for some files/messages I can see that there are below error logs.
    "Transmitting the message to endpoint <local> using connection IDoc_AAE_http://sap.com/xi/XI/System failed, due to: com.sap.engine.interfaces.messaging.api.exception.MessagingException: Could not get FTP connection from connection pool (1 connections) within 5,000 milliseconds; increase the number of available connections"
    "Exception caught by adapter framework: Could not get FTP connection from connection pool (1 connections) within 5,000 milliseconds; increase the number of available connections."
    And after there is again success message log in the same message and it creating a file successfully during that time stamp.
    but the third party is sometime receiving empty file which I am not able to find in any trace or log (my file name is SD_timestamp.xml).
    Can you please let me know what is the solution and what adjustments FTP server need to do in order to resolve this issue.
    Thanks in advance.
    Regards,
    Rahul Kulkarni

    The error you are getting that says "Could not get FTP connection from connection pool (1 connections) within 5,000 milliseconds; increase the number of available connections" has probably nothing to do with the empty files problem.
    I second Hareesh Gampa that you first should try "temporary file creation". You might also need to tell the FTP owner that he should only pick up files with that are written completely and that do comply with a negotiated file name schema. The temp file should have another schema of course then. He should not pick up just every file that is written. See here for details
    http://help.sap.de/saphelp_nw74/helpdata/en/44/6830e67f2a6d12e10000000a1553f6/content.htm
    HTH
    Cheers
    Jens

  • ESB Instance Not Getting Created

    Hello,
    I am trying to call one synchronous BPEL using one ESB. This ESB applies DVM while transforming input data into called BPEL format. But it shows some strange results. while calling ESB using any other BPEL
    1. ESB instance is not getting created.
    2. Synchronous BPEL is getting called but without DVM applied.
    But If I use SoapUI to call the ESB, it's working fine. Can any body give me any clue, why is it happing?
    Any help is appreciated.
    Thanx In Advance,
    Nitin

    Can you please confirm me the following steps...
    Log in to the EM console, Expand soa-infra (soa_server1) , go to the partition where your composite is been deployed, Click on your composite, On the right, click on the dropdown Settings and choose Composite Audit Level. you can choose to set the Audit Level for this composite. If you choose Inherit, it will take the settings to what the server is being set to. Otherwise, we can override it by choosing Off, Production, or Development.
    Make sure your setting for that composite is not Off, keep inherit or production or development.
    Thanks,
    N

  • Help of User exit to get to updated cuobj value in SAPMV45A

    Hi All,
    In Va01 / Va02 Transaction we have some characteristic Values (In fast entry Tab)
    which are comming from Material Master. which is display on screen using structure
    RV45A.
    when i debug in USEREXIT_SAVE_DOCUMENT_PREPARE OR
    USEREXIT_SAVE_DOCUMENT I connot find data in RV45A structure.
    my problem is : when user changes the char. value in fast data entry tab. i want to get updated values.
    vbap-cuobj is created but char. value is avilable only upon saving va01.
    can anyone tell me
    1. how to get this updated char. values in user exit move_fields_to_vbap or SAVE_DOCUMENT OF SAVE_DOCUMENT_PREPARE
    or
    2. any exit which is executed after saving va01/02 or after USEREXIT_SAVE_DOCUMENT
    Thanks in advance

    I solved using  userexit_new_pricing_vbap.

  • Infotype 0573 not getting created

    Hi All,
    We have an R/3 transaction created for leave application and this is showcased in EP6.0 portal as an Internet Service. Now, when we apply for leave using this application through portal, for certain employees, infotype 0573(Absence infotype for Australia PS) is not getting created but 2001 gets created. When we try doing the same through PA30 or through the R/3 transaction itself, everything is going on fine. Only while applying through portal, this issue occurs. This was working fine in EP5.0 portal.
    Can anyone suggest a way to sort this issue? Any help will be rewarded.
    Thanks and Regards,
    Leena

    Hi Leena
    Please note that the function module HR_ABSENCE573_REQUEST_PBS was internally used by SAP only for corresponding ESS services of Leave administration Australia Public sector functionality. The behavior for the function module is as expected, when
    called from corresponding ESS services. Further the same function module is currently not enabled to be used outside the same. Also there are no further issues with creation of Infotype records in 0573 and 2001 (which are consistent) from PA30 (Maintain Master data).
    Hence would you please check if you are using the standard function module
    HR_ABSENCE573_REQUEST_PBS and perform an operation. As I mentioned Function module HR_ABSENCE573_REQUEST_PBS which is currently being used by ESS services for Leave administration.
    Regards,
    Jun Wu
    SAP HCM Support team (AU/AU-PS)

  • Need help:  Distribution demand is not getting created when Iu2019m using Purch

    Friends,
    When Iu2019m running the heurisitic plan distribution demand is not getting created. Iu2019m working on SCM 5.1
    I have a transportation lane which are automatically created using the Purchase inforecords. Iu2019m not
    facing any issues tranfering this purchase info records (PIR). Iu2019m able to see this as transportation lanes
    in APO.  When I run the heuristic plan run purchase requsition are getting created but distribution
    demand is not getting created. I have tested the same  scenario by manually creating transportation
    lanes. The manually created transportation lanes  are generating distribution demand but purchase info
    record transportaton lanes are not generating the distribution demand. What may the cause?  I would really appreciate for
    your input in advance.
    Regards
    KRN

    Friend,
    I have maintained the means of transport to the tranportation lane
    Regards
    KRN

  • Customer is getting created multiple tims when it has multiple sites

    Hi,
    I developed customer conversion.
    when I load data through conversion in R12 Customer is getting created multiple tims when it has multiple sites.
    what are the things I have to take care to prevent this.
    Please suggest me If any one has Idea.
    Thanks & Regards,
    Narendra.

    Hi Gabriel,
    Thanks for taking time to reply to my post.
    When one of my collegue giving the print, there is only one spool which is getting created, but when I run the program there are multiple spools are getting created.
    -Pradeep

  • How to create control dynamicall​y while front panel fly using Xcontrol or anyothere options but without scripting tools

    Hello friends
               I have one doubt How to create control dynamically while front panel fly using Xcontrol or anyothere options but without scripting tools.I need to create the controls while vi is running.For example I need to create one Boolean  while VI was Fly and i need one Examples it is easy to understand.
    Jayavel

    You must be using a different dictionary than the rest of us.
    You can't dynamically create controls while a VI is running.   (If I'm mistaken, then I'm sure someone else can jump in and say how it can be done.)
    Do you have a finite number of controls you could possibly need?  What you can do is create enough controls of the type you need ahead of time.  At the beginning of your program, you hide all of those controls.  As you need to create a control, you make it visible using property nodes.  There are numerous properties you can set at run time suce as ranges, colors, captions, ...  Of course you can't wire these controls to any other bits of code ahead of time since at that time, you haven't defined what you want each one to actually control.  But if you use an event structure to detect when the values of the controls have changed, you can then programmatically pass the data off to other parts of your code using queues.  The architecture can get complicate quite fast, so you may want to look through Ben's Action Engine Nugget and other related threads for how to create mechanisms for using these controls.  Perhaps storing queue reference numbers or assign user events to each one.

  • AUC Asset not getting created when Internal Order is created

    Dear Experts,
    While Creating the internal order ( Object Class - Investment Measure)
    AuC (Asset Under Construction) not getting created automaticall . Note Investment profile is already there in the order.
    Following steps below are configured -
    1. Define the AuC Asset Class (with investment measure) - OAOA
    2. Define the Asset Class u2013 for Main Asset - OAOA
    3. Define Investment Profile - OITA
    a. Assign the AuC Asset Class (Step-1) in the investment profile
    4. Assign Investment Profile to Model Order - OITA
    5. Define Order Type (Investment) - KOT2
    a. Settlement Profile - OKO7
    b. Maintain Allocation Structures - OKO6
    Thanks
    Sanjai

    Hi Sreekanth,
    What is the setting needed to create AUC Automatically when an Internal order is created ?
    I have done all the setting, but still when I save Internal order neither AUC asset is getting created.
    So I went to extras selected create AUC and it went to AS01, but when I came back (F3) from AS01 to Internal Order and save , Auc Asset is not getting captured in the settlement rule. I even tried to give manually the AUC Asset in the settlement rule, for which sys is not allowing in the settlement rule.
    Any thoughts are highly appreciated
    Advance Thanks
    Sanjai

  • Internal Order for AUC Asset not getting created Automatically

    As per SAP Standard , when I create an  AUC Internal Order (KO01), and save , AUC asset is gets created automatically ted via AS01 and stores the AUC Asset in Internal Order settlement rule. 
    However when tried with the client Im not able to create, AUC is not getting automatically created and stored in Int Order Settlement rule.
    In config I have added investment profile to Ord Type  and in OAOA ( AUC Asset class setting , Investment profile is also checked)
    Kindly let me have your inputs to fix the issue
    Advance Thanks
    Sanjai

    Hi,
    In order to create AUC asset automatically by the system, you need to create an investment profile in OITA.
    Then assign this investment profile in the Internal order master data created through KO01 in the Investments tab.
    There is no option of assigning the Investment profile in the Order type.
    And in OAOA that is Asset class, select the radio button investment measure.
    You can default the Asset class of AUC in the investment profile or leave it blank so that same can be filled when system prompts for AUC creation.
    You cant see the AUC asset in the settlement rule once Investment order is created, but only after settlement of the balances to the AUC u can see.
    Thanks & Regards,
    Ravi Kumar

Maybe you are looking for