How to define a new factory calender?

Hi guys,
I want to have a factory calender that I can use for scheduling batch jobs to run each last sunday in the month. Such factory calender doesn't seem to exist in the system and I'm wondering how I could create it?! Is there a transaction that I can use to create a new factory calender?
BR,
Armin

Hi,
1. In TCode: SCAL, initially check the public holidays existing in the system, whether those public holidays are sufficient or not, if not create your own public holidays.
2. Then Create public holiday calender and attach your public holidays to this public holiday  calender.
3. Then create your own factory calender and attach your public holiday calender to the factory calender and select the working days in a week and then save.
The above are the steps involved in creating a new factory calender.
Hope this helps.
Thanks,
Viswanath

Similar Messages

  • How to define an new New transaction type in SRM Environment?

    Hi All,
    There is a situation where in I have to add anew transaction type and link it to the existing process.
    If I am going to
    SPRO->SRM->SRM Server -> Cross appl.Basic Setting ->
    Define transaction type
    It gives me an un editable screen.
    My question is how to define a new transaction type here
    Kindly Let me know if there is any way to do it through ABAP .
    Thanks And Regards,
    Rupesh

    When you have gone through the path you describe you end up with a screen with a line for "define transaction types". To the left of the line are two icons - one to execute the function (the execute icon) and one with documentation (the text icon). Click on the documentation icon.
    Rob

  • How to Define a new tax, same as WHT - 11i AP

    Hi,
    We use 11.5.8 Oracle Payables, We need to define a new tax (royalty tax) exactly similar to Withholding Tax.
    In the invoice distribution the tax line should be negative figure which will deduct the payment amount just like in WHT.
    Please let us know what type of Tax we should define to solve this and how to apply it in Invoices.
    Thanks!

    Hi,
    Please let us know what type of Tax we should define to solve this
    You description of Scenario is indicating that you should withhold a part of Invoice amount i.e the Amount is inclusive of Invoice Amount.
    Hence I think WHT is suitable for you.
    and how to apply it in Invoices.
    Define Withholding Tax options in Payable Options window.
    Define a Withholding Tax Code and Group.
    Enable WHT at Supplier Site and assign particular Tax group to Supplier Header or Site as per requirement.
    Define Special Calender Withholding Tax.
    When supplier is selected at Invoice level, Withholding Tax group shall be automatically populated at invoice level, which will take care of Withholding at the time of Invoice Validation or Payment as per Options set.
    Regards,
    Sridhar

  • How to define a new format of report in TestStand?

    Hi,
    The report autogeneration by TestStand is not suitable to print to my situation.
    So I want to define a new format of HTML report by myself. But I do not know how to get a new blank one.
    Thank for help.

    For a staring point, you should learn how TestStand creates the report at all. Please read this article.
    hope this helps,
    Norbert 
    CEO: What exactly is stopping us from doing this?
    Expert: Geometry
    Marketing Manager: Just ignore it.

  • How to define a new parameter

    Hi,
    I want to improve a search by defining a new parameter. This parameter will replace (1,2,3,4) which is show below.
    .. documentid IN (1,2,3,4)
    Is it possible to define such parameters in APEX/SQL? if so, how can I do it? (I have tried some possible solutions but I did not get a result.)
    (Oracle 10.2, APEX 3.2)
    Thanks in advance,
    Sedso
    Edited by: Sedso on Aug 6, 2011 12:49 PM

    I suppose you are talking about a report, right? I see 2 potential problems to be worked around:
    1- how to pass the comma in an URL parameter, without making APEX understanding it as a separator for multiple parameters?
    if you're running the report from a branch in other page, just check the 'save before branching' property.
    Otherwise you will have to escape the commas, replacing it by some other character (like a '*', for example) right before submitting the page - of course you will need to add a computation to decode the conversion made (from '*' back to ',') in your report, in a Before Page style.
    You can find more sophisticated solution at http://rokitta.blogspot.com/2009/07/apex-fp-syntax-with-flexible-parameter.html
    2- how to utilize the parameter in the context of your query?
    I'd suggest to create a dynamic query, like in the tutorial http://www.oracle.com/technetwork/developer-tools/apex/dynamic-report-092026.html
    The query could be something like:
    declare
    q varchar2(4000);
    begin
    q:=' select col1, ';
    q:=q||' col2, ';
    q:=q||' col3 ';
    q:=q||' from tabela ';
    q:=q||' where documentid IN ' ||:p_in_clause '; -- like '(1,2,3,4)'
    return q;
    end;

  • How to define a new Rating Scale Lookup Type?

    Hi
    I want to define a new Rating Scale with Type 'Achievement' in the rating scales. But the Application Utilities Lookup RATING_SCALE_TYPE's Access-Level is System. So I can't add a new type. Is it possible to add a new Type?
    Regards
    Rahman

    I do not think that is possible because the total value of the items must equal the value at header.
    You can maybe add an extra text item for these costs if you do not want them added to the other items.

  • How to define a new parser by OPN?

    I have been using Network Monitor with a self defined parser for a long time, however, I would like to switch to Message Analyer since it has more support. I found that there has no conversion tool for converting from .npl file to .opn file, so I decided
    that I have to do it by myself. I read the programming manual for instructions to program my parser under .opn, but I found that it is difficult for me to handle this task since I have never touch OPN. I am now looking for help to complete my parser conversion.
    My goal is very simple. I received some messages that are transmitted by UDP stored as .pcap files. I would like to write a parser to decode them so that when I turn on the Message Analyzer, I can read the message directly. Following is a graph shows what
    protocol I am using. (Sorry, I find that I cannot upload a graph)...
    After extracting the UDP header, I should have one header and a sequence of messages in every packet I received.
    Here is the logic of my parser:
    After I received a UDP packet, I should extract the payload. Then I should extract the header, after that, I should have a loop to extract all the message one by one. Finally, I need to print out to the screen inside the
    Message Analyzer.
    Here is some .opn code that I am trying to perform what I want to do:
    Since these code are not working, I am here asking for help.
    protocol L1Proto_D with
    BinaryEncodingDefaults{Endian = Endian.Little},
    Documentation
    ProtocolName = "L1 Protocol",
    ShortName = "L1Proto_D",
    Description = ""
    OPNAuthoring
    Copyright = "No",
    References =
    new Reference{Name = "L1Proto_D 1234"},
    RevisionSummary =
    new Revision{Class = RevisionClass.Major, Version = "1.0.0", Date = "22-03-2015"}
    using UDP;
    pattern Port = short;
    pattern Address = binary where value.Count == 4;
    // Keep the values for L1Proto_D
    annotation ushort Datagram#DestinationPort;
    annotation ushort Datagram#SourcePort;
    annotation binary Datagram#SourceAddress;
    annotation binary Datagram#DestinationAddress;
    endpoint L1Proto_D_Connection over UDP.Host accepts L1Proto_D_Msg_Header;
    autostart actor L1Proto_D_OverUDP(UDP.Host host)
    process host accepts d:UDP.Datagram
    DecodeAndDispatchPacket(d, host);
    message L1Proto_D_Msg_Header
    // Header
    ushort PktSize with BinaryEncoding{Width = 2};
    byte MsgCount with BinaryEncoding{Width = 1};
    byte Filler1 with BinaryEncoding{Width = 1};
    uint SeqNum with BinaryEncoding{Width = 4};
    ulong SendTime with BinaryEncoding{Width = 8};
    override string ToString()
    string summary = null;
    summary = "PktSize: " + (PktSize.ToString())
    + ", MsgCount: " + (MsgCount.ToString())
    + ", Filler1: " + (Filler1.ToString())
    + ", SeqNum: " + (SeqNum.ToString())
    + ", SendTime: " + (SendTime.ToString());
    return summary;
    type L1ProtoBookUpdate
    uint OrderBookID with BinaryEncoding{Width = 4};
    string Filler with BinaryEncoding{Length = 3, TextEncoding = TextEncoding.ASCII};
    byte NoEntries with BinaryEncoding{Width = 1};
    type BookDetails
    ulong AggregateQuantity with BinaryEncoding{Width = 8};
    int Price with BinaryEncoding{Width = 4};
    uint NumberOfOrders with BinaryEncoding{Width = 4};
    byte Side with BinaryEncoding{Width = 1};
    string Filler1 with BinaryEncoding{Length = 1, TextEncoding = TextEncoding.ASCII};
    byte PriceLevel with BinaryEncoding{Width = 1};
    byte UpdateAction with BinaryEncoding{Width = 1};
    string Filler2 with BinaryEncoding{Length = 4, TextEncoding = TextEncoding.ASCII};
    void DecodeAndDispatchPacket(UDP.Datagram d, UDP.Host host)
    stream m = d.Payload;
    optional L1Proto_D_Msg_Header msg = BinaryDecoder<L1Proto_D_Msg_Header>(m);
    L1Proto_D_Msg_Header Header = new L1Proto_D_Msg_Header{};
    if (msg != nothing)
    Header = msg as L1Proto_D_Msg_Header;
    int frameLength = d.Length - 8;
    while(m.BytePosition < d.Length)
    ushort MsgType = BinaryDecoder<ushort>(m) as ushort;
    if(MsgType == 100)
    // do something ...
    else if(MsgType == 11)
    // do something ...
    else if(MsgType == 353)
    L1ProtoBookUpdate Msg353 = BinaryDecoder<L1ProtoBookUpdate>(m) as L1ProtoBookUpdate;
    while(m.BytePosition < d.Length)
    BookDetails Msg353Ext = BinaryDecoder<BookDetails>(m) as BookDetails;

    I will help, but I'm currently trying to figure out the error you see. I'm able to compile your OPN, so it works for me. In fact, based on the OPN, I'm thinking you made some progress, and then got stuck here.  But let's check if we are on the same
    page.
    Currently I see that it parses anything UDP, since you don't have a where clause limiting it to a single port.  Maybe this was on purpose, be what that means for me is that all UDP traffic attempts to use this parsing path.  For these cases I see
    an exception:
    Parsing\tActor: OpnGenerated.L1Proto_D_actor_L1Proto_D_OverUDP+L1Proto_D_OverUDP
    Exception: Cannot cast optional System.UInt16 to System.UInt16 because the value is 'nothing'.
    Hash Code: 49df24adb4b5a028d721c68a75b6c576
    Call Stack:
       at Microsoft.Opn.Runtime.Values.OptionalValue`1.get_Value()
       at OpnGenerated.L1Proto_D.DecodeAndDispatchPacket(Datagram d, Host host)
       at OpnGenerated.L1Proto_D_actor_L1Proto_D_OverUDP.L1Proto_D_OverUDP.__OnAcceptsDatagram(MessageEventArgs __args)
       at Microsoft.Opn.Runtime.Actors.MessageEvent.Execute(MessageEventHandler handler, MessageEventArgs args)
    Is this the problem you are referring to? 
    Also to perhaps help further, I've made a simple version of DecodeAndDispatchPacket that works for me (at the end).  My guess is that you wanted to use the MsgType to determine how to parse further.  DHCP.OPN has an example you could reference,
    look for "type OptionType", and see how it use the OptionsChoice to create a dynamic definition.
    void DecodeAndDispatchPacket(UDP.Datagram d, UDP.Host host)
    var msg = BinaryDecoder<L1Proto_D_Msg_Header>(d.Payload) as L1Proto_D_Msg_Header;
    if(msg != null)
    dispatch (endpoint L1Proto_D_Connection over host) accepts (msg as L1Proto_D_Msg_Header);
    Paul

  • How to define a new partner function?

    Dear experts!
    Thank you for your attention!
    we are using ECC6.0, I just want to ask how we can define or create a new partner function?
    Best regard!
    Tangdark

    Hi
    Tang
    Use Tcode  VOPA
    Partner function
    Specify an alphanumeric key which can have up to 2 characters and a description for a partner function.
    Partner type
    The partner type is an indicator which informs you of the type of partner, for example, partner type customer "KU".
    Currently, you cannot change the partner types in customizing. You canonly select the partner types that are included in the standard SAP R/3 System.
    Error group
    Using the error group, you assign an incompletion procedure to a partner function (see section "Incompletion log").
    Higher-level function
    For a partner function, you can specify the higher-level partner
    function. In this way, you can portray an existing dependency between the partner functions.
    Unique in customer master record
    If you characterize a partner function as unique, you can specify it only once in the customer master record.
    The sold-to party has to be unique in the customer master record whereas you may specify several contact persons.
    Customer hierarchy type
    In this field you can specify whether a partner function can be used for a customer hierarchy. Enter the customer hierarchy type permitted
    for the partner function. Refer to the section "Define hierarchy types
    and assign to account groups".
    Convert functions
    If you work with several languages in the sales and distribution
    system, you can carry out a language-dependent function conversion.
    This means you can display the internal key definition, for example, AG, WE, and so on, differently on the screen depending on the logon language of the user. For example, you can display the key CU as AG when logged on in German. (The conversion is necessary because the partner functions such as AG, WE are partially hardcoded in the programs.)
    Thx.
    Edited by: DWARKESH THAKKAR on Oct 28, 2008 7:16 AM

  • How to define a new user in Enterprise manager with Specific access rights?

    Hi,
    I want to create a new user in OEMS 11g who should be able to access only the scheduler jobs section.
    How can this be acheived?

    You can create new administrators via the Setup --> Administrators page
    You can grant certain access rights to targets, you can not however grant priv to only access the job system
    Take a look at http://download.oracle.com/docs/cd/E11857_01/em.111/e14586/security3.htm#sthref235
    Regards
    Rob
    http://oemgc.wordpress.com

  • How to define new classpath of libraries while making jar files with ant

    I am useing eclipse and ant and trying to make a jar file. I have used some external jar files. I have managed to add external jar files to my jar. But Still I have a problem. In my project all libraries in lib folder. But when I put them into jar file. They are in the root folder.Classpath has changed and It couldn't find the class path.
    Is there any body knows how to define a new class path for external libraries with ANT. or How can I put my libraries into a lib folder in jar ?? I think both of them would solve my problem.
    thanks in advance.
    My code is like that, I think it requires a little modification
    <target name="jar">
            <mkdir dir="build/jar"/>         
            <jar destfile="build/jar/Deneme.jar" basedir="build/classes" >             
                <manifest>
                    <attribute name="Main-Class" value="${main-class}"/>                    
                </manifest>             
                 <fileset  dir="${lib.dir}" includes="**/*.jar"/>           
            </jar>
        </target>

    I can see why your other "question" was likely deleted. You need to drop the editorial comments and just ask a question. I believe what you want to know is how to configure something using php on your Apache server so that it can be read. If that's your question, here's a couple of places that discuss the topic:
    http://www.webmasterworld.com/linux/3345459.htm
    http://forums.macrumors.com/showthread.php?t=427742
    http://en.allexperts.com/q/PHP5-3508/configuring-installing-permissions.htm
    For a general introduction to 'nix permissions, take a look at this:
    http://www.osxfaq.com/Tutorials/LearningCenter/UnixTutorials/ManagingPermissions /index.ws
    And here's a whole book on the subject of Leopard permissions:
    http://my.safaribooksonline.com/9780321579331
    Try doing a Google search on "leopard permissions php apache" and see if you find what you are looking for.
    Francine
    Francine
    Schwieder

  • Factory Calender and Holiday calender

    Hai experts,
    I am new in CRM. Can anyone tell me what is Factory calender and holiday calender in detail? And how to create it?
    Anoop

    Hi
    this below blog will solve ur problem
    How to create a new Factory Calendar in BI system
    hope above solves ur issue
    regards
    prakhar

  • How to define ABC class field in the Customer Master Sales tab

    HI All,
    can any one let me know how to define the new  ABC class in the Customer Master Sales tab like below.
    u2013 A (> 6,000,000 )
    u2013 B (> 1,000,000u20136,000,000 )
    u2013 C (> 100,000u20132,000,000 )
    u2013 D (< 100,000 )
    can any one let me know how to define and path in IMG.
    Thanks in advance.
    kumar reddy.

    In my opinion, you don't have any such std table/view to update ABC Classification field. You might need to update relevant infostructure based on your requirement, such as sales, invoiced, etc..
    Try with following, based on your requirement:
    MC(A
    SIS: Customer,Inc.Orders - Selection
    MC+A
    SIS: Customer Returns, Selection
    MC+E
    SIS: Customer, Sales - Selection
    MC+I
    SIS: Customer Credit Memos - Selec.
    Regards
    JP

  • Lead time from catalog does not consider factory calender

    Hi,
    we are working with SRM 2.0 classic scenario. I have following problem:
    We take over lead time from a supplier catalog via OCI in EBP. This works but the lead time does not consider holidays and weekends. How can I activate the Factory Calender?
    Thanks Thomas

    Hello,
    I just sniff arround and found out that EBP 3.0  does not support factory calendar.
    You should use BBP_DOC_CHECK_BADI or BADI BBP_CATALOG_TRANSFER and call within this BADI the function modules requesting the factory calendar data via RFC on the backend.
    i.e.
    get the target system of the follow-on document            
        SELECT log_sys from BBP_DET_LOGSYS INTO wa_logsys-log_sys
        WHERE CATEGORY = ls_item-category.                       
        ENDSELECT.                                                                               
    read table T001WK                                          
        CALL FUNCTION 'META_READ_TABLE'                          
          EXPORTING                                              
            query_table    = 'T001W'                             
            logical_system = wa_logsys-log_sys                   
          TABLES                                                 
            options        = options                             
            fields         = fields                              
            data           = tabcont                             
          EXCEPTIONS                                             
            OTHERS         = 1.
    fill the internal table xt001w                         
        LOOP AT tabcont INTO la_tabcont.                     
          MOVE la_tabcont-content+3(4) TO la_xt001w-werks.   
          MOVE la_tabcont-content+61(2) TO la_xt001w-fabkl.  
          APPEND la_xt001w TO xt001w.                        
        ENDLOOP.                                             
        SORT xt001w BY werks.                                                                               
    get the fabric calendar related to the plant           
        READ TABLE xt001w INTO ma_XT001W                     
        with KEY werks = ls_item-BE_PLANT.                   
    check if delivery date is a working day                
        CALL FUNCTION 'DATE_CONVERT_TO_FACTORYDATE'          
          DESTINATION wa_logsys-log_sys                      
          EXPORTING                                          
            DATE                 = ls_item-DELIV_DATE        
            FACTORY_CALENDAR_ID  = ma_XT001W-fabkl           
          IMPORTING                                          
            WORKINGDAY_INDICATOR = W_IND.                                                                               
    get an error message if delivery date is not a working date             
        IF W_IND = '+'.                                                                               
    CLEAR ls_message.                                                                               
    ls_message-msgty   = 'E'.                                           
          ls_message-msgid   = 'ZBBP'.                                        
          ls_message-msgno   = 'xxx'.                                         
          ls_message-msgv1   = 'error message text, e.g. delivery date not    
    working date'.                                                            
          ls_message-item_guid = ls_item-guid. "assign message to item        
          APPEND ls_message TO et_messages.                                                                               
    ENDIF.                                                                               
    endloop.

  • SLD - Define a new Product / SC

    Hello everybody,
    anyone know, how to define a new product which has different Software Units among them? (E.g. Product: SAP ERP 2004)
    When i define a new product and attach SCs to this product they will all get stored under the same Software Unit. I dont get the seperation like in product SAP ERP 2004 done.
    Any idea how to get it done?
    System: WAS 6.40 SPS14
    regards,
    Markus

    Thanks to Both SG and Muthu,
    Are you mentioning about the IMG activity,
    Define the Objects in backbend system ?
    It is already in configured as we are using ECC the target system is set as R/3 system.
    Could you please confirm.
    I have performed all the steps which you have mentioned and I have run the extract few times and the status is green.
    Still I am not able to see the description of the Product category in SRM and not able to create a SC with new Product category.
    Regards,
    Pradeep

  • How to update Factory calender in CRM from ECC?

    Hi All,
    Factory calenders are downloaded to CRM from ECC, using adapter object DNL_CUST_CAL_C in Initial load (R3AS).  My doubt is, whenever a new holiday is added to Factory calender in ECC, how the particular added holiday will be downloaded to update the same in CRM system?
    Please help me.
    Regards,
    Maddy

    Hello Maddy,
    In my system download object DNL_CUST_CAL_C is for the download from the CRM (online) database to the old consolidated database (CDB, for the offline Mobile Sales scenario). You could see this in transaction R3AC3.
    For your scenario I don't know how to download. This thread here speaks of a manual adjustment in transaction SCAL.
    http://scn.sap.com/thread/274825
    Best regards,
    Thomas Wagner

Maybe you are looking for

  • Ideas for a final year project

    I am in the final year of my studies. At the moment I can not decide what to do for my project, I have few ideas but I would like to hear from someone else for an idea as well. I would like to know what kind of project I could do in distributed java.

  • Why doesn't Photoshop always generate a layer mask

    I believe it was in CS4 that Adobe expanded the use of automatic layer masks ... perhaps it was with adjustment layers (I'm not quite sure) I don't know about others, but it would save me considerable time in the long run if every new layer, (whether

  • How to change apple user name on iPhone?

    I've changed my Apple user name online but can't figure out how to change it on my iphone to sync.

  • Creating a library and use it

    Hi all, I'm new in Java (but not with other programming languages). I have created some util classes, compiled them successfully and put them in a jar file. suppose i'm writing a program that call some classes of that compiled library. What do i must

  • Portege 3500 stylus not working in parts of the screen

    my stylus on my portege isn't working in parts of the screen the parts change and are sometimes not there. This happened after replacing the screen but not straight away.