I need this requirement :create PR+get list of PO+ack of MIGO

Hi All,
Can u tell me the releationship for the flow of PRequistion,POrder,GRecipts.
and what are the Standard BAPI/RFC's available.
Thanks
@Prami
Moderator message: please search for available information/documentation.
Edited by: Thomas Zloch on Mar 28, 2011 1:24 PM

I think you're making this way, way harder for yourself than you need to.
Building an entire .plist via the XML tools is hard. Writing it as text is easy, so I'd go for the approach:
-- setup the XML preamble
set XML_header to "<?xml version=\"1.0\" encoding=\"UTF-8\"?>
<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">
<plist version=\"1.0\">
<dict>
          <key>Label</key>
          <string>user.watchfolder.imageSLabel</string>
          <key>ProgramArguments</key>
          <array>
                    <string>osascript</string>
                    <string>/Users/user/Documents/LabelFiles.scpt/</string>
          </array>
          <key>WatchPaths</key>
          <array>
set XML_footer to "          </array>
</dict>
</plist>"
set element_pre to "                    <string>"
set element_post to "</string>"
-- get the folder list
tell application "Finder"
          set theFolders to folders of (path to desktop) as alias list
end tell
-- build a list of XML elements, one per folder
set XML_elements to ""
repeat with each_folder in theFolders
          set new_element to element_pre & quoted form of POSIX path of each_folder & element_post & linefeed
          set XML_elements to XML_elements & new_element
end repeat
-- now combine the data
set plist_data to XML_header & XML_elements & XML_footer
-- finally, write it all out
set XML_filepath to (path to desktop as text) & "my.plist"
set XML_file to (open for access file XML_filepath with write permission)
set eof XML_file to 0
write plist_data to XML_file
close access XML_file

Similar Messages

  • "You must specify a value for this required field" in SharePoint list

    HI All,
    I have a couple of taxonomy fields in my content type. When I try to add a new item with my content type and save, I'm getting an error message "You must specify a value for this required field" against each taxonomy field. I'm not sure what am
    I missing. I deleted the content type and added that again to my list but still no luck. Can someone please help me out? Thanks.
    Regards,
    SC Vinod

    hi
    it depends how you updated existing field. We faced with the problem that update of taxonomy site column was not propagated to the lists. In Sharepoint when content type is bound to the list, new hidden content type is created for that list - you may check
    it if will enumerate
    SPList.ContentTypes property. And when you try to update site column changes may not be propagated to these list content types. In order to update it you need to get reference on a field from list content type and update if explicitly.
    Blog - http://sadomovalex.blogspot.com
    Dynamic CAML queries via C# - http://camlex.codeplex.com

  • Need help with creating a linked list

    I need to create a linked list that i can put numbers or an operator into
    class Number_or_op
    boolean flag;
    double number;
    char operator;
    Number_or_op(boolean flag1,double number1,char operator1)
    flag = flag1;
    number = number1;
    operator = operator1;
    class Expr {
    Number_or_op first;
    Expr rest;
    Expr(Number_or_op first1,Expr rest1)
    first = first1;
    rest = rest1;
    how do i make a linked list out of this? im trying
    Expr list1 = new Expr(3, new Expr('*' , new Expr(4 , null)));
    but keep getting an error D:\Documentation\expr.java:14: internal error; cannot instantiate Expr.<init> at Expr to ()
    how do i fix the number_or_op so it can make it into a list?

    Let me reitterate my problem because i am so lost...
    I am used to making linked list using an integers only.. and now my teacher wants me to use both integers and chars, the chars being operators..
    I have no idea how to do that using hte code he provided because it makes no sense at all to me
    class Number_or_op
    boolean flag;
    double number;
    char operator;
    Number_or_op(boolean flag1,double number1,char operator1)
    flag = flag1;
    number = number1;
    operator = operator1;
    class Expr {
    Number_or_op first;
    Expr rest;
    Expr(Number_or_op first1,Expr rest1)
    first = first1;
    rest = rest1;
    I need to make a list that looks like 1 + 3 / 4 each operator or number needs a different node.. i just cant think of how to do it and keep getting an error message everytime i do saying:
    File: D:\Documentation\expr.java [line: 14]
    Error: D:\Documentation\expr.java:14: internal error; cannot instantiate Expr.<init> at Expr to ()
    I just dont know what to do

  • Need help on creating a linked list with array...

    I want to create a linked listed using array method. Any suggestion on how would I start it.
    thanks

    That means I want to implement linked list using an
    array.I believe you mean you want to implement list using an array. Linked list is a very different implementation of a list, which can be combined with arrays for a niche implementation of list, but I don't think this is what you're talking about.
    Do you mind if we ask why you don't want to use ArrayList? It does exactly what you specify, plus it will increase the size of the internal array as necessary to ensure it can store the required elements.
    If you really want to make your own, have a look at the source for ArrayList (in src.jar in your JDK installation folder) - it will answer any questions you have. If you don't understand any of the code, feel free to post the relevant code here and ask for clarification.

  • Need help with creating invoice and list of invoices

    Hello everybody,
    I need to create Credit / Debit memo invoices and for this I try to use FM GN_INVOICE_CREATE in my Z program, please let me know if it is correct way to go?
    As well I need to create list of Credit / Debit memo invoices, how to achieve this?
    Thanks in advance.
    Usefull answers will be awarded.
    Regards, M.

    You can use RV_INVOICE_CREATE for credit memo and debit memo
    list of credit and debit memo - use this FM - RV_INVOICE_LIST_CREATE
    see the below sample code
    refresh: XKOMFK, XKOMV,
               XTHEAD, XVBFS,
               XVBPA,  XVBRK,
               XVBRP,  XVBSS.
      clear  : XKOMFK, XKOMV,
               XTHEAD, XVBFS,
               XVBPA,  XVBRK,
               XVBRP,  XVBSS,
               VBSK_I.
      VBSK_I-SMART = 'F'.
      XKOMFK-VBELN =  v_deliv.
      XKOMFK-VBTYP = 'J'.
      APPEND XKOMFK.
      CALL FUNCTION 'RV_INVOICE_CREATE'
           EXPORTING
                VBSK_I       = VBSK_I
                WITH_POSTING = 'C'
           TABLES
                XKOMFK       = XKOMFK
                XKOMV        = XKOMV
                XTHEAD       = XTHEAD
                XVBFS        = XVBFS
                XVBPA        = XVBPA
                XVBRK        = XVBRK
                XVBRP        = XVBRP
                XVBSS        = XVBSS.
      if sy-subrc eq 0.
        COMMIT WORK.
       flag = 'X'.
      else.
      message i011 with p_vbeln.
      endif.
    Reward Points if it is helpful
    Thanks
    Seshu

  • Give the query  for  this requirement can we get it in correlated sub query

    i have to query avg(someinfo) group by dayofthemonth for last three days
    select someinfo from
    (select avg(someinfo)from table tab
    group by dayofdate1
    where exists(select * from table
    having max(date1)-tab.date1<3 )
    how can we group day of the date1
    someinfo date1
    10 28-jun-2006
    20 28-jun-2006
    30 29-jun-2006
    30 29-jun-2006
    10 30-jun-2006
    20 30-jun-2006
    30 1-july-2006
    40 1-july-2006
    30 2-july-2006
    40 2-july-2006
    i have to query avg(someinfo) group by day for last three days
    avg(someinfo) date1
    35 2-jun-2006
    35 1-july-2006
    15 30-june-2006
    here no need of union
    Message was edited by:
    user517983
    Message was edited by:
    user517983
    Message was edited by:
    user517983
    Message was edited by:
    user517983

    SQL> CREATE TABLE t_table
      2  AS
      3 (SELECT 10 day ,'28-jun-2006' ft FROM dual
      4  UNION
      5  SELECT 20,'28-jun-2006' FROM dual
      6  UNION
      7  SELECT 30,'29-jun-2006' FROM dual
      8  UNION
      9  SELECT 30,'29-jun-2006' FROM dual
    10  UNION
    11  SELECT 10,'30-jun-2006' FROM dual
    12  UNION
    13  SELECT 20,'30-jun-2006' FROM dual
    14  UNION
    15  SELECT 30,'1-jul-2006' FROM dual
    16  UNION
    17  SELECT 40,'1-jul-2006' FROM dual
    18  UNION
    19  SELECT 30,'2-jul-2006' FROM dual
    20  UNION
    21  SELECT 40,'2-jul-2006' FROM dual)
    22  .
    SQL> /
    Table created.
    SQL> DESC t_table
    Name                                                  Null?    Type
    DAY                                                            NUMBER
    FT                                                             VARCHAR2(11)
    SQL> SELECT * FROM t_table;
           DAY FT
            10 28-jun-2006
            10 30-jun-2006
            20 28-jun-2006
            20 30-jun-2006
            30 1-jul-2006
            30 2-jul-2006
            30 29-jun-2006
            40 1-jul-2006
            40 2-jul-2006
    9 rows selected.
    SQL> SELECT day,ft FROM (SELECT AVG(day) day,ft FROM t_table GROUP BY ft ORDER BY ft DESC)
      2  WHERE ROWNUM<=3;
           DAY FT
            15 30-jun-2006
            30 29-jun-2006
            15 28-jun-2006Khurram

  • How to get list of orders for current date.

    Hi,
    My requirement is to get list of orders for the date on which order was created such that I don't have to change the date in my application.
    Every time I run my application it should generate orders created on that current date without manually giving current date.
    This has to be done directly using BAPI and without creating a RFC. 
    I tried with bapi " BAPI_ALM_ORDERHEAD_GET_LIST " using parameter OPTIONS_FOR_START_DATE  but there I can't enter sy-datum and hence, every time I hence to change the date.
    Please tell me if there is any possible way to get fulfil above requirement.
    Thanks.
    Shilpi Agarwal.

    Hi Shilpi,
    This looks simple to me.
    Just create a variant in IW38 with U_your UserId as shown in the picture (Dynamic date selection for Created On set to Current Date)
    The status settings obviously would be
    Jogeswara Rao K

  • I'm running Mac OS X version 10.6.8 How come I get this error message "You are running an operating system that Photoshop no longer supports. Refer to the system requirements for a full list of supported platforms." When I Try to download a FREE trail?

    I'm running Mac OS X version 10.6.8 How come I get this error message "You are running an operating system that Photoshop no longer supports. Refer to the system requirements for a full list of supported platforms." When I Try to download a FREE trail?

    Hi Brizill,
    Please refer to the help document below to understand the technical specifications for the same:
    System requirements | Photoshop
    Regards,
    Sheena

  • Hi what does this mean and what do I need to do?....You are running an operating system that Photoshop no longer supports. Refer to the system requirements for a full list of supported platforms.

    Hi what does this mean and what do I need to do?....You are running an operating system that Photoshop no longer supports. Refer to the system requirements for a full list of supported platforms.

    well not sure of what the problem is besides you running an operating system that adobe cannot work with. reply with that type info ie I am running windows xp home or OSX version 7.5.3 etc. Meanwhile here is the link for minimum system requirement for adobe's creative cloud products System requirements | Creative Cloud that should help. good day

  • You are running an operating system that Photoshop no longer supports. Refer to the system requirements for a full list of supported platforms. I get this when trying to download purchased app

    I purchased photoshop and I get this message while trying to download it....
    You are running an operating system that Photoshop no longer supports. Refer to the system requirements for a full list of supported platforms.

    Well, but what system are you actually on? You have to provide technical info for people to be able to help you.
    Mylenium

  • Why do I get a message saying "You are running an operating system that InDesign no longer supports. Refer to the system requirements for a full list of supported platforms."? What does this mean?

    Why do I get a message saying "You are running an operating system that InDesign no longer supports. Refer to the system requirements for a full list of supported platforms."? What does this mean?

    It means that your machine does not meet the system requirements for InDesign.  Check the system requirements for InDesign against those of your machine to see where your machine comes up short.
    InDesign - http://helpx.adobe.com/indesign/system-requirements.html

  • This is what I get when I go to down load I am stuck  Error  You are running an operating system that Illustrator no longer supports. Refer to the system requirements for a full list of supported platforms.

    this is what i get when I go to down load the program on to my computer
    You are running an operating system that Illustrator no longer supports. Refer to the system requirements for a full list of supported platforms.
    I am stuck
    thank you
    Cindi

    I guess you are trying to download from Adobe web site.  if you are using Mac OS X 10.6.8 or WIndows Vista/XP .
    Install Adobe Application Manager and update and Sign in.
    It will auto detect the version of Illustrator which is compatible with your computer and list the same .
    Then you can go ahead and install the same .
    You may download Adobe application manager using below link :
    Windows :
    http://download.adobe.com/pub/adobe/creativesuite/cc/win/ApplicationManager9.0_all.exe
    Mac :
    http://download.adobe.com/pub/adobe/creativesuite/cc/mac/ApplicationManager9.0_all.dmg

  • Hi, I keep getting this message: Creative Cloud attempted to access a secure website, Parental Controls restricts access to secure websites. To add this website to your approved list, click Add Website. To do this, you need an administrator password.

    Hi, I keep getting this message: Creative Cloud attempted to access a secure website, Parental Controls restricts access to secure websites. To add this website to your approved list, click Add Website. To do this, you need an administrator password.
    what is this? what password do i need?
    I am trying to download Creative Cloud but it not working?

    Tamaro34896425 the error message you have posted appears to be related to the settings of your security software.  You can find guidance on how to configure software firewalls at Sign in, activation, or connection errors | CC, CS6, CS5.5 - http://helpx.adobe.com/x-productkb/policy-pricing/activation-network-issues.html.  You can find a link to the list of secure servers that the computer will need access to.

  • Hi I have mac os x 10.6.6 and need to update however keep getting the message " software update server ( 172.22.13.4 ) is not responding". My internet connections are all working. Any ideas how to solve this?

    Hi I have mac os x 10.6.6 and need to update however keep getting the message " software update server ( 172.22.13.4 ) is not responding". My internet connections are all working. Any ideas how to solve this?

    If you have enough room on the boot drive, head to System Preferences > Accounts and create another Admin Account, log out and into it and try your Software Update again.
    If this doesn't work, connect a Ethernet cable to the router or modem (power off/on) and try again.
    If this doesn't work then run through this list of fixes.
    ..Step by Step to fix your Mac
    Diagnosing network issues

  • I want to create a play list based on beats per minute. Is this possible?

    I want to create a play list based on beats per minute. Is this possible?
    I have selected show bpm on my itunes screen but there are no numbers there.

    Tracks do not come with BPM information included, either from the iTunes Store nor when you import a CD. You need to enter in the BPM information yourself. There are applications for Mac that can analyze tracks and determine (more or less) the BPM automatically, and there may be something similar for Windows. Otherwise you'll have to determine the BPM yourself and enter that information in the field for each track.
    BTW, this forum is for questions about iTunes U, Apple's service for colleges and universities to post educational material in the iTunes Store. For future questions, you'll be most likely to get help with this issue if you ask in the general iTunes forums.
    Regards.

Maybe you are looking for

  • SHOW COUNT equivalent in sccm 2012 AND right click tool to add PCs to COLLECTION

    In sms 2003 there was a right click tool that allowed you to get the count of the collection in question.  It generated total number or resources, total number of clients and total number of non-onsolete clients in the collection.  I know there is a

  • Copy a User from one infrastructure to another

    Hello there, We have a user in the development infrastructure.He is belonging to many groups in the infrastructure. We have another infrastructure environment.All the groups available in develoment environment are existing here too. I want to create

  • Populating a ComboBox with names of all Cue Points

    I'm working with Flash CS4 and ActionScript 3.  I have a .flv file with about 30 cue points created in Soundbooth.  When I run my video my listener  picks up the cue points as expected.  What I am trying to do now is populate a combobox with a list o

  • Adding symbols to special characters

    Hi there! I was wondering is there any possibilities to edit the existing special characters? I have a logo what I want to use in text and the easiest way would be if I could add it to the special characters library. Thank You for your help! Laszlo

  • How to get Next/Previous activities?

    Hi Is there any API's or any other ways to know the subsequent(next) activities from a current activity of a process. TIA honnur