Read the valid Operation/Activity Master Recipe data using an FM

Dear all,
Can anyone guide me to a function module, which could read the relevant master recipe data taking the validity date into consideration. i.e. the function module should return the correct valid data based on the Key Date.
Is there such a function module, and could anyone give an example of using this.
Thanks & Best Regards,
Dabre

Hi Ravi,
Thanks for the response, but does not seem like this FM would give me the required information, since this seems to be taking the process order number etc as the importing parameters.
I would need to pass something like the recipe type, recipe group and maybe the recipe counter along with the Key Date inorder to get the valid operations/activities for the period.
Best Regards,
Dabre

Similar Messages

  • Deleting operations in master recipe of process orders

    Dear Guru's,
           I want to delete the operations in master recipe of process orders. The operation numbers are different in different process orders. This activity has to be performed on bit large number of process orders. Can anyone help me in providing the process for doing this activity in mass. Any suggestions?
    Thanks in advance.
    Regards
    Kalyan

    Dear Kalyan,
    Why do you want to delete the operations(basically phases)at process order level?
    If it's really required to execute the Shop floor activties and if the order numbers is huge in number means then in my
    understanding only a LSMW/BDC can help you,but technically I'm concerned about selecting the operation/phases for deletion
    by passing on the confirmation number or operation number for a particular process order.
    If it would be the latest operation/phase for a product means then make the changes in the master recipe so that the same is
    getting copied into the process orders in the future.
    Check and correct me if I'm wrong.
    Regards
    Mangalraj.S

  • Change Customer master Address Data using Structure biadd2 in report rfbide00.?

    hello
         i want to change Customer  Master Address Data using using RBIDE00 report program but when i execute the report it will accept input from batch file
    but the same is not getting updated in  customer master .
    please  help me to resolve this issue .
    thanks & regard
    laxmikant soni

    Found the answer from SDN - not possible unless using some BUS.
    RFBIDE00 - Address data issue
    Thread closed.

  • My iMac suddenly can't read the backup hard drive I've been using for Time Machine.  I did NOT just upgrade the OS or anything.  The external HD is an OWC Mercury Elite All Pro. It's worked fine since I got the iMac 4 years ago.`

    My iMac suddenly can't read the backup hard drive I've been using for Time Machine.  I tried unplugging the cord that connects the HD to the iMac and plugging it back in, but I still get "The disk you inserted was not readable by this computer" below which are buttons for Initialize, Ignore and Eject.  I was using a cord that went from larger square plug to larger square plug.  So then I tried one that went from smaller square plug to what I think is USB (thin rectangular plug) of the sort that connects the keyboard and mouse. It's the type that my printers and scanners use to connect to the iMac.  I did NOT just upgrade the OS or anything.  The external HD is an OWC Mercury Elite All Pro. It's worked fine since I got the iMac 4 years ago. What else can I try before just trying to initialize and

    Thanks, Michael!  I do hear it at times spooling up and running. Just after I bumped the thread I looked for troubleshooting for this drive online and found the manual which suggested using Disk Utility which I've seen before accidentally (if I hit Command Shift U instead of Shift U to type "Unit" on a new folder for a student's homework ) but had never really noticed.   Disk Utility does see it and also a sub-something (directory?) which might be the Time Machine archives on the disk, called disk1s2), sort of the way that my iMac's hard drive shows up as 640.14 GB Nitachi HDT7... and has a sub-something titled DB iMac, which is what I named my iMac's hard drive.
    Anyway the owner's manual just shows the image under the formatting section, not the troubleshooting section, but as soon as I saw it in the manual I remembered seeing it accidentally a few times, went to it, and am now verifying the disk.  Right now it's telling me that it will take 2 hours to complete the verification, so I guess I have a bigt of a wait.  :-) 
    Does that fact that Disk Utilities can see it mean it's not failed, or just that it hasn't completely failed? 
    I can see the virtue in having multiple redundant backups, or at least two backups. What do you suggest?  Two external hard drives?  I had this one linked by ethernet, and but I also have a cord that could link it by USB (like a printer), so if this one is reparable I could get a second one and link it by USB.  If this one is not reparable I could get two and do the same thing.  I do have an Airport so I suppose it's possible to get some sort of Wi-Fi hard drive (my new printer/scanner uses only the network and not a cable, although it has a cable that I used for the initial installation), but I'd suspect a Wi-Fi hard drive might have a higher price.
    What hard drives, if any, do you recommend? I seem to recall that when I was looking at external hard drives 4 years ago, Apple's were substantially more expensive, which is why I got the OWC Mercury Elite All Pro.

  • QM operation in Master Recipe

    Hi Experts,
    We maintain QM operations in the Master recipe along with PP operations.
    In my scenario - operations are maitained in following order
    1)QM operation 1
    2)PP operation 1
    3)QM operation 2
    4)QM operation 3
    5)PP operation 2
    Now untill and unless Quality validate the QM operation 1  , PP cant be able to confirm PP operation 1 .
    Same like in order for operation 2 and 3.
    Plz guide to map the scenarios.
    Regards
    saurabh

    Dear Saurabh
    You need to make the Sequencing also mandatory
    in OPK4> For order type plant > in Generally valid settings maintain under Operation sequence > Error when operation sequence is not adhered to
    By this it makes the operation 10 to be confirmed for operation 20 to be confirmed
    Also make the overdelivery tolerance -  error when overdelivery tolerance is exceeded
    Regards
    Gajesh

  • How to Read the content of E-mail Body data

    Hi All,
    I am creating an E-mail webdynpro application, In that i want to read the content of body part. what will be the type of that TEXTEDIT field?
    and how can i read the content ?? is there any method or function module for that ???
    Thanks.

    Hi,
    There is standard WDA available on sending Emails. It is RPLM_MP_SENDEMAIL_COMP.
    See the code in this WD application and get the relevant logic for your functionality.
    I hope this will solve your problem.
    Thanks,
    Chandra

  • Help me...How to read the content if "Transfer-Encoding:chunked" is used?

    I am doing a project for internet control using Java,PHP and MySql.All sites should go through the proxy server only.If the HTTP header contains Content-Length,am getting the content length as below:
    public class HTTPResponseReader extends HTTPMessageReader
        String statusCode;
        public HTTPResponseReader(InputStream istream) throws IOException,                     NoSuchElementException
      BufferedInputStream distream = new BufferedInputStream(istream);
      retrieveHeader(distream);
      StringTokenizer st =  new StringTokenizer(new String(HTTPMessageReader.toArray(header)));
      versionProtocol = st.nextToken();
      statusCode = st.nextToken();
      String s;
      while (st.hasMoreTokens())
            s = st.nextToken();
            if (s.equals("Transfer-Encoding:"))
           transferEncoding = new String(st.nextToken());
         if (s.equals("Content-Length:"))
           contentLength = Integer.parseInt(st.nextToken());
         if (s.equals("Connection:"))
          connection = new String(st.nextToken());
          if (connection.equals("keep-alive")) mustCloseConnection = false;
       retrieveBody(distream);     
    }After getting the Content-Length,i used read method to read the content upto that content length.Then i concatenated the HTTP header and body and the requested site was opened.But some sites dont have Content-Length.Instead of that,Transfer-Encoding is used.I got the HTTP Response header as "Transfer-Encoding:chunked" for some sites.If this encoding is used how to get the length of the message body and how to read the content.
    Can anybody help me.
    Thanks in advance...
    Message was edited by:
    VeeraLakshmi

    Why don't you use HttpUrlConnection class to retrieve data from HTTP server? This class already supports chunked encoding...
    If you want to do anything by yourself then you need to read HTTP RFC and find all required information. Well in two words you may reject advanced encoding by specifying HTTP 1.0 in your request or download chunked answer manually. Read RFC anyway :)

  • After upgrading the new operating system, it seems some useful features no longer work such as when typing a message the text anticipates the next word and when trying to delete individual messages from a contact, you can no longer tap and hold to select

    After upgrading the new operating system on my Droid Razr M it seems some useful features no longer work such as when typing a message the text anticipates the next word and when trying to delete individual messages from a contact, you can no longer tap and hold to select multiple message you have to delete them individually or the entire thread. Is there a way to get these back?

    Well, that's kind of embarrassing. And I honestly thought I paid attention to that... It works perfectly now, thank you so much!
    As expected, cdm-git also works fine since DMs only work in the root mode as of now.
    Just for the record, both type commands output "/usr/bin/startx" and pacman -Q gives "systemd 215-4".
    Last edited by looki (2014-08-23 13:04:49)

  • How to read the last line in a text file using text_io?? please help

    Dear all
    I made a procedure that append text into a text file on the operating system.
    the text file grows rapidly. It contains now about 200,000 line . I need to read the last line only . In other wprds i need to go direct to the last line to read some values. Is it possible??
    Please help

    Hello,
    If you know the number of the line you want to read, I can sugget you to use the MORE dos command or the TAIL unix command that redirect to a temporary text file
    Example to create a file that contains the 200010th last lines :
    (Client)Host( 'MORE the_file_name.txt +200010 > small_file.txt') ;So you have only to read the small file with the TEXT_IO functions.
    Francois

  • HT4623 The new operating system seems to really use alot of battery.  Is there something I should do so I dont have to charge my phone all the time?

    The new operating system ***** my battery.  Is there something I can do to conserve battery?  I feel like I have to constantly charge my phone.

    http://osxdaily.com/2013/09/19/ios-7-battery-life-fix/

  • Final Cut X read "The selected SAN location is already in use". Now will not even open. Any advice would be really grateful.

    Initially while working on two projects I began to run out of disk space on the external hard drive. Soon I was given this message:"The selected SAN location is already in use" To try and remedy the situation I decided to move one project to another harddrive that I use for another project. Initially it then showed nothing(projects and events) on either harddrive after that. Now FCX won't even boot up at all. Please help. I'm approching deadlines on all of these projects.
    Thank you for any advise.

    RE : "The selected SAN location is already in use"
    I spent 2 hours with Apple technical support and  even did a remote session as they looked at my desk top live.
    1st the bad news, there is no real solution nor is there an answer as to why this happens. The SAN is supposed to only work through fiber optics and is strictly designed for multiple users accessing the same drives … It should only be activated manually and only through fiber optics . No one at Apple could understand why this is happening, why did my thunderbolt disk appear to be on a SAN and unexplainably unable to be accessed by my computer because it was being accessed by my computer. A conundrum indeed
    The semi good news is that I was able to open the original session eventually.
    Here is the workaround… And it ain't pretty .
    If you can access the disk on the desktop copy the whole content of the disk to another drive , this is because you will have to reformat the drive which is giving you the problems.
    Format the original problematic drive and after you have cleared all of the user preferences for Final Cut X relaunch Final Cut.
    Final Cut should now see the drive without any of the SAN issues.
    Start a new event on the original reformatted drive and give it a somewhat generic name so as not to confuse it with the original event that went bad.
    Reimport into this new fresh event all of the original media ( video/audio/graphic ) files and copy them to the reformatted drive.
    Do not start a new project related to this new event
    Shutdown Final Cut X
    Now go to the drive in which you have copied all of your original files and copy the original problematic Final Cut Projects folder right next to the Final Cut Events folder at the root level of the newly formatted drive.
    The new drive should only have 2 folders in it now, one is the new Final Cut Events folder that you created by copying over all of original media  and the 2nd one should be the Final Cut Projects folder which you just copied back from the backup drive.
    I only had to copy the one project which started giving me problems with the SAN issue, because it was the only FCX on my drive at the time therefore I kept intact the original Final Cut folder hierarchy, theoretically even if you have many different projects inside that Final Cut Projects folder it should work, but if that doesn't work try only copying the problematic Final Cut Project.
    Start Final Cut again and it should read everything except that the media will be off-line ( unlinked ) and you should be able to re-link all of the media if the files had not change names somewhere along the process.
    The one caveat about this is that my edits were off against the music. It almost seems like there was some kind of format issue. Something was lost in translation . My project was only 2 min. long and it had about 50 edits. The 1st three edits were completely off after that it was hard to tell ,some would be on some would be off.
    Now I was going on about 2 hours of sleep so i am a bit blurry but what I am certain is that the 1st few edits were 100% off by at least 60 frames.
    Again this may have just worked in my instance and it may not be applicable every time this problem pops up.
    BTW whenever I connected an older drive everything worked fine there were no SAN issues.
    I am on an iMac 27 inch mid 2011, 3.4 GHz Intel core i7 with 16 GB of RAM
    running Mac OS X version 10.7.4
    and Final Cut X 10.0.4 and
    my drive is a Western Digital my book thunderbolt Duo 4 TB formatted in RAID 0
    as a final note I tried everything I read on every forum before calling Apple.
    Hope this helps someone
    Giorgio
    new root level drive look

  • When reading the Rich Text present in Excel column using open XML its taking it as plain text

    Hello All,
    When i am reading excel columns using open Xml in C# everything is working fine except the column that
    contain Rich Text (ex: bold, italic,color,size). Its reading the Rich Text content as plain text. As we know for Rich Text in open XML we get the text as Runs (C#
    object) which contains the text as value and rpr as run properties. I have also written the code to convert Runs to html. But the issue is that for some Rich Text format its reading it as Runs but most of the Rich Text its reading it as plain text.
    The issue i am getting is, for some rich text its creating RUN and for some of the rich text its not creatingRUN.
    Let me give the example for more understanding:
    Suppose i have two cells in excel which contains the below text.
    1. Rich Text
    1
    2. RichText
    2
    Now when i read these cells using the below code
    var stringTable =spreadsheetDocument.WorkbookPart.GetPartsOfType<SharedStringTablePart>().FirstOrDefault();
    if (stringTable.SharedStringTable.ElementAt(index1).ChildElements.GetItem(0).GetType().Name == "Run")
    Custom code to convert Rich text to HTML...
    else
    Read the plain text...
    Though both the cell contains rich text, one is going in RUN block and one is going in Plain text bloc.
    Also, one thing that i have noticed is when i use standard color for text its consider it as RUNS and when i use color apart from the standard color it does not consider it as RUNS. Same behavior occurs for different combination of text viz. bold, italic, underline
    etc

    Hi Ejaz,
    This forum is for software developers who are using the Open Specification documentation to assist them in developing systems, services, and applications that are interoperable with Microsoft products. The Open Specifications can be found at:
    http://msdn.microsoft.com/en-us/library/cc203350(PROT.10).aspx. Since your post does not appear to be related to the Open Specification documentation set, we would appreciate it if
    you could try to post your question in a more relevant forum. Thank you.
    Open XML Format SDK
    https://social.msdn.microsoft.com/Forums/en-US/home?forum=oxmlsdk&filter=alltypes&sort=lastpostdesc
    Josh Curry (jcurry) | Escalation Engineer | Open Specifications Support Team

  • Validations for gl master uploading by using BAPI

    Hi Gurus,
         We are trying to Upload the GL Masters by using the BAPI Programme.  So can any body tell me the validations for uploading the GL Masters. Its very urgent for me so please any body help me out in this regard.
    Thanks in Advance
    Regards,
    Siva.

    Hello
    Check this out
    regards
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/02/056c40de05587ee10000000a155106/frameset.htm

  • How to check the validation in UI before committing data?

    Hi,
    I'm using Jdev 11.1.2.1.0 version .
    I needed to check whether there is duplication of values in Boolean check box before committing the data into the Database.
    But this validation rule is to be checked based on the value selected in the Select One Choice drop down list in the page.
    I did it with adding a ValueChangeEvent in the drop down list and checking the values in the Boolean check box. It worked , but only in the case of earlier committed data in the database.
    How can i actually verify the data entered in the table in the page before it being committed into the DB ?
    Nigel.

    Hi,
    an improvement to your solution would be to move the major part of your code from the backing bean into a method on the ApplicationModuleImpl file (you create this from the AM editor)
      public boolean checkForDuplicate(){
           ViewObject vo = this.findViewObject("ResponseVO");
           int numRows;
           int j=0;
           numRows = vo.getRowCount();
           String rowValue = "a";
    //the part below of your code I don't like at all. Why do you need to increase a flag
    //and use an if statement ?
           for (int i=0; i<numRows; i++){
              rowValue = (String)vo.getCurrentRow().getAttribute("ResponseFlag");
              if(rowValue.equals("Y")){                           
                  j++;
                  if(j>1)
                      return true;
             return false;                           
        }This code you then expose on the AM as a client interface (same AM editor --> Java menu option)
    In the PageDef file (double click it to access the visual editor) click the plus icon next to the Bindings header. Choose "Generic Binding" --> method binding and point it to the AM and the exposed method. This creates a method binding "checkForDuplicate"
    Change your managed bean code to
      BindingContext bctx = BindingContext.getCurrent();
      BindingContainer bindings = bctx.getCurrentBindingsEntry();
      OperationBinding checkForDuplicate = (OperationBinding ) bindings.get("checkForDuplicate");
      checkForDuplicate.execute();
      boolean isDuplicate =  checkForDuplicate.getResult();            
      if(isDuplicate){
             FacesMessage msg = new FacesMessage(FacesMessage.SEVERITY_ERROR, null, "Two same respones!");
             FacesContext.getCurrentInstance().addMessage(null, msg);
                                               Frank

  • How to read the business partner activity

    Hi experts,
    How to get the business partner(role:employee) assigned activities  in crm and how to create the activity .my requirment is change the assiged from old employee(bp) to new employee(bp). i have to develop the program. i searched some BAPI's.
    Please help on this.
    thanks,
    venu.

    Pls use the FM CRM_REPORT_CALL_RF. Pass the partner function to the exporting parameter table ir_partner_fct_h and partner number to the partner number to  ir_partner_id_h . You will get all the guid and then use CRM_ORDER_MAINTAIN to change the partner.
    CALL FUNCTION 'CRM_REPORT_CALL_RF'
        EXPORTING
          iv_stat_open            = 'X'
          iv_maximum_hits         = ' '
          ir_object_type_h        = it_act_objtype
          ir_partner_fct_h        = it_partner_fct_h
          ir_partner_id_h         = it_partner_id_h
        IMPORTING
          et_guidlist             = it_guid
        EXCEPTIONS
          parameter_error_partner = 1
          parameter_error_items   = 2
          parameter_error_ref_obj = 3
          OTHERS                  = 4.

Maybe you are looking for

  • TS1368 It says installing but its not doing ie on my Ipad

    THere were a few alerts to upgrade a few Apps like Twitter, games etc so I clicked on to update. I then synced with my computer to do it. It keeps saying Installing from yesterday but nothing is happening. Also I cannot delete those Apps as its sayin

  • Which table stores the default page information?

    We'd like to know which system table is holding the people<>page or group<>page information so that we can have our own program customization to assign some user to a particular default page for them.

  • Selection printing on mac osx lion safari

    How do you print just the selected area on mac osx lion in the safari browser

  • 1 Invoice / 2 Line Items / Different Item Categories & diff exchgn rte

    hi, there are 2 line items in my invoice and both have different item categories. one item cat (ZFIX) have exchange rate setting in copy control "PricingExchRate type" as A and other (ZFLT) have "C". now exchange rate are maintained in OB08 and are d

  • Problem starting J2EE Server

    I installed J2EE on Windows NT. I am getting the following exceptions when I started J2EE Server.... 1. java.lang.NullPointerException at com.sun.enterprise.server.J2EEServer..... 2. RuntimeException: Unable to create ORB. Possible causes include TCP