Use of Function CREDITLIMIT_CHANGE does not create change documents

Hello,
I've been using this FM in a customer program for some time, now, but it was called to my attention that no change documents where being kept, aswell as no administrative data.
Can't seem to find any SAP Note regarding this issue.
Is this behaviour expected?
Thank you
D

was not setting UPDATEFLAG in adtelx

Similar Messages

  • FI Doc does not create CO Document in destination system

    We have implemented CFM on ECC6 which is posting a FI Doc to a destination FI System which is on 4.7. The FI document gets created successfully but the CO Document is not created. CO and PCA is active in the Destination system.
    Can anyone please tell me what can be the reason of the same.
    FI IDoc FIDCC1, FIDCCH, CODCMT posted to Destination System.

    Hi,
    look here http://help.sap.com/saphelp_nw04/helpdata/en/0b/2a620b507d11d18ee90000e8366fc2/frameset.htm
    and oss note 114814
    hope that helps
    Andreas

  • Program does not create PCP0 documents for TMS Idocs

    Hi All,
    We have a dialy job that will catch up all payroll/tms idocs that is being received by the system. The program will automatically creates a document in the tcode PCP0 for every idocs that it has gathered both Idocs that have no errors and Idocs that have errors. Would like to ask if you have experienced the cause of this?
    Regards,
    S. T.

    Hi wyo3witt,
    I checked your account and saw that your subscription had been canceled, but that you hadn't been refunded yet. I processed a refund for you (transaction ID 0066152640); you see it in your account in 2-3 days.
    Best,
    Sara

  • Functions window does not contain "Change Gain" feature

    I recently purchased Logic Pro X I have used Logic since it's inception and in this most recent upgrade I am unable to locate the :Change Gain: function.
    It is not showing up in my Functions drop down menu
    Thanks

    You probably need to enable some if not all advanced features. Logic Pro>Preferences>Advanced Tools

  • Invoice cancellation does not create accounting document.

    Hi. here's the scenario.
    A billing document has been creating in transaction VF01.When created, an accounting document and a controlling document have been generated(you can get the document numbers when you click on the 'Accounting' button in VF03 or through FB03).
    Problem:
    A cancellation has been carried out for the billing document (transaction VF11). However no accounting documents have been created for the cancellation.
    Any idea on the customising which was missing?thx.

    Hello,
    If you accounting period is block, you need to open the accounting period and transfer these documents manually from SD back to FI by using VFX3 transaction code. You need to release them manually to transfer the documents to FI. See the log if there are errors.
    It will give the reason when you run VFX3 the documents are not moved back to FI.
    Regards,
    Ravi
    Edited by: Ravi Sankar Venna on Apr 8, 2009 12:06 PM

  • Selected run does not create any document

    Hi Friends
    i a running posting to accounts, my documents is not getting created, when i click on posting overview i get a message : incorrect status. no document created and no other messages what may be the problem .
    please let me know your solution for same.
    Thanks & Regards
    Amit.

    Hi
    Prerequesties of payroll posting
    1.Live payroll along with the infotype 0027 or cost centre assignment in ppom_old
    2.All wage type should be mapped with symbolic accounts
    and with G.L accounts
    3.For live payroll run payroll area should be in exit mode
    4.For simulation not required to put in exit mode
    5.Must tick the log and simulate
    6.it will through errors
    7.Posting period days should be created
    8.Input in pc00_m99_cipe playa a vital role
    if u processed the tcode unknowingly for the unprocessed
    employee number and payroll period should be taken care of
    do the belwo
    take one employee
    do a live payroll run
    he should have 0027 cost distribution infotype
    go to tcode pc00_m99_cipe
    tick the error log
    Put manually and give the date
    give the input and let me know the errors
    with regards
    partha

  • Create timer function that does not use start-sleep

    Hey all I would like to create a timer function that does not use the start-sleep command because this freezes my GUI. I've wrote the start of a function but it seems to move on before the specified time has finished.
    Here's what I have:
    $Global:timerCounter=0
    $Global:timer = new-object System.Windows.Threading.DispatcherTimer
    Function Timer{
    param(
    [parameter(Mandatory=$true)]
    [int]$time
    $timer.Interval = [TimeSpan]"0:0:$($time)"
    $timer.Add_Tick({
    $Global:timerCounter++
    if($Global:timerCounter -ge 1) {
    $Global:timer.Stop()
    $timer.Start()
    Then in my script i would like to call Timer -time #of seconds. It seems that when I call it the add_tick is registered and then started but it continues on with the rest of my script. Is there a better way of doing this without using start-sleep?
    Thanks!

    Okay the issue I'm having is that I have code after the $timer.start that I don't wan't to run till a powershell job is done. In all the examples I've seen it has to come to the end of the code then it starts the tick. So in your example it comes to the
    end of of your code and showsDialog() then starts ticking.
    So:
    add-type -AssemblyName system.windows.forms
    $form=New-Object System.Windows.Forms.Form
    $btn=New-Object System.Windows.Forms.Button
    $form.Controls.Add($btn)
    $btn.add_Click({$form.Close()})
    $btn.Dock='Fill'
    $btn.Font='Lucida Console, 20.25pt, style=Bold'
    $btn.Text=[DateTime]::Now
    $timer=New-Object System.Windows.Forms.Timer
    $timer.Interval=1000
    $timer.add_Tick({$btn.Text=[DateTime]::Now})
    $timer.Start()
    $form.ShowDialog()
    #I want to do other things here but only after the ps job has finished
    Thanks I really am trying to figure this out. 
    Here is the code I'm working with I guess I'm unclear on how to order the timer and the rest of my code:
    if($syncHash.mainCopy){
    $syncHash.mainJobDone = $false
    $syncHash.writeHost = $false
    while(-not $syncHash.mainJobDone){
    [System.Windows.Forms.Application]::DoEvents()
    if($syncHash.writeHost -eq $false){
    Write-OutputBox -Message "Copying"
    $syncHash.writeHost = $true
    $syncHash.inProgress = $syncHash.mainCopy | Where-Object {$_.State -match 'running'}
    $syncHash.currentCopyTime++
    }elseif($syncHash.currentCopyTime -ge ($syncHash.averageCopyTime * 2) -and $syncHash.collectionCopyTime.Count -ne 0){
    $syncHash.Unusable += $syncHash.currentMainCopyMachine
    $syncHash.computersNotForInstall += $syncHash.currentMainCopyMachine
    $syncHash.inProgress = $null
    $syncHash.mainCopyTimedOut = $True
    Write-OutputBox -Type WARNING: -Message "$($syncHash.currentMainCopyMachine) is taking too long. Removing Job.."
    Add-Content -Path $log_path -Value "$($syncHash.currentMainCopyMachine) taking to long to copy to"
    Stop-Job $syncHash.mainCopy
    }else{
    $syncHash.inProgress = $syncHash.mainCopy | Where-Object {$_.State -match 'running'}
    Write-OutputBox -Message "." -NoNewLine
    ############################# ############# So I need it to wait right here I have other code other than in this block ############# that needs to run $syncHash.currentCopyTime++
    if(-not $syncHash.inProgress){
    $syncHash.mainJobDone = $true

  • Using a dll function that does not have any inputs from a VI

    Hello all, I'm very new to Labview, I have wraped a dll library using the LVlib wizard and now I am trying to use it in a project.  I have a function that does not take any inputs or return any thing except that a struct is populated with some status information as part of the call.  I am able to draw a StartInterface VI because my void startInterface(const char* configFile, struct status_struct* status) takes the location of a configutation file as an input. But I can not figure out how to connect my Call Library Node to my a function vi that does not have any inputs ( void shutdownInterface(struct status_struct* status)). 
    Note that the status struct is deffined to be only and out put at the creation of the LVLIB.
    Thanks, Mike

    Thanks for the responses guys:
       I think I am aware of the conotations of inputs and outputs when I created the lvlib I specified the argument  struct status_struct* status as only an output instead of the default of input and output.
    I do not think that I am doing anything as complex as function callbacks. My immediate goal is to have an executable (I have application builder) with two buttons and two three text fields one text field for the input of the config file, two text-fields for a cstring that is contained in the status struct; one button to start the interface and one button to stop the interface. 
    This is in all likely hood a case of my self being too dense and missing something fundimental ;-)  I just can't figure out how to wire the shut down method after I've configured the call library node. See the attached pictures:
    Attachments:
    Start.jpg ‏7 KB
    shurtdown.png ‏9 KB

  • The message function on my Ipad just quit working.  I was using it while in Mexico and it just quit.  I have come home and synced my Ipad with Itunes and function still does not work.  How do I get this function to work again?

    The message function on my Ipad just quit working.  I was using it while in Mexico and it just quit.  I have come home and synced my Ipad with Itunes and function still does not work.  How do I get this function to work again?

    When I use find file http://www.macupdate.com/app/mac/30073/find-file (which does tend to find files that "Finder" can't), it's not coming up with any other itunes library files that have been modified in the past week, which I know it would have been - unfortunately, I don't have a very recent backup of the hard drive.  It would be a few months old so it wouldn't have the complete library on it....any ideas?  I'm wondering if restarting the computer might help but have been afraid to do so in case it would make it harder to recover anything...I was looking at this thread https://discussions.apple.com/thread/4211589?start=0&tstart=0 in the hopes that it might have a helpful suggestion but it's definitely a different scenario.

  • Unable to create rule Error:Function Module does not meet the workflow conv

    Hi Workflow experts,
    Could any one help me with rule creation. Below is my Function Module Interface.
    ""Local Interface:
    *"  TABLES
    *"      AC_CONTAINER STRUCTURE  SWCONT OPTIONAL
    *"      ACTOR_TAB STRUCTURE  SWHACTOR OPTIONAL
    *"  EXCEPTIONS
    *"      NOBODY_FOUND
    The function module test is successful with all required conventions for workflow but while i try to create a rule with the funtion module i get the error "Function Module does not meet the workflow conventions"
    I Also have included the following in FM
    INCLUDE <cntn01>.
    Any suggestions would be helpful. Thanks in Advance,
    Imran

    Hi,
    I am not sure whether the rule accepts the optional flag. Remove the optional flag for the tables parameters and try again. According to the documentation you have implemented the right interface. It might be the issue with the tables parameter being optional.
    Hope this helps,
    Sudhi

  • I am going crazy changing passwords that do not get recognized by the different services when it is time to use them, until I am asked to change the password again, until the next time I need to use it and it does not get recognized again. Is there any fi

    I am going crazy changing passwords that do not get recognized by the different services when it is time to use them, until I am asked to change the password again, starting the vicious cycle again: i need to use the password, it does not get recognized three times, then the system asks me to change it again, and again, and I am stuck!! Is there any fix for this "glitch?

    The first thing I would suggest is for you to go to the folder containing your catalog, using your system browser. There will be a folder that has the extension .lrdata. Delete that folder, and then try to start Lightroom. If that doesn't work, replace your catalog with your most recent backup.

  • MRP does not creates Shcedule Line

    I have a valid scheduling agreement LPA in place. Scheduling Agreement is approved and released status.
    I have source list also maintained for same scheduling agreement with long validity and MRP indicator as 2 - Create Schedule line automatically. 
    I am running MRP using following parameters in MD02.
    Processing key          NETCH               Net Change in Total Horizon
    Create purchase req.    3                   Planned orders
    Delivery schedules      3                   Schedule lines
    Create MRP list         1                   MRP list
    Planning mode           3                   Delete and recreate planning data
    Scheduling              2                   Lead Time Scheduling and Capacity Planni
    Even schedule line and other parameters maintained properly, MRP creates planned order and does not creates Schedule Line automatically. Material Master is maintained MRP Type PD, Lot Size as Replenishment to maximum stock level, Safety stock, No strategy and availability on.
    What I am doing wrong? With same setting in other system it is working perfectly fine.
    Any feedback appreciated.
    Thanks
    PP

    Hi
    Check whether the Agreement Open Target value .
    If the target quantity was completed . so system will not create the Schedule lines for the material
    2. If you mainatian the open period in the smk.
    so system will create the planned order instead of schedule agreement. check

  • I am trying to trigger a custom event using a program but does not work ..

    HI ....i am trying to trigger a custom event of a custom object type using a program but does not work. If trigger the same event using SWUE it works.
    below is the code...
    {Key = '0010001115'. "Sales Order Number (hard-coded)
    CALL FUNCTION 'SWE_EVENT_CREATE'
      EXPORTING
        objtype                       = 'ZXXXXXXXF'
        objkey                        = KEY
        event                         = 'ZEVENT'
      CREATOR                       = ' '
      TAKE_WORKITEM_REQUESTER       = ' '
      START_WITH_DELAY              = ' '
      START_RECFB_SYNCHRON          = ' '
      NO_COMMIT_FOR_QUEUE           = ' '
      DEBUG_FLAG                    = ' '
      NO_LOGGING                    = ' '
      IDENT                         =
    IMPORTING
      EVENT_ID                      =
      RECEIVER_COUNT                =
    TABLES
      EVENT_CONTAINER               =
    EXCEPTIONS
      OBJTYPE_NOT_FOUND             = 1
      OTHERS                        = 2}
    Please guide me if i am missing something.

    Hi Sunny,
    I think you should try creating the event using FM SAP_WAPI_CREATE_EVENT.
    CALL FUNCTION 'SAP_WAPI_CREATE_EVENT'
      EXPORTING
        OBJECT_TYPE             =  'ZXXXXXXXF'
        OBJECT_KEY              = key
        EVENT                   = 'ZEVENT'
    *   COMMIT_WORK             = 'X'
    *   EVENT_LANGUAGE          = SY-LANGU
    *   LANGUAGE                = SY-LANGU
    *   USER                    = SY-UNAME
    *   IFS_XML_CONTAINER       =
    IMPORTING
       RETURN_CODE             = rcode
       EVENT_ID                = event_id
    * TABLES
    *   INPUT_CONTAINER         =
    *   MESSAGE_LINES           =
    *   MESSAGE_STRUCT          =
    Regards,
    Saumya

  • System setting does not allow changes to be made to object LSYS

    Hi
    Im trying to create the process chain in BW-Production System . Like im trying to delete the PSA data for one datasource in BI7.0 .
    Im using the 'Delete requests from the PSA' process type in the process chain . When i try to give the datasource name and source system name in the variant of 'Delete requests from the PSA' process type and save them , then it is saying that
    System setting does not allow changes to be made to object LSYS
    Why it is saying like that . But i can able to include the other process types in the process chain .
    regards
    mohammed

    Dear Mohammed,
    Since you are trying to create process chain in production system.
    Normally production system wont be open for development at any time. Why the system settings does not allow changes was, your production is not modifiable state.
    Check the settings in SE06. system would be non-modifiable for sure.
    in SCC4,  settings ->"changes to the cross customizing objects would be not allowed"
    These two settings/configurations would not allow any development or changes or edit or create in production.
    Please check with your basis folks and proceed further.
    Hope this would help you more in understanding

  • ORA-06571: Function TEST_FUNC does not guarantee not to update database

    I have created a very simple C function in a .dll. Everything compiles OK, and I can create the lib, package, and procedure. But when I try to use it from sql*plus:
    SQL> select test_func(1) from dual;
    select test_func(1) from dual
    ERROR at line 1:
    ORA-06571: Function TEST_FUNC does not guarantee not to update database
    Note, all the function should do is return arg+1.
    Any help would be appreciated. Thanks.
    null

    Any Function called from SQL need to be defined Purety Level by using pragma restrict References
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Tim McCracken ([email protected]):
    I have created a very simple C function in a .dll. Everything compiles OK, and I can create the lib, package, and procedure. But when I try to use it from sql*plus:
    SQL> select test_func(1) from dual;
    select test_func(1) from dual
    ERROR at line 1:
    ORA-06571: Function TEST_FUNC does not guarantee not to update database
    Note, all the function should do is return arg+1.
    Any help would be appreciated. Thanks.<HR></BLOCKQUOTE>
    null

Maybe you are looking for

  • Help Required - Oracle AS 10g

    hello, i have just downloaded oracle 10g softwares ... i installed database then developer suite ... everything was fine ... until i was unable to run forms ... a friend of mine told me that i need to install application server in order to run forms

  • How to move a keyframe from a Motion Tween in Flash CS4

    I understand that motion tween is a new form of tween in CS 4 however  I am unable to move a keyframe within the time line? am I missing something? I would hope I could select the keyframe (diamond  shape) and move it around the timeline but apprentl

  • Recruitment - automatic mail - text in the body of the e-mail

    Hi Experts, I'm facing an issue in the Recruitment! I managed to send e-mail attachment through transaction PBA5. However, the e-mails I send are "empty" and the standard text linked to the activitiy is attached (in a pdf format). Does anyone know ho

  • Loading Help on MD and ODS?

    HI ,   I'm loading CRM  data in to ODS. My Question are : 1) for exmple i need to load DS:0crm_lead_h in to ODS:0mkt_ds01, First i need to load master data or we can load directly in to ODS? 2)if i load directlyCRM  to ODS ,then master data fields ar

  • Project related maintenance

    Hi, What is the business process of "project related maintenance" in PM. Regards, SS