Anyone using/know about Authorizations in ASL/Supplier Scheduling?

I am trying to make use of the Authorization feature that can be set up in the ASL. I have set up a supplier with Authorizations and without Authorizations and I can see zero difference when I create any sort of Type/SubType forecast in Supplier Scheduling.
Based on what you have to set up combined with some business experience I was guessing that this would somehow at least print some messages on the forecast, telling the supplier what you are committing to and/or not committing to, in order to manage your liability. Something like that has to be the expected behavior, but I am not seeing it.
I have raised a TAR to ask what is the designed functionality but 5-6 weeks later the TAR is still 'work in progress', apparently no one there knows what its supposed to do either.
If anyone is using this, or knows how its supposed to work, or has any good docu (User Guide is of no use), I sure would appreciate hearing from you.
Right now I have no idea if what i am looking at is a bug or what was designed.
thanks - Gregg

hi Rock,
this is an example for Provide,
in ldb it is used to  populate the data;
syn: provide * from itab(which event populates)
         between pn-begda and pn-endda.
        endprovide.
ex: Provide *  from p0001
                    from p0002
      between pn-begda and pn-endda.
and this is an example for Payroll getting wagetype of a pernr.
for getting the wage type for particular wage type i am providing a example where you can modify according to your requirements:
Ex:
REPORT Zrock.
TABLES: PCL1,PCL2. (NOT MANDATORY)
INCLUDE RPC2RX09
INCLUDE RPC2RDD0
INCLUDE RPPXD00
INCLUDE RPPXD10
INCLUDE RPPXM00
Parameters: p_pernr like p000-pernr
p_per like pc261 like pc261-fpper
Data: i_rgdir like pc261 occurs 0 with header line
start-of-selection. here call the FM
Call function cu_read_rgdir
export params --- pernr = p_pernr
tables
in_rgdir = I_rgdir
if sy-subrc = 0.
loop at i_rgdir where fpper = p_per
and inper = p_per
here we r populating the RD Cluster key
rx-key-pernr = p_per
rx-key-seqnr = i_rgdir-seqnr
*Importing the RD cluster data.
RP-imp-c2-rd.
if rp-imp--rd-subrc = 0.
then processing the RT table for the required results (wagetype).
Read table RT with key LGART = /'101'(here give ur wagetypes).
if sy-subrc = 0.
write: / p_pernr,
I_rgdir-fpper,
I_rgdir-inper,
rt-lgart,
rt-betrg.-----this is amount if you needed.
endif.
endif.
endloop.
endif.
wait for sometime i wll also provide reports on OM, just remind me after 2 days. good luck
Reward  if helpful.
Thanks & Regards,
Abdul.

Similar Messages

  • Help...anyone that knows about ipods and computers

    I use winamp to manage my ipod because itunes does not launch on my pc, anyway, everything's been working fine until today. I went to "my computer" and i right clicked on the icon IPOD:E and i clicked eject, thinking that it will only eject my ipod from the computer, but it's like it removed the ipod database from the computer, thinking that it would resolve the issue i restored my ipod, and then i went back to winamp only to fine that my ipod no longer is recognized by it...and i cant put back my songs on my ipod. If anyone out there knows about computers and electronics, please tell me what i did wrong and how i can fix it. Thanks

    I ordered my 5G a few days after they were released. I also got mine engraved. After a few days the hold switch stopped working. Instead of dealing with Apple and mailing my iPod back and waiting for a replacement to arrive I went to the Apple store. The "genius" said they could return the unit and order another engraved one. I aksed for a in store replacement. I did not want to be with out an iPod while the new one is mailed to me. It was no problem. He went to POS and came back with a new iPod sealed in box, opened it up and handed it to me.
    You should have no problem.

  • For anyone who knows about JVM and MRJ

    I have built an application that runs as expected on Mac OS X. Take the same program and run it on OS 9 (after using MRJAppBuilder) and the errors start. I have included the error below, I never use Vector.toString() so I am wondering if this may be in my JDBC drivers code, or a problem with Apple's MRJ? The code in Question I traced from the EventHandlers actionPerformed method which calls a fetch() method in our Connector class which uses JDBC driver to access the database. I caught a java.lang.NullPointerException with a simple system.out to tell me it was caught and the same error is still thrown on OS 9 so I am wondering if it could be JDBC or MRJ?
    Exception occurred during event dispatching:
    java.lang.NullPointerException
    at java.util.Vector.toString(Vector.java)
    at javax.swing.DefaultListCellRenderer.getListCellRendererComponent(DefaultListCellRenderer.java:82)
    at javax.swing.plaf.basic.BasicListUI.updateLayoutState(BasicListUI.java:782)
    at javax.swing.plaf.basic.BasicListUI.maybeUpdateLayoutState(BasicListUI.java:732)
    at javax.swing.plaf.basic.BasicListUI.getPreferredSize(BasicListUI.java:173)
    at javax.swing.JComponent.getPreferredSize(JComponent.java:772)
    at javax.swing.JList.getPreferredScrollableViewportSize(JList.java:1400)
    at javax.swing.ViewportLayout.preferredLayoutSize(ViewportLayout.java:75)
    at java.awt.Container.preferredSize(Container.java)
    at java.awt.Container.getPreferredSize(Container.java)
    at javax.swing.JComponent.getPreferredSize(JComponent.java:774)
    at javax.swing.ScrollPaneLayout.preferredLayoutSize(ScrollPaneLayout.java:459)
    at java.awt.Container.preferredSize(Container.java)
    at java.awt.Container.getPreferredSize(Container.java)
    at javax.swing.JComponent.getPreferredSize(JComponent.java:774)
    at java.awt.FlowLayout.layoutContainer(FlowLayout.java)
    at java.awt.Container.layout(Container.java)
    at java.awt.Container.doLayout(Container.java)
    at java.awt.Container.validateTree(Container.java)
    at java.awt.Container.validate(Container.java)
    at EventHandler.mouseClicked(EventHandler.java:354)
    at java.awt.Component.processMouseEvent(Component.java)
    at java.awt.Component.processEvent(Component.java)
    at java.awt.Component.dispatchEventImpl(Compiled Code)
    at java.awt.Component.dispatchEvent(Compiled Code)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java)

    I'm also including the Connector's fetch() method just in case, it's the only code with Vectors for return values.
    public Vector fetch( String sqlString ) {
    rows.removeAllElements();
    try {
    Statement stmt = connection.createStatement();
    ResultSet rs = stmt.executeQuery( sqlString );
    ResultSetMetaData rsmd = rs.getMetaData();
    //Set the number of columns, their names and types
    for( int col = 1; col <= rsmd.getColumnCount(); col++ ) {
    columnNames.addElement( rsmd.getColumnLabel( col ) );
    columnTypes.addElement( rsmd.getColumnTypeName( col ) );
    //Set the rows
    while (rs.next()) {
    Vector newRow = new Vector();
    for ( int col = 1; col <= rsmd.getColumnCount(); col++ ) {
    newRow.addElement(rs.getObject(col));
    rows.addElement(newRow);
    rs.close();
    stmt.close();
    catch ( SQLException exception ) {
    while ( exception != null ) {
    System.out.println( "\nSQL Exception: " + exception.getMessage() );
    System.out.println( "\nANSI-92 SQL State: " + exception.getSQLState() );
    System.out.println( "\nVendor Error Code: " + exception.getErrorCode() );
    } //While
    } //catch
    catch( java.lang.NullPointerException npe ) {
    System.out.println( "Vector toString error." );
    return rows;
    } //fetch

  • Does anyone else know about iflash for ipod classic im thinking about buying one

    anyone know

    What exactly is "iflash"? Are you referring to the adapter sold to convert the iPod from hard drive to flash storage? If so, I'd suggest you ask for opinions in the iPod classic forum and someone there might have had experience with it.
    Regards.

  • For Malcolm Rayfield, or anyone who knows about VGA/DVI/ADC ports

    I gave up on my Apple Monitor and bought a new 19" LCD flatscreen, but I'm getting a lot of ghosting from my windows and text which stretches the length of the screen in both directions.
    The monitor came with both a DVI port and a VGA port, whereas my Mac G4 has a VGI and an ADC port. So right now I'm connected through the VGA port, and I'm guessing that's what's causing the ghosting.
    I'm wondering, then, if I'd be better off with an adapter that connects a DVI cable to my VGA port, or one that connects the DVI cable to my ADC port. If either will work, then I'll probably opt for whichever is cheaper.
    By the way, I'm now getting my sound through the new monitor, and I'd like to go back to the speaker on my G4, which sounds far better. Hopefully someone can address that issue as well.

    The ghosting is a grey line which matches the height of a given font, or any other image that appears on the desktop. These lines run the full width of the screen, and if I move the window, they move with it.
    I made a screen capture, in the off chance that it can provide an illustration. It's impossible for me to tell from this computer, but I figured it was worth a shot.
    http://members.aol.com/mistermug/Ghosting.jpg

  • Anyone knows about using java to get data from MS Access database.

    hi there
    anyone knows about using java to get data from MS Access database? thank you

    there is a list of jdbc drivers at:
    http://industry.java.sun.com/products/jdbc/drivers
    they have several ms access drivers listed.
    also, you can use a jdbc-odbc bridge which allows you to use jdbc to connect to any odbc data source:
    http://java.sun.com/j2se/1.3/docs/guide/jdbc/getstart/bridge.doc.html

  • I want know about stub zone how to use can anyone tell me ?

    I want know about stub zone how to use can anyone tell me ?
    Thanks & Regards, Amol . Amol Dhaygude

    Hi Amol
    Does this help
    http://technet.microsoft.com/en-us/library/cc779197(v=WS.10).aspx

  • Got a question for all you peeps dos anyone know about i phones i have a i phone 3gs which i got unlocked i did a master reset or summin and just had a pic of apple so i plugged it in i tunes downloaded and it now says no service at the top of phone and i

    got a question for all you peeps
    dos anyone know about i phones i have a i phone 3gs which i got unlocked i did a master reset or summin and just had a pic of apple so i plugged it in i tunes downloaded and it now says no service at the top of phone and i tunes says invalid sim i put the correct sim in it used to be locked too and still says same pls any one with ideas?

    hi sorry what happoned is that ages ago i brought a i phone 3gs on 02 network i went to a sml phone shop and payed for them to unlock it. it has been fine till yesterday when i went to reset it from the phone it then turned off and came back on just just an image of a apple for about an hour so i connected to i tunes and it said downloading software after another hr it had finished but then i tunes said in had to insert a sim so i had to un plug the phone from laptop while i did this i put my orange sim in and the i phone said where do i live and had to connect to a internet connection but all the time saying no service where the signal bar is and then says activating i phone it took a few min and said couldnt finish it bec of the signal and to connect it to i tunes to do it so i connected it to itunes and i tunes just keeps saying invalid sim so i took my orange sim out and put a 02 sim in and is still saying invalid sim on itunes?

  • Anyone know about the new SOi 6 update?

    anyone know about the new SOi 6 update?

    i think you should use nor again. and thanks but i figured it out

  • I was told in the shop i bought my iPhone 5 that Apple offer connection adaptator for docks to whom buy a 5 to replace à 4,  i am surprise, does anyone know about it?

    I was told in the shop i bought my iPhone 5 that Apple offer connection adaptator for docks to whom buy a 5 to replace à 4,  i am surprise, does anyone know about it?

    Restore the phone using iTunes. First time restore your backup. If the problem is not fixed restore again, and this time set up as New.

  • Camera Connector? Does anyone know about these

    Does anyone know about these camera connectors...Are they useful? what do they do?

    See your other thread John Macfarlane, "Camera Connector", 04:29pm Oct 10, 2005 CDT.

  • Do anyone know about recovering notes that I accidentally deleted from my iPad during sync process? Thanks

    Do anyone know about recovering notes that I accidentally deleted from my iPad during sync process? Thanks.

    If you are using iCloud you can check to see if they are still available remotely by logging onto iCloud.com on a desktop/laptop computer, or 3rd party app like Private Browser or Photon.
    If your not using iCloud, or they were also removed from there, you can restore from your last backup (iTunes or iCloud). Unfortunately, this will only recover notes created prior to backing up your iPad. Hope this helps!

  • Does anyone know about the iHome iH5 speakers?

    I thought this would be PERFECT in addition to an iPod Nano, but Ive heard that you cant use this with a Nano. Is this true? And if anyone knows about the iHome iH5, how is the sound quality? Can it get VERY LOUD?

    Apple has no such deal.

  • Does anyone know about the JTF_PF_REPOSITORY table & its purpose?

    Hi folks,
    Does anyone know about the JTF_PF_REPOSITORY table & its purpose? we looked at the data in this table and it seems like it is storing a whole bunch of page related data.
    Can this table can be purged?
    Any pointers will be very helpful.
    Thanks!

    Hi,
    Why do you want to purge this table?
    If you want to delete your personalization or pages just use functional Administrator responsibility or use jdr_utils.delete_document().
    --Prasanna                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • I just bought a recertified Mac Mini, and I wonder if anyone here knows if it's possible to hook up my Mac flat screen LCD monitor to it using what adapters? I currently have a DVI to ADC adapter connected to my G4 Powermac.

    I just bought a recertified Mac Mini core duo - it's not the newer model-, and I wonder if anyone here knows if it's possible to hook up my Mac flat screen LCD monitor to it  and using what adapters? I currently have a DVI to ADC adapter connected to my G4 Powermac.
    The company I bought it from is not Apple, and I may regret that. It was in my price range, though.
    This is the first time I've used this community, and I've been a Mac owner since 2000. Thanks in advance!

    when you say "Mac flat screen LCD", do you mean this:
    http://www.ares-woo.com/christmas2005/images/pc_cine.jpg
    if it is, you might wanna try this:
    http://store.apple.com/us/product/MB570Z/A?mco=MTY3ODQ5OTY

Maybe you are looking for