In PDP cycle is it possible to pull back transfered PR (from SRM to ECC)?

Dear Friends,
We are working on PDP cycle where backend ECC Purchase Requisition is transferred to SRM client via program BBP_EXTREQ_TRANSFER so that the procurement activity is carried out in SRM.
Now business decides to discontinue the procurement activity from SRM and continue in R/3 only. Which mean business would like to create Purchase Order in R/3 with reference to PR.
So we delete the shopping cart created in SRM and tried to change the Purchasing group so that system removed the procurement profile tag from PR. But system does not allow.
My question is, is it possible to pull back the PR from SRM to ECC after it has been transferred to SRM? 
Or in standard process there is no provision to reverse the situation after a PR is transferred from ECC to SRM.
Can anyone through some light on this?
Regards,
Sandeep Parab

Hi Sandeep,
by standard there is no option to send Reqs back to ECC. A moved Req is
blocked in ECC with a flag in EBAN, that sourcing is carried out externally. This
block is removed, when the PO is created. I implemented a push back mechanism
with an extra button in the sourcing cockpit within a classic environment. The
button first takes the SC information and identifies the Req in ECC, sets the
status on blank and releases the Req for sourcing. Finally the SC is deleted from
the sourcing cockpit. With a good programmer the story can be quickly done.
Cheers,
Claudia
Please reward points for useful answers.

Similar Messages

  • Possible to pull location (geotagging) info from Flickr?

    I've geotagged all 7,046 of my photos on Flickr. Is it possible to pull that information from Flickr into Places in iPhoto 09?

    Yes, Apple added the ability to set geotags via AppleScript in one of the "bug fix" updates to iPhoto. So you'll need to make sure you have the latest version, which you would want anyway because it fixes many (unfortunately not all) of the bugs in Places.
    (It made me very happy that they opened a legitimate way for third party developers to geotag, even though it missed the first release. Although for my own app it still took some extra problem solving to get other details right...)

  • Is there anyway to pull back deleted photos from ipod touch?

    My son just deleted some of his photos from his ipod and he wants them back.  I have no idea if this is possible.

    Deleted what photos?
    Photos taken with the ipod?  If so, then no you cannot get them back,  unless you had synced ( and therefore backed up) the ipod when the pics were on the device.  Then you may be able to restore to that backup.
    Backing up, updating, and restoring iPad, iPod touch, and iPhone software

  • Is it possible to go back to Mavericks from Yosemite

    A lot of my photography software (especially Photoshop plug-ins) no longer work with Yosemite.
    Is it possible to use a Time Machine backup before Yosemite came out to restore Mavericks?
    Thanks.

    Hi Brentmeister,
    I think you may find the information in the following resource helpful:
    OS X Yosemite: Revert to a previous OS X version
    http://support.apple.com/kb/PH18846
    - Matt M.

  • It is possible to jump back to setup from the main sequence

    I like to jump back to the setup sequence when I have an error in the main sequence. Is there a opportunity to jump back to setup with goto or something else.

    Hi,
    If all you want to do is repeat Step1 again it would be a lot cleaner just to do Step1 again rather than mess with a Goto (and the logic required to make it branch forward to Step 4).
    ie
     Step1
     Step2
     Step3
     Step1
     Step4
    As to the question of using a Goto, well the point here is you are 'testing' and therefore it's important to test all boundary conditions and paths through your safety critical software.
    Regards
    Ray Farmer

  • Work Items are not pulled from SRM into SAP Fiori

    Hi Friends,
    We are using Application controlled workflow in SAP SRM. As Fiori won't support application controlled workflow, I have followed the guide to configure the task as custom workflow in scenario definition. But its not pulling the work item from SRM in Fiori tile. My tile shows 0.
    When I  click on the same to go in, I am getting the below error.
    A problem occurred while reading the data
    Check the URL parameters and the scenario definition. To check the scenario definition, go to customizing for SAP NetWeaver Gateway and choose SAP NetWeaver -> Gateway Service Enablement -> Content -> Task Gateway Service -> Scenario Definition. 
    Tags edited by: Michael Appleby

    Hi Sasi,
    It would not be possible to use application controlled workflow with SAP Fiori approve shopping cart app. Please refer note 1962663 for more details on SAP Fiori approve shopping cart app.
    Regards,
    Amrutha

  • Pull Service tab data from Contract to Purchase order

    Hi All,
    I Just want to know if is possible to pull service tab data from contract to purchase order. When i create PO w.r.t Service Contract the data from the service tab is not pulled. So need help on how can I pull.
    Please help..
    Thanks,
    Ros

    Hi if u r referring service contract maintain it in the line item (Outline agreement no). All the other details will copied from Contract.
    Check it out
    Regards,
    Raman

  • Possible to pull higher resolution single frames from movie?

    Hi.
    I am currently using iMovie HD 6. I am wondering if it is possible to pull a higher than 72 dpi frame for still picture purposes? Command "F" doesn't seem to give options for higher resolution.
    Would moving to Final Cut Express give more still picture options?
    Any ideas welcome.
    Thanks for any replies in advance.
    Thomas

    Images in video are defined by their pixel dimensions, for example -NTSC DV is 720x480 non square pixels - which is the square pixel equivalent of 640x480. It really doesn't matter if this is output at 72dpi or 300dpi as it is still 720x480. You get what the camera recorded - no more.
    If you need higher quality images (ie more pixels) take still images on the set. Even throw away point and shoot cameras will record an image with more pixels than any video format.
    good luck.
    x

  • Is it possible to write an image data from unix database to windows client?

    Hello Sir/Madam,
    My database Oracle 11g resides in UNIX.  I'm trying to find out if it is possible to pull binary data from unix database and write to a file on windows7 client ?
    if so, please share that insight?
    Regards,
    Vani Sonti

    Hi,
    if you use Oracle forms 10g+ you can use the webutil to do whatever you want between db server and client pc. There are numerous examples on the net, for example:
    Zeeshan Baig's Blog: Storing and Retrieving Images / Word / Excel / PDF and Movies in Oracle Database using Forms10g

  • How do I pull just the year from a date?

    I'm trying to pull just the year from a date and cannot figure out how this can be done. I tried the SUBSTR fuction but its not acting how I would expect. What I'm wanting to do is write a condition that says Item Birth Year = Current Year minus 23 I have a calc that figures the age from the difference in the birthdate and current year but I'd really like to just write a condition based just one years. Can this be done?

    Hello
    SUBSTR will only work on a string. To extract portions of a date you need to use the TO_CHAR command.
    To get the year you would use this: TO_CHAR(the_date,'YYYY')
    TO_CHAR takes 2 switches, the date to be manipulated and the portion to be extracted, with the portion in single quotes.
    Once you get used to manipulating dates like this other common pieces are: DD - extracts the day of the month, MON extracts the 3 character code for the month.
    Thus you can use this: TO_CHAR(sysdate,'DD-MON-YYYY') and it will convert the current date, June 7th 2012 to 07-JUN-2012
    Hope this helps
    Best wishes
    Michael

  • Why is it not possible to install apple remote desktop (from appstore bought earlier) on my new imac 21?

    why is it not possible to install apple remote desktop (from appstore bought earlier) on my new imac 21?

    hello Dahveed, thanks for your reply, i solved it with the help of the migration assistant from another mac - now it works (but before as more info: for my new imac it was not possible to install apple remote desktop from appstore (the install-button not available, the same as installed already...) - and i don't know why...? - is it possible that the reason is the number of owned macs?)

  • Is it possible to pickup a specific file from a folder?

    Hi
    I am wondering whether it is possible to pick a specific file from a folder. I have a shape where I have got a filename and I need to look for it in a folder.
    Is that possible?
    And how can I achieve this? The next step is to pick the file up and transfer it to another location. So basically in pseudo code I need to ask my defined folder with a filename as parameter. Get the file and move it to another folder.
    Suggestions are most appreciated. Thanks

    Assuming you are using orchestration, you could
    create an assembly, install it in the GAC, add a reference to it in your BTS
    project, and call it from an Expression shape to resolve the receive
    location. You would only really need one static method in a class. Be sure
    to add a reference to Microsoft.BizTalk.ExplorerOM.dll.
    Example:
    using Microsoft.BizTalk.ExplorerOM;
    namespace Phil
    public class OrchestrationHelpers
    public static string ResolveReceiveLocationName(string
    inboundTransportLocation, string receivePortName)
    BtsCatalogExplorer bts = new BtsCatalogExplorer();
    bts.ConnectionString =
    "SERVER=localhost;DATABASE=BizTalkMgmtDb;Trusted_Connection=True;Network
    Library=DBMSSOCN;"
    foreach (ReceiveLocation location in
    bts.ReceivePorts[receivePortName].ReceiveLocations)
    if (location.Address == inboundTransportLocation) return location.Name;
    return null;
    In your Expression shape within your orchestration, assuming a message
    called "MyMessage" and a string variable "receiveLocationName":
    receiveLocationName =
    Phil.OrchestrationHelpers.ResolveReceiveLocationName(MyMessage(BTS.InboundTransportLocation),
    MyMessage(BTS.ReceivePortName));
    If this post answers your question, please mark it as such. If this post is helpful, click 'Vote as helpful'.

  • How to pull only column names from a SELECT query without running it

    How to pull only column names from a SELECT statement without executing it? It seems there is getMetaData() in Java to pull the column names while sql is being prepared and before it gets executed. I need to get the columns whether we run the sql or not.

    Maybe something like this is what you are looking for or at least will give you some ideas.
            public static DataSet MaterializeDataSet(string _connectionString, string _sqlSelect, bool _returnProviderSpecificTypes, bool _includeSchema, bool _fillTable)
                DataSet ds = null;
                using (OracleConnection _oraconn = new OracleConnection(_connectionString))
                    try
                        _oraconn.Open();
                        using (OracleCommand cmd = new OracleCommand(_sqlSelect, _oraconn))
                            cmd.CommandType = CommandType.Text;
                            using (OracleDataAdapter da = new OracleDataAdapter(cmd))
                                da.ReturnProviderSpecificTypes = _returnProviderSpecificTypes;
                                //da.MissingSchemaAction = MissingSchemaAction.AddWithKey;
                                if (_includeSchema == true)
                                    ds = new DataSet("SCHEMASUPPLIED");
                                    da.FillSchema(ds, SchemaType.Source);
                                    if (_fillTable == true)
                                        da.Fill(ds.Tables[0]);
                                else
                                    ds = new DataSet("SCHEMANOTSUPPLIED");
                                    if (_fillTable == true)
                                        da.Fill(ds);
                                ds.Tables[0].TableName = "Table";
                            }//using da
                        } //using cmd
                    catch (OracleException _oraEx)
                        throw (_oraEx); // Actually rethrow
                    catch (System.Exception _sysEx)
                        throw (_sysEx); // Actually rethrow
                    finally
                        if (_oraconn.State == ConnectionState.Broken || _oraconn.State == ConnectionState.Open)
                            _oraconn.Close();
                }//using oraconn
                if (ds != null)
                    if (ds.Tables != null && ds.Tables[0] != null)
                        return ds;
                    else
                        return null;
                else
                    return null;
            }r,
    dennis

  • Is it possible to call a 9i Forms from a 6i Forms ?

    Hello,
    I have a customer using CRM 11.5.10.2 ( Database 9.2.0.6 / 6i Forms) and will be created a functionality in the CRM screen, where end user will call (via button) a custom application running on 9i Forms.
    Customer believes that there is a technical limitation to achieve that. That is, call a 9i Forms from a 6i Forms.
    Is it possible to call a 9i Forms from a 6i Forms ?
    Thank you in advanced for help,
    Marcos Souza.

    I should have thought so, as Forms 9i is exclusively web-driven, so how you launch the URL is immaterial as long as you use a supported browser. As your Forms 9i apps will invariably be on a remote web server, you'll not encounter compatibility issues either. And Forms 6 and 9 development is possible on the same PC using multiple Oracle Homes. Ask Oracle beforehand if you are still not convinced.

  • Is it possible to transfer Full-HD videos (from a Full-HD camcorder) from iMovie 11 to compressor 4 and create there a AVCHD DVD which can be played in HD quality at a PS/3?

    Is it possible to transfer Full-HD videos (from a Full-HD camcorder) from iMovie 11 to compressor 4 and create there a AVCHD DVD which can be played in HD quality at a PS/3?

    Yes.
    In iMovie use SHARE/Export Movie.
    http://help.apple.com/imovie/#mov3a9e5615
    Choose 1920x1080 (or size of your choice.
    Give it a name and location.
    You can drag this file into Compressor.
    In Compressor, use "Create BluRay Disk"
    That should work fine.
    There is another alternative, where you could skip the DVD and Compressor.
    Just SHARE/EXPORT USING QUICKTIME
    Choose Movie to MP4
    In Options, choose h.264 as the Codec.
    Choose a bit rate of 16000 or less.
    Create the movie.
    You can then put it on a USB thumb drive and play it on the PS3.

Maybe you are looking for