Updating Phase for PM notification value after completion process

Hi,
I need to update Phase value for a PM notification, after its completion. This process will be triggered by a custom RFC called from PORTAL side. Could you suggest how to update phase value for PM notification confirmation/completion.
Regards,
Pulokesh

Hi,
Can you tell me where to pass the phase value in the BAPI that you have mentioned. Can anyone tell how to update Notification phase value while its closure/completion.
Regards,
Pulokesh
Edited by: Pulokesh Karmakar on Aug 19, 2009 11:16 AM

Similar Messages

  • How long does 'extracting' take? Already waiting for over 2 hrs to complete process.

    How long does 'extracting' take? Already waiting for over 2 hrs to complete process. MAB1953

    Where did you choose to download the install files too?  This often occurs when choosing a location the Adobe Download Assistant does not have permission to write too.  Please cancel the download and try again this time choosing the default location of your User folder.

  • ITunes update installer for 11.e doesn't complete update

    I have had iTunes installed for several years. For update 11.3 the auto-update does not complete the update.  "errors acurred while installing the update". I also can't install iTunes 11.3 from the Apple store, I get error 2324.

    Had the same issue on Windows 8.1(x64)  8(x64) 7(x64) and Vista(x86) with the latest iTunes. Removing and Reinstalling all Apple applications did not solve it. After installation and starting iTunes i would just get the end user agreement and then nothing but iTunes.exe process is running as background process without the GUI being displayed. I did notice that after an hour or 2 iTunes would then be open but would immediately freeze when connecting my iPad.
    Changed the properties of running iTunes.exe as admin in Win7 compatibilty mode.
    So launch iTunes and wait till it eventually opens, do not connect your iOS device right away, but sign in with your Apple ID first.
    Open preferences (iTunes seemed to freeze again but preferences window popped up after a couple minutes)
    Unchecked the automatic sync.
    After doing that I have been able to connect my iPad which I had already upgraded to iOS7 over the air. Which was risky as I do not have a MAC and iTunes is the only way to perform a restore if the upgrade would have failed.
    But still 11.1 seems to be very unstable on Windows, I can imagine that Apple will focus on sorting the bugs in iOS7 for their own devices first but hope they will investigate the issue and come up with a solution later on, as I do think a substantial amount of iTunes for Windows users buy their Music through iTunes and it would not be wise of Apple to leave them in the dark.

  • Post ios5 update -- videos for ipad2 wont start after adding album art using get info

    this never happened w ios4. before, i could manually add posters on my movies using get info. but now, everytime i add posters the movie wont start. i wanna enjoy my movie playlist complete with movie posters/ cover art. do you experience the same prob?

    Just added new art to two albums in iTunes v7. One the old way (Google Images then a drag and drop) and the other asking iTunes to get it for me. Only the art that was added manually has moved over to the iPod, which is 5th Generation 30GB.
    It's not the worst thing in the world seems as I never had that art before anyways. I'm sure an update will be out soon it is a .0 release and I imagine they is lots of things under the hoot getting us ready for OS X 10.5.
    iMac 2GHz Intel Core Duo, 1.5 GB RAM.
    iBook G4 1.5 GB RAM.   Mac OS X (10.4.7)   5G iPod 30GB
    http://web.mac.com/vyvyenne/

  • Problem updating drivers for soundblaster live value CT4

    Hi all, I wonder if anyone can help me, i have a creative soundblaster li've value sound card model no. CT4780 it's about 4yrs old and i am trying to update the driver as the last one to go on it was in 2002. I have been trolling the creative website and downloaded the automatic update driver search but when it finishes it says i have the most current update for my card. I have had a look at the Li'veDrvUni-pack and being a bit of a novice to driver installing i was wondering if that one would be okay for me to download and install. Would appreciate any help.....

    Hi Shrek
    I just listed my first post. I bought a dell Dimension XPS T500 in 999. It used a CT4780 that fed a good Altec Lansing speaker system. When I built my present budget PC I used the old CT4780 card. Because I?am using XP Pro I loaded Li'veDri'veUni-Pack.exe driver (released 280203). This worked fine.
    But I do not have the SPDIF working as yet. My MSI? MS-6533XG?Motherboard does have?header pins for SPDIF but?so far I haven't used them. I am looking for drivers to use if I can get the SPDIF connected.
    Do you have any info?on my needs?
    Thanks
    Bailsburg

  • Thumb rule for assigning auth values after t-code addition to a role

    Hello everyone,
    Could you please share your expertise on this. When a transaction is added to (the menu of )a role in PFCG, it automatically pulls in its corresponding authorization objects. So my question is what values should be given to these newly pulled in auth objects. Is there any guideline to be followed? Any disucssion would be greatly appreciated. Thanks a lot!

    There really is no general rule.
    There are two things you need to prepare to work on authorizations:
    1. A list of critical authorization objects, such as S_DEVELOP, S_RFC and the like. In every role that you touch, these need to be managed properly. If you find that the default values in PFCG are not according to your policy, change them in SU24
    2. A list of authorization values that you have determined are necessary for control purposes, i.e. cost centers and other org values. These need to be set according to the desird usage of the role.
    Oh, there is ONE general rule: DO maintain SU24, i.e. manage what gets into PFCG in the first place. Make sure it's what your security design requires.
    Hope that helps,
    Frank.

  • How to modify internal table with new value after data processing

    Hi,
    My code is as below:
    LOOP AT i_raw INTO wa_raw.
       IF  ( wa_raw-/BIC/ZOUASCLS = 'BA') OR ( wa_raw-/BIC/ZOUASCLS = 'CO' ) .
          LOOP AT i_crrs INTO wa_crrs.
            IF wa_raw-/BIC/ZOUIDCIF = wa_crrs-ZCBGCIFNO.
              wa_raw-/BIC/ZOUINDAP = '03'.
            ELSE.
              wa_raw-/BIC/ZOUINDAP = '02'.
            ENDIF.
          ENDLOOP.
        ENDIF.
      ENDLOOP.
    Initially column /BIC/ZOUINDAP is empty and I want to populate either value '02' or '03' as shown above.
    How do I insert those values into each i_raw records ?
    Pls help!

    Hello,
    try this code:
    IF ( i_raw-/BIC/ZOUASCLS = 'BA') OR ( i_raw-/BIC/ZOUASCLS = 'CO' ) .
    LOOP AT i_raw INTO wa_raw.
    WHERE wa_raw-/BIC/ZOUIDCIF = i_crrs-ZCBGCIFNO.
    IF SY-SUBRC = 0.
    wa_raw-/BIC/ZOUINDAP = '03'.
    ELSE.
    wa_raw-/BIC/ZOUINDAP = '02'.
    APPEND wa_raw INTO i_raw.
    ENDLOOP.
    ELSE.
    i_raw-/BIC/ZOUINDAP = ' '.
    ENDIF.
    Hope it helps.
    Best regards.
    Simone.

  • Qualify for an ac charger cord adapter for my laptop but cannot complete process

    Once again (for the second or third time now) I cannot proceed past the page which confirms the adapter which will be used in my country. it states that the serial number has already been sent through. I made sure not to refresh or click 'back' during the entire process. Thus I am not able to provide an order number. From the information that I have submitted, could you please just let me know if my adapter cord will be replaced and if it will be replaced, when should i expect to receive it because I have to use my laptop but if the cord is proving to be hazardous then using my laptop is a huge risk. If i have submitted something incorrectly, please let me know so that i can correct it accordingly.

    Hi @Ntandoh ,
    Thank you for visiting the HP Support Forums and Welcome. Please call our technical support at 800-474-6836. If you live outside the US/Canada Region, please click the link to get the support number for your region. They will be happy to assist you immediately.
    Thanks.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom to say “Thanks” for helping!

  • Patches Update after Completion of OSD

    Hi,
    I need to update my OS patches Upto-date after completion of my OS Deployment. what are ways to achieve this
    While creating the Task Sequence there is an option to update Software Patches if i select it will update OS Patches ??
    May thanks
    Regards, Hari Prasad.D

    Yes, the easiest way is *during* the task sequence using the "General -> Install Software Updates" action which is what that option will create for you.
    Then you just have all your updates deployed to a collection that those computers will be in, e.g. the collection that also has the OSD deployment assigned.

  • Update function no longer completes process - help requested

    To clarify the situation, here are the details:
    I've owned my Pre for about two months now.  I'm running on the Bell Canada network.
    To see if any new applications have been added to the apps catalog, I tend to perform an "update" at least once a week. Normally, this completes with a list of updates avaialble for any installed applications, or completes with a message indicating "your phone is up to date"... or something of the like.  This process normally takes less than a few minutes to complete... maybe 5 at the most.
    As of yesterday, when I run update from the launcher, it starts the process and says its searching for updates... and the little hampster wheel spins merrily along... for over an hour with no results.  I called support, and they appeared to have no idea what was happening, and after the support contact asked me why I was wanting to run update, that was when I recorded the ticket number and politely closed the call. Why I want to run it should be a mute point... getting it to run would be the issue at hand (IMHO).
    Has anyone run into this, and have any insight on how to resolve it?  I appreciate any thoughts that lead to resolution.
    Thanks,
    Cal.
    PS... after I post this, I'm going to go online with a chat support person and see if I get any further in coming up with a fix.  If I get anything of value, I'll post it as an update to this message stream.
    Post relates to: Pre p100eww (Bell)

    I attempted to resolve this with a phone support person with Bell. After a somewhat frsutrating half hour on the phone, I took the ticket number and hung up. The rep really didn't seem to have a good understanding of the Pre, and the basic tools and functions.
    The next morning, I went back and used the on-line chat support feature on this site, and the contact I had was excellent.  The end result was to do a partial delete and restoration. That brough back the update application functionality.
    The downside is that it also brought me version 1.3.1 of the WebOS... this version is fraught with problems and really should be pulled until its been fixed.  In my case, when it first installed, everything was great. The next morning when I used my phone, I discovered it had purged nearly 90% of my contacts and memos... permanenently and irrecoverably.  See my other note on this topic as its still unresolved and something to be wary of.
    Consder the request for assistance with the updater fixed and closed.

  • Update mode for Infopackage

    Hi,
    i have a question about Infopackage to ask you. I would like to create an Infopackage for Delta-Init Load IN Update Mode. When i create an infopackage, why only Full load in Update Mode appears? There are no Update mode for Delta upload and Initialize delta Process vorhand. How can i let it appear?
    I extract data from CSV Flatfile.
    Thanks!

    if you want to load delta loads using Flat file.... first load the data till DSO1.. next you can load your 2nd and 3rd files as full loads to DSO, from DSO to cube do a INIT load you can find this option at info pack update tab, after doing this you can able to see Delta option at update tab, instead of selecting delta option here you can just copy your info pack and select delta option and do delta loads from now onwards. so in feature you can use the INIT info pack if any errors occurs. if data loaded to DSO you can delete PSA data or else you can delete after some time.
    Or check the below link which explain how to get delta from flat file using an ABAP routine...
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/a0b3f0e2-832d-2c10-1ca9-d909ca40b54e?quicklink=index&overridelayout=true

  • To Send the Email to Ship to Party for Shipment Notification in SMARTFORMS

    HI Gurus,
    I am having a scenario to send the EMAIL  for Shipment Notification using SMARTFORMS when processed through VT01/VT02N transaction.
    I general process, the email is going to Forwarding agent Email address. But the user wants to send the notification to Ship to Party email address.
    Is there any IMG settings to be done or should we handle using Custom Driver program.? If yes, can anyone help how to achive this.
    Your help is greatly appreciated.
    Regards,
    Yathish

    Just take a look at this where PO is discussed but should not be different from your issue
    PO as SMART Form and mail as PDF
    Scheduling Agreement as PDF in email ?
    External Email (PDF Attachment) while PO is created or Changed
    Convert PO into PDF format and send by an email to vendor
    PDF form as email attachment for purchase order
    Send PO as email attachment
    How to convert smartform output to PDF and mailing them
    https://sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/uuid/8fd773b3-0301-0010-eabe-82149bcc292
    Regards,
    Ravi
    Note - Please mark all the helpful answers

  • Automate the update changes for Approvers

    How can we update changes for Approvers from Manual to Automated Process?
    In our current solution when a person changes a position or a manager, we are required to manually update the personal responsible for approvals.
    How can we automate this process as part of our current structure?
    Thanks in advance!
    Regards,
    Cryssal

    Hello Reinhard,
    I am waiting for the reply from customer on the above questions.
    Assuming that customer is using the ‘Manually Assigned Approver’-Execl-Upload to define the
    approver of each employee, I have recommended to use the RLU-replication, that is available since 1302 release, in order to replicate line management structures into CfTE if line manager approval is required. The replication can be done manually or automatically depending on their process.
    Thank you!
    Regards,
    Cryssal

  • How to get another page item value in page process.

    Hi all
    i have an after submit process on page 32 to insert into a table.
    and a page 34 where there is a region containing from page 32.
    when page 32 get submitted (process as well as) it contain no value for :P34_USER_ID although i am in page 34 and :P34_USER_ID item have value.
    after submit process on page 32 Type: PL/SQL anonymous block --> have code like...
    INSERT INTO LETTER_ATTACH (LETTER_ID,FILENAME,ATTACHMENT,MIMETYPE,UPDATE_DATE)
    SELECT :P34_USER_ID,:P32_FILE_INPUT,blob_content,mime_type,SYSDATE
    FROM wwv_flow_files
    WHERE NAME = :P32_FILE_INPUT;
    can't find anything wrong...!!?? :(
    please help me on this regards.
    Roman
    Edited by: user13416557 on Aug 27, 2011 1:48 PM

    Hi,
    When you are on page 32, check that there is value on page 34 item session state
    http://download.oracle.com/docs/cd/E23903_01/doc/doc.41/e21674/concept_ses.htm#sthref100
    Regards,
    Jari

  • How to search the data of a completed process?

    Hello,
    I want to know if it is possible and how can I search for the information of a completed process.
    Best Regards
    SU

    Here you go ...
    http://help.sap.com/saphelp_nw72/helpdata/en/98/b872739db2469fb9dd945d2162fef2/frameset.htm
    Regards,
    Mahesh

Maybe you are looking for

  • WDA Human Task does not complete/close

    Hi experts, I'm still struggling to flex web dynpro abap and BPM together. After embedding a wda chip as human task within my process, I face the next problem: The event defined as outport in my wda chip does not close the task when fired from my wda

  • ADF Query Panel - Manually editing search fields

    Good Afternoon, I have a Query Panel (View Criteria) that allows users to search for records where the "StartDate" attribute of the EmployeeVO View Object is between two bind variables, "startViewCritVar" and "endViewCritVar". I would like to access

  • Big Preview thumbnail have no info, labels, ratings

    I  contacted Adobe tech help because my CS4 Bridge thumbnails stopped reflecting the camera raw changes such as cropping and exposure, brightness etc.  They used the shotgun approach of resetting everything and then I immediately noticed new problems

  • How to get back library after iTunes update?

    All of my music is installed in a folder named iTunes Music on a USB external hard drive. Everything was working fine until yesterday. I might have made a mistake. Without the external hard drive attached to my laptop, I downloaded and installed the

  • Error in applying animation

    I would like to make adjustments to some animation i created but when i hit the f12 button to view it the enevlope lines do not appar. The only way i can get them to appear if i click in the arrange window where the animation should appear. I don't w